ETH Price: $3,386.81 (-1.40%)
Gas: 3 Gwei

Token

RDB (RDBCC)
 

Overview

Max Total Supply

1,787 RDBCC

Holders

605

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 RDBCC
0xe15af41bc008cd0e66a2bf0eb49830623ff49a71
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:
RBDCC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-30
*/

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


// OpenZeppelin Contracts v4.4.1 (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: contracts/RDBCCLive.sol



// 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/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/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/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/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/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/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: @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/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/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);
    }
}


pragma solidity >=0.7.0 <0.9.0;


contract RBDCC is ERC721, Ownable {
  using Strings for uint256;
  using  Counters for Counters.Counter;

  Counters.Counter private supply;

  string private baseURI;
  string private baseExtension;
  string private RevealedUri;
  string private signature;
  address[] private Twallets;
  uint256 public presaleCost = 0.1 ether;
  uint256 public cost = 0.2 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 50;
  uint256 public nftPerWLAddressLimit = 5;
  bool public paused = true;
  bool public revealed = false;
  bool public presaleActive = true; 
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _signature,
    string memory _initBaseURI,
    string memory _initRevealedUri
  ) ERC721(_name, _symbol) { setSignature(_signature);
    setBaseURI(_initBaseURI);
    setRevealedURI(_initRevealedUri);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
  
  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "This tx would exceed max supply");
    _;
  }

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

  // Mint-Presale and Public

  function mint(uint256 _mintAmount, string memory _signature) public payable mintCompliance(_mintAmount) {
    
    if (presaleActive == true){
        require(!paused, "the contract is paused");
        require(presaleActive, "Presale is not Active!");
        require(keccak256(abi.encodePacked((signature))) == keccak256(abi.encodePacked((_signature))), "Invalid Signature");
        require(msg.value >= presaleCost * _mintAmount, "Balance too low");

    
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerWLAddressLimit, "max NFT per presale tx exceeded");
            
        
            _mintLoop(msg.sender, _mintAmount);
    }

    if (presaleActive == false){
    require(!paused, "the contract is paused");
    require(!presaleActive, "Presale is still active");
    require(msg.value >= cost * _mintAmount, "Balance too low");
        
        _mintLoop(msg.sender, _mintAmount);
  
    }
    }


    


   function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }


   function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return RevealedUri;
    }

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


  //owner commands only
  function reveal() public onlyOwner {
      revealed = true;
  }

  function setSignature(string memory _signature) public onlyOwner {
     signature = _signature;
  }

  
  function setNftPerWLAddressLimit(uint256 _limit) public onlyOwner {
    nftPerWLAddressLimit = _limit;
  }

  function setpresaleCost(uint256 _newpreCost) public onlyOwner {
    presaleCost = _newpreCost;
  }

  function setPublicCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _newmaxMintAmountPerTx;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setpreSale(bool _state) public onlyOwner {
    presaleActive = _state;
  }
  
  function setTwallets(address[] calldata _devwallets) public onlyOwner {
      delete Twallets;
      Twallets = _devwallets;
  }

  function getBalance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }
 
  function withdrawl1() public payable onlyOwner {
    // Do the splits here!
    // Project Wallet: 0x71CfB6c8Afa53B05148b8bf420E566caeE21d6bc
    uint256 currentBalance = address(this).balance;
    (bool hs, ) = payable(Twallets[2]).call{value: currentBalance * 225 / 1000}("");
    require(hs);
    (bool bs, ) = payable(Twallets[3]).call{value: currentBalance * 225 / 1000}("");
    require(bs);
    (bool cs, ) = payable(Twallets[1]).call{value: currentBalance * 200 / 1000}("");
    require(cs);
    (bool es, ) = payable(0x71CfB6c8Afa53B05148b8bf420E566caeE21d6bc).call{value: currentBalance * 100 / 1000}("");
    require(es);
    (bool ds, ) = payable(Twallets[0]).call{value: currentBalance * 50 / 1000}("");
    require(ds);
    //remainder to owner
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function withdrawB() external onlyOwner {
        uint256 currentBalance = address(this).balance;
        payable(Twallets[2]).transfer(currentBalance * 225 / 1000);
        payable(Twallets[3]).transfer(currentBalance * 225/ 1000);
        payable(Twallets[1]).transfer(currentBalance * 200/ 1000);
        payable(0x71CfB6c8Afa53B05148b8bf420E566caeE21d6bc).transfer(currentBalance * 100 / 1000);
        payable(Twallets[0]).transfer(currentBalance * 50/ 1000);           
        payable(owner()).transfer(address(this).balance);
    }

   function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_signature","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","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":"maxMintAmountPerTx","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":"_mintAmount","type":"uint256"},{"internalType":"string","name":"_signature","type":"string"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerWLAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerWLAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_RevealedURI","type":"string"}],"name":"setRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_signature","type":"string"}],"name":"setSignature","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_devwallets","type":"address[]"}],"name":"setTwallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmountPerTx","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setpreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newpreCost","type":"uint256"}],"name":"setpresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdrawB","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawl1","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267016345785d8a0000600d556702c68af0bb140000600e55612710600f55603260105560056011556012805462ffffff1916620100011790553480156200004a57600080fd5b50604051620032f0380380620032f08339810160408190526200006d91620003bb565b845185908590620000869060009060208501906200025e565b5080516200009c9060019060208401906200025e565b505050620000b9620000b3620000e560201b60201c565b620000e9565b620000c4836200013b565b620000cf82620001a3565b620000da8162000203565b5050505050620004ef565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200018a5760405162461bcd60e51b81526020600482018190526024820152600080516020620032d083398151915260448201526064015b60405180910390fd5b80516200019f90600b9060208401906200025e565b5050565b6006546001600160a01b03163314620001ee5760405162461bcd60e51b81526020600482018190526024820152600080516020620032d0833981519152604482015260640162000181565b80516200019f9060089060208401906200025e565b6006546001600160a01b031633146200024e5760405162461bcd60e51b81526020600482018190526024820152600080516020620032d0833981519152604482015260640162000181565b80516200019f90600a9060208401905b8280546200026c906200049c565b90600052602060002090601f016020900481019282620002905760008555620002db565b82601f10620002ab57805160ff1916838001178555620002db565b82800160010185558215620002db579182015b82811115620002db578251825591602001919060010190620002be565b50620002e9929150620002ed565b5090565b5b80821115620002e95760008155600101620002ee565b600082601f8301126200031657600080fd5b81516001600160401b0380821115620003335762000333620004d9565b604051601f8301601f19908116603f011681019082821181831017156200035e576200035e620004d9565b816040528381526020925086838588010111156200037b57600080fd5b600091505b838210156200039f578582018301518183018401529082019062000380565b83821115620003b15760008385830101525b9695505050505050565b600080600080600060a08688031215620003d457600080fd5b85516001600160401b0380821115620003ec57600080fd5b620003fa89838a0162000304565b965060208801519150808211156200041157600080fd5b6200041f89838a0162000304565b955060408801519150808211156200043657600080fd5b6200044489838a0162000304565b945060608801519150808211156200045b57600080fd5b6200046989838a0162000304565b935060808801519150808211156200048057600080fd5b506200048f8882890162000304565b9150509295509295909350565b600181811c90821680620004b157607f821691505b60208210811415620004d357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612dd180620004ff6000396000f3fe6080604052600436106102675760003560e01c8063715018a611610144578063ac9354e7116100b6578063d5abeb011161007a578063d5abeb01146106f7578063da3ef23f1461070d578063e985e9c51461072d578063efbd73f414610776578063f2fde38b14610796578063fa9ed7c6146107b657600080fd5b8063ac9354e71461067a578063b88d4fde1461069a578063bb8fddcc146106ba578063c87b56dd146106c2578063cd3c6c26146106e257600080fd5b80638da5cb5b116101085780638da5cb5b146105dc57806394354fd0146105fa57806395d89b4114610610578063a02cd2d814610625578063a22cb46514610645578063a475b5dd1461066557600080fd5b8063715018a61461055457806377097fc8146105695780637f00c7a61461057c578063811d24371461059c57806386f9e3f0146105bc57600080fd5b80632782fb22116101dd57806351830227116101a1578063518302271461049b57806353135ca0146104ba57806355f804b3146104da5780635c975abb146104fa5780636352211e1461051457806370a082311461053457600080fd5b80632782fb22146103f85780632a23d07d14610418578063326d43881461042e57806342842e0e1461044e578063438b63001461046e57600080fd5b8063095ea7b31161022f578063095ea7b31461033d57806312065fe01461035d57806313faede61461038057806318160ddd1461039657806318cae269146103ab57806323b872dd146103d857600080fd5b806301ffc9a71461026c57806302329a29146102a157806306e3c395146102c357806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561027857600080fd5b5061028c6102873660046128ac565b6107cc565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612891565b61081e565b005b3480156102cf57600080fd5b506102c16102de36600461281c565b610864565b3480156102ef57600080fd5b506102f86108ab565b6040516102989190612b4a565b34801561031157600080fd5b5061032561032036600461291b565b61093d565b6040516001600160a01b039091168152602001610298565b34801561034957600080fd5b506102c16103583660046127f2565b6109d2565b34801561036957600080fd5b50610372610ae3565b604051908152602001610298565b34801561038c57600080fd5b50610372600e5481565b3480156103a257600080fd5b50610372610b15565b3480156103b757600080fd5b506103726103c63660046126c2565b60136020526000908152604090205481565b3480156103e457600080fd5b506102c16103f3366004612710565b610b25565b34801561040457600080fd5b506102c16104133660046128e6565b610b56565b34801561042457600080fd5b50610372600d5481565b34801561043a57600080fd5b506102c16104493660046128e6565b610b97565b34801561045a57600080fd5b506102c1610469366004612710565b610bd4565b34801561047a57600080fd5b5061048e6104893660046126c2565b610bef565b6040516102989190612b06565b3480156104a757600080fd5b5060125461028c90610100900460ff1681565b3480156104c657600080fd5b5060125461028c9062010000900460ff1681565b3480156104e657600080fd5b506102c16104f53660046128e6565b610cd0565b34801561050657600080fd5b5060125461028c9060ff1681565b34801561052057600080fd5b5061032561052f36600461291b565b610d0d565b34801561054057600080fd5b5061037261054f3660046126c2565b610d84565b34801561056057600080fd5b506102c1610e0b565b6102c1610577366004612957565b610e41565b34801561058857600080fd5b506102c161059736600461291b565b611213565b3480156105a857600080fd5b506102c16105b736600461291b565b611242565b3480156105c857600080fd5b506102c16105d7366004612891565b611271565b3480156105e857600080fd5b506006546001600160a01b0316610325565b34801561060657600080fd5b5061037260105481565b34801561061c57600080fd5b506102f86112b7565b34801561063157600080fd5b506102c161064036600461291b565b6112c6565b34801561065157600080fd5b506102c16106603660046127c8565b6112f5565b34801561067157600080fd5b506102c16113ba565b34801561068657600080fd5b506102c161069536600461291b565b6113f5565b3480156106a657600080fd5b506102c16106b536600461274c565b611424565b6102c161145c565b3480156106ce57600080fd5b506102f86106dd36600461291b565b6117cb565b3480156106ee57600080fd5b506102c161194a565b34801561070357600080fd5b50610372600f5481565b34801561071957600080fd5b506102c16107283660046128e6565b611bbf565b34801561073957600080fd5b5061028c6107483660046126dd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102c1610791366004612934565b611bfc565b3480156107a257600080fd5b506102c16107b13660046126c2565b611ceb565b3480156107c257600080fd5b5061037260115481565b60006001600160e01b031982166380ac58cd60e01b14806107fd57506001600160e01b03198216635b5e139f60e01b145b8061081857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146108515760405162461bcd60e51b815260040161084890612baf565b60405180910390fd5b6012805460ff1916911515919091179055565b6006546001600160a01b0316331461088e5760405162461bcd60e51b815260040161084890612baf565b61089a600c60006124f6565b6108a6600c8383612514565b505050565b6060600080546108ba90612cc3565b80601f01602080910402602001604051908101604052809291908181526020018280546108e690612cc3565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610848565b506000908152600460205260409020546001600160a01b031690565b60006109dd82610d0d565b9050806001600160a01b0316836001600160a01b03161415610a4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610848565b336001600160a01b0382161480610a675750610a678133610748565b610ad95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610848565b6108a68383611d86565b6006546000906001600160a01b03163314610b105760405162461bcd60e51b815260040161084890612baf565b504790565b6000610b2060075490565b905090565b610b2f3382611df4565b610b4b5760405162461bcd60e51b815260040161084890612be4565b6108a6838383611eeb565b6006546001600160a01b03163314610b805760405162461bcd60e51b815260040161084890612baf565b8051610b9390600b906020840190612577565b5050565b6006546001600160a01b03163314610bc15760405162461bcd60e51b815260040161084890612baf565b8051610b9390600a906020840190612577565b6108a683838360405180602001604052806000815250611424565b60606000610bfc83610d84565b905060008167ffffffffffffffff811115610c1957610c19612d6f565b604051908082528060200260200182016040528015610c42578160200160208202803683370190505b509050600160005b8381108015610c5b5750600f548211155b15610cc6576000610c6b83610d0d565b9050866001600160a01b0316816001600160a01b03161415610cb35782848381518110610c9a57610c9a612d59565b602090810291909101015281610caf81612cfe565b9250505b82610cbd81612cfe565b93505050610c4a565b5090949350505050565b6006546001600160a01b03163314610cfa5760405162461bcd60e51b815260040161084890612baf565b8051610b93906008906020840190612577565b6000818152600260205260408120546001600160a01b0316806108185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610848565b60006001600160a01b038216610def5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610848565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e355760405162461bcd60e51b815260040161084890612baf565b610e3f600061208b565b565b81600081118015610e5457506010548111155b610e975760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610848565b600f5481610ea460075490565b610eae9190612c35565b1115610efc5760405162461bcd60e51b815260206004820152601f60248201527f5468697320747820776f756c6420657863656564206d617820737570706c79006044820152606401610848565b60125462010000900460ff161515600114156111055760125460ff1615610f5e5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610848565b60125462010000900460ff16610faf5760405162461bcd60e51b815260206004820152601660248201527550726573616c65206973206e6f74204163746976652160501b6044820152606401610848565b81604051602001610fc09190612a64565b60405160208183030381529060405280519060200120600b604051602001610fe89190612abd565b604051602081830303815290604052805190602001201461103f5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610848565b82600d5461104d9190612c61565b34101561108e5760405162461bcd60e51b815260206004820152600f60248201526e42616c616e636520746f6f206c6f7760881b6044820152606401610848565b336000908152601360205260409020546011546110ab8583612c35565b11156110f95760405162461bcd60e51b815260206004820152601f60248201527f6d6178204e4654207065722070726573616c65207478206578636565646564006044820152606401610848565b61110333856120dd565b505b60125462010000900460ff166108a65760125460ff16156111615760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610848565b60125462010000900460ff16156111ba5760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c206163746976650000000000000000006044820152606401610848565b82600e546111c89190612c61565b3410156112095760405162461bcd60e51b815260206004820152600f60248201526e42616c616e636520746f6f206c6f7760881b6044820152606401610848565b6108a633846120dd565b6006546001600160a01b0316331461123d5760405162461bcd60e51b815260040161084890612baf565b601055565b6006546001600160a01b0316331461126c5760405162461bcd60e51b815260040161084890612baf565b600e55565b6006546001600160a01b0316331461129b5760405162461bcd60e51b815260040161084890612baf565b60128054911515620100000262ff000019909216919091179055565b6060600180546108ba90612cc3565b6006546001600160a01b031633146112f05760405162461bcd60e51b815260040161084890612baf565b601155565b6001600160a01b03821633141561134e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610848565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b031633146113e45760405162461bcd60e51b815260040161084890612baf565b6012805461ff001916610100179055565b6006546001600160a01b0316331461141f5760405162461bcd60e51b815260040161084890612baf565b600d55565b61142e3383611df4565b61144a5760405162461bcd60e51b815260040161084890612be4565b6114568484848461211a565b50505050565b6006546001600160a01b031633146114865760405162461bcd60e51b815260040161084890612baf565b60004790506000600c6002815481106114a1576114a1612d59565b6000918252602090912001546001600160a01b03166103e86114c48460e1612c61565b6114ce9190612c4d565b604051600081818185875af1925050503d806000811461150a576040519150601f19603f3d011682016040523d82523d6000602084013e61150f565b606091505b505090508061151d57600080fd5b6000600c60038154811061153357611533612d59565b6000918252602090912001546001600160a01b03166103e86115568560e1612c61565b6115609190612c4d565b604051600081818185875af1925050503d806000811461159c576040519150601f19603f3d011682016040523d82523d6000602084013e6115a1565b606091505b50509050806115af57600080fd5b6000600c6001815481106115c5576115c5612d59565b6000918252602090912001546001600160a01b03166103e86115e88660c8612c61565b6115f29190612c4d565b604051600081818185875af1925050503d806000811461162e576040519150601f19603f3d011682016040523d82523d6000602084013e611633565b606091505b505090508061164157600080fd5b60007371cfb6c8afa53b05148b8bf420e566caee21d6bc6103e8611666876064612c61565b6116709190612c4d565b604051600081818185875af1925050503d80600081146116ac576040519150601f19603f3d011682016040523d82523d6000602084013e6116b1565b606091505b50509050806116bf57600080fd5b6000600c6000815481106116d5576116d5612d59565b6000918252602090912001546001600160a01b03166103e86116f8886032612c61565b6117029190612c4d565b604051600081818185875af1925050503d806000811461173e576040519150601f19603f3d011682016040523d82523d6000602084013e611743565b606091505b505090508061175157600080fd5b60006117656006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146117af576040519150601f19603f3d011682016040523d82523d6000602084013e6117b4565b606091505b50509050806117c257600080fd5b50505050505050565b6000818152600260205260409020546060906001600160a01b031661184a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610848565b601254610100900460ff166118eb57600a805461186690612cc3565b80601f016020809104026020016040519081016040528092919081815260200182805461189290612cc3565b80156118df5780601f106118b4576101008083540402835291602001916118df565b820191906000526020600020905b8154815290600101906020018083116118c257829003601f168201915b50505050509050919050565b60006118f561214d565b905060008151116119155760405180602001604052806000815250611943565b8061191f8461215c565b600960405160200161193393929190612a80565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146119745760405162461bcd60e51b815260040161084890612baf565b6000479050600c60028154811061198d5761198d612d59565b6000918252602090912001546001600160a01b03166108fc6103e86119b38460e1612c61565b6119bd9190612c4d565b6040518115909202916000818181858888f193505050501580156119e5573d6000803e3d6000fd5b50600c6003815481106119fa576119fa612d59565b6000918252602090912001546001600160a01b03166108fc6103e8611a208460e1612c61565b611a2a9190612c4d565b6040518115909202916000818181858888f19350505050158015611a52573d6000803e3d6000fd5b50600c600181548110611a6757611a67612d59565b6000918252602090912001546001600160a01b03166108fc6103e8611a8d8460c8612c61565b611a979190612c4d565b6040518115909202916000818181858888f19350505050158015611abf573d6000803e3d6000fd5b507371cfb6c8afa53b05148b8bf420e566caee21d6bc6108fc6103e8611ae6846064612c61565b611af09190612c4d565b6040518115909202916000818181858888f19350505050158015611b18573d6000803e3d6000fd5b50600c600081548110611b2d57611b2d612d59565b6000918252602090912001546001600160a01b03166108fc6103e8611b53846032612c61565b611b5d9190612c4d565b6040518115909202916000818181858888f19350505050158015611b85573d6000803e3d6000fd5b506006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b93573d6000803e3d6000fd5b6006546001600160a01b03163314611be95760405162461bcd60e51b815260040161084890612baf565b8051610b93906009906020840190612577565b81600081118015611c0f57506010548111155b611c525760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610848565b600f5481611c5f60075490565b611c699190612c35565b1115611cb75760405162461bcd60e51b815260206004820152601f60248201527f5468697320747820776f756c6420657863656564206d617820737570706c79006044820152606401610848565b6006546001600160a01b03163314611ce15760405162461bcd60e51b815260040161084890612baf565b6108a682846120dd565b6006546001600160a01b03163314611d155760405162461bcd60e51b815260040161084890612baf565b6001600160a01b038116611d7a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610848565b611d838161208b565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611dbb82610d0d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e6d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610848565b6000611e7883610d0d565b9050806001600160a01b0316846001600160a01b03161480611eb35750836001600160a01b0316611ea88461093d565b6001600160a01b0316145b80611ee357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611efe82610d0d565b6001600160a01b031614611f665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610848565b6001600160a01b038216611fc85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610848565b611fd3600082611d86565b6001600160a01b0383166000908152600360205260408120805460019290611ffc908490612c80565b90915550506001600160a01b038216600090815260036020526040812080546001929061202a908490612c35565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108a6576120f6600780546001019055565b6121088361210360075490565b61225a565b8061211281612cfe565b9150506120e0565b612125848484611eeb565b61213184848484612274565b6114565760405162461bcd60e51b815260040161084890612b5d565b6060600880546108ba90612cc3565b6060816121805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121aa578061219481612cfe565b91506121a39050600a83612c4d565b9150612184565b60008167ffffffffffffffff8111156121c5576121c5612d6f565b6040519080825280601f01601f1916602001820160405280156121ef576020820181803683370190505b5090505b8415611ee357612204600183612c80565b9150612211600a86612d19565b61221c906030612c35565b60f81b81838151811061223157612231612d59565b60200101906001600160f81b031916908160001a905350612253600a86612c4d565b94506121f3565b610b93828260405180602001604052806000815250612381565b60006001600160a01b0384163b1561237657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122b8903390899088908890600401612ac9565b602060405180830381600087803b1580156122d257600080fd5b505af1925050508015612302575060408051601f3d908101601f191682019092526122ff918101906128c9565b60015b61235c573d808015612330576040519150601f19603f3d011682016040523d82523d6000602084013e612335565b606091505b5080516123545760405162461bcd60e51b815260040161084890612b5d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ee3565b506001949350505050565b61238b83836123b4565b6123986000848484612274565b6108a65760405162461bcd60e51b815260040161084890612b5d565b6001600160a01b03821661240a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610848565b6000818152600260205260409020546001600160a01b03161561246f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610848565b6001600160a01b0382166000908152600360205260408120805460019290612498908490612c35565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190611d8391906125eb565b828054828255906000526020600020908101928215612567579160200282015b828111156125675781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612534565b506125739291506125eb565b5090565b82805461258390612cc3565b90600052602060002090601f0160209004810192826125a55760008555612567565b82601f106125be57805160ff1916838001178555612567565b82800160010185558215612567579182015b828111156125675782518255916020019190600101906125d0565b5b8082111561257357600081556001016125ec565b600067ffffffffffffffff8084111561261b5761261b612d6f565b604051601f8501601f19908116603f0116810190828211818310171561264357612643612d6f565b8160405280935085815286868601111561265c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461268d57600080fd5b919050565b8035801515811461268d57600080fd5b600082601f8301126126b357600080fd5b61194383833560208501612600565b6000602082840312156126d457600080fd5b61194382612676565b600080604083850312156126f057600080fd5b6126f983612676565b915061270760208401612676565b90509250929050565b60008060006060848603121561272557600080fd5b61272e84612676565b925061273c60208501612676565b9150604084013590509250925092565b6000806000806080858703121561276257600080fd5b61276b85612676565b935061277960208601612676565b925060408501359150606085013567ffffffffffffffff81111561279c57600080fd5b8501601f810187136127ad57600080fd5b6127bc87823560208401612600565b91505092959194509250565b600080604083850312156127db57600080fd5b6127e483612676565b915061270760208401612692565b6000806040838503121561280557600080fd5b61280e83612676565b946020939093013593505050565b6000806020838503121561282f57600080fd5b823567ffffffffffffffff8082111561284757600080fd5b818501915085601f83011261285b57600080fd5b81358181111561286a57600080fd5b8660208260051b850101111561287f57600080fd5b60209290920196919550909350505050565b6000602082840312156128a357600080fd5b61194382612692565b6000602082840312156128be57600080fd5b813561194381612d85565b6000602082840312156128db57600080fd5b815161194381612d85565b6000602082840312156128f857600080fd5b813567ffffffffffffffff81111561290f57600080fd5b611ee3848285016126a2565b60006020828403121561292d57600080fd5b5035919050565b6000806040838503121561294757600080fd5b8235915061270760208401612676565b6000806040838503121561296a57600080fd5b82359150602083013567ffffffffffffffff81111561298857600080fd5b612994858286016126a2565b9150509250929050565b600081518084526129b6816020860160208601612c97565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806129e457607f831692505b6020808410821415612a0657634e487b7160e01b600052602260045260246000fd5b818015612a1a5760018114612a2b57612a58565b60ff19861689528489019650612a58565b60008881526020902060005b86811015612a505781548b820152908501908301612a37565b505084890196505b50505050505092915050565b60008251612a76818460208701612c97565b9190910192915050565b60008451612a92818460208901612c97565b845190830190612aa6818360208901612c97565b612ab2818301866129ca565b979650505050505050565b600061194382846129ca565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612afc9083018461299e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b3e57835183529284019291840191600101612b22565b50909695505050505050565b602081526000611943602083018461299e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612c4857612c48612d2d565b500190565b600082612c5c57612c5c612d43565b500490565b6000816000190483118215151615612c7b57612c7b612d2d565b500290565b600082821015612c9257612c92612d2d565b500390565b60005b83811015612cb2578181015183820152602001612c9a565b838111156114565750506000910152565b600181811c90821680612cd757607f821691505b60208210811415612cf857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d1257612d12612d2d565b5060010190565b600082612d2857612d28612d43565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d8357600080fdfea26469706673582212209a3b0e6f6d38610f010b9f1b3a294dc2d42942859951fa1a1d4f7f182de47d8764736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000035244420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000552444243430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010533241747830716659693332626c6546000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5031557a776a4b4268647a486a613169525069614475755059653654664470467a4d4a6f5036536847765a452f000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d544164615a57346b577178756b75525579794454456b525332446d466a70736b4d37636532435250354c51332f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c8063715018a611610144578063ac9354e7116100b6578063d5abeb011161007a578063d5abeb01146106f7578063da3ef23f1461070d578063e985e9c51461072d578063efbd73f414610776578063f2fde38b14610796578063fa9ed7c6146107b657600080fd5b8063ac9354e71461067a578063b88d4fde1461069a578063bb8fddcc146106ba578063c87b56dd146106c2578063cd3c6c26146106e257600080fd5b80638da5cb5b116101085780638da5cb5b146105dc57806394354fd0146105fa57806395d89b4114610610578063a02cd2d814610625578063a22cb46514610645578063a475b5dd1461066557600080fd5b8063715018a61461055457806377097fc8146105695780637f00c7a61461057c578063811d24371461059c57806386f9e3f0146105bc57600080fd5b80632782fb22116101dd57806351830227116101a1578063518302271461049b57806353135ca0146104ba57806355f804b3146104da5780635c975abb146104fa5780636352211e1461051457806370a082311461053457600080fd5b80632782fb22146103f85780632a23d07d14610418578063326d43881461042e57806342842e0e1461044e578063438b63001461046e57600080fd5b8063095ea7b31161022f578063095ea7b31461033d57806312065fe01461035d57806313faede61461038057806318160ddd1461039657806318cae269146103ab57806323b872dd146103d857600080fd5b806301ffc9a71461026c57806302329a29146102a157806306e3c395146102c357806306fdde03146102e3578063081812fc14610305575b600080fd5b34801561027857600080fd5b5061028c6102873660046128ac565b6107cc565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612891565b61081e565b005b3480156102cf57600080fd5b506102c16102de36600461281c565b610864565b3480156102ef57600080fd5b506102f86108ab565b6040516102989190612b4a565b34801561031157600080fd5b5061032561032036600461291b565b61093d565b6040516001600160a01b039091168152602001610298565b34801561034957600080fd5b506102c16103583660046127f2565b6109d2565b34801561036957600080fd5b50610372610ae3565b604051908152602001610298565b34801561038c57600080fd5b50610372600e5481565b3480156103a257600080fd5b50610372610b15565b3480156103b757600080fd5b506103726103c63660046126c2565b60136020526000908152604090205481565b3480156103e457600080fd5b506102c16103f3366004612710565b610b25565b34801561040457600080fd5b506102c16104133660046128e6565b610b56565b34801561042457600080fd5b50610372600d5481565b34801561043a57600080fd5b506102c16104493660046128e6565b610b97565b34801561045a57600080fd5b506102c1610469366004612710565b610bd4565b34801561047a57600080fd5b5061048e6104893660046126c2565b610bef565b6040516102989190612b06565b3480156104a757600080fd5b5060125461028c90610100900460ff1681565b3480156104c657600080fd5b5060125461028c9062010000900460ff1681565b3480156104e657600080fd5b506102c16104f53660046128e6565b610cd0565b34801561050657600080fd5b5060125461028c9060ff1681565b34801561052057600080fd5b5061032561052f36600461291b565b610d0d565b34801561054057600080fd5b5061037261054f3660046126c2565b610d84565b34801561056057600080fd5b506102c1610e0b565b6102c1610577366004612957565b610e41565b34801561058857600080fd5b506102c161059736600461291b565b611213565b3480156105a857600080fd5b506102c16105b736600461291b565b611242565b3480156105c857600080fd5b506102c16105d7366004612891565b611271565b3480156105e857600080fd5b506006546001600160a01b0316610325565b34801561060657600080fd5b5061037260105481565b34801561061c57600080fd5b506102f86112b7565b34801561063157600080fd5b506102c161064036600461291b565b6112c6565b34801561065157600080fd5b506102c16106603660046127c8565b6112f5565b34801561067157600080fd5b506102c16113ba565b34801561068657600080fd5b506102c161069536600461291b565b6113f5565b3480156106a657600080fd5b506102c16106b536600461274c565b611424565b6102c161145c565b3480156106ce57600080fd5b506102f86106dd36600461291b565b6117cb565b3480156106ee57600080fd5b506102c161194a565b34801561070357600080fd5b50610372600f5481565b34801561071957600080fd5b506102c16107283660046128e6565b611bbf565b34801561073957600080fd5b5061028c6107483660046126dd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078257600080fd5b506102c1610791366004612934565b611bfc565b3480156107a257600080fd5b506102c16107b13660046126c2565b611ceb565b3480156107c257600080fd5b5061037260115481565b60006001600160e01b031982166380ac58cd60e01b14806107fd57506001600160e01b03198216635b5e139f60e01b145b8061081857506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146108515760405162461bcd60e51b815260040161084890612baf565b60405180910390fd5b6012805460ff1916911515919091179055565b6006546001600160a01b0316331461088e5760405162461bcd60e51b815260040161084890612baf565b61089a600c60006124f6565b6108a6600c8383612514565b505050565b6060600080546108ba90612cc3565b80601f01602080910402602001604051908101604052809291908181526020018280546108e690612cc3565b80156109335780601f1061090857610100808354040283529160200191610933565b820191906000526020600020905b81548152906001019060200180831161091657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610848565b506000908152600460205260409020546001600160a01b031690565b60006109dd82610d0d565b9050806001600160a01b0316836001600160a01b03161415610a4b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610848565b336001600160a01b0382161480610a675750610a678133610748565b610ad95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610848565b6108a68383611d86565b6006546000906001600160a01b03163314610b105760405162461bcd60e51b815260040161084890612baf565b504790565b6000610b2060075490565b905090565b610b2f3382611df4565b610b4b5760405162461bcd60e51b815260040161084890612be4565b6108a6838383611eeb565b6006546001600160a01b03163314610b805760405162461bcd60e51b815260040161084890612baf565b8051610b9390600b906020840190612577565b5050565b6006546001600160a01b03163314610bc15760405162461bcd60e51b815260040161084890612baf565b8051610b9390600a906020840190612577565b6108a683838360405180602001604052806000815250611424565b60606000610bfc83610d84565b905060008167ffffffffffffffff811115610c1957610c19612d6f565b604051908082528060200260200182016040528015610c42578160200160208202803683370190505b509050600160005b8381108015610c5b5750600f548211155b15610cc6576000610c6b83610d0d565b9050866001600160a01b0316816001600160a01b03161415610cb35782848381518110610c9a57610c9a612d59565b602090810291909101015281610caf81612cfe565b9250505b82610cbd81612cfe565b93505050610c4a565b5090949350505050565b6006546001600160a01b03163314610cfa5760405162461bcd60e51b815260040161084890612baf565b8051610b93906008906020840190612577565b6000818152600260205260408120546001600160a01b0316806108185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610848565b60006001600160a01b038216610def5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610848565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e355760405162461bcd60e51b815260040161084890612baf565b610e3f600061208b565b565b81600081118015610e5457506010548111155b610e975760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610848565b600f5481610ea460075490565b610eae9190612c35565b1115610efc5760405162461bcd60e51b815260206004820152601f60248201527f5468697320747820776f756c6420657863656564206d617820737570706c79006044820152606401610848565b60125462010000900460ff161515600114156111055760125460ff1615610f5e5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610848565b60125462010000900460ff16610faf5760405162461bcd60e51b815260206004820152601660248201527550726573616c65206973206e6f74204163746976652160501b6044820152606401610848565b81604051602001610fc09190612a64565b60405160208183030381529060405280519060200120600b604051602001610fe89190612abd565b604051602081830303815290604052805190602001201461103f5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b6044820152606401610848565b82600d5461104d9190612c61565b34101561108e5760405162461bcd60e51b815260206004820152600f60248201526e42616c616e636520746f6f206c6f7760881b6044820152606401610848565b336000908152601360205260409020546011546110ab8583612c35565b11156110f95760405162461bcd60e51b815260206004820152601f60248201527f6d6178204e4654207065722070726573616c65207478206578636565646564006044820152606401610848565b61110333856120dd565b505b60125462010000900460ff166108a65760125460ff16156111615760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610848565b60125462010000900460ff16156111ba5760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c206163746976650000000000000000006044820152606401610848565b82600e546111c89190612c61565b3410156112095760405162461bcd60e51b815260206004820152600f60248201526e42616c616e636520746f6f206c6f7760881b6044820152606401610848565b6108a633846120dd565b6006546001600160a01b0316331461123d5760405162461bcd60e51b815260040161084890612baf565b601055565b6006546001600160a01b0316331461126c5760405162461bcd60e51b815260040161084890612baf565b600e55565b6006546001600160a01b0316331461129b5760405162461bcd60e51b815260040161084890612baf565b60128054911515620100000262ff000019909216919091179055565b6060600180546108ba90612cc3565b6006546001600160a01b031633146112f05760405162461bcd60e51b815260040161084890612baf565b601155565b6001600160a01b03821633141561134e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610848565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6006546001600160a01b031633146113e45760405162461bcd60e51b815260040161084890612baf565b6012805461ff001916610100179055565b6006546001600160a01b0316331461141f5760405162461bcd60e51b815260040161084890612baf565b600d55565b61142e3383611df4565b61144a5760405162461bcd60e51b815260040161084890612be4565b6114568484848461211a565b50505050565b6006546001600160a01b031633146114865760405162461bcd60e51b815260040161084890612baf565b60004790506000600c6002815481106114a1576114a1612d59565b6000918252602090912001546001600160a01b03166103e86114c48460e1612c61565b6114ce9190612c4d565b604051600081818185875af1925050503d806000811461150a576040519150601f19603f3d011682016040523d82523d6000602084013e61150f565b606091505b505090508061151d57600080fd5b6000600c60038154811061153357611533612d59565b6000918252602090912001546001600160a01b03166103e86115568560e1612c61565b6115609190612c4d565b604051600081818185875af1925050503d806000811461159c576040519150601f19603f3d011682016040523d82523d6000602084013e6115a1565b606091505b50509050806115af57600080fd5b6000600c6001815481106115c5576115c5612d59565b6000918252602090912001546001600160a01b03166103e86115e88660c8612c61565b6115f29190612c4d565b604051600081818185875af1925050503d806000811461162e576040519150601f19603f3d011682016040523d82523d6000602084013e611633565b606091505b505090508061164157600080fd5b60007371cfb6c8afa53b05148b8bf420e566caee21d6bc6103e8611666876064612c61565b6116709190612c4d565b604051600081818185875af1925050503d80600081146116ac576040519150601f19603f3d011682016040523d82523d6000602084013e6116b1565b606091505b50509050806116bf57600080fd5b6000600c6000815481106116d5576116d5612d59565b6000918252602090912001546001600160a01b03166103e86116f8886032612c61565b6117029190612c4d565b604051600081818185875af1925050503d806000811461173e576040519150601f19603f3d011682016040523d82523d6000602084013e611743565b606091505b505090508061175157600080fd5b60006117656006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146117af576040519150601f19603f3d011682016040523d82523d6000602084013e6117b4565b606091505b50509050806117c257600080fd5b50505050505050565b6000818152600260205260409020546060906001600160a01b031661184a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610848565b601254610100900460ff166118eb57600a805461186690612cc3565b80601f016020809104026020016040519081016040528092919081815260200182805461189290612cc3565b80156118df5780601f106118b4576101008083540402835291602001916118df565b820191906000526020600020905b8154815290600101906020018083116118c257829003601f168201915b50505050509050919050565b60006118f561214d565b905060008151116119155760405180602001604052806000815250611943565b8061191f8461215c565b600960405160200161193393929190612a80565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146119745760405162461bcd60e51b815260040161084890612baf565b6000479050600c60028154811061198d5761198d612d59565b6000918252602090912001546001600160a01b03166108fc6103e86119b38460e1612c61565b6119bd9190612c4d565b6040518115909202916000818181858888f193505050501580156119e5573d6000803e3d6000fd5b50600c6003815481106119fa576119fa612d59565b6000918252602090912001546001600160a01b03166108fc6103e8611a208460e1612c61565b611a2a9190612c4d565b6040518115909202916000818181858888f19350505050158015611a52573d6000803e3d6000fd5b50600c600181548110611a6757611a67612d59565b6000918252602090912001546001600160a01b03166108fc6103e8611a8d8460c8612c61565b611a979190612c4d565b6040518115909202916000818181858888f19350505050158015611abf573d6000803e3d6000fd5b507371cfb6c8afa53b05148b8bf420e566caee21d6bc6108fc6103e8611ae6846064612c61565b611af09190612c4d565b6040518115909202916000818181858888f19350505050158015611b18573d6000803e3d6000fd5b50600c600081548110611b2d57611b2d612d59565b6000918252602090912001546001600160a01b03166108fc6103e8611b53846032612c61565b611b5d9190612c4d565b6040518115909202916000818181858888f19350505050158015611b85573d6000803e3d6000fd5b506006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b93573d6000803e3d6000fd5b6006546001600160a01b03163314611be95760405162461bcd60e51b815260040161084890612baf565b8051610b93906009906020840190612577565b81600081118015611c0f57506010548111155b611c525760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610848565b600f5481611c5f60075490565b611c699190612c35565b1115611cb75760405162461bcd60e51b815260206004820152601f60248201527f5468697320747820776f756c6420657863656564206d617820737570706c79006044820152606401610848565b6006546001600160a01b03163314611ce15760405162461bcd60e51b815260040161084890612baf565b6108a682846120dd565b6006546001600160a01b03163314611d155760405162461bcd60e51b815260040161084890612baf565b6001600160a01b038116611d7a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610848565b611d838161208b565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611dbb82610d0d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e6d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610848565b6000611e7883610d0d565b9050806001600160a01b0316846001600160a01b03161480611eb35750836001600160a01b0316611ea88461093d565b6001600160a01b0316145b80611ee357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611efe82610d0d565b6001600160a01b031614611f665760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610848565b6001600160a01b038216611fc85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610848565b611fd3600082611d86565b6001600160a01b0383166000908152600360205260408120805460019290611ffc908490612c80565b90915550506001600160a01b038216600090815260036020526040812080546001929061202a908490612c35565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b818110156108a6576120f6600780546001019055565b6121088361210360075490565b61225a565b8061211281612cfe565b9150506120e0565b612125848484611eeb565b61213184848484612274565b6114565760405162461bcd60e51b815260040161084890612b5d565b6060600880546108ba90612cc3565b6060816121805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121aa578061219481612cfe565b91506121a39050600a83612c4d565b9150612184565b60008167ffffffffffffffff8111156121c5576121c5612d6f565b6040519080825280601f01601f1916602001820160405280156121ef576020820181803683370190505b5090505b8415611ee357612204600183612c80565b9150612211600a86612d19565b61221c906030612c35565b60f81b81838151811061223157612231612d59565b60200101906001600160f81b031916908160001a905350612253600a86612c4d565b94506121f3565b610b93828260405180602001604052806000815250612381565b60006001600160a01b0384163b1561237657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122b8903390899088908890600401612ac9565b602060405180830381600087803b1580156122d257600080fd5b505af1925050508015612302575060408051601f3d908101601f191682019092526122ff918101906128c9565b60015b61235c573d808015612330576040519150601f19603f3d011682016040523d82523d6000602084013e612335565b606091505b5080516123545760405162461bcd60e51b815260040161084890612b5d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ee3565b506001949350505050565b61238b83836123b4565b6123986000848484612274565b6108a65760405162461bcd60e51b815260040161084890612b5d565b6001600160a01b03821661240a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610848565b6000818152600260205260409020546001600160a01b03161561246f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610848565b6001600160a01b0382166000908152600360205260408120805460019290612498908490612c35565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190611d8391906125eb565b828054828255906000526020600020908101928215612567579160200282015b828111156125675781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612534565b506125739291506125eb565b5090565b82805461258390612cc3565b90600052602060002090601f0160209004810192826125a55760008555612567565b82601f106125be57805160ff1916838001178555612567565b82800160010185558215612567579182015b828111156125675782518255916020019190600101906125d0565b5b8082111561257357600081556001016125ec565b600067ffffffffffffffff8084111561261b5761261b612d6f565b604051601f8501601f19908116603f0116810190828211818310171561264357612643612d6f565b8160405280935085815286868601111561265c57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461268d57600080fd5b919050565b8035801515811461268d57600080fd5b600082601f8301126126b357600080fd5b61194383833560208501612600565b6000602082840312156126d457600080fd5b61194382612676565b600080604083850312156126f057600080fd5b6126f983612676565b915061270760208401612676565b90509250929050565b60008060006060848603121561272557600080fd5b61272e84612676565b925061273c60208501612676565b9150604084013590509250925092565b6000806000806080858703121561276257600080fd5b61276b85612676565b935061277960208601612676565b925060408501359150606085013567ffffffffffffffff81111561279c57600080fd5b8501601f810187136127ad57600080fd5b6127bc87823560208401612600565b91505092959194509250565b600080604083850312156127db57600080fd5b6127e483612676565b915061270760208401612692565b6000806040838503121561280557600080fd5b61280e83612676565b946020939093013593505050565b6000806020838503121561282f57600080fd5b823567ffffffffffffffff8082111561284757600080fd5b818501915085601f83011261285b57600080fd5b81358181111561286a57600080fd5b8660208260051b850101111561287f57600080fd5b60209290920196919550909350505050565b6000602082840312156128a357600080fd5b61194382612692565b6000602082840312156128be57600080fd5b813561194381612d85565b6000602082840312156128db57600080fd5b815161194381612d85565b6000602082840312156128f857600080fd5b813567ffffffffffffffff81111561290f57600080fd5b611ee3848285016126a2565b60006020828403121561292d57600080fd5b5035919050565b6000806040838503121561294757600080fd5b8235915061270760208401612676565b6000806040838503121561296a57600080fd5b82359150602083013567ffffffffffffffff81111561298857600080fd5b612994858286016126a2565b9150509250929050565b600081518084526129b6816020860160208601612c97565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806129e457607f831692505b6020808410821415612a0657634e487b7160e01b600052602260045260246000fd5b818015612a1a5760018114612a2b57612a58565b60ff19861689528489019650612a58565b60008881526020902060005b86811015612a505781548b820152908501908301612a37565b505084890196505b50505050505092915050565b60008251612a76818460208701612c97565b9190910192915050565b60008451612a92818460208901612c97565b845190830190612aa6818360208901612c97565b612ab2818301866129ca565b979650505050505050565b600061194382846129ca565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612afc9083018461299e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b3e57835183529284019291840191600101612b22565b50909695505050505050565b602081526000611943602083018461299e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612c4857612c48612d2d565b500190565b600082612c5c57612c5c612d43565b500490565b6000816000190483118215151615612c7b57612c7b612d2d565b500290565b600082821015612c9257612c92612d2d565b500390565b60005b83811015612cb2578181015183820152602001612c9a565b838111156114565750506000910152565b600181811c90821680612cd757607f821691505b60208210811415612cf857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d1257612d12612d2d565b5060010190565b600082612d2857612d28612d43565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611d8357600080fdfea26469706673582212209a3b0e6f6d38610f010b9f1b3a294dc2d42942859951fa1a1d4f7f182de47d8764736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000035244420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000552444243430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010533241747830716659693332626c6546000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5031557a776a4b4268647a486a613169525069614475755059653654664470467a4d4a6f5036536847765a452f000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d544164615a57346b577178756b75525579794454456b525332446d466a70736b4d37636532435250354c51332f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): RDB
