ETH Price: $2,399.18 (-3.62%)

Token

Lee Mullican (MUL)
 

Overview

Max Total Supply

44 MUL

Holders

32

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 MUL
0x8b4b5019b8094764dfdc2f1329dea407f07ba8d7
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
LeeMullican

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 17 : LeeMullican.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

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 "../royalties/Royalties.sol";

// Version: Artist-2.1
contract LeeMullican is
    ERC721,
    ERC721Enumerable,
    ERC721URIStorage,
    ERC721Burnable,
    Ownable,
    Royalties
{
    // OpenSea metadata freeze
    event PermanentURI(string _value, uint256 indexed _id);

    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;
    Counters.Counter private _editionCounter;
    string private _baseURIextended;
    uint256 private _MAX_singles = 100000000;

    constructor(
        string memory baseURI,
        string memory contractName,
        string memory tokenSymbol
    ) ERC721(contractName, tokenSymbol) {
        _baseURIextended = baseURI;
    }

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

    /*
     * @dev hard limit of _MAX_singles single tokens
     */
    function mint(
        address to,
        string memory _tokenURI,
        address payable receiver,
        uint256 basisPoints
    ) public onlyOwner {
        require(basisPoints < 10000, "Total royalties exceeds 100%");
        uint256 tokenId = getNextTokenId();
        require(
            tokenId < _MAX_singles,
            "Maximum number of single tokens exceeded"
        );

        _mintSingle(to, tokenId, _tokenURI, receiver, basisPoints);
        _tokenIdCounter.increment();
    }

    function mintEditions(
        address to,
        string[] memory _tokenURIs,
        address payable receiver,
        uint256 basisPoints
    ) public onlyOwner {
        require(basisPoints < 10000, "Total royalties exceeds 100%");
        require(_tokenURIs.length < 101, "Max of 100 tokens per edition");
        require(_tokenURIs.length > 1, "Must be more than 1 token per edition");

        uint256 tokenId = getNextEditionId();
        _mintEditions(to, tokenId, _tokenURIs, receiver, basisPoints);
        _editionCounter.increment();
    }

    function getNextTokenId() public view returns (uint256) {
        return _tokenIdCounter.current() + 1;
    }

    function getNextEditionId() public view returns (uint256) {
        return ((_editionCounter.current() + 1) * _MAX_singles) + 1;
    }

    function _mintEditions(
        address to,
        uint256 tokenId,
        string[] memory _tokenURIs,
        address payable receiver,
        uint256 basisPoints
    ) internal {
        for (uint256 i = 0; i < _tokenURIs.length; i++) {
            _mintSingle(to, tokenId + i, _tokenURIs[i], receiver, basisPoints);
        }
    }

    function _mintSingle(
        address to,
        uint256 tokenId,
        string memory _tokenURI,
        address payable receiver,
        uint256 basisPoints
    ) internal {
        _safeMint(to, tokenId);
        _setTokenURI(tokenId, _tokenURI);
        if (basisPoints > 0) {
            _setRoyalties(tokenId, receiver, basisPoints);
        }
        emit PermanentURI(tokenURI(tokenId), tokenId);
    }

    // The following functions are overrides required by Solidity.
    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
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function _existsRoyalties(uint256 tokenId)
        internal
        view
        virtual
        override(Royalties)
        returns (bool)
    {
        return super._exists(tokenId);
    }

    function _getRoyaltyFallback()
        internal
        view
        override
        returns (address payable)
    {
        return payable(owner());
    }

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

File 2 of 17 : Royalties.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";

abstract contract Royalties {
    mapping(uint256 => address payable) internal _tokenRoyaltyReceiver;
    mapping(uint256 => uint256) internal _tokenRoyaltyBPS;

    function _existsRoyalties(uint256 tokenId)
        internal
        view
        virtual
        returns (bool);

    /**
     *  @dev Rarible: RoyaltiesV1
     *
     *  bytes4(keccak256('getFeeRecipients(uint256)')) == 0xb9c4d9fb
     *  bytes4(keccak256('getFeeBps(uint256)')) == 0x0ebd4c7f
     *
     *  => 0xb9c4d9fb ^ 0x0ebd4c7f = 0xb7799584
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584;

    /**
     *  @dev Foundation
     *
     *  bytes4(keccak256('getFees(uint256)')) == 0xd5a06d4c
     *
     *  => 0xd5a06d4c = 0xd5a06d4c
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_FOUNDATION = 0xd5a06d4c;

    /**
     *  @dev EIP-2981
     *
     * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
     *
     * => 0x2a55205a = 0x2a55205a
     */
    bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a;

    function _setRoyalties(
        uint256 tokenId,
        address payable receiver,
        uint256 basisPoints
    ) internal {
        require(basisPoints > 0);
        _tokenRoyaltyReceiver[tokenId] = receiver;
        _tokenRoyaltyBPS[tokenId] = basisPoints;
    }

    /**
     * @dev 3rd party Marketplace Royalty Support
     */

    /**
     * @dev IFoundation
     */
    function getFees(uint256 tokenId)
        external
        view
        virtual
        returns (address payable[] memory, uint256[] memory)
    {
        require(_existsRoyalties(tokenId), "Nonexistent token");

        address payable[] memory receivers = new address payable[](1);
        uint256[] memory bps = new uint256[](1);
        receivers[0] = _getReceiver(tokenId);
        bps[0] = _getBps(tokenId);
        return (receivers, bps);
    }

    /**
     * @dev IRaribleV1
     */
    function getFeeRecipients(uint256 tokenId)
        external
        view
        virtual
        returns (address payable[] memory)
    {
        require(_existsRoyalties(tokenId), "Nonexistent token");

        address payable[] memory receivers = new address payable[](1);
        receivers[0] = _getReceiver(tokenId);
        return receivers;
    }

    function getFeeBps(uint256 tokenId)
        external
        view
        virtual
        returns (uint256[] memory)
    {
        require(_existsRoyalties(tokenId), "Nonexistent token");

        uint256[] memory bps = new uint256[](1);
        bps[0] = _getBps(tokenId);
        return bps;
    }

    /**
     * @dev EIP-2981
     * Returns primary receiver i.e. receivers[0]
     */
    function royaltyInfo(uint256 tokenId, uint256 value)
        external
        view
        virtual
        returns (address, uint256)
    {
        require(_existsRoyalties(tokenId), "Nonexistent token");
        return _getRoyaltyInfo(tokenId, value);
    }

    function _getRoyaltyInfo(uint256 tokenId, uint256 value)
        internal
        view
        returns (address receiver, uint256 amount)
    {
        address _receiver = _getReceiver(tokenId);
        return (_receiver, (_tokenRoyaltyBPS[tokenId] * value) / 10000);
    }

    function _getBps(uint256 tokenId) internal view returns (uint256) {
        return _tokenRoyaltyBPS[tokenId];
    }

    function _getReceiver(uint256 tokenId)
        internal
        view
        returns (address payable)
    {
        uint256 bps = _getBps(tokenId);
        address payable receiver = _tokenRoyaltyReceiver[tokenId];
        if (bps == 0 || receiver == address(0)) {
            /**
             * @dev: If bps is 0 the receiver was never set
             * Fall back to this contract so badly behaved
             * marketplaces have somewhere to send money to
             */
            return (_getRoyaltyFallback());
        }

        return receiver;
    }

    function _getRoyaltyFallback()
        internal
        view
        virtual
        returns (address payable);

    function _supportsRoyaltyInterfaces(bytes4 interfaceId)
        public
        pure
        returns (bool)
    {
        return
            interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE ||
            interfaceId == _INTERFACE_ID_ROYALTIES_FOUNDATION ||
            interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981;
    }
}

File 3 of 17 : 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 4 of 17 : 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 5 of 17 : 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 6 of 17 : 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 7 of 17 : 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 8 of 17 : 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 9 of 17 : 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 10 of 17 : 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 11 of 17 : 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 12 of 17 : 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 13 of 17 : 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 14 of 17 : 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 15 of 17 : 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 16 of 17 : 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 17 of 17 : 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;
    }
}

Settings
{
  "metadata": {
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"string","name":"contractName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"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":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"_supportsRoyaltyInterfaces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFees","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextEditionId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string","name":"_tokenURI","type":"string"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string[]","name":"_tokenURIs","type":"string[]"},{"internalType":"address payable","name":"receiver","type":"address"},{"internalType":"uint256","name":"basisPoints","type":"uint256"}],"name":"mintEditions","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"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"}]

