ETH Price: $2,518.25 (+3.16%)

Token

Star Chamber DAO (SCD)
 

Overview

Max Total Supply

100 SCD

Holders

62

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SCD
0x7cdc685ada9a074cec9a761173ec28d418206ab5
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:
SCDAO

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-30
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol
// OpenZeppelin Contracts v4.4.0 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.0 (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/Context.sol
// OpenZeppelin Contracts v4.4.0 (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/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts v4.4.0 (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/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts v4.4.0 (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
// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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/ERC721.sol
// OpenZeppelin Contracts v4.4.0 (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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol
// OpenZeppelin Contracts v4.4.0 (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: contracts/scdao.sol
// Project: Star Chamber DAO NFT
// Author: Изотопи - "Наша љубав је вјечна. 21110201."

// ******************************************************************************************************************************
// *************************************************** Start of Main Contract ***************************************************
// ******************************************************************************************************************************

pragma solidity ^0.8.0;

contract SCDAO is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    // Primary Settings
    uint256 public constant maxTokens = 100; // Maximum supply.
    uint public constant PRICE = 0.3 ether; // Current price = 0.3 ETH.
    uint256 public PURCHASE_LIMIT = 2; // Per Wallet mint limit.
    uint256 public PublicSaleMaxMint = 1; // Public Sale mint limit.
    uint256 public WhiteListMaxMint = 2; // Pre Sale mint limit.
    string private _contractURI = "ipfs://Qmd9jh4M87mPyDsNXQGukK5u8TNb9hsPr8c2iFk6DtcdAU/"; // Pre-reveal .json metadata.
    string private _tokenBaseURI = "ipfs://Qmd9jh4M87mPyDsNXQGukK5u8TNb9hsPr8c2iFk6DtcdAU/"; // Post-reveal .json metadata.
    bool public revealed; // Initial reveal status false.

    mapping(address => bool) private _WhiteList;
    mapping(address => uint256) private _WhiteListClaimed;

    enum State {NoSale, Presale, PublicSale} // Contract status.
    State public saleState;
    
    Counters.Counter private _publicSCDAO;

    // Initalize contract.
    constructor(
    string memory _name,
    string memory _symbol  
    ) ERC721(_name, _symbol){
        _publicSCDAO.increment();
        saleState = State.NoSale;
        _WhiteList[0x411Ca81c33A02e181Aa4534abEE62Bd55895Ad7b]=true;
        _WhiteList[0xfAD941DC8cb86eCC112E717AE3EC38b3023e4c4C]=true;
        _WhiteList[0xC63e77B019E308d1C44b9771a8a28167e6de30ec]=true;
        _WhiteList[0x04BEb13d3fbC35d48ac7C1a71690931Ea330f41f]=true;
        _WhiteList[0x2884d01A4915B05f23084DD210b57f57f1A81eeD]=true;
        _WhiteList[0xeFD9EaDD0cAE4973195333C9270Bf2C6CecCAD85]=true;
        _WhiteList[0x59891E64C54E4fC96927d26090377a5A3504b49B]=true;
        _WhiteList[0x3efEA80c8d3827160cbd23c8AF4C77EB408578ac]=true;
        _WhiteList[0xc0f4b2D44D36E588d87981b3bE39EEf2D44dE4ae]=true;
        _WhiteList[0x2283195B491A4413Fb76FFd6243d33b87C2003fc]=true;
        _WhiteList[0x2D8d16721eDb851e076616fcd59E0dFbbc607A4f]=true;
        _WhiteList[0xe7Cb26f13cA7876b368A837EE17696EceDda1182]=true;
        _WhiteList[0xceAB4bcd42B18588836f3962AA785E7CA88c5838]=true;
        _WhiteList[0x4bEe51A0236BB79C3f21ef24470a66b9490c1928]=true;
        _WhiteList[0x96f3b156dCB5B2bdB8C4CB793d85AF6ac7E5DEcE]=true;
        _WhiteList[0xa8265836b6f0C7e90d62aa3C2ba4f5F1d197307C]=true;
        _WhiteList[0x6Bb0b9FDA26418af2831FF3a26049e9F7Ce37A47]=true;
        _WhiteList[0x78D3cE60a4d803268AFeAD2d3aaD5B6C6e8AF3Aa]=true;
        _WhiteList[0x11a6bF219544bE24a77121e1EcaD01A7CA10D09D]=true;
        _WhiteList[0xe0D84A7bcCBE2fAd2aa5Fde1047E81D65606F2A0]=true;
        _WhiteList[0x091f3B40936d0df412e0606892E34a324aE86F83]=true;
        _WhiteList[0xAaC46C32E84da0a13629B4d59292B0b53a3eb695]=true;
        _WhiteList[0x1C94a99Dd48B251cCb529a23c055CabD6F057e76]=true;
        _WhiteList[0xff0e16F7995d049E307223261BdE011a339A3E6A]=true;
        _WhiteList[0x2526B26D31500d8D7711b80e22a9F48D2142a2eF]=true;
        _WhiteList[0x7Cdc685adA9a074ceC9a761173ec28d418206AB5]=true;
        _WhiteList[0x3e44938A81fb0DD0379985F019e0833F5ED279DA]=true;
        _WhiteList[0xa35B5e6D3A913ce3845F8F24a5e93a9E51d6e76C]=true;
        _WhiteList[0x30DB7a96E9b32c35b9D9caF4491f4e39B354f274]=true;
        _WhiteList[0x80eA679f52D527c0bFc89E2C9be958D838bf2157]=true;
        _WhiteList[0x95D3a3C78020Bbae4658DF09f71511D4f402e4ED]=true;
        _WhiteList[0x98E26214667592Ae8b92c35b4C04F189069a8A5f]=true;
        _WhiteList[0x36Ba357C27c999fc0a686a6B5B553f134C770A9d]=true;
        _WhiteList[0xD679B64eBFe72d501E7d66f5B572fc1EFCc399D9]=true;
        _WhiteList[0xCd687d24Fb957d403B44dC40A26bCC21E2DadeD7]=true;
        _WhiteList[0x3f6eD0F870520b08D0D6bE73430c6DA9997747FF]=true;
        _WhiteList[0x4955Fd9959d4B26e0AB22953652AF21d97CE8310]=true;
        _WhiteList[0x73D396a8A851f93D989E127a4F411A682640B7bc]=true;
        _WhiteList[0xa03F563F22b09d6aBf68eC89B1784654682f1930]=true;
        _WhiteList[0x641C6C7168F5A678bAF5F1b2141f71FDef27a82e]=true;
        _WhiteList[0xe12D731750E222eC53b001E00d978901B134CFC9]=true;
        _WhiteList[0x7375Ca5219408A75966C1565E517D05bd2BBCB46]=true;
        _WhiteList[0x7598356c8F70Aec7e5bb3A49DFC988FB6b208B45]=true;
        _WhiteList[0x963Fa2F4d38ab13bAEB6ce7433b620E636B1E511]=true;
        _WhiteList[0x4ad5c87ec83F71603BDe4e71686C7CE4E354b83c]=true;
        _WhiteList[0x55e390BA832B062fD369C9C6F4717B13Cff3d59b]=true;
        _WhiteList[0xb9550D222AAB2751D3384b28f7ef2062bc64dAe9]=true;
        _WhiteList[0xfd45B7f5428Fb114305fbC40972deE6Ab4C0002c]=true;
        _WhiteList[0x1bC79d11b99a71Ad7d586Ea4cD6513609D2c374b]=true;
        _WhiteList[0x47668a9A8f3004A0f07CdC346a7020ca4010B602]=true;
        _WhiteList[0xbF8d494C35BB50BFF3aCE7129Cc718928fc5BE60]=true;
        _WhiteList[0xD0d8c68d5B9e45Cc6a74abB5A5234a6330a45b0B]=true;
        _WhiteList[0x58F4Ee50A924244A18041bCbc529f9B2376306a1]=true;
        _WhiteList[0x4eB043D6Bd3D8DeEE60D12C9C87f23f4BA5c98C5]=true;
        _WhiteList[0x020f45082E99E4aef3cfaE89A341F9e5E6fAc3Bb]=true;
        _WhiteList[0x832F4f4f88ab27a00b7683C9b5Fc191e797187F3]=true;
        _WhiteList[0xbB3fb86Ae33Cee705E5ee52A72fcdEC87A9d9233]=true;
        _WhiteList[0xA2b1861a76d25A308E5aC5be72136fc892aD8D97]=true;
        _WhiteList[0xEE51DFBB440224B999bed3BF135Eba5c14F3A027]=true;
        _WhiteList[0x77e96e34A71F97D39600860FdBc939EAd4A2AFc4]=true;
        _WhiteList[0xe0D84A7bcCBE2fAd2aa5Fde1047E81D65606F2A0]=true;
        _WhiteList[0xD5a10C5f957cE8A0686F41CffC57Df219b72797d]=true;
        _WhiteList[0x7E45bf7Bc3FF86785d2741C11EB8f5D914647257]=true;
        _WhiteList[0x69b384d61D477D93624A2E90aAB2Dd1BC22b9698]=true;
        _WhiteList[0x52419168b03823EfDFE2a123E66e6976fAbe27C6]=true;
        _WhiteList[0x433e55070d0f5097307384f1aB09BBa49a3d6399]=true;
        _WhiteList[0x22e5841a95b312fA0A92CDB83E663dA80A7422A0]=true;        
    }

    receive() payable external {}
    fallback() payable external {}

// ******************************************************************************************************************************
// **************************************************** Setters and Getters  ****************************************************
// ******************************************************************************************************************************

    // Set Pre-reveal .json metadata.
    function setContractURI(string memory URI) external onlyOwner {
        _contractURI = URI;
    }
    
    // Set Post-reveal .json metadata.
    function setBaseURI(string memory URI) external onlyOwner {
        _tokenBaseURI = URI;
    }

    // Set Status Presale.
    function switchToPresale() external {
        address ow = owner();
        require(msg.sender == ow, "Error: Only available for the Owner of the Contract");
        saleState = State.Presale;
    }
    
    // Set Status Public Sale.
    function switchToPublicSale() external {
        address ow = owner();
        require(msg.sender == ow, "Error: Only available for the Owner of the Contract");
        saleState = State.PublicSale;
    }
    
    // Set Status No Sale (default).
    function switchToNoSale() external {
        address ow = owner();
        require(msg.sender == ow, "Error: Only available for the Owner of the Contract");
        saleState = State.NoSale;
    }

    // Set White List Max Mint Amount.
    function setWhiteListMaxMint(uint256 maxMint) external onlyOwner {
        WhiteListMaxMint = maxMint;
    }
    
    // Add White List address. Use format ["0x000000000000000000000000000000000000dEaD"].
    function addToWhiteList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
          require(addresses[i] != address(0), "Error: Can not add a null address.");                   
          _WhiteList[addresses[i]] = true;
        }
    }

    // Return White Listed Claimed.      
    function WhiteListClaimedBy(address owner) external view returns (uint256){
        require(owner != address(0), "Error: Address is not on the White List.");
    
        return _WhiteListClaimed[owner];
    }
    
    // Return White List address.
    function onWhiteList(address addr) external view returns (bool) {
        return _WhiteList[addr];
    }
    
    // Remove White List address. Use format ["0x000000000000000000000000000000000000dEaD"].
    function removeFromWhiteList(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
          require(addresses[i] != address(0), "Error: Can not remove a null address.");
    
          _WhiteList[addresses[i]] = false;
        }
    }

    // Return Pre-reveal URI with apended contract.json.
    function contractURI() public view returns (string memory) {
            return string(abi.encodePacked(_contractURI,"contract.json"));
    }

    // Return Post-reveal URI with apended .json.
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        require(_exists(tokenId), "Error: Token ID does not exist.");

        if(revealed == false) {
        return contractURI();
    }
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString(), ".json"));
    }

    // Set revealed status: revealed.
    function reveal() public onlyOwner() {
      revealed = true;
    }

    // Set revealed status: unrevealed.
    function unreveal() public onlyOwner() {
      revealed = false;
    }

    // Allow contract owner withdrawl.
    function withdraw() external onlyOwner returns (bool success) {
        ( success, ) = msg.sender.call{value: address(this).balance}("");
        return success;
    }

