ETH Price: $3,457.82 (-1.83%)
Gas: 3 Gwei

Token

256SOUND (256SOUND)
 

Overview

Max Total Supply

432 256SOUND

Holders

169

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
17minutes.eth
Balance
1 256SOUND
0x11bAbF56b0E50771aA6D94f971FBEe24813Fb0bA
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:
CREATE256SOUND

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-21
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Counters.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @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: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: contracts/Create256Sound.sol



pragma solidity ^0.8.0;






contract CREATE256SOUND is ERC721, ERC721Enumerable, ReentrancyGuard, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public maxSupply = 4096;
    uint256 public maxMintAmount = 16;
    bool public saleIsActive = false;
    address public the256ArtAddress;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        address _initAddress
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setThe256ArtSmartContractAddress(_initAddress);
    }

    function require256ArtOwner(uint256 a256ArtId) private view {
        ERC721 theAddress = ERC721(the256ArtAddress);

        require(
            theAddress.ownerOf(a256ArtId) == _msgSender(),
            "256ART not owned"
        );
    }

    Counters.Counter private _counter;

    function getMintCount() public view returns (uint256) {
        return _counter.current();
    }

    function mint(uint256[] calldata the256ArtIds) public nonReentrant {
        uint256 count = the256ArtIds.length;

        require(saleIsActive, "Sale not active");
        require(count > 0, "Must mint at least one");
        require(count <= maxMintAmount, "Multimint max is 16");
        require(
            _counter.current() + count - 1 < maxSupply,
            "Exceeds max supply"
        );

        
        for (uint256 i = 0; i < count; i++) {
            require256ArtOwner(the256ArtIds[i]);
        }

        for (uint256 i = 0; i < count; i++) {
            _safeMint(_msgSender(), the256ArtIds[i]);

            _counter.increment();
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

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

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

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }

    function setThe256ArtSmartContractAddress(address _address)
        public
        onlyOwner
    {
        the256ArtAddress = _address;
    }

    function setSaleIsActive(bool isActive) public onlyOwner {
        saleIsActive = isActive;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

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

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    /** REQUIRED OVERRIDES **/

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"address","name":"_initAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"the256ArtIds","type":"uint256[]"}],"name":"mint","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setThe256ArtSmartContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"the256ArtAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d9190620001fd565b50611000600e556010600f819055805460ff191690553480156200004b57600080fd5b50604051620028ae380380620028ae8339810160408190526200006e916200035a565b83518490849062000087906000906020850190620001fd565b5080516200009d906001906020840190620001fd565b50506001600a5550620000b033620000d0565b620000bb8262000122565b620000c6816200018a565b5050505062000460565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b546001600160a01b03163314620001715760405162461bcd60e51b815260206004820181905260248201526000805160206200288e83398151915260448201526064015b60405180910390fd5b80516200018690600c906020840190620001fd565b5050565b600b546001600160a01b03163314620001d55760405162461bcd60e51b815260206004820181905260248201526000805160206200288e833981519152604482015260640162000168565b601080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b8280546200020b906200040d565b90600052602060002090601f0160209004810192826200022f57600085556200027a565b82601f106200024a57805160ff19168380011785556200027a565b828001600101855582156200027a579182015b828111156200027a5782518255916020019190600101906200025d565b50620002889291506200028c565b5090565b5b808211156200028857600081556001016200028d565b600082601f830112620002b557600080fd5b81516001600160401b0380821115620002d257620002d26200044a565b604051601f8301601f19908116603f01168101908282118183101715620002fd57620002fd6200044a565b816040528381526020925086838588010111156200031a57600080fd5b600091505b838210156200033e57858201830151818301840152908201906200031f565b83821115620003505760008385830101525b9695505050505050565b600080600080608085870312156200037157600080fd5b84516001600160401b03808211156200038957600080fd5b6200039788838901620002a3565b95506020870151915080821115620003ae57600080fd5b620003bc88838901620002a3565b94506040870151915080821115620003d357600080fd5b50620003e287828801620002a3565b606087015190935090506001600160a01b03811681146200040257600080fd5b939692955090935050565b600181811c908216806200042257607f821691505b602082108114156200044457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61241e80620004706000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063b88d4fde116100ad578063da3ef23f1161007c578063da3ef23f1461041c578063e985e9c51461042f578063eb8d24441461046b578063f2fde38b14610478578063f8e93ef91461048b57600080fd5b8063b88d4fde146103e5578063c6682862146103f8578063c87b56dd14610400578063d5abeb011461041357600080fd5b806395d89b41116100e957806395d89b411461039f5780639be96bdc146103a7578063a22cb465146103bf578063b2fd2b8b146103d257600080fd5b8063715018a61461036b5780637f00c7a6146103735780638da5cb5b146103865780638fc3b5491461039757600080fd5b80632f745c591161019d5780634f6ccce71161016c5780634f6ccce71461031757806355f804b31461032a5780636352211e1461033d5780636c0360eb1461035057806370a082311461035857600080fd5b80632f745c59146102c95780633ccfd60b146102dc57806342842e0e146102e4578063438b6300146102f757600080fd5b8063095ea7b3116101d9578063095ea7b31461028857806318160ddd1461029b578063239c70ae146102ad57806323b872dd146102b657600080fd5b806301ffc9a71461020b57806302c889891461023357806306fdde0314610248578063081812fc1461025d575b600080fd5b61021e610219366004611f7e565b61049e565b60405190151581526020015b60405180910390f35b610246610241366004611f63565b6104af565b005b6102506104f5565b60405161022a919061218b565b61027061026b366004612001565b610587565b6040516001600160a01b03909116815260200161022a565b610246610296366004611ec2565b61061c565b6008545b60405190815260200161022a565b61029f600f5481565b6102466102c4366004611dcc565b610732565b61029f6102d7366004611ec2565b610763565b6102466107f9565b6102466102f2366004611dcc565b610872565b61030a610305366004611d59565b61088d565b60405161022a9190612147565b61029f610325366004612001565b61092f565b610246610338366004611fb8565b6109c2565b61027061034b366004612001565b6109ff565b610250610a76565b61029f610366366004611d59565b610b04565b610246610b8b565b610246610381366004612001565b610bc1565b600b546001600160a01b0316610270565b61029f610bf0565b610250610c00565b6010546102709061010090046001600160a01b031681565b6102466103cd366004611e8d565b610c0f565b6102466103e0366004611d59565b610cd4565b6102466103f3366004611e0d565b610d26565b610250610d5e565b61025061040e366004612001565b610d6b565b61029f600e5481565b61024661042a366004611fb8565b610e49565b61021e61043d366004611d93565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60105461021e9060ff1681565b610246610486366004611d59565b610e86565b610246610499366004611eee565b610f21565b60006104a98261114c565b92915050565b600b546001600160a01b031633146104e25760405162461bcd60e51b81526004016104d9906121f0565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610504906122e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610530906122e5565b801561057d5780601f106105525761010080835404028352916020019161057d565b820191906000526020600020905b81548152906001019060200180831161056057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d9565b506000908152600460205260409020546001600160a01b031690565b6000610627826109ff565b9050806001600160a01b0316836001600160a01b031614156106955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104d9565b336001600160a01b03821614806106b157506106b1813361043d565b6107235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104d9565b61072d8383611171565b505050565b61073c33826111df565b6107585760405162461bcd60e51b81526004016104d990612225565b61072d8383836112d6565b600061076e83610b04565b82106107d05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104d9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146108235760405162461bcd60e51b81526004016104d9906121f0565b47610836600b546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f1935050505015801561086e573d6000803e3d6000fd5b5050565b61072d83838360405180602001604052806000815250610d26565b6060600061089a83610b04565b905060008167ffffffffffffffff8111156108b7576108b76123a7565b6040519080825280602002602001820160405280156108e0578160200160208202803683370190505b50905060005b82811015610927576108f88582610763565b82828151811061090a5761090a612391565b60209081029190910101528061091f81612320565b9150506108e6565b509392505050565b600061093a60085490565b821061099d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104d9565b600882815481106109b0576109b0612391565b90600052602060002001549050919050565b600b546001600160a01b031633146109ec5760405162461bcd60e51b81526004016104d9906121f0565b805161086e90600c906020840190611c35565b6000818152600260205260408120546001600160a01b0316806104a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104d9565b600c8054610a83906122e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf906122e5565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b505050505081565b60006001600160a01b038216610b6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104d9565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610bb55760405162461bcd60e51b81526004016104d9906121f0565b610bbf6000611481565b565b600b546001600160a01b03163314610beb5760405162461bcd60e51b81526004016104d9906121f0565b600f55565b6000610bfb60115490565b905090565b606060018054610504906122e5565b6001600160a01b038216331415610c685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104d9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016104d9906121f0565b601080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610d3033836111df565b610d4c5760405162461bcd60e51b81526004016104d990612225565b610d58848484846114d3565b50505050565b600d8054610a83906122e5565b6000818152600260205260409020546060906001600160a01b0316610dea5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104d9565b6000610df4611506565b90506000815111610e145760405180602001604052806000815250610e42565b80610e1e84611515565b600d604051602001610e3293929190612046565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314610e735760405162461bcd60e51b81526004016104d9906121f0565b805161086e90600d906020840190611c35565b600b546001600160a01b03163314610eb05760405162461bcd60e51b81526004016104d9906121f0565b6001600160a01b038116610f155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d9565b610f1e81611481565b50565b6002600a541415610f745760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104d9565b6002600a55601054819060ff16610fbf5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016104d9565b600081116110085760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b60448201526064016104d9565b600f548111156110505760405162461bcd60e51b815260206004820152601360248201527226bab63a34b6b4b73a1036b0bc1034b990189b60691b60448201526064016104d9565b600e5460018261105f60115490565b6110699190612276565b61107391906122a2565b106110b55760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016104d9565b60005b818110156110f3576110e18484838181106110d5576110d5612391565b90506020020135611613565b806110eb81612320565b9150506110b8565b5060005b81811015611141576111213385858481811061111557611115612391565b905060200201356116ea565b61112f601180546001019055565b8061113981612320565b9150506110f7565b50506001600a555050565b60006001600160e01b0319821663780e9d6360e01b14806104a957506104a982611704565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111a6826109ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d9565b6000611263836109ff565b9050806001600160a01b0316846001600160a01b0316148061129e5750836001600160a01b031661129384610587565b6001600160a01b0316145b806112ce57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112e9826109ff565b6001600160a01b0316146113515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104d9565b6001600160a01b0382166113b35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104d9565b6113be838383611754565b6113c9600082611171565b6001600160a01b03831660009081526003602052604081208054600192906113f29084906122a2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611420908490612276565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114de8484846112d6565b6114ea8484848461175f565b610d585760405162461bcd60e51b81526004016104d99061219e565b6060600c8054610504906122e5565b6060816115395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611563578061154d81612320565b915061155c9050600a8361228e565b915061153d565b60008167ffffffffffffffff81111561157e5761157e6123a7565b6040519080825280601f01601f1916602001820160405280156115a8576020820181803683370190505b5090505b84156112ce576115bd6001836122a2565b91506115ca600a8661233b565b6115d5906030612276565b60f81b8183815181106115ea576115ea612391565b60200101906001600160f81b031916908160001a90535061160c600a8661228e565b94506115ac565b60105461010090046001600160a01b0316336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e9060240160206040518083038186803b15801561166957600080fd5b505afa15801561167d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a19190611d76565b6001600160a01b03161461086e5760405162461bcd60e51b815260206004820152601060248201526f0c8d4d905495081b9bdd081bdddb995960821b60448201526064016104d9565b61086e82826040518060200160405280600081525061186c565b60006001600160e01b031982166380ac58cd60e01b148061173557506001600160e01b03198216635b5e139f60e01b145b806104a957506301ffc9a760e01b6001600160e01b03198316146104a9565b61072d83838361189f565b60006001600160a01b0384163b1561186157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117a390339089908890889060040161210a565b602060405180830381600087803b1580156117bd57600080fd5b505af19250505080156117ed575060408051601f3d908101601f191682019092526117ea91810190611f9b565b60015b611847573d80801561181b576040519150601f19603f3d011682016040523d82523d6000602084013e611820565b606091505b50805161183f5760405162461bcd60e51b81526004016104d99061219e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ce565b506001949350505050565b6118768383611957565b611883600084848461175f565b61072d5760405162461bcd60e51b81526004016104d99061219e565b6001600160a01b0383166118fa576118f581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61191d565b816001600160a01b0316836001600160a01b03161461191d5761191d8382611aa5565b6001600160a01b0382166119345761072d81611b42565b826001600160a01b0316826001600160a01b03161461072d5761072d8282611bf1565b6001600160a01b0382166119ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104d9565b6000818152600260205260409020546001600160a01b031615611a125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104d9565b611a1e60008383611754565b6001600160a01b0382166000908152600360205260408120805460019290611a47908490612276565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611ab284610b04565b611abc91906122a2565b600083815260076020526040902054909150808214611b0f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b54906001906122a2565b60008381526009602052604081205460088054939450909284908110611b7c57611b7c612391565b906000526020600020015490508060088381548110611b9d57611b9d612391565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bd557611bd561237b565b6001900381819060005260206000200160009055905550505050565b6000611bfc83610b04565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c41906122e5565b90600052602060002090601f016020900481019282611c635760008555611ca9565b82601f10611c7c57805160ff1916838001178555611ca9565b82800160010185558215611ca9579182015b82811115611ca9578251825591602001919060010190611c8e565b50611cb5929150611cb9565b5090565b5b80821115611cb55760008155600101611cba565b600067ffffffffffffffff80841115611ce957611ce96123a7565b604051601f8501601f19908116603f01168101908282118183101715611d1157611d116123a7565b81604052809350858152868686011115611d2a57600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611d5457600080fd5b919050565b600060208284031215611d6b57600080fd5b8135610e42816123bd565b600060208284031215611d8857600080fd5b8151610e42816123bd565b60008060408385031215611da657600080fd5b8235611db1816123bd565b91506020830135611dc1816123bd565b809150509250929050565b600080600060608486031215611de157600080fd5b8335611dec816123bd565b92506020840135611dfc816123bd565b929592945050506040919091013590565b60008060008060808587031215611e2357600080fd5b8435611e2e816123bd565b93506020850135611e3e816123bd565b925060408501359150606085013567ffffffffffffffff811115611e6157600080fd5b8501601f81018713611e7257600080fd5b611e8187823560208401611cce565b91505092959194509250565b60008060408385031215611ea057600080fd5b8235611eab816123bd565b9150611eb960208401611d44565b90509250929050565b60008060408385031215611ed557600080fd5b8235611ee0816123bd565b946020939093013593505050565b60008060208385031215611f0157600080fd5b823567ffffffffffffffff80821115611f1957600080fd5b818501915085601f830112611f2d57600080fd5b813581811115611f3c57600080fd5b8660208260051b8501011115611f5157600080fd5b60209290920196919550909350505050565b600060208284031215611f7557600080fd5b610e4282611d44565b600060208284031215611f9057600080fd5b8135610e42816123d2565b600060208284031215611fad57600080fd5b8151610e42816123d2565b600060208284031215611fca57600080fd5b813567ffffffffffffffff811115611fe157600080fd5b8201601f81018413611ff257600080fd5b6112ce84823560208401611cce565b60006020828403121561201357600080fd5b5035919050565b600081518084526120328160208601602086016122b9565b601f01601f19169290920160200192915050565b6000845160206120598285838a016122b9565b85519184019161206c8184848a016122b9565b8554920191600090600181811c908083168061208957607f831692505b8583108114156120a757634e487b7160e01b85526022600452602485fd5b8080156120bb57600181146120cc576120f9565b60ff198516885283880195506120f9565b60008b81526020902060005b858110156120f15781548a8201529084019088016120d8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213d9083018461201a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561217f57835183529284019291840191600101612163565b50909695505050505050565b602081526000610e42602083018461201a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122895761228961234f565b500190565b60008261229d5761229d612365565b500490565b6000828210156122b4576122b461234f565b500390565b60005b838110156122d45781810151838201526020016122bc565b83811115610d585750506000910152565b600181811c908216806122f957607f821691505b6020821081141561231a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123345761233461234f565b5060010190565b60008261234a5761234a612365565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f1e57600080fd5b6001600160e01b031981168114610f1e57600080fdfea2646970667358221220f83924a944fc877ca438b3199e742a83901dde8f41719328e5ed03e95d1dd04a64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000044e4afa4b442f11693844d425fb29aeddfa0f33e0000000000000000000000000000000000000000000000000000000000000008323536534f554e440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008323536534f554e44000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001777696c6c6368616e67657768656e676f696e676c697665000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c8063715018a61161011a578063b88d4fde116100ad578063da3ef23f1161007c578063da3ef23f1461041c578063e985e9c51461042f578063eb8d24441461046b578063f2fde38b14610478578063f8e93ef91461048b57600080fd5b8063b88d4fde146103e5578063c6682862146103f8578063c87b56dd14610400578063d5abeb011461041357600080fd5b806395d89b41116100e957806395d89b411461039f5780639be96bdc146103a7578063a22cb465146103bf578063b2fd2b8b146103d257600080fd5b8063715018a61461036b5780637f00c7a6146103735780638da5cb5b146103865780638fc3b5491461039757600080fd5b80632f745c591161019d5780634f6ccce71161016c5780634f6ccce71461031757806355f804b31461032a5780636352211e1461033d5780636c0360eb1461035057806370a082311461035857600080fd5b80632f745c59146102c95780633ccfd60b146102dc57806342842e0e146102e4578063438b6300146102f757600080fd5b8063095ea7b3116101d9578063095ea7b31461028857806318160ddd1461029b578063239c70ae146102ad57806323b872dd146102b657600080fd5b806301ffc9a71461020b57806302c889891461023357806306fdde0314610248578063081812fc1461025d575b600080fd5b61021e610219366004611f7e565b61049e565b60405190151581526020015b60405180910390f35b610246610241366004611f63565b6104af565b005b6102506104f5565b60405161022a919061218b565b61027061026b366004612001565b610587565b6040516001600160a01b03909116815260200161022a565b610246610296366004611ec2565b61061c565b6008545b60405190815260200161022a565b61029f600f5481565b6102466102c4366004611dcc565b610732565b61029f6102d7366004611ec2565b610763565b6102466107f9565b6102466102f2366004611dcc565b610872565b61030a610305366004611d59565b61088d565b60405161022a9190612147565b61029f610325366004612001565b61092f565b610246610338366004611fb8565b6109c2565b61027061034b366004612001565b6109ff565b610250610a76565b61029f610366366004611d59565b610b04565b610246610b8b565b610246610381366004612001565b610bc1565b600b546001600160a01b0316610270565b61029f610bf0565b610250610c00565b6010546102709061010090046001600160a01b031681565b6102466103cd366004611e8d565b610c0f565b6102466103e0366004611d59565b610cd4565b6102466103f3366004611e0d565b610d26565b610250610d5e565b61025061040e366004612001565b610d6b565b61029f600e5481565b61024661042a366004611fb8565b610e49565b61021e61043d366004611d93565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b60105461021e9060ff1681565b610246610486366004611d59565b610e86565b610246610499366004611eee565b610f21565b60006104a98261114c565b92915050565b600b546001600160a01b031633146104e25760405162461bcd60e51b81526004016104d9906121f0565b60405180910390fd5b6010805460ff1916911515919091179055565b606060008054610504906122e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610530906122e5565b801561057d5780601f106105525761010080835404028352916020019161057d565b820191906000526020600020905b81548152906001019060200180831161056057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106005760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d9565b506000908152600460205260409020546001600160a01b031690565b6000610627826109ff565b9050806001600160a01b0316836001600160a01b031614156106955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016104d9565b336001600160a01b03821614806106b157506106b1813361043d565b6107235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016104d9565b61072d8383611171565b505050565b61073c33826111df565b6107585760405162461bcd60e51b81526004016104d990612225565b61072d8383836112d6565b600061076e83610b04565b82106107d05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104d9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146108235760405162461bcd60e51b81526004016104d9906121f0565b47610836600b546001600160a01b031690565b6001600160a01b03166108fc829081150290604051600060405180830381858888f1935050505015801561086e573d6000803e3d6000fd5b5050565b61072d83838360405180602001604052806000815250610d26565b6060600061089a83610b04565b905060008167ffffffffffffffff8111156108b7576108b76123a7565b6040519080825280602002602001820160405280156108e0578160200160208202803683370190505b50905060005b82811015610927576108f88582610763565b82828151811061090a5761090a612391565b60209081029190910101528061091f81612320565b9150506108e6565b509392505050565b600061093a60085490565b821061099d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104d9565b600882815481106109b0576109b0612391565b90600052602060002001549050919050565b600b546001600160a01b031633146109ec5760405162461bcd60e51b81526004016104d9906121f0565b805161086e90600c906020840190611c35565b6000818152600260205260408120546001600160a01b0316806104a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016104d9565b600c8054610a83906122e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610aaf906122e5565b8015610afc5780601f10610ad157610100808354040283529160200191610afc565b820191906000526020600020905b815481529060010190602001808311610adf57829003601f168201915b505050505081565b60006001600160a01b038216610b6f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016104d9565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610bb55760405162461bcd60e51b81526004016104d9906121f0565b610bbf6000611481565b565b600b546001600160a01b03163314610beb5760405162461bcd60e51b81526004016104d9906121f0565b600f55565b6000610bfb60115490565b905090565b606060018054610504906122e5565b6001600160a01b038216331415610c685760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104d9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b546001600160a01b03163314610cfe5760405162461bcd60e51b81526004016104d9906121f0565b601080546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610d3033836111df565b610d4c5760405162461bcd60e51b81526004016104d990612225565b610d58848484846114d3565b50505050565b600d8054610a83906122e5565b6000818152600260205260409020546060906001600160a01b0316610dea5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016104d9565b6000610df4611506565b90506000815111610e145760405180602001604052806000815250610e42565b80610e1e84611515565b600d604051602001610e3293929190612046565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314610e735760405162461bcd60e51b81526004016104d9906121f0565b805161086e90600d906020840190611c35565b600b546001600160a01b03163314610eb05760405162461bcd60e51b81526004016104d9906121f0565b6001600160a01b038116610f155760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104d9565b610f1e81611481565b50565b6002600a541415610f745760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104d9565b6002600a55601054819060ff16610fbf5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b60448201526064016104d9565b600081116110085760405162461bcd60e51b81526020600482015260166024820152754d757374206d696e74206174206c65617374206f6e6560501b60448201526064016104d9565b600f548111156110505760405162461bcd60e51b815260206004820152601360248201527226bab63a34b6b4b73a1036b0bc1034b990189b60691b60448201526064016104d9565b600e5460018261105f60115490565b6110699190612276565b61107391906122a2565b106110b55760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016104d9565b60005b818110156110f3576110e18484838181106110d5576110d5612391565b90506020020135611613565b806110eb81612320565b9150506110b8565b5060005b81811015611141576111213385858481811061111557611115612391565b905060200201356116ea565b61112f601180546001019055565b8061113981612320565b9150506110f7565b50506001600a555050565b60006001600160e01b0319821663780e9d6360e01b14806104a957506104a982611704565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906111a6826109ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016104d9565b6000611263836109ff565b9050806001600160a01b0316846001600160a01b0316148061129e5750836001600160a01b031661129384610587565b6001600160a01b0316145b806112ce57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112e9826109ff565b6001600160a01b0316146113515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016104d9565b6001600160a01b0382166113b35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104d9565b6113be838383611754565b6113c9600082611171565b6001600160a01b03831660009081526003602052604081208054600192906113f29084906122a2565b90915550506001600160a01b0382166000908152600360205260408120805460019290611420908490612276565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114de8484846112d6565b6114ea8484848461175f565b610d585760405162461bcd60e51b81526004016104d99061219e565b6060600c8054610504906122e5565b6060816115395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611563578061154d81612320565b915061155c9050600a8361228e565b915061153d565b60008167ffffffffffffffff81111561157e5761157e6123a7565b6040519080825280601f01601f1916602001820160405280156115a8576020820181803683370190505b5090505b84156112ce576115bd6001836122a2565b91506115ca600a8661233b565b6115d5906030612276565b60f81b8183815181106115ea576115ea612391565b60200101906001600160f81b031916908160001a90535061160c600a8661228e565b94506115ac565b60105461010090046001600160a01b0316336040516331a9108f60e11b8152600481018490526001600160a01b0391821691831690636352211e9060240160206040518083038186803b15801561166957600080fd5b505afa15801561167d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116a19190611d76565b6001600160a01b03161461086e5760405162461bcd60e51b815260206004820152601060248201526f0c8d4d905495081b9bdd081bdddb995960821b60448201526064016104d9565b61086e82826040518060200160405280600081525061186c565b60006001600160e01b031982166380ac58cd60e01b148061173557506001600160e01b03198216635b5e139f60e01b145b806104a957506301ffc9a760e01b6001600160e01b03198316146104a9565b61072d83838361189f565b60006001600160a01b0384163b1561186157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117a390339089908890889060040161210a565b602060405180830381600087803b1580156117bd57600080fd5b505af19250505080156117ed575060408051601f3d908101601f191682019092526117ea91810190611f9b565b60015b611847573d80801561181b576040519150601f19603f3d011682016040523d82523d6000602084013e611820565b606091505b50805161183f5760405162461bcd60e51b81526004016104d99061219e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112ce565b506001949350505050565b6118768383611957565b611883600084848461175f565b61072d5760405162461bcd60e51b81526004016104d99061219e565b6001600160a01b0383166118fa576118f581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61191d565b816001600160a01b0316836001600160a01b03161461191d5761191d8382611aa5565b6001600160a01b0382166119345761072d81611b42565b826001600160a01b0316826001600160a01b03161461072d5761072d8282611bf1565b6001600160a01b0382166119ad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104d9565b6000818152600260205260409020546001600160a01b031615611a125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104d9565b611a1e60008383611754565b6001600160a01b0382166000908152600360205260408120805460019290611a47908490612276565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611ab284610b04565b611abc91906122a2565b600083815260076020526040902054909150808214611b0f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b54906001906122a2565b60008381526009602052604081205460088054939450909284908110611b7c57611b7c612391565b906000526020600020015490508060088381548110611b9d57611b9d612391565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611bd557611bd561237b565b6001900381819060005260206000200160009055905550505050565b6000611bfc83610b04565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611c41906122e5565b90600052602060002090601f016020900481019282611c635760008555611ca9565b82601f10611c7c57805160ff1916838001178555611ca9565b82800160010185558215611ca9579182015b82811115611ca9578251825591602001919060010190611c8e565b50611cb5929150611cb9565b5090565b5b80821115611cb55760008155600101611cba565b600067ffffffffffffffff80841115611ce957611ce96123a7565b604051601f8501601f19908116603f01168101908282118183101715611d1157611d116123a7565b81604052809350858152868686011115611d2a57600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611d5457600080fd5b919050565b600060208284031215611d6b57600080fd5b8135610e42816123bd565b600060208284031215611d8857600080fd5b8151610e42816123bd565b60008060408385031215611da657600080fd5b8235611db1816123bd565b91506020830135611dc1816123bd565b809150509250929050565b600080600060608486031215611de157600080fd5b8335611dec816123bd565b92506020840135611dfc816123bd565b929592945050506040919091013590565b60008060008060808587031215611e2357600080fd5b8435611e2e816123bd565b93506020850135611e3e816123bd565b925060408501359150606085013567ffffffffffffffff811115611e6157600080fd5b8501601f81018713611e7257600080fd5b611e8187823560208401611cce565b91505092959194509250565b60008060408385031215611ea057600080fd5b8235611eab816123bd565b9150611eb960208401611d44565b90509250929050565b60008060408385031215611ed557600080fd5b8235611ee0816123bd565b946020939093013593505050565b60008060208385031215611f0157600080fd5b823567ffffffffffffffff80821115611f1957600080fd5b818501915085601f830112611f2d57600080fd5b813581811115611f3c57600080fd5b8660208260051b8501011115611f5157600080fd5b60209290920196919550909350505050565b600060208284031215611f7557600080fd5b610e4282611d44565b600060208284031215611f9057600080fd5b8135610e42816123d2565b600060208284031215611fad57600080fd5b8151610e42816123d2565b600060208284031215611fca57600080fd5b813567ffffffffffffffff811115611fe157600080fd5b8201601f81018413611ff257600080fd5b6112ce84823560208401611cce565b60006020828403121561201357600080fd5b5035919050565b600081518084526120328160208601602086016122b9565b601f01601f19169290920160200192915050565b6000845160206120598285838a016122b9565b85519184019161206c8184848a016122b9565b8554920191600090600181811c908083168061208957607f831692505b8583108114156120a757634e487b7160e01b85526022600452602485fd5b8080156120bb57600181146120cc576120f9565b60ff198516885283880195506120f9565b60008b81526020902060005b858110156120f15781548a8201529084019088016120d8565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061213d9083018461201a565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561217f57835183529284019291840191600101612163565b50909695505050505050565b602081526000610e42602083018461201a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156122895761228961234f565b500190565b60008261229d5761229d612365565b500490565b6000828210156122b4576122b461234f565b500390565b60005b838110156122d45781810151838201526020016122bc565b83811115610d585750506000910152565b600181811c908216806122f957607f821691505b6020821081141561231a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123345761233461234f565b5060010190565b60008261234a5761234a612365565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610f1e57600080fd5b6001600160e01b031981168114610f1e57600080fdfea2646970667358221220f83924a944fc877ca438b3199e742a83901dde8f41719328e5ed03e95d1dd04a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000044e4afa4b442f11693844d425fb29aeddfa0f33e0000000000000000000000000000000000000000000000000000000000000008323536534f554e440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008323536534f554e44000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001777696c6c6368616e67657768656e676f696e676c697665000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): 256SOUND
Arg [1] : _symbol (string): 256SOUND
Arg [2] : _initBaseURI (string): willchangewhengoinglive
Arg [3] : _initAddress (address): 0x44E4aFA4b442f11693844d425fB29aEDDFA0F33E

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 00000000000000000000000044e4afa4b442f11693844d425fb29aeddfa0f33e
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 323536534f554e44000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 323536534f554e44000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [9] : 77696c6c6368616e67657768656e676f696e676c697665000000000000000000


Deployed Bytecode Sourcemap

47344:4214:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51343:212;;;;;;:::i;:::-;;:::i;:::-;;;8862:14:1;;8855:22;8837:41;;8825:2;8810:18;51343:212:0;;;;;;;;50462:99;;;;;;:::i;:::-;;:::i;:::-;;17875:100;;;:::i;:::-;;;;;;;:::i;19434:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7523:32:1;;;7505:51;;7493:2;7478:18;19434:221:0;7359:203:1;18957:411:0;;;;;;:::i;:::-;;:::i;30623:113::-;30711:10;:17;30623:113;;;18561:25:1;;;18549:2;18534:18;30623:113:0;18415:177:1;47615:33:0;;;;;;20324:339;;;;;;:::i;:::-;;:::i;30291:256::-;;;;;;:::i;:::-;;:::i;50160:140::-;;;:::i;20734:185::-;;;;;;:::i;:::-;;:::i;49112:390::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;30813:233::-;;;;;;:::i;:::-;;:::i;50569:104::-;;;;;;:::i;:::-;;:::i;17569:239::-;;;;;;:::i;:::-;;:::i;47505:21::-;;;:::i;17299:208::-;;;;;;:::i;:::-;;:::i;13978:94::-;;;:::i;50797:122::-;;;;;;:::i;:::-;;:::i;13327:87::-;13400:6;;-1:-1:-1;;;;;13400:6:0;13327:87;;48311:98;;;:::i;18044:104::-;;;:::i;47694:31::-;;;;;;;;-1:-1:-1;;;;;47694:31:0;;;19727:295;;;;;;:::i;:::-;;:::i;50308:146::-;;;;;;:::i;:::-;;:::i;20990:328::-;;;;;;:::i;:::-;;:::i;47533:37::-;;;:::i;49510:642::-;;;;;;:::i;:::-;;:::i;47577:31::-;;;;;;50927:151;;;;;;:::i;:::-;;:::i;20093:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;20214:25:0;;;20190:4;20214:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20093:164;47655:32;;;;;;;;;14227:192;;;;;;:::i;:::-;;:::i;48417:687::-;;;;;;:::i;:::-;;:::i;51343:212::-;51482:4;51511:36;51535:11;51511:23;:36::i;:::-;51504:43;51343:212;-1:-1:-1;;51343:212:0:o;50462:99::-;13400:6;;-1:-1:-1;;;;;13400:6:0;8093:10;13547:23;13539:68;;;;-1:-1:-1;;;13539:68:0;;;;;;;:::i;:::-;;;;;;;;;50530:12:::1;:23:::0;;-1:-1:-1;;50530:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50462:99::o;17875:100::-;17929:13;17962:5;17955:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17875:100;:::o;19434:221::-;19510:7;22917:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22917:16:0;19530:73;;;;-1:-1:-1;;;19530:73:0;;14380:2:1;19530:73:0;;;14362:21:1;14419:2;14399:18;;;14392:30;14458:34;14438:18;;;14431:62;-1:-1:-1;;;14509:18:1;;;14502:42;14561:19;;19530:73:0;14178:408:1;19530:73:0;-1:-1:-1;19623:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;19623:24:0;;19434:221::o;18957:411::-;19038:13;19054:23;19069:7;19054:14;:23::i;:::-;19038:39;;19102:5;-1:-1:-1;;;;;19096:11:0;:2;-1:-1:-1;;;;;19096:11:0;;;19088:57;;;;-1:-1:-1;;;19088:57:0;;15980:2:1;19088:57:0;;;15962:21:1;16019:2;15999:18;;;15992:30;16058:34;16038:18;;;16031:62;-1:-1:-1;;;16109:18:1;;;16102:31;16150:19;;19088:57:0;15778:397:1;19088:57:0;8093:10;-1:-1:-1;;;;;19180:21:0;;;;:62;;-1:-1:-1;19205:37:0;19222:5;8093:10;20093:164;:::i;19205:37::-;19158:168;;;;-1:-1:-1;;;19158:168:0;;12426:2:1;19158:168:0;;;12408:21:1;12465:2;12445:18;;;12438:30;12504:34;12484:18;;;12477:62;12575:26;12555:18;;;12548:54;12619:19;;19158:168:0;12224:420:1;19158:168:0;19339:21;19348:2;19352:7;19339:8;:21::i;:::-;19027:341;18957:411;;:::o;20324:339::-;20519:41;8093:10;20552:7;20519:18;:41::i;:::-;20511:103;;;;-1:-1:-1;;;20511:103:0;;;;;;;:::i;:::-;20627:28;20637:4;20643:2;20647:7;20627:9;:28::i;30291:256::-;30388:7;30424:23;30441:5;30424:16;:23::i;:::-;30416:5;:31;30408:87;;;;-1:-1:-1;;;30408:87:0;;9315:2:1;30408:87:0;;;9297:21:1;9354:2;9334:18;;;9327:30;9393:34;9373:18;;;9366:62;-1:-1:-1;;;9444:18:1;;;9437:41;9495:19;;30408:87:0;9113:407:1;30408:87:0;-1:-1:-1;;;;;;30513:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;30291:256::o;50160:140::-;13400:6;;-1:-1:-1;;;;;13400:6:0;8093:10;13547:23;13539:68;;;;-1:-1:-1;;;13539:68:0;;;;;;;:::i;:::-;50226:21:::1;50266:7;13400:6:::0;;-1:-1:-1;;;;;13400:6:0;;13327:87;50266:7:::1;-1:-1:-1::0;;;;;50258:25:0::1;:34;50284:7;50258:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;50197:103;50160:140::o:0;20734:185::-;20872:39;20889:4;20895:2;20899:7;20872:39;;;;;;;;;;;;:16;:39::i;49112:390::-;49199:16;49233:23;49259:17;49269:6;49259:9;:17::i;:::-;49233:43;;49287:25;49329:15;49315:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49315:30:0;;49287:58;;49361:9;49356:113;49376:15;49372:1;:19;49356:113;;;49427:30;49447:6;49455:1;49427:19;:30::i;:::-;49413:8;49422:1;49413:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;49393:3;;;;:::i;:::-;;;;49356:113;;;-1:-1:-1;49486:8:0;49112:390;-1:-1:-1;;;49112:390:0:o;30813:233::-;30888:7;30924:30;30711:10;:17;;30623:113;30924:30;30916:5;:38;30908:95;;;;-1:-1:-1;;;30908:95:0;;17493:2:1;30908:95:0;;;17475:21:1;17532:2;17512:18;;;17505:30;17571:34;17551:18;;;17544:62;-1:-1:-1;;;17622:18:1;;;17615:42;17674:19;;30908:95:0;17291:408:1;30908:95:0;31021:10;31032:5;31021:17;;;;;;;;:::i;:::-;;;;;;;;;31014:24;;30813:233;;;:::o;50569:104::-;13400:6;;-1:-1:-1;;;;;13400:6:0;8093:10;13547:23;13539:68;;;;-1:-1:-1;;;13539:68:0;;;;;;;:::i;:::-;50644:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;17569:239::-:0;17641:7;17677:16;;;:7;:16;;;;;;-1:-1:-1;;;;;17677:16:0;17712:19;17704:73;;;;-1:-1:-1;;;17704:73:0;;13262:2:1;17704:73:0;;;13244:21:1;13301:2;13281:18;;;13274:30;13340:34;13320:18;;;13313:62;-1:-1:-1;;;13391:18:1;;;13384:39;13440:19;;17704:73:0;13060:405:1;47505:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17299:208::-;17371:7;-1:-1:-1;;;;;17399:19:0;;17391:74;;;;-1:-1:-1;;;17391:74:0;;12851:2:1;17391:74:0;;;12833:21:1;12890:2;12870:18;;;12863:30;12929:34;12909:18;;;12902:62;-1:-1:-1;;;12980:18:1;;;12973:40;13030:19;;17391:74:0;12649:406:1;17391:74:0;-1:-1:-1;;;;;;17483:16:0;;;;;:9;:16;;;;;;;17299:208::o;13978:94::-;13400:6;;-1:-1:-1;;;;;13400:6:0;8093:10;13547:23;13539:68;;;;-1:-1:-1;;;13539:68:0;;;;;;;:::i;:::-;14043:21:::1;14061:1;14043:9;:21::i;:::-;13978:94::o:0;50797:122::-;13400:6;;-1:-1:-1;;;;;13400:6:0;8093:10;13547:23;13539:68;;;;-1:-1:-1;;;13539:68:0;;;;;;;:::i;:::-;50878:13:::1;:33:::0;50797:122::o;48311:98::-;48356:7;48383:18;:8;11828:14;;11736:114;48383:18;48376:25;;48311:98;:::o;18044:104::-;18100:13;18133:7;18126:14;;;;;:::i;19727:295::-;-1:-1:-1;;;;;19830:24:0;;8093:10;19830:24;;19822:62;;;;-1:-1:-1;;;19822:62:0;;11315:2:1;19822:62:0;;;11297:21:1;11354:2;11334:18;;;11327:30;11393:27;11373:18;;;11366:55;11438:18;;19822:62:0;11113:349:1;19822:62:0;8093:10;19897:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;19897:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;19897:53:0;;;;;;;;;;19966:48;;8837:41:1;;;19897:42:0;;8093:10;19966:48;;8810:18:1;19966:48:0;;;;;;;19727:295;;:::o;50308:146::-;13400:6;;-1:-1:-1;;;;;13400:6:0;8093:10;13547:23;13539:68;;;;-1:-1:-1;;;13539:68:0;;;;;;;:::i;:::-;50419:16:::1;:27:::0;;-1:-1:-1;;;;;50419:27:0;;::::1;;;-1:-1:-1::0;;;;;;50419:27:0;;::::1;::::0;;;::::1;::::0;;50308:146::o;20990:328::-;21165:41;8093:10;21198:7;21165:18;:41::i;:::-;21157:103;;;;-1:-1:-1;;;21157:103:0;;;;;;;:::i;:::-;21271:39;21285:4;21291:2;21295:7;21304:5;21271:13;:39::i;:::-;20990:328;;;;:::o;47533:37::-;;;;;;;:::i;49510:642::-;22893:4;22917:16;;;:7;:16;;;;;;49628:13;;-1:-1:-1;;;;;22917:16:0;49659:113;;;;-1:-1:-1;;;49659:113:0;;15564:2:1;49659:113:0;;;15546:21:1;15603:2;15583:18;;;15576:30;15642:34;15622:18;;;15615:62;-1:-1:-1;;;15693:18:1;;;15686:45;15748:19;;49659:113:0;15362:411:1;49659:113:0;49785:28;49816:10;:8;:10::i;:::-;49785:41;;49888:1;49863:14;49857:28;:32;:287;;;;;;;;;;;;;;;;;49981:14;50022:18;:7;:16;:18::i;:::-;50067:13;49938:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49857:287;49837:307;49510:642;-1:-1:-1;;;49510:642:0:o;50927:151::-;13400:6;;-1:-1:-1;;;;;13400:6:0;8093:10;13547:23;13539:68;;;;-1:-1:-1;;;13539:68:0;;;;;;;:::i;:::-;51037:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;14227:192::-:0;13400:6;;-1:-1:-1;;;;;13400:6:0;8093:10;13547:23;13539:68;;;;-1:-1:-1;;;13539:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14316:22:0;::::1;14308:73;;;::::0;-1:-1:-1;;;14308:73:0;;10146:2:1;14308:73:0::1;::::0;::::1;10128:21:1::0;10185:2;10165:18;;;10158:30;10224:34;10204:18;;;10197:62;-1:-1:-1;;;10275:18:1;;;10268:36;10321:19;;14308:73:0::1;9944:402:1::0;14308:73:0::1;14392:19;14402:8;14392:9;:19::i;:::-;14227:192:::0;:::o;48417:687::-;9974:1;10570:7;;:19;;10562:63;;;;-1:-1:-1;;;10562:63:0;;17906:2:1;10562:63:0;;;17888:21:1;17945:2;17925:18;;;17918:30;17984:33;17964:18;;;17957:61;18035:18;;10562:63:0;17704:355:1;10562:63:0;9974:1;10703:7;:18;48551:12:::1;::::0;48511;;48551::::1;;48543:40;;;::::0;-1:-1:-1;;;48543:40:0;;12082:2:1;48543:40:0::1;::::0;::::1;12064:21:1::0;12121:2;12101:18;;;12094:30;-1:-1:-1;;;12140:18:1;;;12133:45;12195:18;;48543:40:0::1;11880:339:1::0;48543:40:0::1;48610:1;48602:5;:9;48594:44;;;::::0;-1:-1:-1;;;48594:44:0;;18266:2:1;48594:44:0::1;::::0;::::1;18248:21:1::0;18305:2;18285:18;;;18278:30;-1:-1:-1;;;18324:18:1;;;18317:52;18386:18;;48594:44:0::1;18064:346:1::0;48594:44:0::1;48666:13;;48657:5;:22;;48649:54;;;::::0;-1:-1:-1;;;48649:54:0;;17145:2:1;48649:54:0::1;::::0;::::1;17127:21:1::0;17184:2;17164:18;;;17157:30;-1:-1:-1;;;17203:18:1;;;17196:49;17262:18;;48649:54:0::1;16943:343:1::0;48649:54:0::1;48769:9;;48765:1;48757:5;48736:18;:8;11828:14:::0;;11736:114;48736:18:::1;:26;;;;:::i;:::-;:30;;;;:::i;:::-;:42;48714:110;;;::::0;-1:-1:-1;;;48714:110:0;;13672:2:1;48714:110:0::1;::::0;::::1;13654:21:1::0;13711:2;13691:18;;;13684:30;-1:-1:-1;;;13730:18:1;;;13723:48;13788:18;;48714:110:0::1;13470:342:1::0;48714:110:0::1;48852:9;48847:98;48871:5;48867:1;:9;48847:98;;;48898:35;48917:12;;48930:1;48917:15;;;;;;;:::i;:::-;;;;;;;48898:18;:35::i;:::-;48878:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48847:98;;;;48962:9;48957:140;48981:5;48977:1;:9;48957:140;;;49008:40;8093:10:::0;49032:12:::1;;49045:1;49032:15;;;;;;;:::i;:::-;;;;;;;49008:9;:40::i;:::-;49065:20;:8;11947:19:::0;;11965:1;11947:19;;;11858:127;49065:20:::1;48988:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48957:140;;;-1:-1:-1::0;;9930:1:0;10882:7;:22;-1:-1:-1;;48417:687:0:o;29983:224::-;30085:4;-1:-1:-1;;;;;;30109:50:0;;-1:-1:-1;;;30109:50:0;;:90;;;30163:36;30187:11;30163:23;:36::i;26810:174::-;26885:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;26885:29:0;-1:-1:-1;;;;;26885:29:0;;;;;;;;:24;;26939:23;26885:24;26939:14;:23::i;:::-;-1:-1:-1;;;;;26930:46:0;;;;;;;;;;;26810:174;;:::o;23122:348::-;23215:4;22917:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22917:16:0;23232:73;;;;-1:-1:-1;;;23232:73:0;;11669:2:1;23232:73:0;;;11651:21:1;11708:2;11688:18;;;11681:30;11747:34;11727:18;;;11720:62;-1:-1:-1;;;11798:18:1;;;11791:42;11850:19;;23232:73:0;11467:408:1;23232:73:0;23316:13;23332:23;23347:7;23332:14;:23::i;:::-;23316:39;;23385:5;-1:-1:-1;;;;;23374:16:0;:7;-1:-1:-1;;;;;23374:16:0;;:51;;;;23418:7;-1:-1:-1;;;;;23394:31:0;:20;23406:7;23394:11;:20::i;:::-;-1:-1:-1;;;;;23394:31:0;;23374:51;:87;;;-1:-1:-1;;;;;;20214:25:0;;;20190:4;20214:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;23429:32;23366:96;23122:348;-1:-1:-1;;;;23122:348:0:o;26114:578::-;26273:4;-1:-1:-1;;;;;26246:31:0;:23;26261:7;26246:14;:23::i;:::-;-1:-1:-1;;;;;26246:31:0;;26238:85;;;;-1:-1:-1;;;26238:85:0;;15154:2:1;26238:85:0;;;15136:21:1;15193:2;15173:18;;;15166:30;15232:34;15212:18;;;15205:62;-1:-1:-1;;;15283:18:1;;;15276:39;15332:19;;26238:85:0;14952:405:1;26238:85:0;-1:-1:-1;;;;;26342:16:0;;26334:65;;;;-1:-1:-1;;;26334:65:0;;10910:2:1;26334:65:0;;;10892:21:1;10949:2;10929:18;;;10922:30;10988:34;10968:18;;;10961:62;-1:-1:-1;;;11039:18:1;;;11032:34;11083:19;;26334:65:0;10708:400:1;26334:65:0;26412:39;26433:4;26439:2;26443:7;26412:20;:39::i;:::-;26516:29;26533:1;26537:7;26516:8;:29::i;:::-;-1:-1:-1;;;;;26558:15:0;;;;;;:9;:15;;;;;:20;;26577:1;;26558:15;:20;;26577:1;;26558:20;:::i;:::-;;;;-1:-1:-1;;;;;;;26589:13:0;;;;;;:9;:13;;;;;:18;;26606:1;;26589:13;:18;;26606:1;;26589:18;:::i;:::-;;;;-1:-1:-1;;26618:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;26618:21:0;-1:-1:-1;;;;;26618:21:0;;;;;;;;;26657:27;;26618:16;;26657:27;;;;;;;26114:578;;;:::o;14427:173::-;14502:6;;;-1:-1:-1;;;;;14519:17:0;;;-1:-1:-1;;;;;;14519:17:0;;;;;;;14552:40;;14502:6;;;14519:17;14502:6;;14552:40;;14483:16;;14552:40;14472:128;14427:173;:::o;22200:315::-;22357:28;22367:4;22373:2;22377:7;22357:9;:28::i;:::-;22404:48;22427:4;22433:2;22437:7;22446:5;22404:22;:48::i;:::-;22396:111;;;;-1:-1:-1;;;22396:111:0;;;;;;;:::i;50681:108::-;50741:13;50774:7;50767:14;;;;;:::i;36442:723::-;36498:13;36719:10;36715:53;;-1:-1:-1;;36746:10:0;;;;;;;;;;;;-1:-1:-1;;;36746:10:0;;;;;36442:723::o;36715:53::-;36793:5;36778:12;36834:78;36841:9;;36834:78;;36867:8;;;;:::i;:::-;;-1:-1:-1;36890:10:0;;-1:-1:-1;36898:2:0;36890:10;;:::i;:::-;;;36834:78;;;36922:19;36954:6;36944:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36944:17:0;;36922:39;;36972:154;36979:10;;36972:154;;37006:11;37016:1;37006:11;;:::i;:::-;;-1:-1:-1;37075:10:0;37083:2;37075:5;:10;:::i;:::-;37062:24;;:2;:24;:::i;:::-;37049:39;;37032:6;37039;37032:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37032:56:0;;;;;;;;-1:-1:-1;37103:11:0;37112:2;37103:11;;:::i;:::-;;;36972:154;;48014:247;48112:16;;;;;-1:-1:-1;;;;;48112:16:0;8093:10;48164:29;;-1:-1:-1;;;48164:29:0;;;;;18561:25:1;;;-1:-1:-1;;;;;48164:45:0;;;;:18;;;;;18534::1;;48164:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;48164:45:0;;48142:111;;;;-1:-1:-1;;;48142:111:0;;16800:2:1;48142:111:0;;;16782:21:1;16839:2;16819:18;;;16812:30;-1:-1:-1;;;16858:18:1;;;16851:46;16914:18;;48142:111:0;16598:340:1;23812:110:0;23888:26;23898:2;23902:7;23888:26;;;;;;;;;;;;:9;:26::i;16930:305::-;17032:4;-1:-1:-1;;;;;;17069:40:0;;-1:-1:-1;;;17069:40:0;;:105;;-1:-1:-1;;;;;;;17126:48:0;;-1:-1:-1;;;17126:48:0;17069:105;:158;;;-1:-1:-1;;;;;;;;;;1793:40:0;;;17191:36;1684:157;51120:215;51282:45;51309:4;51315:2;51319:7;51282:26;:45::i;27549:799::-;27704:4;-1:-1:-1;;;;;27725:13:0;;39290:20;39338:8;27721:620;;27761:72;;-1:-1:-1;;;27761:72:0;;-1:-1:-1;;;;;27761:36:0;;;;;:72;;8093:10;;27812:4;;27818:7;;27827:5;;27761:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27761:72:0;;;;;;;;-1:-1:-1;;27761:72:0;;;;;;;;;;;;:::i;:::-;;;27757:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28003:13:0;;27999:272;;28046:60;;-1:-1:-1;;;28046:60:0;;;;;;;:::i;27999:272::-;28221:6;28215:13;28206:6;28202:2;28198:15;28191:38;27757:529;-1:-1:-1;;;;;;27884:51:0;-1:-1:-1;;;27884:51:0;;-1:-1:-1;27877:58:0;;27721:620;-1:-1:-1;28325:4:0;27549:799;;;;;;:::o;24149:321::-;24279:18;24285:2;24289:7;24279:5;:18::i;:::-;24330:54;24361:1;24365:2;24369:7;24378:5;24330:22;:54::i;:::-;24308:154;;;;-1:-1:-1;;;24308:154:0;;;;;;;:::i;31659:589::-;-1:-1:-1;;;;;31865:18:0;;31861:187;;31900:40;31932:7;33075:10;:17;;33048:24;;;;:15;:24;;;;;:44;;;33103:24;;;;;;;;;;;;32971:164;31900:40;31861:187;;;31970:2;-1:-1:-1;;;;;31962:10:0;:4;-1:-1:-1;;;;;31962:10:0;;31958:90;;31989:47;32022:4;32028:7;31989:32;:47::i;:::-;-1:-1:-1;;;;;32062:16:0;;32058:183;;32095:45;32132:7;32095:36;:45::i;32058:183::-;32168:4;-1:-1:-1;;;;;32162:10:0;:2;-1:-1:-1;;;;;32162:10:0;;32158:83;;32189:40;32217:2;32221:7;32189:27;:40::i;24806:382::-;-1:-1:-1;;;;;24886:16:0;;24878:61;;;;-1:-1:-1;;;24878:61:0;;14019:2:1;24878:61:0;;;14001:21:1;;;14038:18;;;14031:30;14097:34;14077:18;;;14070:62;14149:18;;24878:61:0;13817:356:1;24878:61:0;22893:4;22917:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22917:16:0;:30;24950:58;;;;-1:-1:-1;;;24950:58:0;;10553:2:1;24950:58:0;;;10535:21:1;10592:2;10572:18;;;10565:30;10631;10611:18;;;10604:58;10679:18;;24950:58:0;10351:352:1;24950:58:0;25021:45;25050:1;25054:2;25058:7;25021:20;:45::i;:::-;-1:-1:-1;;;;;25079:13:0;;;;;;:9;:13;;;;;:18;;25096:1;;25079:13;:18;;25096:1;;25079:18;:::i;:::-;;;;-1:-1:-1;;25108:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;25108:21:0;-1:-1:-1;;;;;25108:21:0;;;;;;;;25147:33;;25108:16;;;25147:33;;25108:16;;25147:33;24806:382;;:::o;33762:988::-;34028:22;34078:1;34053:22;34070:4;34053:16;:22::i;:::-;:26;;;;:::i;:::-;34090:18;34111:26;;;:17;:26;;;;;;34028:51;;-1:-1:-1;34244:28:0;;;34240:328;;-1:-1:-1;;;;;34311:18:0;;34289:19;34311:18;;;:12;:18;;;;;;;;:34;;;;;;;;;34362:30;;;;;;:44;;;34479:30;;:17;:30;;;;;:43;;;34240:328;-1:-1:-1;34664:26:0;;;;:17;:26;;;;;;;;34657:33;;;-1:-1:-1;;;;;34708:18:0;;;;;:12;:18;;;;;:34;;;;;;;34701:41;33762:988::o;35045:1079::-;35323:10;:17;35298:22;;35323:21;;35343:1;;35323:21;:::i;:::-;35355:18;35376:24;;;:15;:24;;;;;;35749:10;:26;;35298:46;;-1:-1:-1;35376:24:0;;35298:46;;35749:26;;;;;;:::i;:::-;;;;;;;;;35727:48;;35813:11;35788:10;35799;35788:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;35893:28;;;:15;:28;;;;;;;:41;;;36065:24;;;;;36058:31;36100:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;35116:1008;;;35045:1079;:::o;32549:221::-;32634:14;32651:20;32668:2;32651:16;:20::i;:::-;-1:-1:-1;;;;;32682:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;32727:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;32549:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:251::-;1137:6;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1238:9;1232:16;1257:31;1282:5;1257:31;:::i;1323:388::-;1391:6;1399;1452:2;1440:9;1431:7;1427:23;1423:32;1420:52;;;1468:1;1465;1458:12;1420:52;1507:9;1494:23;1526:31;1551:5;1526:31;:::i;:::-;1576:5;-1:-1:-1;1633:2:1;1618:18;;1605:32;1646:33;1605:32;1646:33;:::i;:::-;1698:7;1688:17;;;1323:388;;;;;:::o;1716:456::-;1793:6;1801;1809;1862:2;1850:9;1841:7;1837:23;1833:32;1830:52;;;1878:1;1875;1868:12;1830:52;1917:9;1904:23;1936:31;1961:5;1936:31;:::i;:::-;1986:5;-1:-1:-1;2043:2:1;2028:18;;2015:32;2056:33;2015:32;2056:33;:::i;:::-;1716:456;;2108:7;;-1:-1:-1;;;2162:2:1;2147:18;;;;2134:32;;1716:456::o;2177:794::-;2272:6;2280;2288;2296;2349:3;2337:9;2328:7;2324:23;2320:33;2317:53;;;2366:1;2363;2356:12;2317:53;2405:9;2392:23;2424:31;2449:5;2424:31;:::i;:::-;2474:5;-1:-1:-1;2531:2:1;2516:18;;2503:32;2544:33;2503:32;2544:33;:::i;:::-;2596:7;-1:-1:-1;2650:2:1;2635:18;;2622:32;;-1:-1:-1;2705:2:1;2690:18;;2677:32;2732:18;2721:30;;2718:50;;;2764:1;2761;2754:12;2718:50;2787:22;;2840:4;2832:13;;2828:27;-1:-1:-1;2818:55:1;;2869:1;2866;2859:12;2818:55;2892:73;2957:7;2952:2;2939:16;2934:2;2930;2926:11;2892:73;:::i;:::-;2882:83;;;2177:794;;;;;;;:::o;2976:315::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3157:9;3144:23;3176:31;3201:5;3176:31;:::i;:::-;3226:5;-1:-1:-1;3250:35:1;3281:2;3266:18;;3250:35;:::i;:::-;3240:45;;2976:315;;;;;:::o;3296:::-;3364:6;3372;3425:2;3413:9;3404:7;3400:23;3396:32;3393:52;;;3441:1;3438;3431:12;3393:52;3480:9;3467:23;3499:31;3524:5;3499:31;:::i;:::-;3549:5;3601:2;3586:18;;;;3573:32;;-1:-1:-1;;;3296:315:1:o;3616:615::-;3702:6;3710;3763:2;3751:9;3742:7;3738:23;3734:32;3731:52;;;3779:1;3776;3769:12;3731:52;3819:9;3806:23;3848:18;3889:2;3881:6;3878:14;3875:34;;;3905:1;3902;3895:12;3875:34;3943:6;3932:9;3928:22;3918:32;;3988:7;3981:4;3977:2;3973:13;3969:27;3959:55;;4010:1;4007;4000:12;3959:55;4050:2;4037:16;4076:2;4068:6;4065:14;4062:34;;;4092:1;4089;4082:12;4062:34;4145:7;4140:2;4130:6;4127:1;4123:14;4119:2;4115:23;4111:32;4108:45;4105:65;;;4166:1;4163;4156:12;4105:65;4197:2;4189:11;;;;;4219:6;;-1:-1:-1;3616:615:1;;-1:-1:-1;;;;3616:615:1:o;4236:180::-;4292:6;4345:2;4333:9;4324:7;4320:23;4316:32;4313:52;;;4361:1;4358;4351:12;4313:52;4384:26;4400:9;4384:26;:::i;4421:245::-;4479:6;4532:2;4520:9;4511:7;4507:23;4503:32;4500:52;;;4548:1;4545;4538:12;4500:52;4587:9;4574:23;4606:30;4630:5;4606:30;:::i;4671:249::-;4740:6;4793:2;4781:9;4772:7;4768:23;4764:32;4761:52;;;4809:1;4806;4799:12;4761:52;4841:9;4835:16;4860:30;4884:5;4860:30;:::i;4925:450::-;4994:6;5047:2;5035:9;5026:7;5022:23;5018:32;5015:52;;;5063:1;5060;5053:12;5015:52;5103:9;5090:23;5136:18;5128:6;5125:30;5122:50;;;5168:1;5165;5158:12;5122:50;5191:22;;5244:4;5236:13;;5232:27;-1:-1:-1;5222:55:1;;5273:1;5270;5263:12;5222:55;5296:73;5361:7;5356:2;5343:16;5338:2;5334;5330:11;5296:73;:::i;5380:180::-;5439:6;5492:2;5480:9;5471:7;5467:23;5463:32;5460:52;;;5508:1;5505;5498:12;5460:52;-1:-1:-1;5531:23:1;;5380:180;-1:-1:-1;5380:180:1:o;5565:257::-;5606:3;5644:5;5638:12;5671:6;5666:3;5659:19;5687:63;5743:6;5736:4;5731:3;5727:14;5720:4;5713:5;5709:16;5687:63;:::i;:::-;5804:2;5783:15;-1:-1:-1;;5779:29:1;5770:39;;;;5811:4;5766:50;;5565:257;-1:-1:-1;;5565:257:1:o;5827:1527::-;6051:3;6089:6;6083:13;6115:4;6128:51;6172:6;6167:3;6162:2;6154:6;6150:15;6128:51;:::i;:::-;6242:13;;6201:16;;;;6264:55;6242:13;6201:16;6286:15;;;6264:55;:::i;:::-;6408:13;;6341:20;;;6381:1;;6468;6490:18;;;;6543;;;;6570:93;;6648:4;6638:8;6634:19;6622:31;;6570:93;6711:2;6701:8;6698:16;6678:18;6675:40;6672:167;;;-1:-1:-1;;;6738:33:1;;6794:4;6791:1;6784:15;6824:4;6745:3;6812:17;6672:167;6855:18;6882:110;;;;7006:1;7001:328;;;;6848:481;;6882:110;-1:-1:-1;;6917:24:1;;6903:39;;6962:20;;;;-1:-1:-1;6882:110:1;;7001:328;18670:1;18663:14;;;18707:4;18694:18;;7096:1;7110:169;7124:8;7121:1;7118:15;7110:169;;;7206:14;;7191:13;;;7184:37;7249:16;;;;7141:10;;7110:169;;;7114:3;;7310:8;7303:5;7299:20;7292:27;;6848:481;-1:-1:-1;7345:3:1;;5827:1527;-1:-1:-1;;;;;;;;;;;5827:1527:1:o;7567:488::-;-1:-1:-1;;;;;7836:15:1;;;7818:34;;7888:15;;7883:2;7868:18;;7861:43;7935:2;7920:18;;7913:34;;;7983:3;7978:2;7963:18;;7956:31;;;7761:4;;8004:45;;8029:19;;8021:6;8004:45;:::i;:::-;7996:53;7567:488;-1:-1:-1;;;;;;7567:488:1:o;8060:632::-;8231:2;8283:21;;;8353:13;;8256:18;;;8375:22;;;8202:4;;8231:2;8454:15;;;;8428:2;8413:18;;;8202:4;8497:169;8511:6;8508:1;8505:13;8497:169;;;8572:13;;8560:26;;8641:15;;;;8606:12;;;;8533:1;8526:9;8497:169;;;-1:-1:-1;8683:3:1;;8060:632;-1:-1:-1;;;;;;8060:632:1:o;8889:219::-;9038:2;9027:9;9020:21;9001:4;9058:44;9098:2;9087:9;9083:18;9075:6;9058:44;:::i;9525:414::-;9727:2;9709:21;;;9766:2;9746:18;;;9739:30;9805:34;9800:2;9785:18;;9778:62;-1:-1:-1;;;9871:2:1;9856:18;;9849:48;9929:3;9914:19;;9525:414::o;14591:356::-;14793:2;14775:21;;;14812:18;;;14805:30;14871:34;14866:2;14851:18;;14844:62;14938:2;14923:18;;14591:356::o;16180:413::-;16382:2;16364:21;;;16421:2;16401:18;;;16394:30;16460:34;16455:2;16440:18;;16433:62;-1:-1:-1;;;16526:2:1;16511:18;;16504:47;16583:3;16568:19;;16180:413::o;18723:128::-;18763:3;18794:1;18790:6;18787:1;18784:13;18781:39;;;18800:18;;:::i;:::-;-1:-1:-1;18836:9:1;;18723:128::o;18856:120::-;18896:1;18922;18912:35;;18927:18;;:::i;:::-;-1:-1:-1;18961:9:1;;18856:120::o;18981:125::-;19021:4;19049:1;19046;19043:8;19040:34;;;19054:18;;:::i;:::-;-1:-1:-1;19091:9:1;;18981:125::o;19111:258::-;19183:1;19193:113;19207:6;19204:1;19201:13;19193:113;;;19283:11;;;19277:18;19264:11;;;19257:39;19229:2;19222:10;19193:113;;;19324:6;19321:1;19318:13;19315:48;;;-1:-1:-1;;19359:1:1;19341:16;;19334:27;19111:258::o;19374:380::-;19453:1;19449:12;;;;19496;;;19517:61;;19571:4;19563:6;19559:17;19549:27;;19517:61;19624:2;19616:6;19613:14;19593:18;19590:38;19587:161;;;19670:10;19665:3;19661:20;19658:1;19651:31;19705:4;19702:1;19695:15;19733:4;19730:1;19723:15;19587:161;;19374:380;;;:::o;19759:135::-;19798:3;-1:-1:-1;;19819:17:1;;19816:43;;;19839:18;;:::i;:::-;-1:-1:-1;19886:1:1;19875:13;;19759:135::o;19899:112::-;19931:1;19957;19947:35;;19962:18;;:::i;:::-;-1:-1:-1;19996:9:1;;19899:112::o;20016:127::-;20077:10;20072:3;20068:20;20065:1;20058:31;20108:4;20105:1;20098:15;20132:4;20129:1;20122:15;20148:127;20209:10;20204:3;20200:20;20197:1;20190:31;20240:4;20237:1;20230:15;20264:4;20261:1;20254:15;20280:127;20341:10;20336:3;20332:20;20329:1;20322:31;20372:4;20369:1;20362:15;20396:4;20393:1;20386:15;20412:127;20473:10;20468:3;20464:20;20461:1;20454:31;20504:4;20501:1;20494:15;20528:4;20525:1;20518:15;20544:127;20605:10;20600:3;20596:20;20593:1;20586:31;20636:4;20633:1;20626:15;20660:4;20657:1;20650:15;20676:131;-1:-1:-1;;;;;20751:31:1;;20741:42;;20731:70;;20797:1;20794;20787:12;20812:131;-1:-1:-1;;;;;;20886:32:1;;20876:43;;20866:71;;20933:1;20930;20923:12

Swarm Source

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