60806040526305f5e1006011553480156200001957600080fd5b5060405162002c5738038062002c578339810160408190526200003c9162000270565b81518290829062000055906000906020850190620000fd565b5080516200006b906001906020840190620000fd565b5050506200008862000082620000a760201b60201c565b620000ab565b82516200009d906010906020860190620000fd565b505050506200033e565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010b9062000301565b90600052602060002090601f0160209004810192826200012f57600085556200017a565b82601f106200014a57805160ff19168380011785556200017a565b828001600101855582156200017a579182015b828111156200017a5782518255916020019190600101906200015d565b50620001889291506200018c565b5090565b5b808211156200018857600081556001016200018d565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001cb57600080fd5b81516001600160401b0380821115620001e857620001e8620001a3565b604051601f8301601f19908116603f01168101908282118183101715620002135762000213620001a3565b816040528381526020925086838588010111156200023057600080fd5b600091505b8382101562000254578582018301518183018401529082019062000235565b83821115620002665760008385830101525b9695505050505050565b6000806000606084860312156200028657600080fd5b83516001600160401b03808211156200029e57600080fd5b620002ac87838801620001b9565b94506020860151915080821115620002c357600080fd5b620002d187838801620001b9565b93506040860151915080821115620002e857600080fd5b50620002f786828701620001b9565b9150509250925092565b600181811c908216806200031657607f821691505b602082108114156200033857634e487b7160e01b600052602260045260246000fd5b50919050565b612909806200034e6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063646d11c811610104578063b88d4fde116100a2578063d5a06d4c11610071578063d5a06d4c146103ea578063da14cbbc1461040b578063e985e9c51461041e578063f2fde38b1461045a57600080fd5b8063b88d4fde1461039c578063b9c4d9fb146103af578063c87b56dd146103cf578063caa0f92a146103e257600080fd5b80638da5cb5b116100de5780638da5cb5b1461036857806395d89b4114610379578063a22cb46514610381578063a66b7ec91461039457600080fd5b8063646d11c81461033a57806370a082311461034d578063715018a61461036057600080fd5b806323b872dd1161017157806342842e0e1161014b57806342842e0e146102ee57806342966c68146103015780634f6ccce7146103145780636352211e1461032757600080fd5b806323b872dd146102965780632a55205a146102a95780632f745c59146102db57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c5780630ebd4c7f14610251578063152fcb2e1461027157806318160ddd1461028457600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046120f4565b61046d565b60405190151581526020015b60405180910390f35b61020461048d565b6040516101f39190612169565b61022461021f36600461217c565b61051f565b6040516001600160a01b0390911681526020016101f3565b61024f61024a3660046121aa565b6105ac565b005b61026461025f36600461217c565b6106c2565b6040516101f39190612211565b6101e761027f3660046120f4565b61073f565b6008545b6040519081526020016101f3565b61024f6102a4366004612224565b610790565b6102bc6102b7366004612265565b6107c2565b604080516001600160a01b0390931683526020830191909152016101f3565b6102886102e93660046121aa565b6107ff565b61024f6102fc366004612224565b610895565b61024f61030f36600461217c565b6108b0565b61028861032236600461217c565b61092a565b61022461033536600461217c565b6109bd565b61024f610348366004612356565b610a34565b61028861035b366004612446565b610b8d565b61024f610c14565b600b546001600160a01b0316610224565b610204610c4a565b61024f61038f366004612463565b610c59565b610288610d1e565b61024f6103aa3660046124a1565b610d51565b6103c26103bd36600461217c565b610d89565b6040516101f3919061255a565b6102046103dd36600461217c565b610e0c565b610288610e17565b6103fd6103f836600461217c565b610e22565b6040516101f392919061256d565b61024f61041936600461259b565b610ef9565b6101e761042c3660046125f5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f610468366004612446565b610ffd565b600061047882611095565b8061048757506104878261073f565b92915050565b60606000805461049c90612623565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890612623565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b600061052a826110ba565b6105905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105b7826109bd565b9050806001600160a01b0316836001600160a01b031614156106255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610587565b336001600160a01b03821614806106415750610641813361042c565b6106b35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610587565b6106bd83836110d7565b505050565b60606106cd82611145565b6106e95760405162461bcd60e51b81526004016105879061265e565b60408051600180825281830190925260009160208083019080368337019050506000848152600d60205260409020549091508160008151811061072e5761072e612689565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061077057506001600160e01b031982166335681b5360e21b145b8061048757506001600160e01b0319821663152a902d60e11b1492915050565b61079b335b82611150565b6107b75760405162461bcd60e51b81526004016105879061269f565b6106bd83838361123a565b6000806107ce84611145565b6107ea5760405162461bcd60e51b81526004016105879061265e565b6107f484846113e5565b915091509250929050565b600061080a83610b8d565b821061086c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610587565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106bd83838360405180602001604052806000815250610d51565b6108b933610795565b61091e5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610587565b6109278161142c565b50565b600061093560085490565b82106109985760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610587565b600882815481106109ab576109ab612689565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610587565b600b546001600160a01b03163314610a5e5760405162461bcd60e51b8152600401610587906126f0565b6127108110610aaf5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c20726f79616c7469657320657863656564732031303025000000006044820152606401610587565b6065835110610b005760405162461bcd60e51b815260206004820152601d60248201527f4d6178206f662031303020746f6b656e73207065722065646974696f6e0000006044820152606401610587565b6001835111610b5f5760405162461bcd60e51b815260206004820152602560248201527f4d757374206265206d6f7265207468616e203120746f6b656e2070657220656460448201526434ba34b7b760d91b6064820152608401610587565b6000610b69610d1e565b9050610b788582868686611435565b610b86600f80546001019055565b5050505050565b60006001600160a01b038216610bf85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610587565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610587906126f0565b610c48600061148a565b565b60606001805461049c90612623565b6001600160a01b038216331415610cb25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610587565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000601154610d2c600f5490565b610d3790600161273b565b610d419190612753565b610d4c90600161273b565b905090565b610d5b3383611150565b610d775760405162461bcd60e51b81526004016105879061269f565b610d83848484846114dc565b50505050565b6060610d9482611145565b610db05760405162461bcd60e51b81526004016105879061265e565b60408051600180825281830190925260009160208083019080368337019050509050610ddb8361150f565b81600081518110610dee57610dee612689565b6001600160a01b039092166020928302919091019091015292915050565b60606104878261155a565b6000610d41600e5490565b606080610e2e83611145565b610e4a5760405162461bcd60e51b81526004016105879061265e565b604080516001808252818301909252600091602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337019050509050610e988561150f565b82600081518110610eab57610eab612689565b6001600160a01b039092166020928302919091018201526000868152600d909152604090205481600081518110610ee457610ee4612689565b60209081029190910101529094909350915050565b600b546001600160a01b03163314610f235760405162461bcd60e51b8152600401610587906126f0565b6127108110610f745760405162461bcd60e51b815260206004820152601c60248201527f546f74616c20726f79616c7469657320657863656564732031303025000000006044820152606401610587565b6000610f7e610e17565b90506011548110610fe25760405162461bcd60e51b815260206004820152602860248201527f4d6178696d756d206e756d626572206f662073696e676c6520746f6b656e7320604482015267195e18d95959195960c21b6064820152608401610587565b610fef85828686866116bc565b610b86600e80546001019055565b600b546001600160a01b031633146110275760405162461bcd60e51b8152600401610587906126f0565b6001600160a01b03811661108c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b6109278161148a565b60006001600160e01b0319821663780e9d6360e01b1480610487575061048782611728565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110c826109bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610487826110ba565b600061115b826110ba565b6111bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610587565b60006111c7836109bd565b9050806001600160a01b0316846001600160a01b031614806112025750836001600160a01b03166111f78461051f565b6001600160a01b0316145b8061123257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661124d826109bd565b6001600160a01b0316146112b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610587565b6001600160a01b0382166113175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b611322838383611778565b61132d6000826110d7565b6001600160a01b0383166000908152600360205260408120805460019290611356908490612772565b90915550506001600160a01b038216600090815260036020526040812080546001929061138490849061273b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008060006113f38561150f565b6000868152600d6020526040902054909150819061271090611416908790612753565b611420919061279f565b92509250509250929050565b61092781611783565b60005b8351811015611482576114708661144f838861273b565b86848151811061146157611461612689565b602002602001015186866116bc565b8061147a816127b3565b915050611438565b505050505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114e784848461123a565b6114f3848484846117c3565b610d835760405162461bcd60e51b8152600401610587906127ce565b6000818152600d6020908152604080832054600c9092528220546001600160a01b031681158061154657506001600160a01b038116155b15611553576112326118d0565b9392505050565b6060611565826110ba565b6115cb5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610587565b6000828152600a6020526040812080546115e490612623565b80601f016020809104026020016040519081016040528092919081815260200182805461161090612623565b801561165d5780601f106116325761010080835404028352916020019161165d565b820191906000526020600020905b81548152906001019060200180831161164057829003601f168201915b50505050509050600061166e6118e4565b9050805160001415611681575092915050565b8151156116b357808260405160200161169b929190612820565b60405160208183030381529060405292505050919050565b611232846118f3565b6116c685856119bd565b6116d084846119db565b80156116e1576116e1848383611a66565b837fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720761170c86610e0c565b6040516117199190612169565b60405180910390a25050505050565b60006001600160e01b031982166380ac58cd60e01b148061175957506001600160e01b03198216635b5e139f60e01b145b8061048757506301ffc9a760e01b6001600160e01b0319831614610487565b6106bd838383611aac565b61178c81611b64565b6000818152600a6020526040902080546117a590612623565b159050610927576000818152600a602052604081206109279161200b565b60006001600160a01b0384163b156118c557604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061180790339089908890889060040161284f565b602060405180830381600087803b15801561182157600080fd5b505af1925050508015611851575060408051601f3d908101601f1916820190925261184e9181019061288c565b60015b6118ab573d80801561187f576040519150601f19603f3d011682016040523d82523d6000602084013e611884565b606091505b5080516118a35760405162461bcd60e51b8152600401610587906127ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611232565b506001949350505050565b6000610d4c600b546001600160a01b031690565b60606010805461049c90612623565b60606118fe826110ba565b6119625760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610587565b600061196c6118e4565b9050600081511161198c5760405180602001604052806000815250611553565b8061199684611c0b565b6040516020016119a7929190612820565b6040516020818303038152906040529392505050565b6119d7828260405180602001604052806000815250611d09565b5050565b6119e4826110ba565b611a475760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610587565b6000828152600a6020908152604090912082516106bd92840190612045565b60008111611a7357600080fd5b6000928352600c6020908152604080852080546001600160a01b0319166001600160a01b039590951694909417909355600d9052912055565b6001600160a01b038316611b0757611b0281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b2a565b816001600160a01b0316836001600160a01b031614611b2a57611b2a8382611d3c565b6001600160a01b038216611b41576106bd81611dd9565b826001600160a01b0316826001600160a01b0316146106bd576106bd8282611e88565b6000611b6f826109bd565b9050611b7d81600084611778565b611b886000836110d7565b6001600160a01b0381166000908152600360205260408120805460019290611bb1908490612772565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611c2f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c595780611c43816127b3565b9150611c529050600a8361279f565b9150611c33565b60008167ffffffffffffffff811115611c7457611c74612287565b6040519080825280601f01601f191660200182016040528015611c9e576020820181803683370190505b5090505b841561123257611cb3600183612772565b9150611cc0600a866128a9565b611ccb90603061273b565b60f81b818381518110611ce057611ce0612689565b60200101906001600160f81b031916908160001a905350611d02600a8661279f565b9450611ca2565b611d138383611ecc565b611d2060008484846117c3565b6106bd5760405162461bcd60e51b8152600401610587906127ce565b60006001611d4984610b8d565b611d539190612772565b600083815260076020526040902054909150808214611da6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611deb90600190612772565b60008381526009602052604081205460088054939450909284908110611e1357611e13612689565b906000526020600020015490508060088381548110611e3457611e34612689565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e6c57611e6c6128bd565b6001900381819060005260206000200160009055905550505050565b6000611e9383610b8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610587565b611f2b816110ba565b15611f785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610587565b611f8460008383611778565b6001600160a01b0382166000908152600360205260408120805460019290611fad90849061273b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805461201790612623565b6000825580601f10612027575050565b601f01602090049060005260206000209081019061092791906120c9565b82805461205190612623565b90600052602060002090601f01602090048101928261207357600085556120b9565b82601f1061208c57805160ff19168380011785556120b9565b828001600101855582156120b9579182015b828111156120b957825182559160200191906001019061209e565b506120c59291506120c9565b5090565b5b808211156120c557600081556001016120ca565b6001600160e01b03198116811461092757600080fd5b60006020828403121561210657600080fd5b8135611553816120de565b60005b8381101561212c578181015183820152602001612114565b83811115610d835750506000910152565b60008151808452612155816020860160208601612111565b601f01601f19169290920160200192915050565b602081526000611553602083018461213d565b60006020828403121561218e57600080fd5b5035919050565b6001600160a01b038116811461092757600080fd5b600080604083850312156121bd57600080fd5b82356121c881612195565b946020939093013593505050565b600081518084526020808501945080840160005b83811015612206578151875295820195908201906001016121ea565b509495945050505050565b60208152600061155360208301846121d6565b60008060006060848603121561223957600080fd5b833561224481612195565b9250602084013561225481612195565b929592945050506040919091013590565b6000806040838503121561227857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156122c6576122c6612287565b604052919050565b600067ffffffffffffffff8311156122e8576122e8612287565b6122fb601f8401601f191660200161229d565b905082815283838301111561230f57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261233757600080fd5b611553838335602085016122ce565b803561235181612195565b919050565b6000806000806080858703121561236c57600080fd5b843561237781612195565b935060208581013567ffffffffffffffff8082111561239557600080fd5b818801915088601f8301126123a957600080fd5b8135818111156123bb576123bb612287565b8060051b6123ca85820161229d565b918252838101850191858101908c8411156123e457600080fd5b86860192505b83831015612420578235858111156124025760008081fd5b6124108e89838a0101612326565b83525091860191908601906123ea565b8099505050505050505061243660408601612346565b9396929550929360600135925050565b60006020828403121561245857600080fd5b813561155381612195565b6000806040838503121561247657600080fd5b823561248181612195565b91506020830135801515811461249657600080fd5b809150509250929050565b600080600080608085870312156124b757600080fd5b84356124c281612195565b935060208501356124d281612195565b925060408501359150606085013567ffffffffffffffff8111156124f557600080fd5b8501601f8101871361250657600080fd5b612515878235602084016122ce565b91505092959194509250565b600081518084526020808501945080840160005b838110156122065781516001600160a01b031687529582019590820190600101612535565b6020815260006115536020830184612521565b6040815260006125806040830185612521565b828103602084015261259281856121d6565b95945050505050565b600080600080608085870312156125b157600080fd5b84356125bc81612195565b9350602085013567ffffffffffffffff8111156125d857600080fd5b6125e487828801612326565b935050604085013561243681612195565b6000806040838503121561260857600080fd5b823561261381612195565b9150602083013561249681612195565b600181811c9082168061263757607f821691505b6020821081141561265857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561274e5761274e612725565b500190565b600081600019048311821515161561276d5761276d612725565b500290565b60008282101561278457612784612725565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826127ae576127ae612789565b500490565b60006000198214156127c7576127c7612725565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612832818460208801612111565b835190830190612846818360208801612111565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128829083018461213d565b9695505050505050565b60006020828403121561289e57600080fd5b8151611553816120de565b6000826128b8576128b8612789565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ad6508f4353c059d0de54a356c6880215bc0458c905b92701e77cc9db5cd13e464736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c6565204d756c6c6963616e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d554c0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c8063646d11c811610104578063b88d4fde116100a2578063d5a06d4c11610071578063d5a06d4c146103ea578063da14cbbc1461040b578063e985e9c51461041e578063f2fde38b1461045a57600080fd5b8063b88d4fde1461039c578063b9c4d9fb146103af578063c87b56dd146103cf578063caa0f92a146103e257600080fd5b80638da5cb5b116100de5780638da5cb5b1461036857806395d89b4114610379578063a22cb46514610381578063a66b7ec91461039457600080fd5b8063646d11c81461033a57806370a082311461034d578063715018a61461036057600080fd5b806323b872dd1161017157806342842e0e1161014b57806342842e0e146102ee57806342966c68146103015780634f6ccce7146103145780636352211e1461032757600080fd5b806323b872dd146102965780632a55205a146102a95780632f745c59146102db57600080fd5b8063095ea7b3116101ad578063095ea7b31461023c5780630ebd4c7f14610251578063152fcb2e1461027157806318160ddd1461028457600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e23660046120f4565b61046d565b60405190151581526020015b60405180910390f35b61020461048d565b6040516101f39190612169565b61022461021f36600461217c565b61051f565b6040516001600160a01b0390911681526020016101f3565b61024f61024a3660046121aa565b6105ac565b005b61026461025f36600461217c565b6106c2565b6040516101f39190612211565b6101e761027f3660046120f4565b61073f565b6008545b6040519081526020016101f3565b61024f6102a4366004612224565b610790565b6102bc6102b7366004612265565b6107c2565b604080516001600160a01b0390931683526020830191909152016101f3565b6102886102e93660046121aa565b6107ff565b61024f6102fc366004612224565b610895565b61024f61030f36600461217c565b6108b0565b61028861032236600461217c565b61092a565b61022461033536600461217c565b6109bd565b61024f610348366004612356565b610a34565b61028861035b366004612446565b610b8d565b61024f610c14565b600b546001600160a01b0316610224565b610204610c4a565b61024f61038f366004612463565b610c59565b610288610d1e565b61024f6103aa3660046124a1565b610d51565b6103c26103bd36600461217c565b610d89565b6040516101f3919061255a565b6102046103dd36600461217c565b610e0c565b610288610e17565b6103fd6103f836600461217c565b610e22565b6040516101f392919061256d565b61024f61041936600461259b565b610ef9565b6101e761042c3660046125f5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61024f610468366004612446565b610ffd565b600061047882611095565b8061048757506104878261073f565b92915050565b60606000805461049c90612623565b80601f01602080910402602001604051908101604052809291908181526020018280546104c890612623565b80156105155780601f106104ea57610100808354040283529160200191610515565b820191906000526020600020905b8154815290600101906020018083116104f857829003601f168201915b5050505050905090565b600061052a826110ba565b6105905760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105b7826109bd565b9050806001600160a01b0316836001600160a01b031614156106255760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610587565b336001600160a01b03821614806106415750610641813361042c565b6106b35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610587565b6106bd83836110d7565b505050565b60606106cd82611145565b6106e95760405162461bcd60e51b81526004016105879061265e565b60408051600180825281830190925260009160208083019080368337019050506000848152600d60205260409020549091508160008151811061072e5761072e612689565b602090810291909101015292915050565b60006001600160e01b03198216632dde656160e21b148061077057506001600160e01b031982166335681b5360e21b145b8061048757506001600160e01b0319821663152a902d60e11b1492915050565b61079b335b82611150565b6107b75760405162461bcd60e51b81526004016105879061269f565b6106bd83838361123a565b6000806107ce84611145565b6107ea5760405162461bcd60e51b81526004016105879061265e565b6107f484846113e5565b915091509250929050565b600061080a83610b8d565b821061086c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610587565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6106bd83838360405180602001604052806000815250610d51565b6108b933610795565b61091e5760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610587565b6109278161142c565b50565b600061093560085490565b82106109985760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610587565b600882815481106109ab576109ab612689565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806104875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610587565b600b546001600160a01b03163314610a5e5760405162461bcd60e51b8152600401610587906126f0565b6127108110610aaf5760405162461bcd60e51b815260206004820152601c60248201527f546f74616c20726f79616c7469657320657863656564732031303025000000006044820152606401610587565b6065835110610b005760405162461bcd60e51b815260206004820152601d60248201527f4d6178206f662031303020746f6b656e73207065722065646974696f6e0000006044820152606401610587565b6001835111610b5f5760405162461bcd60e51b815260206004820152602560248201527f4d757374206265206d6f7265207468616e203120746f6b656e2070657220656460448201526434ba34b7b760d91b6064820152608401610587565b6000610b69610d1e565b9050610b788582868686611435565b610b86600f80546001019055565b5050505050565b60006001600160a01b038216610bf85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610587565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610c3e5760405162461bcd60e51b8152600401610587906126f0565b610c48600061148a565b565b60606001805461049c90612623565b6001600160a01b038216331415610cb25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610587565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000601154610d2c600f5490565b610d3790600161273b565b610d419190612753565b610d4c90600161273b565b905090565b610d5b3383611150565b610d775760405162461bcd60e51b81526004016105879061269f565b610d83848484846114dc565b50505050565b6060610d9482611145565b610db05760405162461bcd60e51b81526004016105879061265e565b60408051600180825281830190925260009160208083019080368337019050509050610ddb8361150f565b81600081518110610dee57610dee612689565b6001600160a01b039092166020928302919091019091015292915050565b60606104878261155a565b6000610d41600e5490565b606080610e2e83611145565b610e4a5760405162461bcd60e51b81526004016105879061265e565b604080516001808252818301909252600091602080830190803683375050604080516001808252818301909252929350600092915060208083019080368337019050509050610e988561150f565b82600081518110610eab57610eab612689565b6001600160a01b039092166020928302919091018201526000868152600d909152604090205481600081518110610ee457610ee4612689565b60209081029190910101529094909350915050565b600b546001600160a01b03163314610f235760405162461bcd60e51b8152600401610587906126f0565b6127108110610f745760405162461bcd60e51b815260206004820152601c60248201527f546f74616c20726f79616c7469657320657863656564732031303025000000006044820152606401610587565b6000610f7e610e17565b90506011548110610fe25760405162461bcd60e51b815260206004820152602860248201527f4d6178696d756d206e756d626572206f662073696e676c6520746f6b656e7320604482015267195e18d95959195960c21b6064820152608401610587565b610fef85828686866116bc565b610b86600e80546001019055565b600b546001600160a01b031633146110275760405162461bcd60e51b8152600401610587906126f0565b6001600160a01b03811661108c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b6109278161148a565b60006001600160e01b0319821663780e9d6360e01b1480610487575061048782611728565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061110c826109bd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610487826110ba565b600061115b826110ba565b6111bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610587565b60006111c7836109bd565b9050806001600160a01b0316846001600160a01b031614806112025750836001600160a01b03166111f78461051f565b6001600160a01b0316145b8061123257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661124d826109bd565b6001600160a01b0316146112b55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610587565b6001600160a01b0382166113175760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b611322838383611778565b61132d6000826110d7565b6001600160a01b0383166000908152600360205260408120805460019290611356908490612772565b90915550506001600160a01b038216600090815260036020526040812080546001929061138490849061273b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008060006113f38561150f565b6000868152600d6020526040902054909150819061271090611416908790612753565b611420919061279f565b92509250509250929050565b61092781611783565b60005b8351811015611482576114708661144f838861273b565b86848151811061146157611461612689565b602002602001015186866116bc565b8061147a816127b3565b915050611438565b505050505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114e784848461123a565b6114f3848484846117c3565b610d835760405162461bcd60e51b8152600401610587906127ce565b6000818152600d6020908152604080832054600c9092528220546001600160a01b031681158061154657506001600160a01b038116155b15611553576112326118d0565b9392505050565b6060611565826110ba565b6115cb5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610587565b6000828152600a6020526040812080546115e490612623565b80601f016020809104026020016040519081016040528092919081815260200182805461161090612623565b801561165d5780601f106116325761010080835404028352916020019161165d565b820191906000526020600020905b81548152906001019060200180831161164057829003601f168201915b50505050509050600061166e6118e4565b9050805160001415611681575092915050565b8151156116b357808260405160200161169b929190612820565b60405160208183030381529060405292505050919050565b611232846118f3565b6116c685856119bd565b6116d084846119db565b80156116e1576116e1848383611a66565b837fa109ba539900bf1b633f956d63c96fc89b814c7287f7aa50a9216d0b5565720761170c86610e0c565b6040516117199190612169565b60405180910390a25050505050565b60006001600160e01b031982166380ac58cd60e01b148061175957506001600160e01b03198216635b5e139f60e01b145b8061048757506301ffc9a760e01b6001600160e01b0319831614610487565b6106bd838383611aac565b61178c81611b64565b6000818152600a6020526040902080546117a590612623565b159050610927576000818152600a602052604081206109279161200b565b60006001600160a01b0384163b156118c557604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061180790339089908890889060040161284f565b602060405180830381600087803b15801561182157600080fd5b505af1925050508015611851575060408051601f3d908101601f1916820190925261184e9181019061288c565b60015b6118ab573d80801561187f576040519150601f19603f3d011682016040523d82523d6000602084013e611884565b606091505b5080516118a35760405162461bcd60e51b8152600401610587906127ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611232565b506001949350505050565b6000610d4c600b546001600160a01b031690565b60606010805461049c90612623565b60606118fe826110ba565b6119625760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610587565b600061196c6118e4565b9050600081511161198c5760405180602001604052806000815250611553565b8061199684611c0b565b6040516020016119a7929190612820565b6040516020818303038152906040529392505050565b6119d7828260405180602001604052806000815250611d09565b5050565b6119e4826110ba565b611a475760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610587565b6000828152600a6020908152604090912082516106bd92840190612045565b60008111611a7357600080fd5b6000928352600c6020908152604080852080546001600160a01b0319166001600160a01b039590951694909417909355600d9052912055565b6001600160a01b038316611b0757611b0281600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b2a565b816001600160a01b0316836001600160a01b031614611b2a57611b2a8382611d3c565b6001600160a01b038216611b41576106bd81611dd9565b826001600160a01b0316826001600160a01b0316146106bd576106bd8282611e88565b6000611b6f826109bd565b9050611b7d81600084611778565b611b886000836110d7565b6001600160a01b0381166000908152600360205260408120805460019290611bb1908490612772565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611c2f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c595780611c43816127b3565b9150611c529050600a8361279f565b9150611c33565b60008167ffffffffffffffff811115611c7457611c74612287565b6040519080825280601f01601f191660200182016040528015611c9e576020820181803683370190505b5090505b841561123257611cb3600183612772565b9150611cc0600a866128a9565b611ccb90603061273b565b60f81b818381518110611ce057611ce0612689565b60200101906001600160f81b031916908160001a905350611d02600a8661279f565b9450611ca2565b611d138383611ecc565b611d2060008484846117c3565b6106bd5760405162461bcd60e51b8152600401610587906127ce565b60006001611d4984610b8d565b611d539190612772565b600083815260076020526040902054909150808214611da6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611deb90600190612772565b60008381526009602052604081205460088054939450909284908110611e1357611e13612689565b906000526020600020015490508060088381548110611e3457611e34612689565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e6c57611e6c6128bd565b6001900381819060005260206000200160009055905550505050565b6000611e9383610b8d565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611f225760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610587565b611f2b816110ba565b15611f785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610587565b611f8460008383611778565b6001600160a01b0382166000908152600360205260408120805460019290611fad90849061273b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b50805461201790612623565b6000825580601f10612027575050565b601f01602090049060005260206000209081019061092791906120c9565b82805461205190612623565b90600052602060002090601f01602090048101928261207357600085556120b9565b82601f1061208c57805160ff19168380011785556120b9565b828001600101855582156120b9579182015b828111156120b957825182559160200191906001019061209e565b506120c59291506120c9565b5090565b5b808211156120c557600081556001016120ca565b6001600160e01b03198116811461092757600080fd5b60006020828403121561210657600080fd5b8135611553816120de565b60005b8381101561212c578181015183820152602001612114565b83811115610d835750506000910152565b60008151808452612155816020860160208601612111565b601f01601f19169290920160200192915050565b602081526000611553602083018461213d565b60006020828403121561218e57600080fd5b5035919050565b6001600160a01b038116811461092757600080fd5b600080604083850312156121bd57600080fd5b82356121c881612195565b946020939093013593505050565b600081518084526020808501945080840160005b83811015612206578151875295820195908201906001016121ea565b509495945050505050565b60208152600061155360208301846121d6565b60008060006060848603121561223957600080fd5b833561224481612195565b9250602084013561225481612195565b929592945050506040919091013590565b6000806040838503121561227857600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156122c6576122c6612287565b604052919050565b600067ffffffffffffffff8311156122e8576122e8612287565b6122fb601f8401601f191660200161229d565b905082815283838301111561230f57600080fd5b828260208301376000602084830101529392505050565b600082601f83011261233757600080fd5b611553838335602085016122ce565b803561235181612195565b919050565b6000806000806080858703121561236c57600080fd5b843561237781612195565b935060208581013567ffffffffffffffff8082111561239557600080fd5b818801915088601f8301126123a957600080fd5b8135818111156123bb576123bb612287565b8060051b6123ca85820161229d565b918252838101850191858101908c8411156123e457600080fd5b86860192505b83831015612420578235858111156124025760008081fd5b6124108e89838a0101612326565b83525091860191908601906123ea565b8099505050505050505061243660408601612346565b9396929550929360600135925050565b60006020828403121561245857600080fd5b813561155381612195565b6000806040838503121561247657600080fd5b823561248181612195565b91506020830135801515811461249657600080fd5b809150509250929050565b600080600080608085870312156124b757600080fd5b84356124c281612195565b935060208501356124d281612195565b925060408501359150606085013567ffffffffffffffff8111156124f557600080fd5b8501601f8101871361250657600080fd5b612515878235602084016122ce565b91505092959194509250565b600081518084526020808501945080840160005b838110156122065781516001600160a01b031687529582019590820190600101612535565b6020815260006115536020830184612521565b6040815260006125806040830185612521565b828103602084015261259281856121d6565b95945050505050565b600080600080608085870312156125b157600080fd5b84356125bc81612195565b9350602085013567ffffffffffffffff8111156125d857600080fd5b6125e487828801612326565b935050604085013561243681612195565b6000806040838503121561260857600080fd5b823561261381612195565b9150602083013561249681612195565b600181811c9082168061263757607f821691505b6020821081141561265857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561274e5761274e612725565b500190565b600081600019048311821515161561276d5761276d612725565b500290565b60008282101561278457612784612725565b500390565b634e487b7160e01b600052601260045260246000fd5b6000826127ae576127ae612789565b500490565b60006000198214156127c7576127c7612725565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351612832818460208801612111565b835190830190612846818360208801612111565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128829083018461213d565b9695505050505050565b60006020828403121561289e57600080fd5b8151611553816120de565b6000826128b8576128b8612789565b500690565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220ad6508f4353c059d0de54a356c6880215bc0458c905b92701e77cc9db5cd13e464736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000007697066733a2f2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c4c6565204d756c6c6963616e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034d554c0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://
Arg [1] : contractName (string): Lee Mullican
Arg [2] : tokenSymbol (string): MUL

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [4] : 697066733a2f2f00000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 4c6565204d756c6c6963616e0000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4d554c0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