Arg [1] : _symbol (string): RDBCC
Arg [2] : _signature (string): S2Atx0qfYi32bleF
Arg [3] : _initBaseURI (string): ipfs://QmP1UzwjKBhdzHja1iRPiaDuuPYe6TfDpFzMJoP6ShGvZE/
Arg [4] : _initRevealedUri (string): ipfs://QmTAdaZW4kWqxukuRUyyDTEkRS2DmFjpskM7ce2CRP5LQ3/unrevealed.json

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5244420000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 5244424343000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [10] : 533241747830716659693332626c654600000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [12] : 697066733a2f2f516d5031557a776a4b4268647a486a61316952506961447575
Arg [13] : 5059653654664470467a4d4a6f5036536847765a452f00000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [15] : 697066733a2f2f516d544164615a57346b577178756b75525579794454456b52
Arg [16] : 5332446d466a70736b4d37636532435250354c51332f756e72657665616c6564
Arg [17] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44589:6883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23079:305;;;;;;;;;;-1:-1:-1;23079:305:0;;;;;:::i;:::-;;:::i;:::-;;;9663:14:1;;9656:22;9638:41;;9626:2;9611:18;23079:305:0;;;;;;;;49407:73;;;;;;;;;;-1:-1:-1;49407:73:0;;;;;:::i;:::-;;:::i;:::-;;49581:131;;;;;;;;;;-1:-1:-1;49581:131:0;;;;;:::i;:::-;;:::i;24024:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25583:221::-;;;;;;;;;;-1:-1:-1;25583:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8324:32:1;;;8306:51;;8294:2;8279:18;25583:221:0;8160:203:1;25106:411:0;;;;;;;;;;-1:-1:-1;25106:411:0;;;;;:::i;:::-;;:::i;49718:109::-;;;;;;;;;;;;;:::i;:::-;;;19255:25:1;;;19243:2;19228:18;49718:109:0;19109:177:1;44933:31:0;;;;;;;;;;;;;;;;45935:89;;;;;;;;;;;;;:::i;45194:55::-;;;;;;;;;;-1:-1:-1;45194:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;26473:339;;;;;;;;;;-1:-1:-1;26473:339:0;;;;;:::i;:::-;;:::i;48499:101::-;;;;;;;;;;-1:-1:-1;48499:101:0;;;;;:::i;:::-;;:::i;44890:38::-;;;;;;;;;;;;;;;;49293:108;;;;;;;;;;-1:-1:-1;49293:108:0;;;;;:::i;:::-;;:::i;26883:185::-;;;;;;;;;;-1:-1:-1;26883:185:0;;;;;:::i;:::-;;:::i;47260:635::-;;;;;;;;;;-1:-1:-1;47260:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;45123:28::-;;;;;;;;;;-1:-1:-1;45123:28:0;;;;;;;;;;;45156:32;;;;;;;;;;-1:-1:-1;45156:32:0;;;;;;;;;;;49059:98;;;;;;;;;;-1:-1:-1;49059:98:0;;;;;:::i;:::-;;:::i;45093:25::-;;;;;;;;;;-1:-1:-1;45093:25:0;;;;;;;;23718:239;;;;;;;;;;-1:-1:-1;23718:239:0;;;;;:::i;:::-;;:::i;23448:208::-;;;;;;;;;;-1:-1:-1;23448:208:0;;;;;:::i;:::-;;:::i;43921:94::-;;;;;;;;;;;;;:::i;46062:1015::-;;;;;;:::i;:::-;;:::i;48922:131::-;;;;;;;;;;-1:-1:-1;48922:131:0;;;;;:::i;:::-;;:::i;48830:86::-;;;;;;;;;;-1:-1:-1;48830:86:0;;;;;:::i;:::-;;:::i;49488:85::-;;;;;;;;;;-1:-1:-1;49488:85:0;;;;;:::i;:::-;;:::i;43270:87::-;;;;;;;;;;-1:-1:-1;43343:6:0;;-1:-1:-1;;;;;43343:6:0;43270:87;;45006:38;;;;;;;;;;;;;;;;24193:104;;;;;;;;;;;;;:::i;48610:108::-;;;;;;;;;;-1:-1:-1;48610:108:0;;;;;:::i;:::-;;:::i;25876:295::-;;;;;;;;;;-1:-1:-1;25876:295:0;;;;;:::i;:::-;;:::i;48428:65::-;;;;;;;;;;;;;:::i;48724:100::-;;;;;;;;;;-1:-1:-1;48724:100:0;;;;;:::i;:::-;;:::i;27139:328::-;;;;;;;;;;-1:-1:-1;27139:328:0;;;;;:::i;:::-;;:::i;49834:871::-;;;:::i;47901:494::-;;;;;;;;;;-1:-1:-1;47901:494:0;;;;;:::i;:::-;;:::i;50711:547::-;;;;;;;;;;;;;:::i;44969:32::-;;;;;;;;;;;;;;;;49163:122;;;;;;;;;;-1:-1:-1;49163:122:0;;;;;:::i;:::-;;:::i;26242:164::-;;;;;;;;;;-1:-1:-1;26242:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26363:25:0;;;26339:4;26363:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26242:164;47096:155;;;;;;;;;;-1:-1:-1;47096:155:0;;;;;:::i;:::-;;:::i;44170:192::-;;;;;;;;;;-1:-1:-1;44170:192:0;;;;;:::i;:::-;;:::i;45049:39::-;;;;;;;;;;;;;;;;23079:305;23181:4;-1:-1:-1;;;;;;23218:40:0;;-1:-1:-1;;;23218:40:0;;:105;;-1:-1:-1;;;;;;;23275:48:0;;-1:-1:-1;;;23275:48:0;23218:105;:158;;;-1:-1:-1;;;;;;;;;;9019:40:0;;;23340:36;23198:178;23079:305;-1:-1:-1;;23079:305:0:o;49407:73::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;;;;;;;;;49459:6:::1;:15:::0;;-1:-1:-1;;49459:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49407:73::o;49581:131::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;49660:15:::1;49667:8;;49660:15;:::i;:::-;49684:22;:8;49695:11:::0;;49684:22:::1;:::i;:::-;;49581:131:::0;;:::o;24024:100::-;24078:13;24111:5;24104:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24024:100;:::o;25583:221::-;25659:7;29066:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29066:16:0;25679:73;;;;-1:-1:-1;;;25679:73:0;;15482:2:1;25679:73:0;;;15464:21:1;15521:2;15501:18;;;15494:30;15560:34;15540:18;;;15533:62;-1:-1:-1;;;15611:18:1;;;15604:42;15663:19;;25679:73:0;15280:408:1;25679:73:0;-1:-1:-1;25772:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25772:24:0;;25583:221::o;25106:411::-;25187:13;25203:23;25218:7;25203:14;:23::i;:::-;25187:39;;25251:5;-1:-1:-1;;;;;25245:11:0;:2;-1:-1:-1;;;;;25245:11:0;;;25237:57;;;;-1:-1:-1;;;25237:57:0;;17779:2:1;25237:57:0;;;17761:21:1;17818:2;17798:18;;;17791:30;17857:34;17837:18;;;17830:62;-1:-1:-1;;;17908:18:1;;;17901:31;17949:19;;25237:57:0;17577:397:1;25237:57:0;21633:10;-1:-1:-1;;;;;25329:21:0;;;;:62;;-1:-1:-1;25354:37:0;25371:5;21633:10;26242:164;:::i;25354:37::-;25307:168;;;;-1:-1:-1;;;25307:168:0;;13875:2:1;25307:168:0;;;13857:21:1;13914:2;13894:18;;;13887:30;13953:34;13933:18;;;13926:62;14024:26;14004:18;;;13997:54;14068:19;;25307:168:0;13673:420:1;25307:168:0;25488:21;25497:2;25501:7;25488:8;:21::i;49718:109::-;43343:6;;49771:7;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;-1:-1:-1;49798:21:0::1;49718:109:::0;:::o;45935:89::-;45979:7;46002:16;:6;964:14;;872:114;46002:16;45995:23;;45935:89;:::o;26473:339::-;26668:41;21633:10;26701:7;26668:18;:41::i;:::-;26660:103;;;;-1:-1:-1;;;26660:103:0;;;;;;;:::i;:::-;26776:28;26786:4;26792:2;26796:7;26776:9;:28::i;48499:101::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;48572:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48499:101:::0;:::o;49293:108::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;49369:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;26883:185::-:0;27021:39;27038:4;27044:2;27048:7;27021:39;;;;;;;;;;;;:16;:39::i;47260:635::-;47335:16;47363:23;47389:17;47399:6;47389:9;:17::i;:::-;47363:43;;47413:30;47460:15;47446:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47446:30:0;-1:-1:-1;47413:63:0;-1:-1:-1;47508:1:0;47483:22;47552:309;47577:15;47559;:33;:64;;;;;47614:9;;47596:14;:27;;47559:64;47552:309;;;47634:25;47662:23;47670:14;47662:7;:23::i;:::-;47634:51;;47721:6;-1:-1:-1;;;;;47700:27:0;:17;-1:-1:-1;;;;;47700:27:0;;47696:131;;;47773:14;47740:13;47754:15;47740:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;47800:17;;;;:::i;:::-;;;;47696:131;47837:16;;;;:::i;:::-;;;;47625:236;47552:309;;;-1:-1:-1;47876:13:0;;47260:635;-1:-1:-1;;;;47260:635:0:o;49059:98::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;49130:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;23718:239::-:0;23790:7;23826:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23826:16:0;23861:19;23853:73;;;;-1:-1:-1;;;23853:73:0;;14711:2:1;23853:73:0;;;14693:21:1;14750:2;14730:18;;;14723:30;14789:34;14769:18;;;14762:62;-1:-1:-1;;;14840:18:1;;;14833:39;14889:19;;23853:73:0;14509:405:1;23448:208:0;23520:7;-1:-1:-1;;;;;23548:19:0;;23540:74;;;;-1:-1:-1;;;23540:74:0;;14300:2:1;23540:74:0;;;14282:21:1;14339:2;14319:18;;;14312:30;14378:34;14358:18;;;14351:62;-1:-1:-1;;;14429:18:1;;;14422:40;14479:19;;23540:74:0;14098:406:1;23540:74:0;-1:-1:-1;;;;;;23632:16:0;;;;;:9;:16;;;;;;;23448:208::o;43921:94::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;43986:21:::1;44004:1;43986:9;:21::i;:::-;43921:94::o:0;46062:1015::-;46153:11;45758:1;45744:11;:15;:52;;;;;45778:18;;45763:11;:33;;45744:52;45736:85;;;;-1:-1:-1;;;45736:85:0;;11643:2:1;45736:85:0;;;11625:21:1;11682:2;11662:18;;;11655:30;-1:-1:-1;;;11701:18:1;;;11694:50;11761:18;;45736:85:0;11441:344:1;45736:85:0;45870:9;;45855:11;45836:16;:6;964:14;;872:114;45836:16;:30;;;;:::i;:::-;:43;;45828:87;;;;-1:-1:-1;;;45828:87:0;;12751:2:1;45828:87:0;;;12733:21:1;12790:2;12770:18;;;12763:30;12829:33;12809:18;;;12802:61;12880:18;;45828:87:0;12549:355:1;45828:87:0;46183:13:::1;::::0;;;::::1;;;:21;;46200:4;46183:21;46179:617;;;46225:6;::::0;::::1;;46224:7;46216:42;;;::::0;-1:-1:-1;;;46216:42:0;;16602:2:1;46216:42:0::1;::::0;::::1;16584:21:1::0;16641:2;16621:18;;;16614:30;-1:-1:-1;;;16660:18:1;;;16653:52;16722:18;;46216:42:0::1;16400:346:1::0;46216:42:0::1;46277:13;::::0;;;::::1;;;46269:48;;;::::0;-1:-1:-1;;;46269:48:0;;13524:2:1;46269:48:0::1;::::0;::::1;13506:21:1::0;13563:2;13543:18;;;13536:30;-1:-1:-1;;;13582:18:1;;;13575:52;13644:18;;46269:48:0::1;13322:346:1::0;46269:48:0::1;46408:10;46390:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;46380:41;;;;;;46364:9;46346:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;46336:40;;;;;;:85;46328:115;;;::::0;-1:-1:-1;;;46328:115:0;;15895:2:1;46328:115:0::1;::::0;::::1;15877:21:1::0;15934:2;15914:18;;;15907:30;-1:-1:-1;;;15953:18:1;;;15946:47;16010:18;;46328:115:0::1;15693:341:1::0;46328:115:0::1;46489:11;46475;;:25;;;;:::i;:::-;46462:9;:38;;46454:66;;;::::0;-1:-1:-1;;;46454:66:0;;10116:2:1;46454:66:0::1;::::0;::::1;10098:21:1::0;10155:2;10135:18;;;10128:30;-1:-1:-1;;;10174:18:1;;;10167:45;10229:18;;46454:66:0::1;9914:339:1::0;46454:66:0::1;46591:10;46543:24;46570:32:::0;;;:20:::1;:32;::::0;;;;;46659:20:::1;::::0;46625:30:::1;46644:11:::0;46570:32;46625:30:::1;:::i;:::-;:54;;46617:98;;;::::0;-1:-1:-1;;;46617:98:0;;18951:2:1;46617:98:0::1;::::0;::::1;18933:21:1::0;18990:2;18970:18;;;18963:30;19029:33;19009:18;;;19002:61;19080:18;;46617:98:0::1;18749:355:1::0;46617:98:0::1;46754:34;46764:10;46776:11;46754:9;:34::i;:::-;46205:591;46179:617;46808:13;::::0;;;::::1;;;46804:266;;46847:6;::::0;::::1;;46846:7;46838:42;;;::::0;-1:-1:-1;;;46838:42:0;;16602:2:1;46838:42:0::1;::::0;::::1;16584:21:1::0;16641:2;16621:18;;;16614:30;-1:-1:-1;;;16660:18:1;;;16653:52;16722:18;;46838:42:0::1;16400:346:1::0;46838:42:0::1;46896:13;::::0;;;::::1;;;46895:14;46887:50;;;::::0;-1:-1:-1;;;46887:50:0;;18599:2:1;46887:50:0::1;::::0;::::1;18581:21:1::0;18638:2;18618:18;;;18611:30;18677:25;18657:18;;;18650:53;18720:18;;46887:50:0::1;18397:347:1::0;46887:50:0::1;46972:11;46965:4;;:18;;;;:::i;:::-;46952:9;:31;;46944:59;;;::::0;-1:-1:-1;;;46944:59:0;;10116:2:1;46944:59:0::1;::::0;::::1;10098:21:1::0;10155:2;10135:18;;;10128:30;-1:-1:-1;;;10174:18:1;;;10167:45;10229:18;;46944:59:0::1;9914:339:1::0;46944:59:0::1;47024:34;47034:10;47046:11;47024:9;:34::i;48922:131::-:0;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;49004:18:::1;:43:::0;48922:131::o;48830:86::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;48895:4:::1;:15:::0;48830:86::o;49488:85::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;49545:13:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;49545:22:0;;::::1;::::0;;;::::1;::::0;;49488:85::o;24193:104::-;24249:13;24282:7;24275:14;;;;;:::i;48610:108::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;48683:20:::1;:29:::0;48610:108::o;25876:295::-;-1:-1:-1;;;;;25979:24:0;;21633:10;25979:24;;25971:62;;;;-1:-1:-1;;;25971:62:0;;12397:2:1;25971:62:0;;;12379:21:1;12436:2;12416:18;;;12409:30;12475:27;12455:18;;;12448:55;12520:18;;25971:62:0;12195:349:1;25971:62:0;21633:10;26046:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26046:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26046:53:0;;;;;;;;;;26115:48;;9638:41:1;;;26046:42:0;;21633:10;26115:48;;9611:18:1;26115:48:0;;;;;;;25876:295;;:::o;48428:65::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;48472:8:::1;:15:::0;;-1:-1:-1;;48472:15:0::1;;;::::0;;48428:65::o;48724:100::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;48793:11:::1;:25:::0;48724:100::o;27139:328::-;27314:41;21633:10;27347:7;27314:18;:41::i;:::-;27306:103;;;;-1:-1:-1;;;27306:103:0;;;;;;;:::i;:::-;27420:39;27434:4;27440:2;27444:7;27453:5;27420:13;:39::i;:::-;27139:328;;;;:::o;49834:871::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;49983:22:::1;50008:21;49983:46;;50037:7;50058:8;50067:1;50058:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50058:11:0::1;50106:4;50083:20;:14:::0;50100:3:::1;50083:20;:::i;:::-;:27;;;;:::i;:::-;50050:65;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50036:79;;;50130:2;50122:11;;;::::0;::::1;;50141:7;50162:8;50171:1;50162:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50162:11:0::1;50210:4;50187:20;:14:::0;50204:3:::1;50187:20;:::i;:::-;:27;;;;:::i;:::-;50154:65;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50140:79;;;50234:2;50226:11;;;::::0;::::1;;50245:7;50266:8;50275:1;50266:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50266:11:0::1;50314:4;50291:20;:14:::0;50308:3:::1;50291:20;:::i;:::-;:27;;;;:::i;:::-;50258:65;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50244:79;;;50338:2;50330:11;;;::::0;::::1;;50349:7;50370:42;50449:4;50426:20;:14:::0;50443:3:::1;50426:20;:::i;:::-;:27;;;;:::i;:::-;50362:96;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50348:110;;;50473:2;50465:11;;;::::0;::::1;;50484:7;50505:8;50514:1;50505:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50505:11:0::1;50552:4;50530:19;:14:::0;50547:2:::1;50530:19;:::i;:::-;:26;;;;:::i;:::-;50497:64;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50483:78;;;50576:2;50568:11;;;::::0;::::1;;50613:7;50634;43343:6:::0;;-1:-1:-1;;;;;43343:6:0;;43270:87;50634:7:::1;-1:-1:-1::0;;;;;50626:21:0::1;50655;50626:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50612:69;;;50696:2;50688:11;;;::::0;::::1;;49881:824;;;;;;;49834:871::o:0;47901:494::-;29042:4;29066:16;;;:7;:16;;;;;;47999:13;;-1:-1:-1;;;;;29066:16:0;48024:97;;;;-1:-1:-1;;;48024:97:0;;17363:2:1;48024:97:0;;;17345:21:1;17402:2;17382:18;;;17375:30;17441:34;17421:18;;;17414:62;-1:-1:-1;;;17492:18:1;;;17485:45;17547:19;;48024:97:0;17161:411:1;48024:97:0;48137:8;;;;;;;48134:59;;48174:11;48167:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47901:494;;;:::o;48134:59::-;48201:28;48232:10;:8;:10::i;:::-;48201:41;;48287:1;48262:14;48256:28;:32;:133;;;;;;;;;;;;;;;;;48324:14;48340:18;:7;:16;:18::i;:::-;48360:13;48307:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48256:133;48249:140;47901:494;-1:-1:-1;;;47901:494:0:o;50711:547::-;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;50762:22:::1;50787:21;50762:46;;50827:8;50836:1;50827:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50827:11:0::1;50819:58;50872:4;50849:20;:14:::0;50866:3:::1;50849:20;:::i;:::-;:27;;;;:::i;:::-;50819:58;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50896:8;50905:1;50896:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50896:11:0::1;50888:57;50940:4;50918:20;:14:::0;50935:3:::1;50918:20;:::i;:::-;:26;;;;:::i;:::-;50888:57;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;50964:8;50973:1;50964:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;50964:11:0::1;50956:57;51008:4;50986:20;:14:::0;51003:3:::1;50986:20;:::i;:::-;:26;;;;:::i;:::-;50956:57;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;51032:42:0::1;51024:89;51108:4;51085:20;:14:::0;51102:3:::1;51085:20;:::i;:::-;:27;;;;:::i;:::-;51024:89;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51132:8;51141:1;51132:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;51132:11:0::1;51124:56;51175:4;51154:19;:14:::0;51171:2:::1;51154:19;:::i;:::-;:25;;;;:::i;:::-;51124:56;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43343:6:0;;51202:48:::1;::::0;-1:-1:-1;;;;;43343:6:0;;;;51228:21:::1;51202:48:::0;::::1;;;::::0;::::1;::::0;;;51228:21;43343:6;51202:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;49163:122:::0;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;49246:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;47096:155::-:0;47182:11;45758:1;45744:11;:15;:52;;;;;45778:18;;45763:11;:33;;45744:52;45736:85;;;;-1:-1:-1;;;45736:85:0;;11643:2:1;45736:85:0;;;11625:21:1;11682:2;11662:18;;;11655:30;-1:-1:-1;;;11701:18:1;;;11694:50;11761:18;;45736:85:0;11441:344:1;45736:85:0;45870:9;;45855:11;45836:16;:6;964:14;;872:114;45836:16;:30;;;;:::i;:::-;:43;;45828:87;;;;-1:-1:-1;;;45828:87:0;;12751:2:1;45828:87:0;;;12733:21:1;12790:2;12770:18;;;12763:30;12829:33;12809:18;;;12802:61;12880:18;;45828:87:0;12549:355:1;45828:87:0;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23:::1;43482:68;;;;-1:-1:-1::0;;;43482:68:0::1;;;;;;;:::i;:::-;47212:33:::2;47222:9;47233:11;47212:9;:33::i;44170:192::-:0;43343:6;;-1:-1:-1;;;;;43343:6:0;21633:10;43490:23;43482:68;;;;-1:-1:-1;;;43482:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44259:22:0;::::1;44251:73;;;::::0;-1:-1:-1;;;44251:73:0;;10879:2:1;44251:73:0::1;::::0;::::1;10861:21:1::0;10918:2;10898:18;;;10891:30;10957:34;10937:18;;;10930:62;-1:-1:-1;;;11008:18:1;;;11001:36;11054:19;;44251:73:0::1;10677:402:1::0;44251:73:0::1;44335:19;44345:8;44335:9;:19::i;:::-;44170:192:::0;:::o;32959:174::-;33034:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33034:29:0;-1:-1:-1;;;;;33034:29:0;;;;;;;;:24;;33088:23;33034:24;33088:14;:23::i;:::-;-1:-1:-1;;;;;33079:46:0;;;;;;;;;;;32959:174;;:::o;29271:348::-;29364:4;29066:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29066:16:0;29381:73;;;;-1:-1:-1;;;29381:73:0;;13111:2:1;29381:73:0;;;13093:21:1;13150:2;13130:18;;;13123:30;13189:34;13169:18;;;13162:62;-1:-1:-1;;;13240:18:1;;;13233:42;13292:19;;29381:73:0;12909:408:1;29381:73:0;29465:13;29481:23;29496:7;29481:14;:23::i;:::-;29465:39;;29534:5;-1:-1:-1;;;;;29523:16:0;:7;-1:-1:-1;;;;;29523:16:0;;:51;;;;29567:7;-1:-1:-1;;;;;29543:31:0;:20;29555:7;29543:11;:20::i;:::-;-1:-1:-1;;;;;29543:31:0;;29523:51;:87;;;-1:-1:-1;;;;;;26363:25:0;;;26339:4;26363:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29578:32;29515:96;29271:348;-1:-1:-1;;;;29271:348:0:o;32263:578::-;32422:4;-1:-1:-1;;;;;32395:31:0;:23;32410:7;32395:14;:23::i;:::-;-1:-1:-1;;;;;32395:31:0;;32387:85;;;;-1:-1:-1;;;32387:85:0;;16953:2:1;32387:85:0;;;16935:21:1;16992:2;16972:18;;;16965:30;17031:34;17011:18;;;17004:62;-1:-1:-1;;;17082:18:1;;;17075:39;17131:19;;32387:85:0;16751:405:1;32387:85:0;-1:-1:-1;;;;;32491:16:0;;32483:65;;;;-1:-1:-1;;;32483:65:0;;11992:2:1;32483:65:0;;;11974:21:1;12031:2;12011:18;;;12004:30;12070:34;12050:18;;;12043:62;-1:-1:-1;;;12121:18:1;;;12114:34;12165:19;;32483:65:0;11790:400:1;32483:65:0;32665:29;32682:1;32686:7;32665:8;:29::i;:::-;-1:-1:-1;;;;;32707:15:0;;;;;;:9;:15;;;;;:20;;32726:1;;32707:15;:20;;32726:1;;32707:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32738:13:0;;;;;;:9;:13;;;;;:18;;32755:1;;32738:13;:18;;32755:1;;32738:18;:::i;:::-;;;;-1:-1:-1;;32767:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32767:21:0;-1:-1:-1;;;;;32767:21:0;;;;;;;;;32806:27;;32767:16;;32806:27;;;;;;;32263:578;;;:::o;44370:173::-;44445:6;;;-1:-1:-1;;;;;44462:17:0;;;-1:-1:-1;;;;;;44462:17:0;;;;;;;44495:40;;44445:6;;;44462:17;44445:6;;44495:40;;44426:16;;44495:40;44415:128;44370:173;:::o;51265:204::-;51345:9;51340:124;51364:11;51360:1;:15;51340:124;;;51391:18;:6;1083:19;;1101:1;1083:19;;;994:127;51391:18;51418:38;51428:9;51439:16;:6;964:14;;872:114;51439:16;51418:9;:38::i;:::-;51377:3;;;;:::i;:::-;;;;51340:124;;28349:315;28506:28;28516:4;28522:2;28526:7;28506:9;:28::i;:::-;28553:48;28576:4;28582:2;28586:7;28595:5;28553:22;:48::i;:::-;28545:111;;;;-1:-1:-1;;;28545:111:0;;;;;;;:::i;45574:102::-;45634:13;45663:7;45656:14;;;;;:::i;9385:723::-;9441:13;9662:10;9658:53;;-1:-1:-1;;9689:10:0;;;;;;;;;;;;-1:-1:-1;;;9689:10:0;;;;;9385:723::o;9658:53::-;9736:5;9721:12;9777:78;9784:9;;9777:78;;9810:8;;;;:::i;:::-;;-1:-1:-1;9833:10:0;;-1:-1:-1;9841:2:0;9833:10;;:::i;:::-;;;9777:78;;;9865:19;9897:6;9887:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9887:17:0;;9865:39;;9915:154;9922:10;;9915:154;;9949:11;9959:1;9949:11;;:::i;:::-;;-1:-1:-1;10018:10:0;10026:2;10018:5;:10;:::i;:::-;10005:24;;:2;:24;:::i;:::-;9992:39;;9975:6;9982;9975:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9975:56:0;;;;;;;;-1:-1:-1;10046:11:0;10055:2;10046:11;;:::i;:::-;;;9915:154;;29961:110;30037:26;30047:2;30051:7;30037:26;;;;;;;;;;;;:9;:26::i;33698:799::-;33853:4;-1:-1:-1;;;;;33874:13:0;;12233:20;12281:8;33870:620;;33910:72;;-1:-1:-1;;;33910:72:0;;-1:-1:-1;;;;;33910:36:0;;;;;:72;;21633:10;;33961:4;;33967:7;;33976:5;;33910:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33910:72:0;;;;;;;;-1:-1:-1;;33910:72:0;;;;;;;;;;;;:::i;:::-;;;33906:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34152:13:0;;34148:272;;34195:60;;-1:-1:-1;;;34195:60:0;;;;;;;:::i;34148:272::-;34370:6;34364:13;34355:6;34351:2;34347:15;34340:38;33906:529;-1:-1:-1;;;;;;34033:51:0;-1:-1:-1;;;34033:51:0;;-1:-1:-1;34026:58:0;;33870:620;-1:-1:-1;34474:4:0;33698:799;;;;;;:::o;30298:321::-;30428:18;30434:2;30438:7;30428:5;:18::i;:::-;30479:54;30510:1;30514:2;30518:7;30527:5;30479:22;:54::i;:::-;30457:154;;;;-1:-1:-1;;;30457:154:0;;;;;;;:::i;30955:382::-;-1:-1:-1;;;;;31035:16:0;;31027:61;;;;-1:-1:-1;;;31027:61:0;;15121:2:1;31027:61:0;;;15103:21:1;;;15140:18;;;15133:30;15199:34;15179:18;;;15172:62;15251:18;;31027:61:0;14919:356:1;31027:61:0;29042:4;29066:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29066:16:0;:30;31099:58;;;;-1:-1:-1;;;31099:58:0;;11286:2:1;31099:58:0;;;11268:21:1;11325:2;11305:18;;;11298:30;11364;11344:18;;;11337:58;11412:18;;31099:58:0;11084:352:1;31099:58:0;-1:-1:-1;;;;;31228:13:0;;;;;;:9;:13;;;;;:18;;31245:1;;31228:13;:18;;31245:1;;31228:18;:::i;:::-;;;;-1:-1:-1;;31257:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31257:21:0;-1:-1:-1;;;;;31257:21:0;;;;;;;;31296:33;;31257:16;;;31296:33;;31257:16;;31296:33;30955:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:221;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:55;;1107:1;1104;1097:12;1056:55;1129:79;1204:3;1195:6;1182:20;1175:4;1167:6;1163:17;1129:79;:::i;1219:186::-;1278:6;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;1410:260::-;1478:6;1486;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;;1626:38;1660:2;1649:9;1645:18;1626:38;:::i;:::-;1616:48;;1410:260;;;;;:::o;1675:328::-;1752:6;1760;1768;1821:2;1809:9;1800:7;1796:23;1792:32;1789:52;;;1837:1;1834;1827:12;1789:52;1860:29;1879:9;1860:29;:::i;:::-;1850:39;;1908:38;1942:2;1931:9;1927:18;1908:38;:::i;:::-;1898:48;;1993:2;1982:9;1978:18;1965:32;1955:42;;1675:328;;;;;:::o;2008:666::-;2103:6;2111;2119;2127;2180:3;2168:9;2159:7;2155:23;2151:33;2148:53;;;2197:1;2194;2187:12;2148:53;2220:29;2239:9;2220:29;:::i;:::-;2210:39;;2268:38;2302:2;2291:9;2287:18;2268:38;:::i;:::-;2258:48;;2353:2;2342:9;2338:18;2325:32;2315:42;;2408:2;2397:9;2393:18;2380:32;2435:18;2427:6;2424:30;2421:50;;;2467:1;2464;2457:12;2421:50;2490:22;;2543:4;2535:13;;2531:27;-1:-1:-1;2521:55:1;;2572:1;2569;2562:12;2521:55;2595:73;2660:7;2655:2;2642:16;2637:2;2633;2629:11;2595:73;:::i;:::-;2585:83;;;2008:666;;;;;;;:::o;2679:254::-;2744:6;2752;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;:::-;2834:39;;2892:35;2923:2;2912:9;2908:18;2892:35;:::i;2938:254::-;3006:6;3014;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3106:29;3125:9;3106:29;:::i;:::-;3096:39;3182:2;3167:18;;;;3154:32;;-1:-1:-1;;;2938:254:1:o;3197:615::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3400:9;3387:23;3429:18;3470:2;3462:6;3459:14;3456:34;;;3486:1;3483;3476:12;3456:34;3524:6;3513:9;3509:22;3499:32;;3569:7;3562:4;3558:2;3554:13;3550:27;3540:55;;3591:1;3588;3581:12;3540:55;3631:2;3618:16;3657:2;3649:6;3646:14;3643:34;;;3673:1;3670;3663:12;3643:34;3726:7;3721:2;3711:6;3708:1;3704:14;3700:2;3696:23;3692:32;3689:45;3686:65;;;3747:1;3744;3737:12;3686:65;3778:2;3770:11;;;;;3800:6;;-1:-1:-1;3197:615:1;;-1:-1:-1;;;;3197:615:1:o;3817:180::-;3873:6;3926:2;3914:9;3905:7;3901:23;3897:32;3894:52;;;3942:1;3939;3932:12;3894:52;3965:26;3981:9;3965:26;:::i;4002:245::-;4060:6;4113:2;4101:9;4092:7;4088:23;4084:32;4081:52;;;4129:1;4126;4119:12;4081:52;4168:9;4155:23;4187:30;4211:5;4187:30;:::i;4252:249::-;4321:6;4374:2;4362:9;4353:7;4349:23;4345:32;4342:52;;;4390:1;4387;4380:12;4342:52;4422:9;4416:16;4441:30;4465:5;4441:30;:::i;4506:322::-;4575:6;4628:2;4616:9;4607:7;4603:23;4599:32;4596:52;;;4644:1;4641;4634:12;4596:52;4684:9;4671:23;4717:18;4709:6;4706:30;4703:50;;;4749:1;4746;4739:12;4703:50;4772;4814:7;4805:6;4794:9;4790:22;4772:50;:::i;4833:180::-;4892:6;4945:2;4933:9;4924:7;4920:23;4916:32;4913:52;;;4961:1;4958;4951:12;4913:52;-1:-1:-1;4984:23:1;;4833:180;-1:-1:-1;4833:180:1:o;5018:254::-;5086:6;5094;5147:2;5135:9;5126:7;5122:23;5118:32;5115:52;;;5163:1;5160;5153:12;5115:52;5199:9;5186:23;5176:33;;5228:38;5262:2;5251:9;5247:18;5228:38;:::i;5277:390::-;5355:6;5363;5416:2;5404:9;5395:7;5391:23;5387:32;5384:52;;;5432:1;5429;5422:12;5384:52;5468:9;5455:23;5445:33;;5529:2;5518:9;5514:18;5501:32;5556:18;5548:6;5545:30;5542:50;;;5588:1;5585;5578:12;5542:50;5611;5653:7;5644:6;5633:9;5629:22;5611:50;:::i;:::-;5601:60;;;5277:390;;;;;:::o;5672:257::-;5713:3;5751:5;5745:12;5778:6;5773:3;5766:19;5794:63;5850:6;5843:4;5838:3;5834:14;5827:4;5820:5;5816:16;5794:63;:::i;:::-;5911:2;5890:15;-1:-1:-1;;5886:29:1;5877:39;;;;5918:4;5873:50;;5672:257;-1:-1:-1;;5672:257:1:o;5934:973::-;6019:12;;5984:3;;6074:1;6094:18;;;;6147;;;;6174:61;;6228:4;6220:6;6216:17;6206:27;;6174:61;6254:2;6302;6294:6;6291:14;6271:18;6268:38;6265:161;;;6348:10;6343:3;6339:20;6336:1;6329:31;6383:4;6380:1;6373:15;6411:4;6408:1;6401:15;6265:161;6442:18;6469:104;;;;6587:1;6582:319;;;;6435:466;;6469:104;-1:-1:-1;;6502:24:1;;6490:37;;6547:16;;;;-1:-1:-1;6469:104:1;;6582:319;19364:1;19357:14;;;19401:4;19388:18;;6676:1;6690:165;6704:6;6701:1;6698:13;6690:165;;;6782:14;;6769:11;;;6762:35;6825:16;;;;6719:10;;6690:165;;;6694:3;;6884:6;6879:3;6875:16;6868:23;;6435:466;;;;;;;5934:973;;;;:::o;6912:276::-;7043:3;7081:6;7075:13;7097:53;7143:6;7138:3;7131:4;7123:6;7119:17;7097:53;:::i;:::-;7166:16;;;;;6912:276;-1:-1:-1;;6912:276:1:o;7193:550::-;7417:3;7455:6;7449:13;7471:53;7517:6;7512:3;7505:4;7497:6;7493:17;7471:53;:::i;:::-;7587:13;;7546:16;;;;7609:57;7587:13;7546:16;7643:4;7631:17;;7609:57;:::i;:::-;7682:55;7727:8;7720:5;7716:20;7708:6;7682:55;:::i;:::-;7675:62;7193:550;-1:-1:-1;;;;;;;7193:550:1:o;7748:197::-;7876:3;7901:38;7935:3;7927:6;7901:38;:::i;8368:488::-;-1:-1:-1;;;;;8637:15:1;;;8619:34;;8689:15;;8684:2;8669:18;;8662:43;8736:2;8721:18;;8714:34;;;8784:3;8779:2;8764:18;;8757:31;;;8562:4;;8805:45;;8830:19;;8822:6;8805:45;:::i;:::-;8797:53;8368:488;-1:-1:-1;;;;;;8368:488:1:o;8861:632::-;9032:2;9084:21;;;9154:13;;9057:18;;;9176:22;;;9003:4;;9032:2;9255:15;;;;9229:2;9214:18;;;9003:4;9298:169;9312:6;9309:1;9306:13;9298:169;;;9373:13;;9361:26;;9442:15;;;;9407:12;;;;9334:1;9327:9;9298:169;;;-1:-1:-1;9484:3:1;;8861:632;-1:-1:-1;;;;;;8861:632:1:o;9690:219::-;9839:2;9828:9;9821:21;9802:4;9859:44;9899:2;9888:9;9884:18;9876:6;9859:44;:::i;10258:414::-;10460:2;10442:21;;;10499:2;10479:18;;;10472:30;10538:34;10533:2;10518:18;;10511:62;-1:-1:-1;;;10604:2:1;10589:18;;10582:48;10662:3;10647:19;;10258:414::o;16039:356::-;16241:2;16223:21;;;16260:18;;;16253:30;16319:34;16314:2;16299:18;;16292:62;16386:2;16371:18;;16039:356::o;17979:413::-;18181:2;18163:21;;;18220:2;18200:18;;;18193:30;18259:34;18254:2;18239:18;;18232:62;-1:-1:-1;;;18325:2:1;18310:18;;18303:47;18382:3;18367:19;;17979:413::o;19417:128::-;19457:3;19488:1;19484:6;19481:1;19478:13;19475:39;;;19494:18;;:::i;:::-;-1:-1:-1;19530:9:1;;19417:128::o;19550:120::-;19590:1;19616;19606:35;;19621:18;;:::i;:::-;-1:-1:-1;19655:9:1;;19550:120::o;19675:168::-;19715:7;19781:1;19777;19773:6;19769:14;19766:1;19763:21;19758:1;19751:9;19744:17;19740:45;19737:71;;;19788:18;;:::i;:::-;-1:-1:-1;19828:9:1;;19675:168::o;19848:125::-;19888:4;19916:1;19913;19910:8;19907:34;;;19921:18;;:::i;:::-;-1:-1:-1;19958:9:1;;19848:125::o;19978:258::-;20050:1;20060:113;20074:6;20071:1;20068:13;20060:113;;;20150:11;;;20144:18;20131:11;;;20124:39;20096:2;20089:10;20060:113;;;20191:6;20188:1;20185:13;20182:48;;;-1:-1:-1;;20226:1:1;20208:16;;20201:27;19978:258::o;20241:380::-;20320:1;20316:12;;;;20363;;;20384:61;;20438:4;20430:6;20426:17;20416:27;;20384:61;20491:2;20483:6;20480:14;20460:18;20457:38;20454:161;;;20537:10;20532:3;20528:20;20525:1;20518:31;20572:4;20569:1;20562:15;20600:4;20597:1;20590:15;20454:161;;20241:380;;;:::o;20626:135::-;20665:3;-1:-1:-1;;20686:17:1;;20683:43;;;20706:18;;:::i;:::-;-1:-1:-1;20753:1:1;20742:13;;20626:135::o;20766:112::-;20798:1;20824;20814:35;;20829:18;;:::i;:::-;-1:-1:-1;20863:9:1;;20766:112::o;20883:127::-;20944:10;20939:3;20935:20;20932:1;20925:31;20975:4;20972:1;20965:15;20999:4;20996:1;20989:15;21015:127;21076:10;21071:3;21067:20;21064:1;21057:31;21107:4;21104:1;21097:15;21131:4;21128:1;21121:15;21147:127;21208:10;21203:3;21199:20;21196:1;21189:31;21239:4;21236:1;21229:15;21263:4;21260:1;21253:15;21279:127;21340:10;21335:3;21331:20;21328:1;21321:31;21371:4;21368:1;21361:15;21395:4;21392:1;21385:15;21411:131;-1:-1:-1;;;;;;21485:32:1;;21475:43;;21465:71;;21532:1;21529;21522:12

Swarm Source

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