// ******************************************************************************************************************************
// *************************************************** Minting Functionality  ***************************************************
// ******************************************************************************************************************************

    // Allow contract owner to mint.
    function ownerMint(uint256 numberOfTokens)
        external
        payable
        onlyOwner 
        {
            require(_publicSCDAO.current() <= 100, "Error: Purchase would exceed the total supply.");
            
            for (uint256 i = 0; i < numberOfTokens; i++) {
                uint256 tokenId = _publicSCDAO.current();
    
                if (_publicSCDAO.current() <= maxTokens) {
                    _publicSCDAO.increment();
                    _mint(msg.sender, tokenId);
                }
            }
    }
 
    // Allow White Listed users to mint if Pre-sale state is set.
    function purchaseWhiteList(uint256 numberOfTokens) external payable {
        require(saleState != State.NoSale, "Error: Presale is not active.");
        require(balanceOf(msg.sender) + numberOfTokens <= PURCHASE_LIMIT, "Error: The maximum NFT's per wallet is 2.");
        require(_WhiteList[msg.sender], "Error: Current address is not White Listed.");
        require(_WhiteListClaimed[msg.sender] + numberOfTokens <= WhiteListMaxMint, "Error: The maximum White List allocation is 2.");
        require(PRICE * numberOfTokens <= msg.value, "Error: Submited ETH amount is insufficient.");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicSCDAO.current();

            if (_publicSCDAO.current() <= maxTokens) {
                _publicSCDAO.increment();
                _WhiteListClaimed[msg.sender]++;
                _mint(msg.sender, tokenId);
            }
        }
      }

    // Allow general public to mint if Public Sale state is set.
    function purchase(uint256 numberOfTokens) external payable {
        require(saleState == State.PublicSale, "Error: Public sale is not active.");
        require(balanceOf(msg.sender) + numberOfTokens <= PURCHASE_LIMIT, "Error: The maximum NFT's per wallet is 2.");           
        require(numberOfTokens <= PublicSaleMaxMint, "Error: The maximum Public Sale allocation per transaction is 1.");
        require(PRICE * numberOfTokens <= msg.value, "Error: Submited ETH amount is insufficient.");          
        
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 tokenId = _publicSCDAO.current();

            if (_publicSCDAO.current() <= maxTokens) {
                _publicSCDAO.increment();
                _mint(msg.sender, tokenId);
            }
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSaleMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"WhiteListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhiteListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhiteList","outputs":[],"stateMutability":"nonpayable","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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"onWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"purchaseWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhiteList","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleState","outputs":[{"internalType":"enum SCDAO.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setWhiteListMaxMint","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":"switchToNoSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchToPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

6002600b8190556001600c55600d5560e06040526036608081815290620039e660a03980516200003891600e9160209091019062000c24565b50604051806060016040528060368152602001620039e66036913980516200006991600f9160209091019062000c24565b503480156200007757600080fd5b5060405162003a1c38038062003a1c8339810160408190526200009a9162000d81565b815182908290620000b390600090602085019062000c24565b508051620000c990600190602084019062000c24565b505050620000e6620000e062000bc560201b60201c565b62000bc9565b620000fd601462000c1b60201b620018681760201c565b50506013805460ff1990811690915560116020527f34dbaff76ba9cc62936c8cc83a12f56e90454ef129dbc70ac92b8bee1cb3b1398054821660019081179091557fe74ec88f553e9b59983a837389d88192aba159c30e28643ad53829e9a06ece1a80548316821790557f8877781776f379c7848ea2f3296f6febd2aa00473075b468c0ee8b37ba86f1ae80548316821790557f7455f1991e98c2f32ae6e149e7796f2a6b6bae6a59c8873e5b817f8151fbb98180548316821790557f7f577a4f929bbca43274e98a4b99a6585a39c14117d9f6c8b2b4171413dd8c5380548316821790557fe41330baabc7fcc55adff74f9068e37170650a4a6607b84e3fab0ce4d88c682c80548316821790557fd99e331f395be37ec6e9c22375fbf5696017701554163ebb2fa0da2042d168d580548316821790557f7575d5f9dce7d5cf7006ddacdb560d3d0c8caee0033b31d98da123dd2cf1a86a80548316821790557ff6ec403e59075aa0baf4e823954c4f1fc83cadf259c49d012f46e0b78fcecb9280548316821790557f917b80083f6b4ae8bcc116069d2cdca854dc17fb688bf19b7da3c1acb794dac780548316821790557f4aecf945c9a34a9c61439b75cfe2869db915edc099c1b901ffe30fce3a860ef980548316821790557fdae913dd23405924c3a63b4c51a6e99f28c3fa610c3abc6590a272c0351b7f8480548316821790557f9ef126910d1a77e217970bc09540bad269d4d79fd070d9bfa37a9ad9ecf2250780548316821790557f8be80d443c4f83af434049f085c8bcf5b0a6d3c4b5f8c49b1fff15723f42cd6280548316821790557f06317bb5212d8aabf0f6f18c7cdf4d0427f6e6b0ef7c22664a736502c6322c3b80548316821790557f6b344e136b0d9ec37f741197e7f9a7ab09954b13d4e550174f8063a83723331580548316821790557f604ef93522a54acd4066010c234165edebf9bf7dd8b6083db601eec3b91303a280548316821790557f8b64bc42b08adf1227998fe853f19b508d90e85b2ab839c33f624c06dd2c25c980548316821790557f75154c25219cbebc39ce806513c583e23ba36a5f54f571de93d36cbeccfb1e2080548316821790557f4524668b2451f081e395af24e80a48b4b0d9f89e2ef44227925b9900209fb9b880548316821790557ff7a863a453d9444d3b19343d297659e85abc25bd12f90b000df7869f0d91aab780548316821790557f022a59600d46877025d93adaba035dad44afd96b908dd8b6e3a5de9f8e5f5ea580548316821790557f21437ecbafe7e919c6b9b7ef69a1fdfb57cc96c5bc638d902212594a69535f2680548316821790557f1e410a26f24e24d991f0637dfcda7a04809e70da995abf7dc454b8123f6f04fd80548316821790557fc5d972d160475171e750fd5bdb491e689af64d5e063a32da0d0608460d65eb9780548316821790557f525210b76764724f90a25e16e47713b6efe53b4d2ed3a67338878ddd5e9216d280548316821790557f306ebe9d8c8a79e994d4f7b266e5958dc74f751838f622e5fa887abff45023dd80548316821790557fc581ba338395209a74f2fca46a6a156ed6c4bc76bc2049f45b43fc82296b97b080548316821790557f8c3e3a6c1eb1fad1af19926b3b7fb4b5f3b0b92f6c53666e88bb58c7ebb49edf80548316821790557f3113a8b65c3cf2ca9649977d6d891f7f5818b9cf6623de6d1843a4106780b0e180548316821790557fd502aebafa13575732501f190584e5579758d067e611d34e2aac58be2389061080548316821790557f42ff0c0674225496ccab4e71f8958416baf583ff8108583eff703f393f8d818b80548316821790557ff361af70c1d8d9ff70f450ea1cbe7d499d3478e847afb61fcc17e604b4c0cbee80548316821790557fd0538e902d443a14719eae3d78227b0100efd983a9e3ea2eafceeaa339908fc180548316821790557f649ba009aa519b4047ba35f84fef1d971df0180742c3b92b4ee30e67d9635c5480548316821790557f7aa591ddd148e21f6a8fbae180e3cb3d85dbb6280b1fc54b28e242a7ac5f004780548316821790557ff8e873e26419c9cf0fd76582a51df499a46ac0513607343afc247c8e3c19ee7080548316821790557f5b63f9c6738da683e8bbf4f85e4c3f7ec44e7de85c9f457123973c3f822a84d380548316821790557ff48e0ca3d297da94d4bf90108be9f6f25efc36688a4cd87ab90747e759cc993e80548316821790557f08bacb586ee9dbd8c5b8c481abf5a6188d9c40db9b607f4c94934a15b220c75d80548316821790557f2ba9cbe30703e9b441289bafcfb72f44184ecc55c4f400f96d6b914133a51af780548316821790557f9cf4154ca173e976d3ce598e26f3fbc45eba0dd48c5ddc2f9cd4237a615c9e7f80548316821790557fdbb52ac2631379afc2f5b79951ccdd531d1c9e927df8c1e296fbbf2fe907822580548316821790557f1ff4ba9478b3b019b38bbb264f80cd530f4a9e2c3e105cab1a3087aa525023bb80548316821790557f61fb8c6388805ddc83f967d6ac3ca5ff8d49bfb0c38200b402bbcc7cf61e823180548316821790557f8b35a3eed072451868aa41a95db72520719ed936cc6b5f39ae168d42e8fb7fb280548316821790557f66123f2c4d58ce6d51ed9a425117f876efbdeec010d9f10e6eff8a335390899580548316821790557f418715bab76d0f9b24b93dc340861c84c01d4e6c689c3e859d80c92295bd975180548316821790557f4fc9cc363088217892eb2b0de00204d4fcb08884c57c8dfe9f726178b852da0380548316821790557f2f4172fb3a33730ce0a1b4cab3e0a27bc01820c051d64ee0e52e05167548b0c280548316821790557f3022b2177fc0c08b07cbe755eb52aacbeaebc1b9f974f2cb247b88ea77f2c01a80548316821790557f44a5b85e43fb4e3529d2fd2eaa03f77cdb3736d9c276253708cfa7eb44023b7d80548316821790557f99edfaf975e5302a7a085094610ee9f86c49ce6954b93b9a8f9314249e91f8e480548316821790557f282efb305f69133955dce686ad78ffcbe73c3fbe3c0bd146d6bb7359428b77d380548316821790557f94f31833853fb03d83b38192dee38f4d234eec155600497cc33ab89217b9cc3f80548316821790557ff36a73db4e933e6e804bab6eae25d903d1c6ba7b8c91f688dcf21c188cf04f2c80548316821790557fe536f25490c67373953eae80a2fffc309b0eb840dbb73ba1806ae050acf39c1a80548316821790557f2b83c91a069a27fa0ece27ea9153e2bd69658e247e04626025757e5ffc50ce6b80548316821790557fc1b2c76197f7bc753fdf4cdd1952005e00167154b1e0f6bdf512ac30cbffc0ea80548316821790557f64a3640615e46b4df127e25df80bac20448912fe4c86807f2e520e7bae7eb74580548316821790557f04c02c682db2f4c1bbb7398de44cc570017d8857d97cecf7bd5c6fc79c79c62a80548316821790557f67b6fd08de52fef739381261600d3b97b617e746cd236f9a4f528fdedb7ca86080548316821790557fe6b34444f08644850197203285a5c2507a5ca89120174adcc6c13e3c37ead98180548316821790557f031fd698b242b7baa4310fedc9c60aab9a609b97f61031a0d4dd3cc6d443221a80548316821790557fa04486dc5596273d6677a8f90187c3c7af17254e4900a037f2f35e51010d0e1980548316821790557322e5841a95b312fa0a92cdb83e663da80a7422a06000527f4408404d74255f02aeeed764d8091f754fa3fe8c00bcb79c896709f7c31f5261805490921617905562000e3e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80546001019055565b82805462000c329062000deb565b90600052602060002090601f01602090048101928262000c56576000855562000ca1565b82601f1062000c7157805160ff191683800117855562000ca1565b8280016001018555821562000ca1579182015b8281111562000ca157825182559160200191906001019062000c84565b5062000caf92915062000cb3565b5090565b5b8082111562000caf576000815560010162000cb4565b600082601f83011262000cdc57600080fd5b81516001600160401b038082111562000cf95762000cf962000e28565b604051601f8301601f19908116603f0116810190828211818310171562000d245762000d2462000e28565b8160405283815260209250868385880101111562000d4157600080fd5b600091505b8382101562000d65578582018301518183018401529082019062000d46565b8382111562000d775760008385830101525b9695505050505050565b6000806040838503121562000d9557600080fd5b82516001600160401b038082111562000dad57600080fd5b62000dbb8683870162000cca565b9350602085015191508082111562000dd257600080fd5b5062000de18582860162000cca565b9150509250929050565b600181811c9082168062000e0057607f821691505b6020821081141562000e2257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612b988062000e4e6000396000f3fe6080604052600436106102485760003560e01c80638803c52911610138578063b929242e116100b0578063e985e9c511610077578063e985e9c5146106b0578063eab41782146106f9578063efef39a11461070e578063f19e75d414610721578063f2fde38b14610734578063ff9849941461075457005b8063b929242e1461063a578063c87b56dd14610650578063d75e611014610670578063e831574214610686578063e8a3d4851461069b57005b8063a22cb465116100ff578063a22cb46514610579578063a475b5dd14610599578063ac570aec146105ae578063b11560c5146105c1578063b22d0c83146105e1578063b88d4fde1461061a57005b80638803c529146104ea5780638d859f3e1461050a5780638da5cb5b14610526578063938e3d7b1461054457806395d89b411461056457005b80633ccfd60b116101cb57806355f804b31161019257806355f804b31461042e578063603f4d521461044e5780636352211e1461047557806370a0823114610495578063715018a6146104b5578063740d73f3146104ca57005b80633ccfd60b146103aa57806342842e0e146103bf5780634f6ccce7146103df57806351830227146103ff578063522a62fa1461041957005b806318160ddd1161020f57806318160ddd1461031557806323b872dd146103345780632ea7c5d9146103545780632f745c591461037457806333f683d51461039457005b806301ffc9a71461025157806306fdde0314610286578063081812fc146102a8578063095ea7b3146102e0578063158756b91461030057005b3661024f57005b005b34801561025d57600080fd5b5061027161026c3660046125d9565b610769565b60405190151581526020015b60405180910390f35b34801561029257600080fd5b5061029b610794565b60405161027d91906127fe565b3480156102b457600080fd5b506102c86102c336600461265c565b610826565b6040516001600160a01b03909116815260200161027d565b3480156102ec57600080fd5b5061024f6102fb36600461253a565b6108c0565b34801561030c57600080fd5b5061024f6109d6565b34801561032157600080fd5b506008545b60405190815260200161027d565b34801561034057600080fd5b5061024f61034f366004612446565b610a0c565b34801561036057600080fd5b5061024f61036f36600461265c565b610a3d565b34801561038057600080fd5b5061032661038f36600461253a565b610a6c565b3480156103a057600080fd5b50610326600c5481565b3480156103b657600080fd5b50610271610b02565b3480156103cb57600080fd5b5061024f6103da366004612446565b610b7c565b3480156103eb57600080fd5b506103266103fa36600461265c565b610b97565b34801561040b57600080fd5b506010546102719060ff1681565b34801561042557600080fd5b5061024f610c2a565b34801561043a57600080fd5b5061024f610449366004612613565b610c80565b34801561045a57600080fd5b506013546104689060ff1681565b60405161027d91906127d6565b34801561048157600080fd5b506102c861049036600461265c565b610cc1565b3480156104a157600080fd5b506103266104b03660046123f1565b610d38565b3480156104c157600080fd5b5061024f610dbf565b3480156104d657600080fd5b5061024f6104e5366004612564565b610df5565b3480156104f657600080fd5b506103266105053660046123f1565b610f1c565b34801561051657600080fd5b50610326670429d069189e000081565b34801561053257600080fd5b50600a546001600160a01b03166102c8565b34801561055057600080fd5b5061024f61055f366004612613565b610fa1565b34801561057057600080fd5b5061029b610fde565b34801561058557600080fd5b5061024f6105943660046124fe565b610fed565b3480156105a557600080fd5b5061024f610ff8565b61024f6105bc36600461265c565b611031565b3480156105cd57600080fd5b5061024f6105dc366004612564565b611267565b3480156105ed57600080fd5b506102716105fc3660046123f1565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561062657600080fd5b5061024f610635366004612482565b611391565b34801561064657600080fd5b50610326600d5481565b34801561065c57600080fd5b5061029b61066b36600461265c565b6113c9565b34801561067c57600080fd5b50610326600b5481565b34801561069257600080fd5b50610326606481565b3480156106a757600080fd5b5061029b611474565b3480156106bc57600080fd5b506102716106cb366004612413565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070557600080fd5b5061024f61149c565b61024f61071c36600461265c565b6114ed565b61024f61072f36600461265c565b61168e565b34801561074057600080fd5b5061024f61074f3660046123f1565b61177b565b34801561076057600080fd5b5061024f611816565b60006001600160e01b0319821663780e9d6360e01b148061078e575061078e82611871565b92915050565b6060600080546107a390612a5e565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90612a5e565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108cb82610cc1565b9050806001600160a01b0316836001600160a01b031614156109395760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161089b565b336001600160a01b0382161480610955575061095581336106cb565b6109c75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161089b565b6109d183836118c1565b505050565b600a546001600160a01b03163314610a005760405162461bcd60e51b815260040161089b9061294a565b6010805460ff19169055565b610a16338261192f565b610a325760405162461bcd60e51b815260040161089b9061297f565b6109d1838383611a26565b600a546001600160a01b03163314610a675760405162461bcd60e51b815260040161089b9061294a565b600d55565b6000610a7783610d38565b8210610ad95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161089b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546000906001600160a01b03163314610b2f5760405162461bcd60e51b815260040161089b9061294a565b60405133904790600081818185875af1925050503d8060008114610b6f576040519150601f19603f3d011682016040523d82523d6000602084013e610b74565b606091505b509091505090565b6109d183838360405180602001604052806000815250611391565b6000610ba260085490565b8210610c055760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161089b565b60088281548110610c1857610c18612b20565b90600052602060002001549050919050565b6000610c3e600a546001600160a01b031690565b9050336001600160a01b03821614610c685760405162461bcd60e51b815260040161089b906128ac565b601380546000919060ff19166001835b021790555050565b600a546001600160a01b03163314610caa5760405162461bcd60e51b815260040161089b9061294a565b8051610cbd90600f9060208401906122c6565b5050565b6000818152600260205260408120546001600160a01b03168061078e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161089b565b60006001600160a01b038216610da35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161089b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610de95760405162461bcd60e51b815260040161089b9061294a565b610df36000611bd1565b565b600a546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161089b9061294a565b60005b818110156109d1576000838383818110610e3e57610e3e612b20565b9050602002016020810190610e5391906123f1565b6001600160a01b03161415610eb55760405162461bcd60e51b815260206004820152602260248201527f4572726f723a2043616e206e6f74206164642061206e756c6c20616464726573604482015261399760f11b606482015260840161089b565b600160116000858585818110610ecd57610ecd612b20565b9050602002016020810190610ee291906123f1565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f1481612a99565b915050610e22565b60006001600160a01b038216610f855760405162461bcd60e51b815260206004820152602860248201527f4572726f723a2041646472657373206973206e6f74206f6e20746865205768696044820152673a32902634b9ba1760c11b606482015260840161089b565b506001600160a01b031660009081526012602052604090205490565b600a546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161089b9061294a565b8051610cbd90600e9060208401906122c6565b6060600180546107a390612a5e565b610cbd338383611c23565b600a546001600160a01b031633146110225760405162461bcd60e51b815260040161089b9061294a565b6010805460ff19166001179055565b600060135460ff16600281111561104a5761104a612af4565b14156110985760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a2050726573616c65206973206e6f74206163746976652e000000604482015260640161089b565b600b54816110a533610d38565b6110af91906129d0565b11156110cd5760405162461bcd60e51b815260040161089b90612863565b3360009081526011602052604090205460ff166111405760405162461bcd60e51b815260206004820152602b60248201527f4572726f723a2043757272656e742061646472657373206973206e6f7420576860448201526a34ba32902634b9ba32b21760a91b606482015260840161089b565b600d543360009081526012602052604090205461115e9083906129d0565b11156111c35760405162461bcd60e51b815260206004820152602e60248201527f4572726f723a20546865206d6178696d756d205768697465204c69737420616c60448201526d3637b1b0ba34b7b71034b990191760911b606482015260840161089b565b346111d682670429d069189e00006129fc565b11156111f45760405162461bcd60e51b815260040161089b906128ff565b60005b81811015610cbd57600061120a60145490565b9050606461121760145490565b116112545761122a601480546001019055565b33600090815260126020526040812080549161124583612a99565b91905055506112543382611cf2565b508061125f81612a99565b9150506111f7565b600a546001600160a01b031633146112915760405162461bcd60e51b815260040161089b9061294a565b60005b818110156109d15760008383838181106112b0576112b0612b20565b90506020020160208101906112c591906123f1565b6001600160a01b0316141561132a5760405162461bcd60e51b815260206004820152602560248201527f4572726f723a2043616e206e6f742072656d6f76652061206e756c6c206164646044820152643932b9b99760d91b606482015260840161089b565b60006011600085858581811061134257611342612b20565b905060200201602081019061135791906123f1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061138981612a99565b915050611294565b61139b338361192f565b6113b75760405162461bcd60e51b815260040161089b9061297f565b6113c384848484611e40565b50505050565b6000818152600260205260409020546060906001600160a01b03166114305760405162461bcd60e51b815260206004820152601f60248201527f4572726f723a20546f6b656e20494420646f6573206e6f742065786973742e00604482015260640161089b565b60105460ff166114425761078e611474565b600f61144d83611e73565b60405160200161145e92919061273b565b6040516020818303038152906040529050919050565b6060600e6040516020016114889190612770565b604051602081830303815290604052905090565b60006114b0600a546001600160a01b031690565b9050336001600160a01b038216146114da5760405162461bcd60e51b815260040161089b906128ac565b601380546001919060ff19168280610c78565b600260135460ff16600281111561150657611506612af4565b1461155d5760405162461bcd60e51b815260206004820152602160248201527f4572726f723a205075626c69632073616c65206973206e6f74206163746976656044820152601760f91b606482015260840161089b565b600b548161156a33610d38565b61157491906129d0565b11156115925760405162461bcd60e51b815260040161089b90612863565b600c5481111561160a5760405162461bcd60e51b815260206004820152603f60248201527f4572726f723a20546865206d6178696d756d205075626c69632053616c65206160448201527f6c6c6f636174696f6e20706572207472616e73616374696f6e20697320312e00606482015260840161089b565b3461161d82670429d069189e00006129fc565b111561163b5760405162461bcd60e51b815260040161089b906128ff565b60005b81811015610cbd57600061165160145490565b9050606461165e60145490565b1161167b57611671601480546001019055565b61167b3382611cf2565b508061168681612a99565b91505061163e565b600a546001600160a01b031633146116b85760405162461bcd60e51b815260040161089b9061294a565b60646116c360145490565b11156117285760405162461bcd60e51b815260206004820152602e60248201527f4572726f723a20507572636861736520776f756c64206578636565642074686560448201526d103a37ba30b61039bab838363c9760911b606482015260840161089b565b60005b81811015610cbd57600061173e60145490565b9050606461174b60145490565b116117685761175e601480546001019055565b6117683382611cf2565b508061177381612a99565b91505061172b565b600a546001600160a01b031633146117a55760405162461bcd60e51b815260040161089b9061294a565b6001600160a01b03811661180a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089b565b61181381611bd1565b50565b600061182a600a546001600160a01b031690565b9050336001600160a01b038216146118545760405162461bcd60e51b815260040161089b906128ac565b601380546002919060ff1916600183610c78565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b14806118a257506001600160e01b03198216635b5e139f60e01b145b8061078e57506301ffc9a760e01b6001600160e01b031983161461078e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f682610cc1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161089b565b60006119b383610cc1565b9050806001600160a01b0316846001600160a01b031614806119ee5750836001600160a01b03166119e384610826565b6001600160a01b0316145b80611a1e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a3982610cc1565b6001600160a01b031614611aa15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161089b565b6001600160a01b038216611b035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161089b565b611b0e838383611f71565b611b196000826118c1565b6001600160a01b0383166000908152600360205260408120805460019290611b42908490612a1b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b709084906129d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c855760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161089b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038216611d485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161089b565b6000818152600260205260409020546001600160a01b031615611dad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161089b565b611db960008383611f71565b6001600160a01b0382166000908152600360205260408120805460019290611de29084906129d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611e4b848484611a26565b611e5784848484612029565b6113c35760405162461bcd60e51b815260040161089b90612811565b606081611e975750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ec15780611eab81612a99565b9150611eba9050600a836129e8565b9150611e9b565b60008167ffffffffffffffff811115611edc57611edc612b36565b6040519080825280601f01601f191660200182016040528015611f06576020820181803683370190505b5090505b8415611a1e57611f1b600183612a1b565b9150611f28600a86612ab4565b611f339060306129d0565b60f81b818381518110611f4857611f48612b20565b60200101906001600160f81b031916908160001a905350611f6a600a866129e8565b9450611f0a565b6001600160a01b038316611fcc57611fc781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fef565b816001600160a01b0316836001600160a01b031614611fef57611fef8382612136565b6001600160a01b038216612006576109d1816121d3565b826001600160a01b0316826001600160a01b0316146109d1576109d18282612282565b60006001600160a01b0384163b1561212b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061206d903390899088908890600401612799565b602060405180830381600087803b15801561208757600080fd5b505af19250505080156120b7575060408051601f3d908101601f191682019092526120b4918101906125f6565b60015b612111573d8080156120e5576040519150601f19603f3d011682016040523d82523d6000602084013e6120ea565b606091505b5080516121095760405162461bcd60e51b815260040161089b90612811565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a1e565b506001949350505050565b6000600161214384610d38565b61214d9190612a1b565b6000838152600760205260409020549091508082146121a0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121e590600190612a1b565b6000838152600960205260408120546008805493945090928490811061220d5761220d612b20565b90600052602060002001549050806008838154811061222e5761222e612b20565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061226657612266612b0a565b6001900381819060005260206000200160009055905550505050565b600061228d83610d38565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546122d290612a5e565b90600052602060002090601f0160209004810192826122f4576000855561233a565b82601f1061230d57805160ff191683800117855561233a565b8280016001018555821561233a579182015b8281111561233a57825182559160200191906001019061231f565b5061234692915061234a565b5090565b5b80821115612346576000815560010161234b565b600067ffffffffffffffff8084111561237a5761237a612b36565b604051601f8501601f19908116603f011681019082821181831017156123a2576123a2612b36565b816040528093508581528686860111156123bb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123ec57600080fd5b919050565b60006020828403121561240357600080fd5b61240c826123d5565b9392505050565b6000806040838503121561242657600080fd5b61242f836123d5565b915061243d602084016123d5565b90509250929050565b60008060006060848603121561245b57600080fd5b612464846123d5565b9250612472602085016123d5565b9150604084013590509250925092565b6000806000806080858703121561249857600080fd5b6124a1856123d5565b93506124af602086016123d5565b925060408501359150606085013567ffffffffffffffff8111156124d257600080fd5b8501601f810187136124e357600080fd5b6124f28782356020840161235f565b91505092959194509250565b6000806040838503121561251157600080fd5b61251a836123d5565b91506020830135801515811461252f57600080fd5b809150509250929050565b6000806040838503121561254d57600080fd5b612556836123d5565b946020939093013593505050565b6000806020838503121561257757600080fd5b823567ffffffffffffffff8082111561258f57600080fd5b818501915085601f8301126125a357600080fd5b8135818111156125b257600080fd5b8660208260051b85010111156125c757600080fd5b60209290920196919550909350505050565b6000602082840312156125eb57600080fd5b813561240c81612b4c565b60006020828403121561260857600080fd5b815161240c81612b4c565b60006020828403121561262557600080fd5b813567ffffffffffffffff81111561263c57600080fd5b8201601f8101841361264d57600080fd5b611a1e8482356020840161235f565b60006020828403121561266e57600080fd5b5035919050565b6000815180845261268d816020860160208601612a32565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806126bb57607f831692505b60208084108214156126dd57634e487b7160e01b600052602260045260246000fd5b8180156126f157600181146127025761272f565b60ff1986168952848901965061272f565b60008881526020902060005b868110156127275781548b82015290850190830161270e565b505084890196505b50505050505092915050565b600061274782856126a1565b8351612757818360208801612a32565b64173539b7b760d91b9101908152600501949350505050565b600061277c82846126a1565b6c31b7b73a3930b1ba173539b7b760991b8152600d019392505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127cc90830184612675565b9695505050505050565b60208101600383106127f857634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061240c6020830184612675565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526029908201527f4572726f723a20546865206d6178696d756d204e46542773207065722077616c6040820152683632ba1034b990191760b91b606082015260800190565b60208082526033908201527f4572726f723a204f6e6c7920617661696c61626c6520666f7220746865204f776040820152721b995c881bd9881d1a194810dbdb9d1c9858dd606a1b606082015260800190565b6020808252602b908201527f4572726f723a205375626d697465642045544820616d6f756e7420697320696e60408201526a39bab33334b1b4b2b73a1760a91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129e3576129e3612ac8565b500190565b6000826129f7576129f7612ade565b500490565b6000816000190483118215151615612a1657612a16612ac8565b500290565b600082821015612a2d57612a2d612ac8565b500390565b60005b83811015612a4d578181015183820152602001612a35565b838111156113c35750506000910152565b600181811c90821680612a7257607f821691505b60208210811415612a9357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aad57612aad612ac8565b5060010190565b600082612ac357612ac3612ade565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461181357600080fdfea2646970667358221220cc8f5d274512e869da266569ec4122481527b0953c86b5461373c162ee1ed1b364736f6c63430008070033697066733a2f2f516d64396a68344d38376d507944734e585147756b4b357538544e62396873507238633269466b364474636441552f00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001053746172204368616d6265722044414f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035343440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102485760003560e01c80638803c52911610138578063b929242e116100b0578063e985e9c511610077578063e985e9c5146106b0578063eab41782146106f9578063efef39a11461070e578063f19e75d414610721578063f2fde38b14610734578063ff9849941461075457005b8063b929242e1461063a578063c87b56dd14610650578063d75e611014610670578063e831574214610686578063e8a3d4851461069b57005b8063a22cb465116100ff578063a22cb46514610579578063a475b5dd14610599578063ac570aec146105ae578063b11560c5146105c1578063b22d0c83146105e1578063b88d4fde1461061a57005b80638803c529146104ea5780638d859f3e1461050a5780638da5cb5b14610526578063938e3d7b1461054457806395d89b411461056457005b80633ccfd60b116101cb57806355f804b31161019257806355f804b31461042e578063603f4d521461044e5780636352211e1461047557806370a0823114610495578063715018a6146104b5578063740d73f3146104ca57005b80633ccfd60b146103aa57806342842e0e146103bf5780634f6ccce7146103df57806351830227146103ff578063522a62fa1461041957005b806318160ddd1161020f57806318160ddd1461031557806323b872dd146103345780632ea7c5d9146103545780632f745c591461037457806333f683d51461039457005b806301ffc9a71461025157806306fdde0314610286578063081812fc146102a8578063095ea7b3146102e0578063158756b91461030057005b3661024f57005b005b34801561025d57600080fd5b5061027161026c3660046125d9565b610769565b60405190151581526020015b60405180910390f35b34801561029257600080fd5b5061029b610794565b60405161027d91906127fe565b3480156102b457600080fd5b506102c86102c336600461265c565b610826565b6040516001600160a01b03909116815260200161027d565b3480156102ec57600080fd5b5061024f6102fb36600461253a565b6108c0565b34801561030c57600080fd5b5061024f6109d6565b34801561032157600080fd5b506008545b60405190815260200161027d565b34801561034057600080fd5b5061024f61034f366004612446565b610a0c565b34801561036057600080fd5b5061024f61036f36600461265c565b610a3d565b34801561038057600080fd5b5061032661038f36600461253a565b610a6c565b3480156103a057600080fd5b50610326600c5481565b3480156103b657600080fd5b50610271610b02565b3480156103cb57600080fd5b5061024f6103da366004612446565b610b7c565b3480156103eb57600080fd5b506103266103fa36600461265c565b610b97565b34801561040b57600080fd5b506010546102719060ff1681565b34801561042557600080fd5b5061024f610c2a565b34801561043a57600080fd5b5061024f610449366004612613565b610c80565b34801561045a57600080fd5b506013546104689060ff1681565b60405161027d91906127d6565b34801561048157600080fd5b506102c861049036600461265c565b610cc1565b3480156104a157600080fd5b506103266104b03660046123f1565b610d38565b3480156104c157600080fd5b5061024f610dbf565b3480156104d657600080fd5b5061024f6104e5366004612564565b610df5565b3480156104f657600080fd5b506103266105053660046123f1565b610f1c565b34801561051657600080fd5b50610326670429d069189e000081565b34801561053257600080fd5b50600a546001600160a01b03166102c8565b34801561055057600080fd5b5061024f61055f366004612613565b610fa1565b34801561057057600080fd5b5061029b610fde565b34801561058557600080fd5b5061024f6105943660046124fe565b610fed565b3480156105a557600080fd5b5061024f610ff8565b61024f6105bc36600461265c565b611031565b3480156105cd57600080fd5b5061024f6105dc366004612564565b611267565b3480156105ed57600080fd5b506102716105fc3660046123f1565b6001600160a01b031660009081526011602052604090205460ff1690565b34801561062657600080fd5b5061024f610635366004612482565b611391565b34801561064657600080fd5b50610326600d5481565b34801561065c57600080fd5b5061029b61066b36600461265c565b6113c9565b34801561067c57600080fd5b50610326600b5481565b34801561069257600080fd5b50610326606481565b3480156106a757600080fd5b5061029b611474565b3480156106bc57600080fd5b506102716106cb366004612413565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561070557600080fd5b5061024f61149c565b61024f61071c36600461265c565b6114ed565b61024f61072f36600461265c565b61168e565b34801561074057600080fd5b5061024f61074f3660046123f1565b61177b565b34801561076057600080fd5b5061024f611816565b60006001600160e01b0319821663780e9d6360e01b148061078e575061078e82611871565b92915050565b6060600080546107a390612a5e565b80601f01602080910402602001604051908101604052809291908181526020018280546107cf90612a5e565b801561081c5780601f106107f15761010080835404028352916020019161081c565b820191906000526020600020905b8154815290600101906020018083116107ff57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108cb82610cc1565b9050806001600160a01b0316836001600160a01b031614156109395760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161089b565b336001600160a01b0382161480610955575061095581336106cb565b6109c75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161089b565b6109d183836118c1565b505050565b600a546001600160a01b03163314610a005760405162461bcd60e51b815260040161089b9061294a565b6010805460ff19169055565b610a16338261192f565b610a325760405162461bcd60e51b815260040161089b9061297f565b6109d1838383611a26565b600a546001600160a01b03163314610a675760405162461bcd60e51b815260040161089b9061294a565b600d55565b6000610a7783610d38565b8210610ad95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161089b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546000906001600160a01b03163314610b2f5760405162461bcd60e51b815260040161089b9061294a565b60405133904790600081818185875af1925050503d8060008114610b6f576040519150601f19603f3d011682016040523d82523d6000602084013e610b74565b606091505b509091505090565b6109d183838360405180602001604052806000815250611391565b6000610ba260085490565b8210610c055760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161089b565b60088281548110610c1857610c18612b20565b90600052602060002001549050919050565b6000610c3e600a546001600160a01b031690565b9050336001600160a01b03821614610c685760405162461bcd60e51b815260040161089b906128ac565b601380546000919060ff19166001835b021790555050565b600a546001600160a01b03163314610caa5760405162461bcd60e51b815260040161089b9061294a565b8051610cbd90600f9060208401906122c6565b5050565b6000818152600260205260408120546001600160a01b03168061078e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161089b565b60006001600160a01b038216610da35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161089b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610de95760405162461bcd60e51b815260040161089b9061294a565b610df36000611bd1565b565b600a546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161089b9061294a565b60005b818110156109d1576000838383818110610e3e57610e3e612b20565b9050602002016020810190610e5391906123f1565b6001600160a01b03161415610eb55760405162461bcd60e51b815260206004820152602260248201527f4572726f723a2043616e206e6f74206164642061206e756c6c20616464726573604482015261399760f11b606482015260840161089b565b600160116000858585818110610ecd57610ecd612b20565b9050602002016020810190610ee291906123f1565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f1481612a99565b915050610e22565b60006001600160a01b038216610f855760405162461bcd60e51b815260206004820152602860248201527f4572726f723a2041646472657373206973206e6f74206f6e20746865205768696044820152673a32902634b9ba1760c11b606482015260840161089b565b506001600160a01b031660009081526012602052604090205490565b600a546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161089b9061294a565b8051610cbd90600e9060208401906122c6565b6060600180546107a390612a5e565b610cbd338383611c23565b600a546001600160a01b031633146110225760405162461bcd60e51b815260040161089b9061294a565b6010805460ff19166001179055565b600060135460ff16600281111561104a5761104a612af4565b14156110985760405162461bcd60e51b815260206004820152601d60248201527f4572726f723a2050726573616c65206973206e6f74206163746976652e000000604482015260640161089b565b600b54816110a533610d38565b6110af91906129d0565b11156110cd5760405162461bcd60e51b815260040161089b90612863565b3360009081526011602052604090205460ff166111405760405162461bcd60e51b815260206004820152602b60248201527f4572726f723a2043757272656e742061646472657373206973206e6f7420576860448201526a34ba32902634b9ba32b21760a91b606482015260840161089b565b600d543360009081526012602052604090205461115e9083906129d0565b11156111c35760405162461bcd60e51b815260206004820152602e60248201527f4572726f723a20546865206d6178696d756d205768697465204c69737420616c60448201526d3637b1b0ba34b7b71034b990191760911b606482015260840161089b565b346111d682670429d069189e00006129fc565b11156111f45760405162461bcd60e51b815260040161089b906128ff565b60005b81811015610cbd57600061120a60145490565b9050606461121760145490565b116112545761122a601480546001019055565b33600090815260126020526040812080549161124583612a99565b91905055506112543382611cf2565b508061125f81612a99565b9150506111f7565b600a546001600160a01b031633146112915760405162461bcd60e51b815260040161089b9061294a565b60005b818110156109d15760008383838181106112b0576112b0612b20565b90506020020160208101906112c591906123f1565b6001600160a01b0316141561132a5760405162461bcd60e51b815260206004820152602560248201527f4572726f723a2043616e206e6f742072656d6f76652061206e756c6c206164646044820152643932b9b99760d91b606482015260840161089b565b60006011600085858581811061134257611342612b20565b905060200201602081019061135791906123f1565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061138981612a99565b915050611294565b61139b338361192f565b6113b75760405162461bcd60e51b815260040161089b9061297f565b6113c384848484611e40565b50505050565b6000818152600260205260409020546060906001600160a01b03166114305760405162461bcd60e51b815260206004820152601f60248201527f4572726f723a20546f6b656e20494420646f6573206e6f742065786973742e00604482015260640161089b565b60105460ff166114425761078e611474565b600f61144d83611e73565b60405160200161145e92919061273b565b6040516020818303038152906040529050919050565b6060600e6040516020016114889190612770565b604051602081830303815290604052905090565b60006114b0600a546001600160a01b031690565b9050336001600160a01b038216146114da5760405162461bcd60e51b815260040161089b906128ac565b601380546001919060ff19168280610c78565b600260135460ff16600281111561150657611506612af4565b1461155d5760405162461bcd60e51b815260206004820152602160248201527f4572726f723a205075626c69632073616c65206973206e6f74206163746976656044820152601760f91b606482015260840161089b565b600b548161156a33610d38565b61157491906129d0565b11156115925760405162461bcd60e51b815260040161089b90612863565b600c5481111561160a5760405162461bcd60e51b815260206004820152603f60248201527f4572726f723a20546865206d6178696d756d205075626c69632053616c65206160448201527f6c6c6f636174696f6e20706572207472616e73616374696f6e20697320312e00606482015260840161089b565b3461161d82670429d069189e00006129fc565b111561163b5760405162461bcd60e51b815260040161089b906128ff565b60005b81811015610cbd57600061165160145490565b9050606461165e60145490565b1161167b57611671601480546001019055565b61167b3382611cf2565b508061168681612a99565b91505061163e565b600a546001600160a01b031633146116b85760405162461bcd60e51b815260040161089b9061294a565b60646116c360145490565b11156117285760405162461bcd60e51b815260206004820152602e60248201527f4572726f723a20507572636861736520776f756c64206578636565642074686560448201526d103a37ba30b61039bab838363c9760911b606482015260840161089b565b60005b81811015610cbd57600061173e60145490565b9050606461174b60145490565b116117685761175e601480546001019055565b6117683382611cf2565b508061177381612a99565b91505061172b565b600a546001600160a01b031633146117a55760405162461bcd60e51b815260040161089b9061294a565b6001600160a01b03811661180a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161089b565b61181381611bd1565b50565b600061182a600a546001600160a01b031690565b9050336001600160a01b038216146118545760405162461bcd60e51b815260040161089b906128ac565b601380546002919060ff1916600183610c78565b80546001019055565b60006001600160e01b031982166380ac58cd60e01b14806118a257506001600160e01b03198216635b5e139f60e01b145b8061078e57506301ffc9a760e01b6001600160e01b031983161461078e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118f682610cc1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119a85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161089b565b60006119b383610cc1565b9050806001600160a01b0316846001600160a01b031614806119ee5750836001600160a01b03166119e384610826565b6001600160a01b0316145b80611a1e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a3982610cc1565b6001600160a01b031614611aa15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161089b565b6001600160a01b038216611b035760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161089b565b611b0e838383611f71565b611b196000826118c1565b6001600160a01b0383166000908152600360205260408120805460019290611b42908490612a1b565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b709084906129d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611c855760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161089b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b038216611d485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161089b565b6000818152600260205260409020546001600160a01b031615611dad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161089b565b611db960008383611f71565b6001600160a01b0382166000908152600360205260408120805460019290611de29084906129d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b611e4b848484611a26565b611e5784848484612029565b6113c35760405162461bcd60e51b815260040161089b90612811565b606081611e975750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ec15780611eab81612a99565b9150611eba9050600a836129e8565b9150611e9b565b60008167ffffffffffffffff811115611edc57611edc612b36565b6040519080825280601f01601f191660200182016040528015611f06576020820181803683370190505b5090505b8415611a1e57611f1b600183612a1b565b9150611f28600a86612ab4565b611f339060306129d0565b60f81b818381518110611f4857611f48612b20565b60200101906001600160f81b031916908160001a905350611f6a600a866129e8565b9450611f0a565b6001600160a01b038316611fcc57611fc781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611fef565b816001600160a01b0316836001600160a01b031614611fef57611fef8382612136565b6001600160a01b038216612006576109d1816121d3565b826001600160a01b0316826001600160a01b0316146109d1576109d18282612282565b60006001600160a01b0384163b1561212b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061206d903390899088908890600401612799565b602060405180830381600087803b15801561208757600080fd5b505af19250505080156120b7575060408051601f3d908101601f191682019092526120b4918101906125f6565b60015b612111573d8080156120e5576040519150601f19603f3d011682016040523d82523d6000602084013e6120ea565b606091505b5080516121095760405162461bcd60e51b815260040161089b90612811565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a1e565b506001949350505050565b6000600161214384610d38565b61214d9190612a1b565b6000838152600760205260409020549091508082146121a0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906121e590600190612a1b565b6000838152600960205260408120546008805493945090928490811061220d5761220d612b20565b90600052602060002001549050806008838154811061222e5761222e612b20565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061226657612266612b0a565b6001900381819060005260206000200160009055905550505050565b600061228d83610d38565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546122d290612a5e565b90600052602060002090601f0160209004810192826122f4576000855561233a565b82601f1061230d57805160ff191683800117855561233a565b8280016001018555821561233a579182015b8281111561233a57825182559160200191906001019061231f565b5061234692915061234a565b5090565b5b80821115612346576000815560010161234b565b600067ffffffffffffffff8084111561237a5761237a612b36565b604051601f8501601f19908116603f011681019082821181831017156123a2576123a2612b36565b816040528093508581528686860111156123bb57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123ec57600080fd5b919050565b60006020828403121561240357600080fd5b61240c826123d5565b9392505050565b6000806040838503121561242657600080fd5b61242f836123d5565b915061243d602084016123d5565b90509250929050565b60008060006060848603121561245b57600080fd5b612464846123d5565b9250612472602085016123d5565b9150604084013590509250925092565b6000806000806080858703121561249857600080fd5b6124a1856123d5565b93506124af602086016123d5565b925060408501359150606085013567ffffffffffffffff8111156124d257600080fd5b8501601f810187136124e357600080fd5b6124f28782356020840161235f565b91505092959194509250565b6000806040838503121561251157600080fd5b61251a836123d5565b91506020830135801515811461252f57600080fd5b809150509250929050565b6000806040838503121561254d57600080fd5b612556836123d5565b946020939093013593505050565b6000806020838503121561257757600080fd5b823567ffffffffffffffff8082111561258f57600080fd5b818501915085601f8301126125a357600080fd5b8135818111156125b257600080fd5b8660208260051b85010111156125c757600080fd5b60209290920196919550909350505050565b6000602082840312156125eb57600080fd5b813561240c81612b4c565b60006020828403121561260857600080fd5b815161240c81612b4c565b60006020828403121561262557600080fd5b813567ffffffffffffffff81111561263c57600080fd5b8201601f8101841361264d57600080fd5b611a1e8482356020840161235f565b60006020828403121561266e57600080fd5b5035919050565b6000815180845261268d816020860160208601612a32565b601f01601f19169290920160200192915050565b8054600090600181811c90808316806126bb57607f831692505b60208084108214156126dd57634e487b7160e01b600052602260045260246000fd5b8180156126f157600181146127025761272f565b60ff1986168952848901965061272f565b60008881526020902060005b868110156127275781548b82015290850190830161270e565b505084890196505b50505050505092915050565b600061274782856126a1565b8351612757818360208801612a32565b64173539b7b760d91b9101908152600501949350505050565b600061277c82846126a1565b6c31b7b73a3930b1ba173539b7b760991b8152600d019392505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127cc90830184612675565b9695505050505050565b60208101600383106127f857634e487b7160e01b600052602160045260246000fd5b91905290565b60208152600061240c6020830184612675565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526029908201527f4572726f723a20546865206d6178696d756d204e46542773207065722077616c6040820152683632ba1034b990191760b91b606082015260800190565b60208082526033908201527f4572726f723a204f6e6c7920617661696c61626c6520666f7220746865204f776040820152721b995c881bd9881d1a194810dbdb9d1c9858dd606a1b606082015260800190565b6020808252602b908201527f4572726f723a205375626d697465642045544820616d6f756e7420697320696e60408201526a39bab33334b1b4b2b73a1760a91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156129e3576129e3612ac8565b500190565b6000826129f7576129f7612ade565b500490565b6000816000190483118215151615612a1657612a16612ac8565b500290565b600082821015612a2d57612a2d612ac8565b500390565b60005b83811015612a4d578181015183820152602001612a35565b838111156113c35750506000910152565b600181811c90821680612a7257607f821691505b60208210811415612a9357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612aad57612aad612ac8565b5060010190565b600082612ac357612ac3612ade565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461181357600080fdfea2646970667358221220cc8f5d274512e869da266569ec4122481527b0953c86b5461373c162ee1ed1b364736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001053746172204368616d6265722044414f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035343440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Star Chamber DAO
Arg [1] : _symbol (string): SCD

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [3] : 53746172204368616d6265722044414f00000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5343440000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46410:12825:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39694:224;;;;;;;;;;-1:-1:-1;39694:224:0;;;;;:::i;:::-;;:::i;:::-;;;7896:14:1;;7889:22;7871:41;;7859:2;7844:18;39694:224:0;;;;;;;;27196:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28755:221::-;;;;;;;;;;-1:-1:-1;28755:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7194:32:1;;;7176:51;;7164:2;7149:18;28755:221:0;7030:203:1;28278:411:0;;;;;;;;;;-1:-1:-1;28278:411:0;;;;;:::i;:::-;;:::i;56051:72::-;;;;;;;;;;;;;:::i;40334:113::-;;;;;;;;;;-1:-1:-1;40422:10:0;:17;40334:113;;;20681:25:1;;;20669:2;20654:18;40334:113:0;20535:177:1;29505:339:0;;;;;;;;;;-1:-1:-1;29505:339:0;;;;;:::i;:::-;;:::i;53921:110::-;;;;;;;;;;-1:-1:-1;53921:110:0;;;;;:::i;:::-;;:::i;40002:256::-;;;;;;;;;;-1:-1:-1;40002:256:0;;;;;:::i;:::-;;:::i;46766:36::-;;;;;;;;;;;;;;;;56171:170;;;;;;;;;;;;;:::i;29915:185::-;;;;;;;;;;-1:-1:-1;29915:185:0;;;;;:::i;:::-;;:::i;40524:233::-;;;;;;;;;;-1:-1:-1;40524:233:0;;;;;:::i;:::-;;:::i;47150:20::-;;;;;;;;;;-1:-1:-1;47150:20:0;;;;;;;;53673:200;;;;;;;;;;;;;:::i;53037:96::-;;;;;;;;;;-1:-1:-1;53037:96:0;;;;;:::i;:::-;;:::i;47389:22::-;;;;;;;;;;-1:-1:-1;47389:22:0;;;;;;;;;;;;;;;:::i;26890:239::-;;;;;;;;;;-1:-1:-1;26890:239:0;;;;;:::i;:::-;;:::i;26620:208::-;;;;;;;;;;-1:-1:-1;26620:208:0;;;;;:::i;:::-;;:::i;6212:103::-;;;;;;;;;;;;;:::i;54134:299::-;;;;;;;;;;-1:-1:-1;54134:299:0;;;;;:::i;:::-;;:::i;54484:213::-;;;;;;;;;;-1:-1:-1;54484:213:0;;;;;:::i;:::-;;:::i;46627:38::-;;;;;;;;;;;;46656:9;46627:38;;5561:87;;;;;;;;;;-1:-1:-1;5634:6:0;;-1:-1:-1;;;;;5634:6:0;5561:87;;52886:99;;;;;;;;;;-1:-1:-1;52886:99:0;;;;;:::i;:::-;;:::i;27365:104::-;;;;;;;;;;;;;:::i;29048:155::-;;;;;;;;;;-1:-1:-1;29048:155:0;;;;;:::i;:::-;;:::i;55933:69::-;;;;;;;;;;;;;:::i;57405:939::-;;;;;;:::i;:::-;;:::i;54956:295::-;;;;;;;;;;-1:-1:-1;54956:295:0;;;;;:::i;:::-;;:::i;54744:106::-;;;;;;;;;;-1:-1:-1;54744:106:0;;;;;:::i;:::-;-1:-1:-1;;;;;54826:16:0;54802:4;54826:16;;;:10;:16;;;;;;;;;54744:106;30171:328;;;;;;;;;;-1:-1:-1;30171:328:0;;;;;:::i;:::-;;:::i;46836:35::-;;;;;;;;;;;;;;;;55519:367;;;;;;;;;;-1:-1:-1;55519:367:0;;;;;:::i;:::-;;:::i;46700:33::-;;;;;;;;;;;;;;;;46562:39;;;;;;;;;;;;46598:3;46562:39;;55317:143;;;;;;;;;;;;;:::i;29274:164::-;;;;;;;;;;-1:-1:-1;29274:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29395:25:0;;;29371:4;29395:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29274:164;53169:202;;;;;;;;;;;;;:::i;58418:812::-;;;;;;:::i;:::-;;:::i;56782:547::-;;;;;;:::i;:::-;;:::i;6470:201::-;;;;;;;;;;-1:-1:-1;6470:201:0;;;;;:::i;:::-;;:::i;53415:208::-;;;;;;;;;;;;;:::i;39694:224::-;39796:4;-1:-1:-1;;;;;;39820:50:0;;-1:-1:-1;;;39820:50:0;;:90;;;39874:36;39898:11;39874:23;:36::i;:::-;39813:97;39694:224;-1:-1:-1;;39694:224:0:o;27196:100::-;27250:13;27283:5;27276:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27196:100;:::o;28755:221::-;28831:7;32098:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32098:16:0;28851:73;;;;-1:-1:-1;;;28851:73:0;;16302:2:1;28851:73:0;;;16284:21:1;16341:2;16321:18;;;16314:30;16380:34;16360:18;;;16353:62;-1:-1:-1;;;16431:18:1;;;16424:42;16483:19;;28851:73:0;;;;;;;;;-1:-1:-1;28944:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28944:24:0;;28755:221::o;28278:411::-;28359:13;28375:23;28390:7;28375:14;:23::i;:::-;28359:39;;28423:5;-1:-1:-1;;;;;28417:11:0;:2;-1:-1:-1;;;;;28417:11:0;;;28409:57;;;;-1:-1:-1;;;28409:57:0;;17901:2:1;28409:57:0;;;17883:21:1;17940:2;17920:18;;;17913:30;17979:34;17959:18;;;17952:62;-1:-1:-1;;;18030:18:1;;;18023:31;18071:19;;28409:57:0;17699:397:1;28409:57:0;4369:10;-1:-1:-1;;;;;28501:21:0;;;;:62;;-1:-1:-1;28526:37:0;28543:5;4369:10;29274:164;:::i;28526:37::-;28479:168;;;;-1:-1:-1;;;28479:168:0;;13880:2:1;28479:168:0;;;13862:21:1;13919:2;13899:18;;;13892:30;13958:34;13938:18;;;13931:62;14029:26;14009:18;;;14002:54;14073:19;;28479:168:0;13678:420:1;28479:168:0;28660:21;28669:2;28673:7;28660:8;:21::i;:::-;28348:341;28278:411;;:::o;56051:72::-;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;56099:8:::1;:16:::0;;-1:-1:-1;;56099:16:0::1;::::0;;56051:72::o;29505:339::-;29700:41;4369:10;29733:7;29700:18;:41::i;:::-;29692:103;;;;-1:-1:-1;;;29692:103:0;;;;;;;:::i;:::-;29808:28;29818:4;29824:2;29828:7;29808:9;:28::i;53921:110::-;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;53997:16:::1;:26:::0;53921:110::o;40002:256::-;40099:7;40135:23;40152:5;40135:16;:23::i;:::-;40127:5;:31;40119:87;;;;-1:-1:-1;;;40119:87:0;;8692:2:1;40119:87:0;;;8674:21:1;8731:2;8711:18;;;8704:30;8770:34;8750:18;;;8743:62;-1:-1:-1;;;8821:18:1;;;8814:41;8872:19;;40119:87:0;8490:407:1;40119:87:0;-1:-1:-1;;;;;;40224:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40002:256::o;56171:170::-;5634:6;;56219:12;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;56259:49:::1;::::0;:10:::1;::::0;56282:21:::1;::::0;56259:49:::1;::::0;;;56282:21;56259:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;56244:64:0;;-1:-1:-1;;56171:170:0;:::o;29915:185::-;30053:39;30070:4;30076:2;30080:7;30053:39;;;;;;;;;;;;:16;:39::i;40524:233::-;40599:7;40635:30;40422:10;:17;;40334:113;40635:30;40627:5;:38;40619:95;;;;-1:-1:-1;;;40619:95:0;;19130:2:1;40619:95:0;;;19112:21:1;19169:2;19149:18;;;19142:30;19208:34;19188:18;;;19181:62;-1:-1:-1;;;19259:18:1;;;19252:42;19311:19;;40619:95:0;18928:408:1;40619:95:0;40732:10;40743:5;40732:17;;;;;;;;:::i;:::-;;;;;;;;;40725:24;;40524:233;;;:::o;53673:200::-;53719:10;53732:7;5634:6;;-1:-1:-1;;;;;5634:6:0;;5561:87;53732:7;53719:20;-1:-1:-1;53758:10:0;-1:-1:-1;;;;;53758:16:0;;;53750:80;;;;-1:-1:-1;;;53750:80:0;;;;;;;:::i;:::-;53841:9;:24;;53853:12;;53841:9;-1:-1:-1;;53841:24:0;;53853:12;53841:24;;;;;;53708:165;53673:200::o;53037:96::-;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;53106:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53037:96:::0;:::o;26890:239::-;26962:7;26998:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26998:16:0;27033:19;27025:73;;;;-1:-1:-1;;;27025:73:0;;14716:2:1;27025:73:0;;;14698:21:1;14755:2;14735:18;;;14728:30;14794:34;14774:18;;;14767:62;-1:-1:-1;;;14845:18:1;;;14838:39;14894:19;;27025:73:0;14514:405:1;26620:208:0;26692:7;-1:-1:-1;;;;;26720:19:0;;26712:74;;;;-1:-1:-1;;;26712:74:0;;14305:2:1;26712:74:0;;;14287:21:1;14344:2;14324:18;;;14317:30;14383:34;14363:18;;;14356:62;-1:-1:-1;;;14434:18:1;;;14427:40;14484:19;;26712:74:0;14103:406:1;26712:74:0;-1:-1:-1;;;;;;26804:16:0;;;;;:9;:16;;;;;;;26620:208::o;6212:103::-;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;6277:30:::1;6304:1;6277:18;:30::i;:::-;6212:103::o:0;54134:299::-;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;54223:9:::1;54218:208;54238:20:::0;;::::1;54218:208;;;54310:1;54286:9:::0;;54296:1;54286:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54286:26:0::1;;;54278:73;;;::::0;-1:-1:-1;;;54278:73:0;;15487:2:1;54278:73:0::1;::::0;::::1;15469:21:1::0;15526:2;15506:18;;;15499:30;15565:34;15545:18;;;15538:62;-1:-1:-1;;;15616:18:1;;;15609:32;15658:19;;54278:73:0::1;15285:398:1::0;54278:73:0::1;54410:4;54383:10;:24;54394:9;;54404:1;54394:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;54383:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;54383:24:0;:31;;-1:-1:-1;;54383:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54260:3;::::1;::::0;::::1;:::i;:::-;;;;54218:208;;54484:213:::0;54550:7;-1:-1:-1;;;;;54577:19:0;;54569:72;;;;-1:-1:-1;;;54569:72:0;;18721:2:1;54569:72:0;;;18703:21:1;18760:2;18740:18;;;18733:30;18799:34;18779:18;;;18772:62;-1:-1:-1;;;18850:18:1;;;18843:38;18898:19;;54569:72:0;18519:404:1;54569:72:0;-1:-1:-1;;;;;;54665:24:0;;;;;:17;:24;;;;;;;54484:213::o;52886:99::-;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;52959:18;;::::1;::::0;:12:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;27365:104::-:0;27421:13;27454:7;27447:14;;;;;:::i;29048:155::-;29143:52;4369:10;29176:8;29186;29143:18;:52::i;55933:69::-;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;55979:8:::1;:15:::0;;-1:-1:-1;;55979:15:0::1;55990:4;55979:15;::::0;;55933:69::o;57405:939::-;57505:12;57492:9;;;;:25;;;;;;;;:::i;:::-;;;57484:67;;;;-1:-1:-1;;;57484:67:0;;10697:2:1;57484:67:0;;;10679:21:1;10736:2;10716:18;;;10709:30;10775:31;10755:18;;;10748:59;10824:18;;57484:67:0;10495:353:1;57484:67:0;57612:14;;57594;57570:21;57580:10;57570:9;:21::i;:::-;:38;;;;:::i;:::-;:56;;57562:110;;;;-1:-1:-1;;;57562:110:0;;;;;;;:::i;:::-;57702:10;57691:22;;;;:10;:22;;;;;;;;57683:78;;;;-1:-1:-1;;;57683:78:0;;12229:2:1;57683:78:0;;;12211:21:1;12268:2;12248:18;;;12241:30;12307:34;12287:18;;;12280:62;-1:-1:-1;;;12358:18:1;;;12351:41;12409:19;;57683:78:0;12027:407:1;57683:78:0;57830:16;;57798:10;57780:29;;;;:17;:29;;;;;;:46;;57812:14;;57780:46;:::i;:::-;:66;;57772:125;;;;-1:-1:-1;;;57772:125:0;;16715:2:1;57772:125:0;;;16697:21:1;16754:2;16734:18;;;16727:30;16793:34;16773:18;;;16766:62;-1:-1:-1;;;16844:18:1;;;16837:44;16898:19;;57772:125:0;16513:410:1;57772:125:0;57942:9;57916:22;57924:14;46656:9;57916:22;:::i;:::-;:35;;57908:91;;;;-1:-1:-1;;;57908:91:0;;;;;;;:::i;:::-;58017:9;58012:323;58036:14;58032:1;:18;58012:323;;;58072:15;58090:22;:12;993:14;;901:114;58090:22;58072:40;;46598:3;58133:22;:12;993:14;;901:114;58133:22;:35;58129:195;;58189:24;:12;1112:19;;1130:1;1112:19;;;1023:127;58189:24;58250:10;58232:29;;;;:17;:29;;;;;:31;;;;;;:::i;:::-;;;;;;58282:26;58288:10;58300:7;58282:5;:26::i;:::-;-1:-1:-1;58052:3:0;;;;:::i;:::-;;;;58012:323;;54956:295;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;55050:9:::1;55045:199;55065:20:::0;;::::1;55045:199;;;55137:1;55113:9:::0;;55123:1;55113:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55113:26:0::1;;;55105:76;;;::::0;-1:-1:-1;;;55105:76:0;;13474:2:1;55105:76:0::1;::::0;::::1;13456:21:1::0;13513:2;13493:18;;;13486:30;13552:34;13532:18;;;13525:62;-1:-1:-1;;;13603:18:1;;;13596:35;13648:19;;55105:76:0::1;13272:401:1::0;55105:76:0::1;55227:5;55200:10;:24;55211:9;;55221:1;55211:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;55200:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;55200:24:0;:32;;-1:-1:-1;;55200:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55087:3;::::1;::::0;::::1;:::i;:::-;;;;55045:199;;30171:328:::0;30346:41;4369:10;30379:7;30346:18;:41::i;:::-;30338:103;;;;-1:-1:-1;;;30338:103:0;;;;;;;:::i;:::-;30452:39;30466:4;30472:2;30476:7;30485:5;30452:13;:39::i;:::-;30171:328;;;;:::o;55519:367::-;32074:4;32098:16;;;:7;:16;;;;;;55628:13;;-1:-1:-1;;;;;32098:16:0;55659:60;;;;-1:-1:-1;;;55659:60:0;;20377:2:1;55659:60:0;;;20359:21:1;20416:2;20396:18;;;20389:30;20455:33;20435:18;;;20428:61;20506:18;;55659:60:0;20175:355:1;55659:60:0;55735:8;;;;55732:61;;55772:13;:11;:13::i;55732:61::-;55834:13;55849:18;:7;:16;:18::i;:::-;55817:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55803:75;;55519:367;;;:::o;55317:143::-;55361:13;55422:12;55405:46;;;;;;;;:::i;:::-;;;;;;;;;;;;;55391:61;;55317:143;:::o;53169:202::-;53216:10;53229:7;5634:6;;-1:-1:-1;;;;;5634:6:0;;5561:87;53229:7;53216:20;-1:-1:-1;53255:10:0;-1:-1:-1;;;;;53255:16:0;;;53247:80;;;;-1:-1:-1;;;53247:80:0;;;;;;;:::i;:::-;53338:9;:25;;53350:13;;53338:9;-1:-1:-1;;53338:25:0;53350:13;;53338:25;;58418:812;58509:16;58496:9;;;;:29;;;;;;;;:::i;:::-;;58488:75;;;;-1:-1:-1;;;58488:75:0;;19975:2:1;58488:75:0;;;19957:21:1;20014:2;19994:18;;;19987:30;20053:34;20033:18;;;20026:62;-1:-1:-1;;;20104:18:1;;;20097:31;20145:19;;58488:75:0;19773:397:1;58488:75:0;58624:14;;58606;58582:21;58592:10;58582:9;:21::i;:::-;:38;;;;:::i;:::-;:56;;58574:110;;;;-1:-1:-1;;;58574:110:0;;;;;;;:::i;:::-;58732:17;;58714:14;:35;;58706:111;;;;-1:-1:-1;;;58706:111:0;;19543:2:1;58706:111:0;;;19525:21:1;19582:2;19562:18;;;19555:30;19621:34;19601:18;;;19594:62;19692:33;19672:18;;;19665:61;19743:19;;58706:111:0;19341:427:1;58706:111:0;58862:9;58836:22;58844:14;46656:9;58836:22;:::i;:::-;:35;;58828:91;;;;-1:-1:-1;;;58828:91:0;;;;;;;:::i;:::-;58955:9;58950:273;58974:14;58970:1;:18;58950:273;;;59010:15;59028:22;:12;993:14;;901:114;59028:22;59010:40;;46598:3;59071:22;:12;993:14;;901:114;59071:22;:35;59067:145;;59127:24;:12;1112:19;;1130:1;1112:19;;;1023:127;59127:24;59170:26;59176:10;59188:7;59170:5;:26::i;:::-;-1:-1:-1;58990:3:0;;;;:::i;:::-;;;;58950:273;;56782:547;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;56938:3:::1;56912:22;:12;993:14:::0;;901:114;56912:22:::1;:29;;56904:88;;;::::0;-1:-1:-1;;;56904:88:0;;11814:2:1;56904:88:0::1;::::0;::::1;11796:21:1::0;11853:2;11833:18;;;11826:30;11892:34;11872:18;;;11865:62;-1:-1:-1;;;11943:18:1;;;11936:44;11997:19;;56904:88:0::1;11612:410:1::0;56904:88:0::1;57026:9;57021:301;57045:14;57041:1;:18;57021:301;;;57085:15;57103:22;:12;993:14:::0;;901:114;57103:22:::1;57085:40;;46598:3;57154:22;:12;993:14:::0;;901:114;57154:22:::1;:35;57150:157;;57214:24;:12;1112:19:::0;;1130:1;1112:19;;;1023:127;57214:24:::1;57261:26;57267:10;57279:7;57261:5;:26::i;:::-;-1:-1:-1::0;57061:3:0;::::1;::::0;::::1;:::i;:::-;;;;57021:301;;6470:201:::0;5634:6;;-1:-1:-1;;;;;5634:6:0;4369:10;5781:23;5773:68;;;;-1:-1:-1;;;5773:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6559:22:0;::::1;6551:73;;;::::0;-1:-1:-1;;;6551:73:0;;9523:2:1;6551:73:0::1;::::0;::::1;9505:21:1::0;9562:2;9542:18;;;9535:30;9601:34;9581:18;;;9574:62;-1:-1:-1;;;9652:18:1;;;9645:36;9698:19;;6551:73:0::1;9321:402:1::0;6551:73:0::1;6635:28;6654:8;6635:18;:28::i;:::-;6470:201:::0;:::o;53415:208::-;53465:10;53478:7;5634:6;;-1:-1:-1;;;;;5634:6:0;;5561:87;53478:7;53465:20;-1:-1:-1;53504:10:0;-1:-1:-1;;;;;53504:16:0;;;53496:80;;;;-1:-1:-1;;;53496:80:0;;;;;;;:::i;:::-;53587:9;:28;;53599:16;;53587:9;-1:-1:-1;;53587:28:0;;53599:16;53587:28;;1023:127;1112:19;;1130:1;1112:19;;;1023:127::o;26251:305::-;26353:4;-1:-1:-1;;;;;;26390:40:0;;-1:-1:-1;;;26390:40:0;;:105;;-1:-1:-1;;;;;;;26447:48:0;;-1:-1:-1;;;26447:48:0;26390:105;:158;;;-1:-1:-1;;;;;;;;;;18086:40:0;;;26512:36;17977:157;35991:174;36066:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36066:29:0;-1:-1:-1;;;;;36066:29:0;;;;;;;;:24;;36120:23;36066:24;36120:14;:23::i;:::-;-1:-1:-1;;;;;36111:46:0;;;;;;;;;;;35991:174;;:::o;32303:348::-;32396:4;32098:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32098:16:0;32413:73;;;;-1:-1:-1;;;32413:73:0;;12641:2:1;32413:73:0;;;12623:21:1;12680:2;12660:18;;;12653:30;12719:34;12699:18;;;12692:62;-1:-1:-1;;;12770:18:1;;;12763:42;12822:19;;32413:73:0;12439:408:1;32413:73:0;32497:13;32513:23;32528:7;32513:14;:23::i;:::-;32497:39;;32566:5;-1:-1:-1;;;;;32555:16:0;:7;-1:-1:-1;;;;;32555:16:0;;:51;;;;32599:7;-1:-1:-1;;;;;32575:31:0;:20;32587:7;32575:11;:20::i;:::-;-1:-1:-1;;;;;32575:31:0;;32555:51;:87;;;-1:-1:-1;;;;;;29395:25:0;;;29371:4;29395:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32610:32;32547:96;32303:348;-1:-1:-1;;;;32303:348:0:o;35295:578::-;35454:4;-1:-1:-1;;;;;35427:31:0;:23;35442:7;35427:14;:23::i;:::-;-1:-1:-1;;;;;35427:31:0;;35419:85;;;;-1:-1:-1;;;35419:85:0;;17491:2:1;35419:85:0;;;17473:21:1;17530:2;17510:18;;;17503:30;17569:34;17549:18;;;17542:62;-1:-1:-1;;;17620:18:1;;;17613:39;17669:19;;35419:85:0;17289:405:1;35419:85:0;-1:-1:-1;;;;;35523:16:0;;35515:65;;;;-1:-1:-1;;;35515:65:0;;11055:2:1;35515:65:0;;;11037:21:1;11094:2;11074:18;;;11067:30;11133:34;11113:18;;;11106:62;-1:-1:-1;;;11184:18:1;;;11177:34;11228:19;;35515:65:0;10853:400:1;35515:65:0;35593:39;35614:4;35620:2;35624:7;35593:20;:39::i;:::-;35697:29;35714:1;35718:7;35697:8;:29::i;:::-;-1:-1:-1;;;;;35739:15:0;;;;;;:9;:15;;;;;:20;;35758:1;;35739:15;:20;;35758:1;;35739:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35770:13:0;;;;;;:9;:13;;;;;:18;;35787:1;;35770:13;:18;;35787:1;;35770:18;:::i;:::-;;;;-1:-1:-1;;35799:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35799:21:0;-1:-1:-1;;;;;35799:21:0;;;;;;;;;35838:27;;35799:16;;35838:27;;;;;;;35295:578;;;:::o;6831:191::-;6924:6;;;-1:-1:-1;;;;;6941:17:0;;;-1:-1:-1;;;;;;6941:17:0;;;;;;;6974:40;;6924:6;;;6941:17;6924:6;;6974:40;;6905:16;;6974:40;6894:128;6831:191;:::o;36307:315::-;36462:8;-1:-1:-1;;;;;36453:17:0;:5;-1:-1:-1;;;;;36453:17:0;;;36445:55;;;;-1:-1:-1;;;36445:55:0;;11460:2:1;36445:55:0;;;11442:21:1;11499:2;11479:18;;;11472:30;11538:27;11518:18;;;11511:55;11583:18;;36445:55:0;11258:349:1;36445:55:0;-1:-1:-1;;;;;36511:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36511:46:0;;;;;;;;;;36573:41;;7871::1;;;36573::0;;7844:18:1;36573:41:0;;;;;;;36307:315;;;:::o;33987:382::-;-1:-1:-1;;;;;34067:16:0;;34059:61;;;;-1:-1:-1;;;34059:61:0;;15126:2:1;34059:61:0;;;15108:21:1;;;15145:18;;;15138:30;15204:34;15184:18;;;15177:62;15256:18;;34059:61:0;14924:356:1;34059:61:0;32074:4;32098:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32098:16:0;:30;34131:58;;;;-1:-1:-1;;;34131:58:0;;10340:2:1;34131:58:0;;;10322:21:1;10379:2;10359:18;;;10352:30;10418;10398:18;;;10391:58;10466:18;;34131:58:0;10138:352:1;34131:58:0;34202:45;34231:1;34235:2;34239:7;34202:20;:45::i;:::-;-1:-1:-1;;;;;34260:13:0;;;;;;:9;:13;;;;;:18;;34277:1;;34260:13;:18;;34277:1;;34260:18;:::i;:::-;;;;-1:-1:-1;;34289:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34289:21:0;-1:-1:-1;;;;;34289:21:0;;;;;;;;34328:33;;34289:16;;;34328:33;;34289:16;;34328:33;33987:382;;:::o;31381:315::-;31538:28;31548:4;31554:2;31558:7;31538:9;:28::i;:::-;31585:48;31608:4;31614:2;31618:7;31627:5;31585:22;:48::i;:::-;31577:111;;;;-1:-1:-1;;;31577:111:0;;;;;;;:::i;1855:723::-;1911:13;2132:10;2128:53;;-1:-1:-1;;2159:10:0;;;;;;;;;;;;-1:-1:-1;;;2159:10:0;;;;;1855:723::o;2128:53::-;2206:5;2191:12;2247:78;2254:9;;2247:78;;2280:8;;;;:::i;:::-;;-1:-1:-1;2303:10:0;;-1:-1:-1;2311:2:0;2303:10;;:::i;:::-;;;2247:78;;;2335:19;2367:6;2357:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2357:17:0;;2335:39;;2385:154;2392:10;;2385:154;;2419:11;2429:1;2419:11;;:::i;:::-;;-1:-1:-1;2488:10:0;2496:2;2488:5;:10;:::i;:::-;2475:24;;:2;:24;:::i;:::-;2462:39;;2445:6;2452;2445:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2445:56:0;;;;;;;;-1:-1:-1;2516:11:0;2525:2;2516:11;;:::i;:::-;;;2385:154;;41370:589;-1:-1:-1;;;;;41576:18:0;;41572:187;;41611:40;41643:7;42786:10;:17;;42759:24;;;;:15;:24;;;;;:44;;;42814:24;;;;;;;;;;;;42682:164;41611:40;41572:187;;;41681:2;-1:-1:-1;;;;;41673:10:0;:4;-1:-1:-1;;;;;41673:10:0;;41669:90;;41700:47;41733:4;41739:7;41700:32;:47::i;:::-;-1:-1:-1;;;;;41773:16:0;;41769:183;;41806:45;41843:7;41806:36;:45::i;41769:183::-;41879:4;-1:-1:-1;;;;;41873:10:0;:2;-1:-1:-1;;;;;41873:10:0;;41869:83;;41900:40;41928:2;41932:7;41900:27;:40::i;37187:799::-;37342:4;-1:-1:-1;;;;;37363:13:0;;8168:20;8216:8;37359:620;;37399:72;;-1:-1:-1;;;37399:72:0;;-1:-1:-1;;;;;37399:36:0;;;;;:72;;4369:10;;37450:4;;37456:7;;37465:5;;37399:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37399:72:0;;;;;;;;-1:-1:-1;;37399:72:0;;;;;;;;;;;;:::i;:::-;;;37395:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37641:13:0;;37637:272;;37684:60;;-1:-1:-1;;;37684:60:0;;;;;;;:::i;37637:272::-;37859:6;37853:13;37844:6;37840:2;37836:15;37829:38;37395:529;-1:-1:-1;;;;;;37522:51:0;-1:-1:-1;;;37522:51:0;;-1:-1:-1;37515:58:0;;37359:620;-1:-1:-1;37963:4:0;37187:799;;;;;;:::o;43473:988::-;43739:22;43789:1;43764:22;43781:4;43764:16;:22::i;:::-;:26;;;;:::i;:::-;43801:18;43822:26;;;:17;:26;;;;;;43739:51;;-1:-1:-1;43955:28:0;;;43951:328;;-1:-1:-1;;;;;44022:18:0;;44000:19;44022:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44073:30;;;;;;:44;;;44190:30;;:17;:30;;;;;:43;;;43951:328;-1:-1:-1;44375:26:0;;;;:17;:26;;;;;;;;44368:33;;;-1:-1:-1;;;;;44419:18:0;;;;;:12;:18;;;;;:34;;;;;;;44412:41;43473:988::o;44756:1079::-;45034:10;:17;45009:22;;45034:21;;45054:1;;45034:21;:::i;:::-;45066:18;45087:24;;;:15;:24;;;;;;45460:10;:26;;45009:46;;-1:-1:-1;45087:24:0;;45009:46;;45460:26;;;;;;:::i;:::-;;;;;;;;;45438:48;;45524:11;45499:10;45510;45499:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45604:28;;;:15;:28;;;;;;;:41;;;45776:24;;;;;45769:31;45811:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44827:1008;;;44756:1079;:::o;42260:221::-;42345:14;42362:20;42379:2;42362:16;:20::i;:::-;-1:-1:-1;;;;;42393:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42438:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42260:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:615::-;2985:6;2993;3046:2;3034:9;3025:7;3021:23;3017:32;3014:52;;;3062:1;3059;3052:12;3014:52;3102:9;3089:23;3131:18;3172:2;3164:6;3161:14;3158:34;;;3188:1;3185;3178:12;3158:34;3226:6;3215:9;3211:22;3201:32;;3271:7;3264:4;3260:2;3256:13;3252:27;3242:55;;3293:1;3290;3283:12;3242:55;3333:2;3320:16;3359:2;3351:6;3348:14;3345:34;;;3375:1;3372;3365:12;3345:34;3428:7;3423:2;3413:6;3410:1;3406:14;3402:2;3398:23;3394:32;3391:45;3388:65;;;3449:1;3446;3439:12;3388:65;3480:2;3472:11;;;;;3502:6;;-1:-1:-1;2899:615:1;;-1:-1:-1;;;;2899:615:1:o;3519:245::-;3577:6;3630:2;3618:9;3609:7;3605:23;3601:32;3598:52;;;3646:1;3643;3636:12;3598:52;3685:9;3672:23;3704:30;3728:5;3704:30;:::i;3769:249::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3939:9;3933:16;3958:30;3982:5;3958:30;:::i;4023:450::-;4092:6;4145:2;4133:9;4124:7;4120:23;4116:32;4113:52;;;4161:1;4158;4151:12;4113:52;4201:9;4188:23;4234:18;4226:6;4223:30;4220:50;;;4266:1;4263;4256:12;4220:50;4289:22;;4342:4;4334:13;;4330:27;-1:-1:-1;4320:55:1;;4371:1;4368;4361:12;4320:55;4394:73;4459:7;4454:2;4441:16;4436:2;4432;4428:11;4394:73;:::i;4478:180::-;4537:6;4590:2;4578:9;4569:7;4565:23;4561:32;4558:52;;;4606:1;4603;4596:12;4558:52;-1:-1:-1;4629:23:1;;4478:180;-1:-1:-1;4478:180:1:o;4663:257::-;4704:3;4742:5;4736:12;4769:6;4764:3;4757:19;4785:63;4841:6;4834:4;4829:3;4825:14;4818:4;4811:5;4807:16;4785:63;:::i;:::-;4902:2;4881:15;-1:-1:-1;;4877:29:1;4868:39;;;;4909:4;4864:50;;4663:257;-1:-1:-1;;4663:257:1:o;4925:973::-;5010:12;;4975:3;;5065:1;5085:18;;;;5138;;;;5165:61;;5219:4;5211:6;5207:17;5197:27;;5165:61;5245:2;5293;5285:6;5282:14;5262:18;5259:38;5256:161;;;5339:10;5334:3;5330:20;5327:1;5320:31;5374:4;5371:1;5364:15;5402:4;5399:1;5392:15;5256:161;5433:18;5460:104;;;;5578:1;5573:319;;;;5426:466;;5460:104;-1:-1:-1;;5493:24:1;;5481:37;;5538:16;;;;-1:-1:-1;5460:104:1;;5573:319;20790:1;20783:14;;;20827:4;20814:18;;5667:1;5681:165;5695:6;5692:1;5689:13;5681:165;;;5773:14;;5760:11;;;5753:35;5816:16;;;;5710:10;;5681:165;;;5685:3;;5875:6;5870:3;5866:16;5859:23;;5426:466;;;;;;;4925:973;;;;:::o;5903:543::-;6180:3;6208:38;6242:3;6234:6;6208:38;:::i;:::-;6275:6;6269:13;6291:52;6336:6;6332:2;6325:4;6317:6;6313:17;6291:52;:::i;:::-;-1:-1:-1;;;6365:15:1;;6389:22;;;6438:1;6427:13;;5903:543;-1:-1:-1;;;;5903:543:1:o;6451:364::-;6680:3;6708:38;6742:3;6734:6;6708:38;:::i;:::-;-1:-1:-1;;;6755:27:1;;6806:2;6798:11;;6451:364;-1:-1:-1;;;6451:364:1:o;7238:488::-;-1:-1:-1;;;;;7507:15:1;;;7489:34;;7559:15;;7554:2;7539:18;;7532:43;7606:2;7591:18;;7584:34;;;7654:3;7649:2;7634:18;;7627:31;;;7432:4;;7675:45;;7700:19;;7692:6;7675:45;:::i;:::-;7667:53;7238:488;-1:-1:-1;;;;;;7238:488:1:o;7923:338::-;8065:2;8050:18;;8098:1;8087:13;;8077:144;;8143:10;8138:3;8134:20;8131:1;8124:31;8178:4;8175:1;8168:15;8206:4;8203:1;8196:15;8077:144;8230:25;;;7923:338;:::o;8266:219::-;8415:2;8404:9;8397:21;8378:4;8435:44;8475:2;8464:9;8460:18;8452:6;8435:44;:::i;8902:414::-;9104:2;9086:21;;;9143:2;9123:18;;;9116:30;9182:34;9177:2;9162:18;;9155:62;-1:-1:-1;;;9248:2:1;9233:18;;9226:48;9306:3;9291:19;;8902:414::o;9728:405::-;9930:2;9912:21;;;9969:2;9949:18;;;9942:30;10008:34;10003:2;9988:18;;9981:62;-1:-1:-1;;;10074:2:1;10059:18;;10052:39;10123:3;10108:19;;9728:405::o;12852:415::-;13054:2;13036:21;;;13093:2;13073:18;;;13066:30;13132:34;13127:2;13112:18;;13105:62;-1:-1:-1;;;13198:2:1;13183:18;;13176:49;13257:3;13242:19;;12852:415::o;15688:407::-;15890:2;15872:21;;;15929:2;15909:18;;;15902:30;15968:34;15963:2;15948:18;;15941:62;-1:-1:-1;;;16034:2:1;16019:18;;16012:41;16085:3;16070:19;;15688:407::o;16928:356::-;17130:2;17112:21;;;17149:18;;;17142:30;17208:34;17203:2;17188:18;;17181:62;17275:2;17260:18;;16928:356::o;18101:413::-;18303:2;18285:21;;;18342:2;18322:18;;;18315:30;18381:34;18376:2;18361:18;;18354:62;-1:-1:-1;;;18447:2:1;18432:18;;18425:47;18504:3;18489:19;;18101:413::o;20843:128::-;20883:3;20914:1;20910:6;20907:1;20904:13;20901:39;;;20920:18;;:::i;:::-;-1:-1:-1;20956:9:1;;20843:128::o;20976:120::-;21016:1;21042;21032:35;;21047:18;;:::i;:::-;-1:-1:-1;21081:9:1;;20976:120::o;21101:168::-;21141:7;21207:1;21203;21199:6;21195:14;21192:1;21189:21;21184:1;21177:9;21170:17;21166:45;21163:71;;;21214:18;;:::i;:::-;-1:-1:-1;21254:9:1;;21101:168::o;21274:125::-;21314:4;21342:1;21339;21336:8;21333:34;;;21347:18;;:::i;:::-;-1:-1:-1;21384:9:1;;21274:125::o;21404:258::-;21476:1;21486:113;21500:6;21497:1;21494:13;21486:113;;;21576:11;;;21570:18;21557:11;;;21550:39;21522:2;21515:10;21486:113;;;21617:6;21614:1;21611:13;21608:48;;;-1:-1:-1;;21652:1:1;21634:16;;21627:27;21404:258::o;21667:380::-;21746:1;21742:12;;;;21789;;;21810:61;;21864:4;21856:6;21852:17;21842:27;;21810:61;21917:2;21909:6;21906:14;21886:18;21883:38;21880:161;;;21963:10;21958:3;21954:20;21951:1;21944:31;21998:4;21995:1;21988:15;22026:4;22023:1;22016:15;21880:161;;21667:380;;;:::o;22052:135::-;22091:3;-1:-1:-1;;22112:17:1;;22109:43;;;22132:18;;:::i;:::-;-1:-1:-1;22179:1:1;22168:13;;22052:135::o;22192:112::-;22224:1;22250;22240:35;;22255:18;;:::i;:::-;-1:-1:-1;22289:9:1;;22192:112::o;22309:127::-;22370:10;22365:3;22361:20;22358:1;22351:31;22401:4;22398:1;22391:15;22425:4;22422:1;22415:15;22441:127;22502:10;22497:3;22493:20;22490:1;22483:31;22533:4;22530:1;22523:15;22557:4;22554:1;22547:15;22573:127;22634:10;22629:3;22625:20;22622:1;22615:31;22665:4;22662:1;22655:15;22689:4;22686:1;22679:15;22705:127;22766:10;22761:3;22757:20;22754:1;22747:31;22797:4;22794:1;22787:15;22821:4;22818:1;22811:15;22837:127;22898:10;22893:3;22889:20;22886:1;22879:31;22929:4;22926:1;22919:15;22953:4;22950:1;22943:15;22969:127;23030:10;23025:3;23021:20;23018:1;23011:31;23061:4;23058:1;23051:15;23085:4;23082:1;23075:15;23101:131;-1:-1:-1;;;;;;23175:32:1;;23165:43;;23155:71;;23222:1;23219;23212:12

Swarm Source

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