517:4155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4398:272;;;;;;:::i;:::-;;:::i;:::-;;;565:14:17;;558:22;540:41;;528:2;513:18;4398:272:0;;;;;;;;2414:98:3;;;:::i;:::-;;;;;;;:::i;3925:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:17;;;1674:51;;1662:2;1647:18;3925:217:3;1528:203:17;3463:401:3;;;;;;:::i;:::-;;:::i;:::-;;2477:298:1;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4217:320::-;;;;;;:::i;:::-;;:::i;1535:111:7:-;1622:10;:17;1535:111;;;3044:25:17;;;3032:2;3017:18;1535:111:7;2898:177:17;4789:330:3;;;;;;:::i;:::-;;:::i;2868:258:1:-;;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3986:32:17;;;3968:51;;4050:2;4035:18;;4028:34;;;;3941:18;2868:258:1;3794:274:17;1211:253:7;;;;;;:::i;:::-;;:::i;5185:179:3:-;;;;;;:::i;:::-;;:::i;451:241:6:-;;;;;;:::i;:::-;;:::i;1718:230:7:-;;;;;;:::i;:::-;;:::i;2117:235:3:-;;;;;;:::i;:::-;;:::i;1849:552:0:-;;;;;;:::i;:::-;;:::i;1855:205:3:-;;;;;;:::i;:::-;;:::i;1605:92:2:-;;;:::i;973:85::-;1045:6;;-1:-1:-1;;;;;1045:6:2;973:85;;2576:102:3;;;:::i;4209:290::-;;;;;;:::i;:::-;;:::i;2522:134:0:-;;;:::i;5430:320:3:-;;;;;;:::i;:::-;;:::i;2119:352:1:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3845:189:0:-;;;;;;:::i;:::-;;:::i;2407:109::-;;;:::i;1622:452:1:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;1344:499:0:-;;;;;;:::i;:::-;;:::i;4565:162:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4685:25:3;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4565:162;1846:189:2;;;;;;:::i;:::-;;:::i;4398:272:0:-;4533:4;4572:36;4596:11;4572:23;:36::i;:::-;:91;;;;4624:39;4651:11;4624:26;:39::i;:::-;4553:110;4398:272;-1:-1:-1;;4398:272:0:o;2414:98:3:-;2468:13;2500:5;2493:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2414:98;:::o;3925:217::-;4001:7;4028:16;4036:7;4028;:16::i;:::-;4020:73;;;;-1:-1:-1;;;4020:73:3;;11128:2:17;4020:73:3;;;11110:21:17;11167:2;11147:18;;;11140:30;11206:34;11186:18;;;11179:62;-1:-1:-1;;;11257:18:17;;;11250:42;11309:19;;4020:73:3;;;;;;;;;-1:-1:-1;4111:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4111:24:3;;3925:217::o;3463:401::-;3543:13;3559:23;3574:7;3559:14;:23::i;:::-;3543:39;;3606:5;-1:-1:-1;;;;;3600:11:3;:2;-1:-1:-1;;;;;3600:11:3;;;3592:57;;;;-1:-1:-1;;;3592:57:3;;11541:2:17;3592:57:3;;;11523:21:17;11580:2;11560:18;;;11553:30;11619:34;11599:18;;;11592:62;-1:-1:-1;;;11670:18:17;;;11663:31;11711:19;;3592:57:3;11339:397:17;3592:57:3;666:10:12;-1:-1:-1;;;;;3681:21:3;;;;:62;;-1:-1:-1;3706:37:3;3723:5;666:10:12;4565:162:3;:::i;3706:37::-;3660:165;;;;-1:-1:-1;;;3660:165:3;;11943:2:17;3660:165:3;;;11925:21:17;11982:2;11962:18;;;11955:30;12021:34;12001:18;;;11994:62;12092:26;12072:18;;;12065:54;12136:19;;3660:165:3;11741:420:17;3660:165:3;3836:21;3845:2;3849:7;3836:8;:21::i;:::-;3533:331;3463:401;;:::o;2477:298:1:-;2576:16;2616:25;2633:7;2616:16;:25::i;:::-;2608:55;;;;-1:-1:-1;;;2608:55:1;;;;;;;:::i;:::-;2697:16;;;2711:1;2697:16;;;;;;;;;2674:20;;2697:16;;;;;;;;;;;-1:-1:-1;;3468:7:1;3494:25;;;:16;:25;;;;;;2674:39;;-1:-1:-1;2723:3:1;2727:1;2723:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;2765:3;2477:298;-1:-1:-1;;2477:298:1:o;4217:320::-;4318:4;-1:-1:-1;;;;;;4357:46:1;;-1:-1:-1;;;4357:46:1;;:111;;-1:-1:-1;;;;;;;4419:49:1;;-1:-1:-1;;;4419:49:1;4357:111;:173;;;-1:-1:-1;;;;;;;4484:46:1;;-1:-1:-1;;;4484:46:1;4338:192;4217:320;-1:-1:-1;;4217:320:1:o;4789:330:3:-;4978:41;666:10:12;4997:12:3;5011:7;4978:18;:41::i;:::-;4970:103;;;;-1:-1:-1;;;4970:103:3;;;;;;;:::i;:::-;5084:28;5094:4;5100:2;5104:7;5084:9;:28::i;2868:258:1:-;2984:7;2993;3024:25;3041:7;3024:16;:25::i;:::-;3016:55;;;;-1:-1:-1;;;3016:55:1;;;;;;;:::i;:::-;3088:31;3104:7;3113:5;3088:15;:31::i;:::-;3081:38;;;;2868:258;;;;;:::o;1211:253:7:-;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;-1:-1:-1;;;1327:87:7;;13264:2:17;1327:87:7;;;13246:21:17;13303:2;13283:18;;;13276:30;13342:34;13322:18;;;13315:62;-1:-1:-1;;;13393:18:17;;;13386:41;13444:19;;1327:87:7;13062:407:17;1327:87:7;-1:-1:-1;;;;;;1431:19:7;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1211:253::o;5185:179:3:-;5318:39;5335:4;5341:2;5345:7;5318:39;;;;;;;;;;;;:16;:39::i;451:241:6:-;567:41;666:10:12;586:12:6;587:96:12;567:41:6;559:102;;;;-1:-1:-1;;;559:102:6;;13676:2:17;559:102:6;;;13658:21:17;13715:2;13695:18;;;13688:30;13754:34;13734:18;;;13727:62;-1:-1:-1;;;13805:18:17;;;13798:46;13861:19;;559:102:6;13474:412:17;559:102:6;671:14;677:7;671:5;:14::i;:::-;451:241;:::o;1718:230:7:-;1793:7;1828:30;1622:10;:17;;1535:111;1828:30;1820:5;:38;1812:95;;;;-1:-1:-1;;;1812:95:7;;14093:2:17;1812:95:7;;;14075:21:17;14132:2;14112:18;;;14105:30;14171:34;14151:18;;;14144:62;-1:-1:-1;;;14222:18:17;;;14215:42;14274:19;;1812:95:7;13891:408:17;1812:95:7;1924:10;1935:5;1924:17;;;;;;;;:::i;:::-;;;;;;;;;1917:24;;1718:230;;;:::o;2117:235:3:-;2189:7;2224:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2224:16:3;2258:19;2250:73;;;;-1:-1:-1;;;2250:73:3;;14506:2:17;2250:73:3;;;14488:21:17;14545:2;14525:18;;;14518:30;14584:34;14564:18;;;14557:62;-1:-1:-1;;;14635:18:17;;;14628:39;14684:19;;2250:73:3;14304:405:17;1849:552:0;1045:6:2;;-1:-1:-1;;;;;1045:6:2;666:10:12;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;2045:5:0::1;2031:11;:19;2023:60;;;::::0;-1:-1:-1;;;2023:60:0;;15277:2:17;2023:60:0::1;::::0;::::1;15259:21:17::0;15316:2;15296:18;;;15289:30;15355;15335:18;;;15328:58;15403:18;;2023:60:0::1;15075:352:17::0;2023:60:0::1;2121:3;2101:10;:17;:23;2093:65;;;::::0;-1:-1:-1;;;2093:65:0;;15634:2:17;2093:65:0::1;::::0;::::1;15616:21:17::0;15673:2;15653:18;;;15646:30;15712:31;15692:18;;;15685:59;15761:18;;2093:65:0::1;15432:353:17::0;2093:65:0::1;2196:1;2176:10;:17;:21;2168:71;;;::::0;-1:-1:-1;;;2168:71:0;;15992:2:17;2168:71:0::1;::::0;::::1;15974:21:17::0;16031:2;16011:18;;;16004:30;16070:34;16050:18;;;16043:62;-1:-1:-1;;;16121:18:17;;;16114:35;16166:19;;2168:71:0::1;15790:401:17::0;2168:71:0::1;2250:15;2268:18;:16;:18::i;:::-;2250:36;;2296:61;2310:2;2314:7;2323:10;2335:8;2345:11;2296:13;:61::i;:::-;2367:27;:15;978:19:13::0;;996:1;978:19;;;891:123;2367:27:0::1;2013:388;1849:552:::0;;;;:::o;1855:205:3:-;1927:7;-1:-1:-1;;;;;1954:19:3;;1946:74;;;;-1:-1:-1;;;1946:74:3;;16398:2:17;1946:74:3;;;16380:21:17;16437:2;16417:18;;;16410:30;16476:34;16456:18;;;16449:62;-1:-1:-1;;;16527:18:17;;;16520:40;16577:19;;1946:74:3;16196:406:17;1946:74:3;-1:-1:-1;;;;;;2037:16:3;;;;;:9;:16;;;;;;;1855:205::o;1605:92:2:-;1045:6;;-1:-1:-1;;;;;1045:6:2;666:10:12;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;1669:21:::1;1687:1;1669:9;:21::i;:::-;1605:92::o:0;2576:102:3:-;2632:13;2664:7;2657:14;;;;;:::i;4209:290::-;-1:-1:-1;;;;;4311:24:3;;666:10:12;4311:24:3;;4303:62;;;;-1:-1:-1;;;4303:62:3;;16809:2:17;4303:62:3;;;16791:21:17;16848:2;16828:18;;;16821:30;16887:27;16867:18;;;16860:55;16932:18;;4303:62:3;16607:349:17;4303:62:3;666:10:12;4376:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4376:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4376:53:3;;;;;;;;;;4444:48;;540:41:17;;;4376:42:3;;666:10:12;4444:48:3;;513:18:17;4444:48:3;;;;;;;4209:290;;:::o;2522:134:0:-;2571:7;2632:12;;2599:25;:15;864:14:13;;773:112;2599:25:0;:29;;2627:1;2599:29;:::i;:::-;2598:46;;;;:::i;:::-;2597:52;;2648:1;2597:52;:::i;:::-;2590:59;;2522:134;:::o;5430:320:3:-;5599:41;666:10:12;5632:7:3;5599:18;:41::i;:::-;5591:103;;;;-1:-1:-1;;;5591:103:3;;;;;;;:::i;:::-;5704:39;5718:4;5724:2;5728:7;5737:5;5704:13;:39::i;:::-;5430:320;;;;:::o;2119:352:1:-;2225:24;2273:25;2290:7;2273:16;:25::i;:::-;2265:55;;;;-1:-1:-1;;;2265:55:1;;;;;;;:::i;:::-;2368:24;;;2390:1;2368:24;;;;;;;;;2331:34;;2368:24;;;;;;;;;;;-1:-1:-1;2368:24:1;2331:61;;2417:21;2430:7;2417:12;:21::i;:::-;2402:9;2412:1;2402:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2402:36:1;;;:12;;;;;;;;;;;:36;2455:9;2119:352;-1:-1:-1;;2119:352:1:o;3845:189:0:-;3968:13;4004:23;4019:7;4004:14;:23::i;2407:109::-;2454:7;2480:25;:15;864:14:13;;773:112;1622:452:1;1719:24;1745:16;1785:25;1802:7;1785:16;:25::i;:::-;1777:55;;;;-1:-1:-1;;;1777:55:1;;;;;;;:::i;:::-;1880:24;;;1902:1;1880:24;;;;;;;;;1843:34;;1880:24;;;;;;;;;-1:-1:-1;;1937:16:1;;;1951:1;1937:16;;;;;;;;;1843:61;;-1:-1:-1;1914:20:1;;1937:16;-1:-1:-1;1937:16:1;;;;;;;;;;;-1:-1:-1;1937:16:1;1914:39;;1978:21;1991:7;1978:12;:21::i;:::-;1963:9;1973:1;1963:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1963:36:1;;;:12;;;;;;;;;;:36;3468:7;3494:25;;;:16;:25;;;;;;;2009:3;2013:1;2009:6;;;;;;;;:::i;:::-;;;;;;;;;;:25;2052:9;;2063:3;;-1:-1:-1;1622:452:1;-1:-1:-1;;1622:452:1:o;1344:499:0:-;1045:6:2;;-1:-1:-1;;;;;1045:6:2;666:10:12;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;1529:5:0::1;1515:11;:19;1507:60;;;::::0;-1:-1:-1;;;1507:60:0;;15277:2:17;1507:60:0::1;::::0;::::1;15259:21:17::0;15316:2;15296:18;;;15289:30;15355;15335:18;;;15328:58;15403:18;;1507:60:0::1;15075:352:17::0;1507:60:0::1;1577:15;1595:16;:14;:16::i;:::-;1577:34;;1652:12;;1642:7;:22;1621:109;;;::::0;-1:-1:-1;;;1621:109:0;;17601:2:17;1621:109:0::1;::::0;::::1;17583:21:17::0;17640:2;17620:18;;;17613:30;17679:34;17659:18;;;17652:62;-1:-1:-1;;;17730:18:17;;;17723:38;17778:19;;1621:109:0::1;17399:404:17::0;1621:109:0::1;1741:58;1753:2;1757:7;1766:9;1777:8;1787:11;1741;:58::i;:::-;1809:27;:15;978:19:13::0;;996:1;978:19;;;891:123;1846:189:2;1045:6;;-1:-1:-1;;;;;1045:6:2;666:10:12;1185:23:2;1177:68;;;;-1:-1:-1;;;1177:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;1934:22:2;::::1;1926:73;;;::::0;-1:-1:-1;;;1926:73:2;;18010:2:17;1926:73:2::1;::::0;::::1;17992:21:17::0;18049:2;18029:18;;;18022:30;18088:34;18068:18;;;18061:62;-1:-1:-1;;;18139:18:17;;;18132:36;18185:19;;1926:73:2::1;17808:402:17::0;1926:73:2::1;2009:19;2019:8;2009:9;:19::i;910:222:7:-:0;1012:4;-1:-1:-1;;;;;;1035:50:7;;-1:-1:-1;;;1035:50:7;;:90;;;1089:36;1113:11;1089:23;:36::i;7222:125:3:-;7287:4;7310:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7310:16:3;:30;;;7222:125::o;11073:171::-;11147:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11147:29:3;-1:-1:-1;;;;;11147:29:3;;;;;;;;:24;;11200:23;11147:24;11200:14;:23::i;:::-;-1:-1:-1;;;;;11191:46:3;;;;;;;;;;;11073:171;;:::o;4040:190:0:-;4174:4;4201:22;4215:7;4201:13;:22::i;7505:344:3:-;7598:4;7622:16;7630:7;7622;:16::i;:::-;7614:73;;;;-1:-1:-1;;;7614:73:3;;18417:2:17;7614:73:3;;;18399:21:17;18456:2;18436:18;;;18429:30;18495:34;18475:18;;;18468:62;-1:-1:-1;;;18546:18:17;;;18539:42;18598:19;;7614:73:3;18215:408:17;7614:73:3;7697:13;7713:23;7728:7;7713:14;:23::i;:::-;7697:39;;7765:5;-1:-1:-1;;;;;7754:16:3;:7;-1:-1:-1;;;;;7754:16:3;;:51;;;;7798:7;-1:-1:-1;;;;;7774:31:3;:20;7786:7;7774:11;:20::i;:::-;-1:-1:-1;;;;;7774:31:3;;7754:51;:87;;;-1:-1:-1;;;;;;4685:25:3;;;4662:4;4685:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7809:32;7746:96;7505:344;-1:-1:-1;;;;7505:344:3:o;10402:560::-;10556:4;-1:-1:-1;;;;;10529:31:3;:23;10544:7;10529:14;:23::i;:::-;-1:-1:-1;;;;;10529:31:3;;10521:85;;;;-1:-1:-1;;;10521:85:3;;18830:2:17;10521:85:3;;;18812:21:17;18869:2;18849:18;;;18842:30;18908:34;18888:18;;;18881:62;-1:-1:-1;;;18959:18:17;;;18952:39;19008:19;;10521:85:3;18628:405:17;10521:85:3;-1:-1:-1;;;;;10624:16:3;;10616:65;;;;-1:-1:-1;;;10616:65:3;;19240:2:17;10616:65:3;;;19222:21:17;19279:2;19259:18;;;19252:30;19318:34;19298:18;;;19291:62;-1:-1:-1;;;19369:18:17;;;19362:34;19413:19;;10616:65:3;19038:400:17;10616:65:3;10692:39;10713:4;10719:2;10723:7;10692:20;:39::i;:::-;10793:29;10810:1;10814:7;10793:8;:29::i;:::-;-1:-1:-1;;;;;10833:15:3;;;;;;:9;:15;;;;;:20;;10852:1;;10833:15;:20;;10852:1;;10833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10863:13:3;;;;;;:9;:13;;;;;:18;;10880:1;;10863:13;:18;;10880:1;;10863:18;:::i;:::-;;;;-1:-1:-1;;10891:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10891:21:3;-1:-1:-1;;;;;10891:21:3;;;;;;;;;10928:27;;10891:16;;10928:27;;;;;;;10402:560;;;:::o;3132:273:1:-;3236:16;3254:14;3284:17;3304:21;3317:7;3304:12;:21::i;:::-;3355:25;;;;:16;:25;;;;;;3284:41;;-1:-1:-1;3284:41:1;;3392:5;;3355:33;;3383:5;;3355:33;:::i;:::-;3354:43;;;;:::i;:::-;3335:63;;;;;3132:273;;;;;:::o;3706:133:0:-;3812:20;3824:7;3812:11;:20::i;2662:337::-;2859:9;2854:139;2878:10;:17;2874:1;:21;2854:139;;;2916:66;2928:2;2932:11;2942:1;2932:7;:11;:::i;:::-;2945:10;2956:1;2945:13;;;;;;;;:::i;:::-;;;;;;;2960:8;2970:11;2916;:66::i;:::-;2897:3;;;;:::i;:::-;;;;2854:139;;;;2662:337;;;;;:::o;2041:169:2:-;2115:6;;;-1:-1:-1;;;;;2131:17:2;;;-1:-1:-1;;;;;;2131:17:2;;;;;;;2163:40;;2115:6;;;2131:17;2115:6;;2163:40;;2096:16;;2163:40;2086:124;2041:169;:::o;6612:307:3:-;6763:28;6773:4;6779:2;6783:7;6763:9;:28::i;:::-;6809:48;6832:4;6838:2;6842:7;6851:5;6809:22;:48::i;:::-;6801:111;;;;-1:-1:-1;;;6801:111:3;;;;;;;:::i;3532:562:1:-;3618:15;3494:25;;;:16;:25;;;;;;;;;3716:21;:30;;;;;;-1:-1:-1;;;;;3716:30:1;3760:8;;;:34;;-1:-1:-1;;;;;;3772:22:1;;;3760:34;3756:306;;;4029:21;:19;:21::i;3756:306::-;4079:8;3532:562;-1:-1:-1;;;3532:562:1:o;387:663:8:-;460:13;493:16;501:7;493;:16::i;:::-;485:78;;;;-1:-1:-1;;;485:78:8;;20591:2:17;485:78:8;;;20573:21:17;20630:2;20610:18;;;20603:30;20669:34;20649:18;;;20642:62;-1:-1:-1;;;20720:18:17;;;20713:47;20777:19;;485:78:8;20389:413:17;485:78:8;574:23;600:19;;;:10;:19;;;;;574:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;629:18;650:10;:8;:10::i;:::-;629:31;;739:4;733:18;755:1;733:23;729:70;;;-1:-1:-1;779:9:8;387:663;-1:-1:-1;;387:663:8:o;729:70::-;901:23;;:27;897:106;;975:4;981:9;958:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;944:48;;;;387:663;;;:::o;897:106::-;1020:23;1035:7;1020:14;:23::i;3005:413:0:-;3192:22;3202:2;3206:7;3192:9;:22::i;:::-;3224:32;3237:7;3246:9;3224:12;:32::i;:::-;3270:15;;3266:91;;3301:45;3315:7;3324:8;3334:11;3301:13;:45::i;:::-;3403:7;3371:40;3384:17;3393:7;3384:8;:17::i;:::-;3371:40;;;;;;:::i;:::-;;;;;;;;3005:413;;;;;:::o;1496:300:3:-;1598:4;-1:-1:-1;;;;;;1633:40:3;;-1:-1:-1;;;1633:40:3;;:104;;-1:-1:-1;;;;;;;1689:48:3;;-1:-1:-1;;;1689:48:3;1633:104;:156;;;-1:-1:-1;;;;;;;;;;871:40:15;;;1753:36:3;763:155:15;3491:209:0;3648:45;3675:4;3681:2;3685:7;3648:26;:45::i;1628:200:8:-;1696:20;1708:7;1696:11;:20::i;:::-;1737:19;;;;:10;:19;;;;;1731:33;;;;;:::i;:::-;:38;;-1:-1:-1;1727:95:8;;1792:19;;;;:10;:19;;;;;1785:26;;;:::i;11797:778:3:-;11947:4;-1:-1:-1;;;;;11967:13:3;;1034:20:11;1080:8;11963:606:3;;12002:72;;-1:-1:-1;;;12002:72:3;;-1:-1:-1;;;;;12002:36:3;;;;;:72;;666:10:12;;12053:4:3;;12059:7;;12068:5;;12002:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12002:72:3;;;;;;;;-1:-1:-1;;12002:72:3;;;;;;;;;;;;:::i;:::-;;;11998:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12241:13:3;;12237:266;;12283:60;;-1:-1:-1;;;12283:60:3;;;;;;;:::i;12237:266::-;12455:6;12449:13;12440:6;12436:2;12432:15;12425:38;11998:519;-1:-1:-1;;;;;;12124:51:3;-1:-1:-1;;;12124:51:3;;-1:-1:-1;12117:58:3;;11963:606;-1:-1:-1;12554:4:3;11797:778;;;;;;:::o;4236:156:0:-;4331:15;4377:7;1045:6:2;;-1:-1:-1;;;;;1045:6:2;;973:85;1163:107:0;1215:13;1247:16;1240:23;;;;;:::i;2744:329:3:-;2817:13;2850:16;2858:7;2850;:16::i;:::-;2842:76;;;;-1:-1:-1;;;2842:76:3;;22232:2:17;2842:76:3;;;22214:21:17;22271:2;22251:18;;;22244:30;22310:34;22290:18;;;22283:62;-1:-1:-1;;;22361:18:17;;;22354:45;22416:19;;2842:76:3;22030:411:17;2842:76:3;2929:21;2953:10;:8;:10::i;:::-;2929:34;;3004:1;2986:7;2980:21;:25;:86;;;;;;;;;;;;;;;;;3032:7;3041:18;:7;:16;:18::i;:::-;3015:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2973:93;2744:329;-1:-1:-1;;;2744:329:3:o;8179:108::-;8254:26;8264:2;8268:7;8254:26;;;;;;;;;;;;:9;:26::i;:::-;8179:108;;:::o;1197:214:8:-;1296:16;1304:7;1296;:16::i;:::-;1288:75;;;;-1:-1:-1;;;1288:75:8;;22648:2:17;1288:75:8;;;22630:21:17;22687:2;22667:18;;;22660:30;22726:34;22706:18;;;22699:62;-1:-1:-1;;;22777:18:17;;;22770:44;22831:19;;1288:75:8;22446:410:17;1288:75:8;1373:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;1242:267:1:-;1400:1;1386:11;:15;1378:24;;;;;;1412:30;;;;:21;:30;;;;;;;;:41;;-1:-1:-1;;;;;;1412:41:1;-1:-1:-1;;;;;1412:41:1;;;;;;;;;;;1463:16;:25;;;;:39;1242:267::o;2544:572:7:-;-1:-1:-1;;;;;2743:18:7;;2739:183;;2777:40;2809:7;3925:10;:17;;3898:24;;;;:15;:24;;;;;:44;;;3952:24;;;;;;;;;;;;3822:161;2777:40;2739:183;;;2846:2;-1:-1:-1;;;;;2838:10:7;:4;-1:-1:-1;;;;;2838:10:7;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;-1:-1:-1;;;;;2935:16:7;;2931:179;;2967:45;3004:7;2967:36;:45::i;2931:179::-;3039:4;-1:-1:-1;;;;;3033:10:7;:2;-1:-1:-1;;;;;3033:10:7;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;9730:348:3:-;9789:13;9805:23;9820:7;9805:14;:23::i;:::-;9789:39;;9839:48;9860:5;9875:1;9879:7;9839:20;:48::i;:::-;9925:29;9942:1;9946:7;9925:8;:29::i;:::-;-1:-1:-1;;;;;9965:16:3;;;;;;:9;:16;;;;;:21;;9985:1;;9965:16;:21;;9985:1;;9965:21;:::i;:::-;;;;-1:-1:-1;;10003:16:3;;;;:7;:16;;;;;;9996:23;;-1:-1:-1;;;;;;9996:23:3;;;10035:36;10011:7;;10003:16;-1:-1:-1;;;;;10035:36:3;;;;;10003:16;;10035:36;9779:299;9730:348;:::o;275:703:14:-;331:13;548:10;544:51;;-1:-1:-1;;574:10:14;;;;;;;;;;;;-1:-1:-1;;;574:10:14;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:14;;-1:-1:-1;720:2:14;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:14;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:14;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:14;;;;;;;;-1:-1:-1;919:11:14;928:2;919:11;;:::i;:::-;;;791:150;;8508:311:3;8633:18;8639:2;8643:7;8633:5;:18::i;:::-;8682:54;8713:1;8717:2;8721:7;8730:5;8682:22;:54::i;:::-;8661:151;;;;-1:-1:-1;;;8661:151:3;;;;;;;:::i;4600:970:7:-;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4923:18;4944:26;;;:17;:26;;;;;;4862:51;;-1:-1:-1;5074:28:7;;;5070:323;;-1:-1:-1;;;;;5140:18:7;;5118:19;5140:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5189:30;;;;;;:44;;;5305:30;;:17;:30;;;;;:43;;;5070:323;-1:-1:-1;5486:26:7;;;;:17;:26;;;;;;;;5479:33;;;-1:-1:-1;;;;;5529:18:7;;;;;:12;:18;;;;;:34;;;;;;;5522:41;4600:970::o;5858:1061::-;6132:10;:17;6107:22;;6132:21;;6152:1;;6132:21;:::i;:::-;6163:18;6184:24;;;:15;:24;;;;;;6552:10;:26;;6107:46;;-1:-1:-1;6184:24:7;;6107:46;;6552:26;;;;;;:::i;:::-;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6693:28;;;:15;:28;;;;;;;:41;;;6862:24;;;;;6855:31;6896:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5929:990;;;5858:1061;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;-1:-1:-1;;;;;3541:16:7;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3585:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3410:217:7:o;9141:372:3:-;-1:-1:-1;;;;;9220:16:3;;9212:61;;;;-1:-1:-1;;;9212:61:3;;23312:2:17;9212:61:3;;;23294:21:17;;;23331:18;;;23324:30;23390:34;23370:18;;;23363:62;23442:18;;9212:61:3;23110:356:17;9212:61:3;9292:16;9300:7;9292;:16::i;:::-;9291:17;9283:58;;;;-1:-1:-1;;;9283:58:3;;23673:2:17;9283:58:3;;;23655:21:17;23712:2;23692:18;;;23685:30;23751;23731:18;;;23724:58;23799:18;;9283:58:3;23471:352:17;9283:58:3;9352:45;9381:1;9385:2;9389:7;9352:20;:45::i;:::-;-1:-1:-1;;;;;9408:13:3;;;;;;:9;:13;;;;;:18;;9425:1;;9408:13;:18;;9425:1;;9408:18;:::i;:::-;;;;-1:-1:-1;;9436:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9436:21:3;-1:-1:-1;;;;;9436:21:3;;;;;;;;9473:33;;9436:16;;;9473:33;;9436:16;;9473:33;9141:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:17;-1:-1:-1;;;;;;88:32:17;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:17;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:17;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:17:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:17;;1343:180;-1:-1:-1;1343:180:17:o;1736:131::-;-1:-1:-1;;;;;1811:31:17;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:17:o;2192:435::-;2245:3;2283:5;2277:12;2310:6;2305:3;2298:19;2336:4;2365:2;2360:3;2356:12;2349:19;;2402:2;2395:5;2391:14;2423:1;2433:169;2447:6;2444:1;2441:13;2433:169;;;2508:13;;2496:26;;2542:12;;;;2577:15;;;;2469:1;2462:9;2433:169;;;-1:-1:-1;2618:3:17;;2192:435;-1:-1:-1;;;;;2192:435:17:o;2632:261::-;2811:2;2800:9;2793:21;2774:4;2831:56;2883:2;2872:9;2868:18;2860:6;2831:56;:::i;3080:456::-;3157:6;3165;3173;3226:2;3214:9;3205:7;3201:23;3197:32;3194:52;;;3242:1;3239;3232:12;3194:52;3281:9;3268:23;3300:31;3325:5;3300:31;:::i;:::-;3350:5;-1:-1:-1;3407:2:17;3392:18;;3379:32;3420:33;3379:32;3420:33;:::i;:::-;3080:456;;3472:7;;-1:-1:-1;;;3526:2:17;3511:18;;;;3498:32;;3080:456::o;3541:248::-;3609:6;3617;3670:2;3658:9;3649:7;3645:23;3641:32;3638:52;;;3686:1;3683;3676:12;3638:52;-1:-1:-1;;3709:23:17;;;3779:2;3764:18;;;3751:32;;-1:-1:-1;3541:248:17:o;4073:127::-;4134:10;4129:3;4125:20;4122:1;4115:31;4165:4;4162:1;4155:15;4189:4;4186:1;4179:15;4205:275;4276:2;4270:9;4341:2;4322:13;;-1:-1:-1;;4318:27:17;4306:40;;4376:18;4361:34;;4397:22;;;4358:62;4355:88;;;4423:18;;:::i;:::-;4459:2;4452:22;4205:275;;-1:-1:-1;4205:275:17:o;4485:407::-;4550:5;4584:18;4576:6;4573:30;4570:56;;;4606:18;;:::i;:::-;4644:57;4689:2;4668:15;;-1:-1:-1;;4664:29:17;4695:4;4660:40;4644:57;:::i;:::-;4635:66;;4724:6;4717:5;4710:21;4764:3;4755:6;4750:3;4746:16;4743:25;4740:45;;;4781:1;4778;4771:12;4740:45;4830:6;4825:3;4818:4;4811:5;4807:16;4794:43;4884:1;4877:4;4868:6;4861:5;4857:18;4853:29;4846:40;4485:407;;;;;:::o;4897:222::-;4940:5;4993:3;4986:4;4978:6;4974:17;4970:27;4960:55;;5011:1;5008;5001:12;4960:55;5033:80;5109:3;5100:6;5087:20;5080:4;5072:6;5068:17;5033:80;:::i;5124:142::-;5200:20;;5229:31;5200:20;5229:31;:::i;:::-;5124:142;;;:::o;5271:1461::-;5400:6;5408;5416;5424;5477:3;5465:9;5456:7;5452:23;5448:33;5445:53;;;5494:1;5491;5484:12;5445:53;5533:9;5520:23;5552:31;5577:5;5552:31;:::i;:::-;5602:5;-1:-1:-1;5626:2:17;5664:18;;;5651:32;5702:18;5732:14;;;5729:34;;;5759:1;5756;5749:12;5729:34;5797:6;5786:9;5782:22;5772:32;;5842:7;5835:4;5831:2;5827:13;5823:27;5813:55;;5864:1;5861;5854:12;5813:55;5900:2;5887:16;5922:2;5918;5915:10;5912:36;;;5928:18;;:::i;:::-;5974:2;5971:1;5967:10;5997:28;6021:2;6017;6013:11;5997:28;:::i;:::-;6059:15;;;6129:11;;;6125:20;;;6090:12;;;;6157:19;;;6154:39;;;6189:1;6186;6179:12;6154:39;6221:2;6217;6213:11;6202:22;;6233:353;6249:6;6244:3;6241:15;6233:353;;;6335:3;6322:17;6371:2;6358:11;6355:19;6352:109;;;6415:1;6444:2;6440;6433:14;6352:109;6486:57;6535:7;6530:2;6516:11;6512:2;6508:20;6504:29;6486:57;:::i;:::-;6474:70;;-1:-1:-1;6266:12:17;;;;6564;;;;6233:353;;;6605:5;6595:15;;;;;;;;;6629:46;6671:2;6660:9;6656:18;6629:46;:::i;:::-;5271:1461;;;;-1:-1:-1;6619:56:17;;6722:2;6707:18;6694:32;;-1:-1:-1;;5271:1461:17:o;6737:247::-;6796:6;6849:2;6837:9;6828:7;6824:23;6820:32;6817:52;;;6865:1;6862;6855:12;6817:52;6904:9;6891:23;6923:31;6948:5;6923:31;:::i;6989:416::-;7054:6;7062;7115:2;7103:9;7094:7;7090:23;7086:32;7083:52;;;7131:1;7128;7121:12;7083:52;7170:9;7157:23;7189:31;7214:5;7189:31;:::i;:::-;7239:5;-1:-1:-1;7296:2:17;7281:18;;7268:32;7338:15;;7331:23;7319:36;;7309:64;;7369:1;7366;7359:12;7309:64;7392:7;7382:17;;;6989:416;;;;;:::o;7410:795::-;7505:6;7513;7521;7529;7582:3;7570:9;7561:7;7557:23;7553:33;7550:53;;;7599:1;7596;7589:12;7550:53;7638:9;7625:23;7657:31;7682:5;7657:31;:::i;:::-;7707:5;-1:-1:-1;7764:2:17;7749:18;;7736:32;7777:33;7736:32;7777:33;:::i;:::-;7829:7;-1:-1:-1;7883:2:17;7868:18;;7855:32;;-1:-1:-1;7938:2:17;7923:18;;7910:32;7965:18;7954:30;;7951:50;;;7997:1;7994;7987:12;7951:50;8020:22;;8073:4;8065:13;;8061:27;-1:-1:-1;8051:55:17;;8102:1;8099;8092:12;8051:55;8125:74;8191:7;8186:2;8173:16;8168:2;8164;8160:11;8125:74;:::i;:::-;8115:84;;;7410:795;;;;;;;:::o;8210:469::-;8271:3;8309:5;8303:12;8336:6;8331:3;8324:19;8362:4;8391:2;8386:3;8382:12;8375:19;;8428:2;8421:5;8417:14;8449:1;8459:195;8473:6;8470:1;8467:13;8459:195;;;8538:13;;-1:-1:-1;;;;;8534:39:17;8522:52;;8594:12;;;;8629:15;;;;8570:1;8488:9;8459:195;;8684:285;8879:2;8868:9;8861:21;8842:4;8899:64;8959:2;8948:9;8944:18;8936:6;8899:64;:::i;8974:489::-;9247:2;9236:9;9229:21;9210:4;9273:64;9333:2;9322:9;9318:18;9310:6;9273:64;:::i;:::-;9385:9;9377:6;9373:22;9368:2;9357:9;9353:18;9346:50;9413:44;9450:6;9442;9413:44;:::i;:::-;9405:52;8974:489;-1:-1:-1;;;;;8974:489:17:o;9468:675::-;9572:6;9580;9588;9596;9649:3;9637:9;9628:7;9624:23;9620:33;9617:53;;;9666:1;9663;9656:12;9617:53;9705:9;9692:23;9724:31;9749:5;9724:31;:::i;:::-;9774:5;-1:-1:-1;9830:2:17;9815:18;;9802:32;9857:18;9846:30;;9843:50;;;9889:1;9886;9879:12;9843:50;9912;9954:7;9945:6;9934:9;9930:22;9912:50;:::i;:::-;9902:60;;;10014:2;10003:9;9999:18;9986:32;10027:33;10052:7;10027:33;:::i;10148:388::-;10216:6;10224;10277:2;10265:9;10256:7;10252:23;10248:32;10245:52;;;10293:1;10290;10283:12;10245:52;10332:9;10319:23;10351:31;10376:5;10351:31;:::i;:::-;10401:5;-1:-1:-1;10458:2:17;10443:18;;10430:32;10471:33;10430:32;10471:33;:::i;10541:380::-;10620:1;10616:12;;;;10663;;;10684:61;;10738:4;10730:6;10726:17;10716:27;;10684:61;10791:2;10783:6;10780:14;10760:18;10757:38;10754:161;;;10837:10;10832:3;10828:20;10825:1;10818:31;10872:4;10869:1;10862:15;10900:4;10897:1;10890:15;10754:161;;10541:380;;;:::o;12166:341::-;12368:2;12350:21;;;12407:2;12387:18;;;12380:30;-1:-1:-1;;;12441:2:17;12426:18;;12419:47;12498:2;12483:18;;12166:341::o;12512:127::-;12573:10;12568:3;12564:20;12561:1;12554:31;12604:4;12601:1;12594:15;12628:4;12625:1;12618:15;12644:413;12846:2;12828:21;;;12885:2;12865:18;;;12858:30;12924:34;12919:2;12904:18;;12897:62;-1:-1:-1;;;12990:2:17;12975:18;;12968:47;13047:3;13032:19;;12644:413::o;14714:356::-;14916:2;14898:21;;;14935:18;;;14928:30;14994:34;14989:2;14974:18;;14967:62;15061:2;15046:18;;14714:356::o;16961:127::-;17022:10;17017:3;17013:20;17010:1;17003:31;17053:4;17050:1;17043:15;17077:4;17074:1;17067:15;17093:128;17133:3;17164:1;17160:6;17157:1;17154:13;17151:39;;;17170:18;;:::i;:::-;-1:-1:-1;17206:9:17;;17093:128::o;17226:168::-;17266:7;17332:1;17328;17324:6;17320:14;17317:1;17314:21;17309:1;17302:9;17295:17;17291:45;17288:71;;;17339:18;;:::i;:::-;-1:-1:-1;17379:9:17;;17226:168::o;19443:125::-;19483:4;19511:1;19508;19505:8;19502:34;;;19516:18;;:::i;:::-;-1:-1:-1;19553:9:17;;19443:125::o;19573:127::-;19634:10;19629:3;19625:20;19622:1;19615:31;19665:4;19662:1;19655:15;19689:4;19686:1;19679:15;19705:120;19745:1;19771;19761:35;;19776:18;;:::i;:::-;-1:-1:-1;19810:9:17;;19705:120::o;19830:135::-;19869:3;-1:-1:-1;;19890:17:17;;19887:43;;;19910:18;;:::i;:::-;-1:-1:-1;19957:1:17;19946:13;;19830:135::o;19970:414::-;20172:2;20154:21;;;20211:2;20191:18;;;20184:30;20250:34;20245:2;20230:18;;20223:62;-1:-1:-1;;;20316:2:17;20301:18;;20294:48;20374:3;20359:19;;19970:414::o;20807:470::-;20986:3;21024:6;21018:13;21040:53;21086:6;21081:3;21074:4;21066:6;21062:17;21040:53;:::i;:::-;21156:13;;21115:16;;;;21178:57;21156:13;21115:16;21212:4;21200:17;;21178:57;:::i;:::-;21251:20;;20807:470;-1:-1:-1;;;;20807:470:17:o;21282:489::-;-1:-1:-1;;;;;21551:15:17;;;21533:34;;21603:15;;21598:2;21583:18;;21576:43;21650:2;21635:18;;21628:34;;;21698:3;21693:2;21678:18;;21671:31;;;21476:4;;21719:46;;21745:19;;21737:6;21719:46;:::i;:::-;21711:54;21282:489;-1:-1:-1;;;;;;21282:489:17:o;21776:249::-;21845:6;21898:2;21886:9;21877:7;21873:23;21869:32;21866:52;;;21914:1;21911;21904:12;21866:52;21946:9;21940:16;21965:30;21989:5;21965:30;:::i;22861:112::-;22893:1;22919;22909:35;;22924:18;;:::i;:::-;-1:-1:-1;22958:9:17;;22861:112::o;22978:127::-;23039:10;23034:3;23030:20;23027:1;23020:31;23070:4;23067:1;23060:15;23094:4;23091:1;23084:15

Swarm Source

ipfs://ad6508f4353c059d0de54a356c6880215bc0458c905b92701e77cc9db5cd13e4
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.