ETH Price: $3,308.99 (-1.74%)
Gas: 2 Gwei

Token

Shikage NFT (SHIKAGE)
 

Overview

Max Total Supply

115 SHIKAGE

Holders

49

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SHIKAGE
0x1ad6929477bf0a847957774e12ecfbe1da8aada7
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:
ShikageNFT

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-06
*/

// SPDX-License-Identifier: MIT
//C U ON THE MOON
pragma solidity ^0.8.10;

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

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

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


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

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

    function _multiMint(uint256 amount, address to) internal virtual {
        unchecked {
            _balances[to] += amount;
        }
    }

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

        _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 {}
}

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

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

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

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

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

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

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

        return super.tokenURI(tokenId);
    }

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

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

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in paused state.
     */
    constructor() {
        _paused = true;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

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

contract ShikageNFT is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable {
    bytes4 internal constant MAGIC_ON_ERC721_RECEIVED = 0x150b7a02;
    using Strings for uint256;

    uint256 public currentId = 1;

    uint256 gas = 5000000;

    address payable dev;
    address payable project = payable(0x592Ab8ED942c7Eb84cB27616f1Dcb57669DFD901);
    uint256 devFee = 10;
    
    uint256 public mintingLimit = 300;
    uint256 public price = 1 * 10**17;
    uint256 public whitelistPrice = 8 * 10**16;
    mapping(address => bool) feeWhitelist;
    mapping(address => bool) public whitelist;
    bool public whitelistEnabled = true;
    uint256 public maxMint = 10;
    string baseURI = "ipfs://Qma7dhuehdJKnc3dy2CL4ynUNeYWgUoxrWG44bHDZLjWSM/";
    string placeholderURI;
    uint256 public revealedTo = 300;
    string constant baseExtension = ".json";

    constructor(address _dev) ERC721("Shikage NFT", "SHIKAGE") {
        dev = payable(_dev);
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setWhitelistPrice(uint256 _price) external onlyOwner {
        whitelistPrice = _price;
    }

    function setWhitelist(address _wallet, bool _toggle) external onlyOwner {
        feeWhitelist[_wallet] = _toggle;
    }
    
    function setBaseURI(string calldata _base) external onlyOwner {
        baseURI = _base;
    }

    function setPlaceholderURI(string calldata _placeholder) external onlyOwner {
        placeholderURI = _placeholder;
    }
    
    function setMintLimit(uint256 _maxMint) external onlyOwner {
        maxMint = _maxMint;
    }
    
    function loadNFTs(uint256 _uris) external onlyOwner {
        mintingLimit += _uris;
    }

    function pushCurrentMintId(uint256 _amount) external onlyOwner {
        currentId += _amount;
    }

    function pushRevealedTo(uint256 _amount) external onlyOwner {
        revealedTo += _amount;
    }

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

    function updateURIs(uint256[] calldata ids, string[] calldata _uris) external onlyOwner {
        require(ids.length == _uris.length, "Wrong array size");
        for (uint i = 0; i < ids.length; i++){
            _setTokenURI(ids[i], _uris[i]); 
        }
    }
    
    function updateURIs(uint256[] calldata ids, string calldata _base) external onlyOwner {
        for (uint i = 0; i < ids.length; i++){
            _setTokenURI(ids[i], concatenate(concatenate(_base, ids[i].toString()), baseExtension)); 
        }
    }
    
    function updateURI(uint256 id, string memory _uri) external onlyOwner {
        _setTokenURI(id, _uri); 
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

   function mint(uint256 amount) external payable whenNotPaused {
        require(amount <= maxMint && amount > 0, "Minting limits exceeded");
        unchecked{
        uint256 totalCost = feeWhitelist[msg.sender] ? 0 : (whitelistEnabled && whitelist[msg.sender] ? whitelistPrice : price) * amount;

        require (msg.value == totalCost, "Incorrect amount paid");
        
        uint256 mintId = currentId;

        require ((mintId-1) + amount <= mintingLimit, "Not enough tokens remaining");
        
        for (uint i = 0; i < amount; i++){
            _safeMint(msg.sender, mintId);
            mintId++;
        }
        currentId = mintId;
        }
        _multiMint(amount, msg.sender);
    }

    function claimFunds() external onlyOwner {
        dev.transfer((address(this).balance * devFee) / 100);
        project.transfer(address(this).balance);         
    } 

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

    // The following functions are overrides required by Solidity.

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

    function tokenURI(uint256 _tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
        require(_exists(_tokenId), "ERC721URIStorage: URI query for nonexistent token");
        string memory _tokenURI = _tokenURIs[_tokenId];
        string memory base = _baseURI();

        if (bytes(_tokenURI).length > 0) {
            return _tokenURI;
        }

        if ((revealedTo >= _tokenId) && bytes(base).length > 0) {
            return concatenate(base, concatenate(_tokenId.toString(), baseExtension));
        }

        if (bytes(placeholderURI).length > 0) {
            return placeholderURI;
        }

        return super.tokenURI(_tokenId);
    } 

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

    function getMyNFTs(address me, uint256 start, uint256 limit, uint256 _gas) external view returns (uint256[] memory myNFTIDs, string[] memory myNFTuris, uint256 lastId) {
        uint256 balance = balanceOf(me);
        if (limit == 0) limit = 1;
        if (balance > 0) {
            if (start >= balance) start = balance-1;
            if (start + limit > balance) limit = balance - start;

            myNFTIDs = new uint256[](limit);
            myNFTuris = new string[](limit);
            
            uint256 gasUsed = 0;
            uint256 gasLeft = gasleft();
            
            for (uint256 i=0; gasUsed < (_gas > 0 ? _gas : gas) && i < limit; i++) {
                lastId = i+start;
                uint256 id = tokenOfOwnerByIndex(me, lastId);
                myNFTIDs[i] = id;
                myNFTuris[i] = tokenURI(id);
                
                gasUsed = gasUsed + (gasLeft - gasleft());
                gasLeft = gasleft();
            }
        }
    }

    function remaining() external view returns(uint256) {
        return mintingLimit - (currentId-1);
    }

    function enabledWhitelist(bool _enabled) external onlyOwner {
        whitelistEnabled = _enabled;
    }

    function loadWhitelist(address[] calldata addressList, bool _listed) external onlyOwner {
      for (uint256 i = 0; i < addressList.length; i++) {
          whitelist[addressList[i]] = _listed;
      }
    }

    function concatenate(string memory a, string memory b) internal pure returns (string memory) {
        return string(abi.encodePacked(a, b));
    }
    //C U ON THE MOON
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"enabledWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"me","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"_gas","type":"uint256"}],"name":"getMyNFTs","outputs":[{"internalType":"uint256[]","name":"myNFTIDs","type":"uint256[]"},{"internalType":"string[]","name":"myNFTuris","type":"string[]"},{"internalType":"uint256","name":"lastId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_uris","type":"uint256"}],"name":"loadNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"},{"internalType":"bool","name":"_listed","type":"bool"}],"name":"loadWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"pushCurrentMintId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"pushRevealedTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedTo","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholder","type":"string"}],"name":"setPlaceholderURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"string","name":"_base","type":"string"}],"name":"updateURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"string[]","name":"_uris","type":"string[]"}],"name":"updateURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6001600c819055624c4b40600d55600f80546001600160a01b03191673592ab8ed942c7eb84cb27616f1dcb57669dfd901179055600a601081905561012c60115567016345785d8a000060125567011c37937e0800006013556016805460ff191690921790915560175560e06040526036608081815290620037eb60a03980516200009391601891602090910190620001d4565b5061012c601a55348015620000a757600080fd5b506040516200382138038062003821833981016040819052620000ca916200027a565b604080518082018252600b81526a14da1a5ad859d94813919560aa1b6020808301918252835180850190945260078452665348494b41474560c81b9084015281519192916200011c91600091620001d4565b50805162000132906001906020840190620001d4565b5050600b805460ff1916600117905550620001546200014e3390565b6200017a565b600e80546001600160a01b0319166001600160a01b0392909216919091179055620002e9565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e290620002ac565b90600052602060002090601f01602090048101928262000206576000855562000251565b82601f106200022157805160ff191683800117855562000251565b8280016001018555821562000251579182015b828111156200025157825182559160200191906001019062000234565b506200025f92915062000263565b5090565b5b808211156200025f576000815560010162000264565b6000602082840312156200028d57600080fd5b81516001600160a01b0381168114620002a557600080fd5b9392505050565b600181811c90821680620002c157607f821691505b60208210811415620002e357634e487b7160e01b600052602260045260246000fd5b50919050565b6134f280620002f96000396000f3fe6080604052600436106102ae5760003560e01c8063715018a611610175578063a9962e4c116100dc578063e00dd16111610095578063e985e9c51161006f578063e985e9c514610820578063f02d9bb814610869578063f2fde38b1461087f578063fc1a1c361461089f57600080fd5b8063e00dd161146107bb578063e2285729146107d1578063e313303c146107f157600080fd5b8063a9962e4c14610706578063ac30777314610726578063b88d4fde1461073b578063c87b56dd1461075b578063d63d01681461077b578063de5f38681461079b57600080fd5b806395d89b411161012e57806395d89b41146106585780639b19251a1461066d5780639e6a1d7d1461069d578063a035b1fe146106bd578063a0712d68146106d3578063a22cb465146106e657600080fd5b8063715018a6146105b5578063717d57d3146105ca5780637501f741146105ea5780638456cb59146106005780638da5cb5b1461061557806391b7f5ed1461063857600080fd5b80633f4ba83a1161021957806353d6fd59116101d257806353d6fd591461050857806355234ec01461052857806355f804b31461053d5780635c975abb1461055d5780636352211e1461057557806370a082311461059557600080fd5b80633f4ba83a1461046357806342842e0e1461047857806342966c681461049857806349072f12146104b85780634f6ccce7146104ce57806351fb012d146104ee57600080fd5b806318160ddd1161026b57806318160ddd146103a457806318546706146103c357806323b872dd146103e35780632f745c591461040357806331d41c69146104235780633574a2dd1461044357600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a5780630874560914610342578063095ea7b314610364578063158ae0fa14610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b8c565b6108b5565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108c6565b6040516102df9190612c01565b34801561031657600080fd5b5061032a610325366004612c14565b610958565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d366004612c42565b6109e5565b005b34801561037057600080fd5b5061036261037f366004612c74565b610a28565b34801561039057600080fd5b5061036261039f366004612d2a565b610b3e565b3480156103b057600080fd5b506008545b6040519081526020016102df565b3480156103cf57600080fd5b506103626103de366004612d95565b610c3b565b3480156103ef57600080fd5b506103626103fe366004612df4565b610d44565b34801561040f57600080fd5b506103b561041e366004612c74565b610d76565b34801561042f57600080fd5b5061036261043e366004612ebb565b610e0c565b34801561044f57600080fd5b5061036261045e366004612f15565b610e4a565b34801561046f57600080fd5b50610362610e86565b34801561048457600080fd5b50610362610493366004612df4565b610ec0565b3480156104a457600080fd5b506103626104b3366004612c14565b610edb565b3480156104c457600080fd5b506103b560115481565b3480156104da57600080fd5b506103b56104e9366004612c14565b610f55565b3480156104fa57600080fd5b506016546102d39060ff1681565b34801561051457600080fd5b50610362610523366004612f56565b610fe8565b34801561053457600080fd5b506103b5611043565b34801561054957600080fd5b50610362610558366004612f15565b611066565b34801561056957600080fd5b50600b5460ff166102d3565b34801561058157600080fd5b5061032a610590366004612c14565b6110a2565b3480156105a157600080fd5b506103b56105b0366004612f89565b611119565b3480156105c157600080fd5b506103626111a0565b3480156105d657600080fd5b506103626105e5366004612c14565b6111da565b3480156105f657600080fd5b506103b560175481565b34801561060c57600080fd5b5061036261120f565b34801561062157600080fd5b50600b5461010090046001600160a01b031661032a565b34801561064457600080fd5b50610362610653366004612c14565b611247565b34801561066457600080fd5b506102fd61127c565b34801561067957600080fd5b506102d3610688366004612f89565b60156020526000908152604090205460ff1681565b3480156106a957600080fd5b506103626106b8366004612c14565b61128b565b3480156106c957600080fd5b506103b560125481565b6103626106e1366004612c14565b6112c0565b3480156106f257600080fd5b50610362610701366004612f56565b611476565b34801561071257600080fd5b50610362610721366004612c14565b611481565b34801561073257600080fd5b506103626114cb565b34801561074757600080fd5b50610362610756366004612fa4565b61158a565b34801561076757600080fd5b506102fd610776366004612c14565b6115c2565b34801561078757600080fd5b50610362610796366004612c14565b611781565b3480156107a757600080fd5b506103626107b636600461301f565b6117c3565b3480156107c757600080fd5b506103b5600c5481565b3480156107dd57600080fd5b506103626107ec366004612c14565b611864565b3480156107fd57600080fd5b5061081161080c366004613072565b6118a6565b6040516102df939291906130ab565b34801561082c57600080fd5b506102d361083b36600461314c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087557600080fd5b506103b5601a5481565b34801561088b57600080fd5b5061036261089a366004612f89565b611a55565b3480156108ab57600080fd5b506103b560135481565b60006108c082611af3565b92915050565b6060600080546108d590613176565b80601f016020809104026020016040519081016040528092919081815260200182805461090190613176565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611b18565b6109c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600b546001600160a01b03610100909104163314610a155760405162461bcd60e51b81526004016109c0906131b1565b6016805460ff1916911515919091179055565b6000610a33826110a2565b9050806001600160a01b0316836001600160a01b03161415610aa15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c0565b336001600160a01b0382161480610abd5750610abd813361083b565b610b2f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c0565b610b398383611b35565b505050565b600b546001600160a01b03610100909104163314610b6e5760405162461bcd60e51b81526004016109c0906131b1565b60005b83811015610c3457610c22858583818110610b8e57610b8e6131e6565b90506020020135610c1d610bfa86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610bf592508c91508b905088818110610be957610be96131e6565b90506020020135611ba3565b611ca0565b60405180604001604052806005815260200164173539b7b760d91b815250611ca0565b611ccc565b80610c2c81613212565b915050610b71565b5050505050565b600b546001600160a01b03610100909104163314610c6b5760405162461bcd60e51b81526004016109c0906131b1565b828114610cad5760405162461bcd60e51b815260206004820152601060248201526f57726f6e672061727261792073697a6560801b60448201526064016109c0565b60005b83811015610c3457610d32858583818110610ccd57610ccd6131e6565b90506020020135848484818110610ce657610ce66131e6565b9050602002810190610cf8919061322d565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ccc92505050565b80610d3c81613212565b915050610cb0565b610d4f335b82611d57565b610d6b5760405162461bcd60e51b81526004016109c090613273565b610b39838383611e3d565b6000610d8183611119565b8210610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3c5760405162461bcd60e51b81526004016109c0906131b1565b610e468282611ccc565b5050565b600b546001600160a01b03610100909104163314610e7a5760405162461bcd60e51b81526004016109c0906131b1565b610b3960198383612a33565b600b546001600160a01b03610100909104163314610eb65760405162461bcd60e51b81526004016109c0906131b1565b610ebe611fe8565b565b610b398383836040518060200160405280600081525061158a565b610ee433610d49565b610f495760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016109c0565b610f528161207b565b50565b6000610f6060085490565b8210610fc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c0565b60088281548110610fd657610fd66131e6565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146110185760405162461bcd60e51b81526004016109c0906131b1565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b60006001600c5461105491906132c4565b60115461106191906132c4565b905090565b600b546001600160a01b036101009091041633146110965760405162461bcd60e51b81526004016109c0906131b1565b610b3960188383612a33565b6000818152600260205260408120546001600160a01b0316806108c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c0565b60006001600160a01b0382166111845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c0565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b036101009091041633146111d05760405162461bcd60e51b81526004016109c0906131b1565b610ebe6000612084565b600b546001600160a01b0361010090910416331461120a5760405162461bcd60e51b81526004016109c0906131b1565b601355565b600b546001600160a01b0361010090910416331461123f5760405162461bcd60e51b81526004016109c0906131b1565b610ebe6120de565b600b546001600160a01b036101009091041633146112775760405162461bcd60e51b81526004016109c0906131b1565b601255565b6060600180546108d590613176565b600b546001600160a01b036101009091041633146112bb5760405162461bcd60e51b81526004016109c0906131b1565b601755565b600b5460ff16156112e35760405162461bcd60e51b81526004016109c0906132db565b60175481111580156112f55750600081115b6113415760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206c696d69747320657863656564656400000000000000000060448201526064016109c0565b3360009081526014602052604081205460ff1661139157601654829060ff16801561137b57503360009081526015602052604090205460ff165b6113875760125461138b565b6013545b02611394565b60005b90508034146113dd5760405162461bcd60e51b8152602060048201526015602482015274125b98dbdc9c9958dd08185b5bdd5b9d081c185a59605a1b60448201526064016109c0565b600c546011548382016000190111156114385760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e67000000000060448201526064016109c0565b60005b838110156114595761144d3383612136565b6001918201910161143b565b50600c555033600090815260036020526040902080548201905550565b610e46338383612150565b600b546001600160a01b036101009091041633146114b15760405162461bcd60e51b81526004016109c0906131b1565b80600c60008282546114c39190613305565b909155505050565b600b546001600160a01b036101009091041633146114fb5760405162461bcd60e51b81526004016109c0906131b1565b600e546010546001600160a01b03909116906108fc9060649061151e904761331d565b6115289190613352565b6040518115909202916000818181858888f19350505050158015611550573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610f52573d6000803e3d6000fd5b6115943383611d57565b6115b05760405162461bcd60e51b81526004016109c090613273565b6115bc8484848461221f565b50505050565b60606115cd82611b18565b6115e95760405162461bcd60e51b81526004016109c090613366565b6000828152600a60205260408120805461160290613176565b80601f016020809104026020016040519081016040528092919081815260200182805461162e90613176565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b50505050509050600061168c612252565b82519091501561169d575092915050565b83601a54101580156116b0575060008151115b156116cd576116c581610bf5610bfa87611ba3565b949350505050565b6000601980546116dc90613176565b9050111561177857601980546116f190613176565b80601f016020809104026020016040519081016040528092919081815260200182805461171d90613176565b801561176a5780601f1061173f5761010080835404028352916020019161176a565b820191906000526020600020905b81548152906001019060200180831161174d57829003601f168201915b505050505092505050919050565b6116c584612261565b600b546001600160a01b036101009091041633146117b15760405162461bcd60e51b81526004016109c0906131b1565b80601a60008282546114c39190613305565b600b546001600160a01b036101009091041633146117f35760405162461bcd60e51b81526004016109c0906131b1565b60005b828110156115bc578160156000868685818110611815576118156131e6565b905060200201602081019061182a9190612f89565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061185c81613212565b9150506117f6565b600b546001600160a01b036101009091041633146118945760405162461bcd60e51b81526004016109c0906131b1565b80601160008282546114c39190613305565b6060806000806118b588611119565b9050856118c157600195505b8015611a4a578087106118dc576118d96001826132c4565b96505b806118e78789613305565b11156118fa576118f787826132c4565b95505b856001600160401b0381111561191257611912612e30565b60405190808252806020026020018201604052801561193b578160200160208202803683370190505b509350856001600160401b0381111561195657611956612e30565b60405190808252806020026020018201604052801561198957816020015b60608152602001906001900390816119745790505b5092506000805a905060005b600088116119a557600d546119a7565b875b831080156119b457508881105b15611a46576119c38a82613305565b945060006119d18c87610d76565b9050808883815181106119e6576119e66131e6565b6020026020010181815250506119fb816115c2565b878381518110611a0d57611a0d6131e6565b60200260200101819052505a611a2390846132c4565b611a2d9085613305565b93505a9250508080611a3e90613212565b915050611995565b5050505b509450945094915050565b600b546001600160a01b03610100909104163314611a855760405162461bcd60e51b81526004016109c0906131b1565b6001600160a01b038116611aea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c0565b610f5281612084565b60006001600160e01b0319821663780e9d6360e01b14806108c057506108c082612379565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b6a826110a2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606081611bc75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bf15780611bdb81613212565b9150611bea9050600a83613352565b9150611bcb565b6000816001600160401b03811115611c0b57611c0b612e30565b6040519080825280601f01601f191660200182016040528015611c35576020820181803683370190505b5090505b84156116c557611c4a6001836132c4565b9150611c57600a866133b7565b611c62906030613305565b60f81b818381518110611c7757611c776131e6565b60200101906001600160f81b031916908160001a905350611c99600a86613352565b9450611c39565b60608282604051602001611cb59291906133cb565b604051602081830303815290604052905092915050565b611cd582611b18565b611d385760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016109c0565b6000828152600a602090815260409091208251610b3992840190612ab7565b6000611d6282611b18565b611dc35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c0565b6000611dce836110a2565b9050806001600160a01b0316846001600160a01b03161480611e095750836001600160a01b0316611dfe84610958565b6001600160a01b0316145b806116c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116c5565b826001600160a01b0316611e50826110a2565b6001600160a01b031614611eb85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c0565b6001600160a01b038216611f1a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c0565b611f258383836123c9565b611f30600082611b35565b6001600160a01b0383166000908152600360205260408120805460019290611f599084906132c4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f87908490613305565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff166120315760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109c0565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610f52816123f7565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156121015760405162461bcd60e51b81526004016109c0906132db565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861205e3390565b610e46828260405180602001604052806000815250612437565b816001600160a01b0316836001600160a01b031614156121b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61222a848484611e3d565b6122368484848461246a565b6115bc5760405162461bcd60e51b81526004016109c0906133fa565b6060601880546108d590613176565b606061226c82611b18565b6122885760405162461bcd60e51b81526004016109c090613366565b6000828152600a6020526040812080546122a190613176565b80601f01602080910402602001604051908101604052809291908181526020018280546122cd90613176565b801561231a5780601f106122ef5761010080835404028352916020019161231a565b820191906000526020600020905b8154815290600101906020018083116122fd57829003601f168201915b50505050509050600061232b612252565b905080516000141561233e575092915050565b8151156123705780826040516020016123589291906133cb565b60405160208183030381529060405292505050919050565b6116c584612568565b60006001600160e01b031982166380ac58cd60e01b14806123aa57506001600160e01b03198216635b5e139f60e01b145b806108c057506301ffc9a760e01b6001600160e01b03198316146108c0565b600b5460ff16156123ec5760405162461bcd60e51b81526004016109c0906132db565b610b39838383612633565b612400816126eb565b6000818152600a60205260409020805461241990613176565b159050610f52576000818152600a60205260408120610f5291612b2b565b6124418383612792565b61244e600084848461246a565b610b395760405162461bcd60e51b81526004016109c0906133fa565b60006001600160a01b0384163b1561255d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124ae90339089908890889060040161344c565b6020604051808303816000875af19250505080156124e9575060408051601f3d908101601f191682019092526124e691810190613489565b60015b612543573d808015612517576040519150601f19603f3d011682016040523d82523d6000602084013e61251c565b606091505b50805161253b5760405162461bcd60e51b81526004016109c0906133fa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116c5565b506001949350505050565b606061257382611b18565b6125d75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c0565b60006125e1612252565b90506000815111612601576040518060200160405280600081525061262c565b8061260b84611ba3565b60405160200161261c9291906133cb565b6040516020818303038152906040525b9392505050565b6001600160a01b03831661268e5761268981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126b1565b816001600160a01b0316836001600160a01b0316146126b1576126b183826128a3565b6001600160a01b0382166126c857610b3981612940565b826001600160a01b0316826001600160a01b031614610b3957610b3982826129ef565b60006126f6826110a2565b9050612704816000846123c9565b61270f600083611b35565b6001600160a01b03811660009081526003602052604081208054600192906127389084906132c4565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166127e85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c0565b6127f181611b18565b1561283e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c0565b61284a600083836123c9565b60008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016128b084611119565b6128ba91906132c4565b60008381526007602052604090205490915080821461290d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612952906001906132c4565b6000838152600960205260408120546008805493945090928490811061297a5761297a6131e6565b90600052602060002001549050806008838154811061299b5761299b6131e6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129d3576129d36134a6565b6001900381819060005260206000200160009055905550505050565b60006129fa83611119565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612a3f90613176565b90600052602060002090601f016020900481019282612a615760008555612aa7565b82601f10612a7a5782800160ff19823516178555612aa7565b82800160010185558215612aa7579182015b82811115612aa7578235825591602001919060010190612a8c565b50612ab3929150612b61565b5090565b828054612ac390613176565b90600052602060002090601f016020900481019282612ae55760008555612aa7565b82601f10612afe57805160ff1916838001178555612aa7565b82800160010185558215612aa7579182015b82811115612aa7578251825591602001919060010190612b10565b508054612b3790613176565b6000825580601f10612b47575050565b601f016020900490600052602060002090810190610f5291905b5b80821115612ab35760008155600101612b62565b6001600160e01b031981168114610f5257600080fd5b600060208284031215612b9e57600080fd5b813561262c81612b76565b60005b83811015612bc4578181015183820152602001612bac565b838111156115bc5750506000910152565b60008151808452612bed816020860160208601612ba9565b601f01601f19169290920160200192915050565b60208152600061262c6020830184612bd5565b600060208284031215612c2657600080fd5b5035919050565b80358015158114612c3d57600080fd5b919050565b600060208284031215612c5457600080fd5b61262c82612c2d565b80356001600160a01b0381168114612c3d57600080fd5b60008060408385031215612c8757600080fd5b612c9083612c5d565b946020939093013593505050565b60008083601f840112612cb057600080fd5b5081356001600160401b03811115612cc757600080fd5b6020830191508360208260051b8501011115612ce257600080fd5b9250929050565b60008083601f840112612cfb57600080fd5b5081356001600160401b03811115612d1257600080fd5b602083019150836020828501011115612ce257600080fd5b60008060008060408587031215612d4057600080fd5b84356001600160401b0380821115612d5757600080fd5b612d6388838901612c9e565b90965094506020870135915080821115612d7c57600080fd5b50612d8987828801612ce9565b95989497509550505050565b60008060008060408587031215612dab57600080fd5b84356001600160401b0380821115612dc257600080fd5b612dce88838901612c9e565b90965094506020870135915080821115612de757600080fd5b50612d8987828801612c9e565b600080600060608486031215612e0957600080fd5b612e1284612c5d565b9250612e2060208501612c5d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612e6057612e60612e30565b604051601f8501601f19908116603f01168101908282118183101715612e8857612e88612e30565b81604052809350858152868686011115612ea157600080fd5b858560208301376000602087830101525050509392505050565b60008060408385031215612ece57600080fd5b8235915060208301356001600160401b03811115612eeb57600080fd5b8301601f81018513612efc57600080fd5b612f0b85823560208401612e46565b9150509250929050565b60008060208385031215612f2857600080fd5b82356001600160401b03811115612f3e57600080fd5b612f4a85828601612ce9565b90969095509350505050565b60008060408385031215612f6957600080fd5b612f7283612c5d565b9150612f8060208401612c2d565b90509250929050565b600060208284031215612f9b57600080fd5b61262c82612c5d565b60008060008060808587031215612fba57600080fd5b612fc385612c5d565b9350612fd160208601612c5d565b92506040850135915060608501356001600160401b03811115612ff357600080fd5b8501601f8101871361300457600080fd5b61301387823560208401612e46565b91505092959194509250565b60008060006040848603121561303457600080fd5b83356001600160401b0381111561304a57600080fd5b61305686828701612c9e565b9094509250613069905060208501612c2d565b90509250925092565b6000806000806080858703121561308857600080fd5b61309185612c5d565b966020860135965060408601359560600135945092505050565b606080825284519082018190526000906020906080840190828801845b828110156130e4578151845292840192908401906001016130c8565b50505083810382850152855180825282820190600581901b8301840188850160005b8381101561313457601f19868403018552613122838351612bd5565b94870194925090860190600101613106565b50508095505050505050826040830152949350505050565b6000806040838503121561315f57600080fd5b61316883612c5d565b9150612f8060208401612c5d565b600181811c9082168061318a57607f821691505b602082108114156131ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415613226576132266131fc565b5060010190565b6000808335601e1984360301811261324457600080fd5b8301803591506001600160401b0382111561325e57600080fd5b602001915036819003821315612ce257600080fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000828210156132d6576132d66131fc565b500390565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60008219821115613318576133186131fc565b500190565b6000816000190483118215151615613337576133376131fc565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826133615761336161333c565b500490565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6000826133c6576133c661333c565b500690565b600083516133dd818460208801612ba9565b8351908301906133f1818360208801612ba9565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061347f90830184612bd5565b9695505050505050565b60006020828403121561349b57600080fd5b815161262c81612b76565b634e487b7160e01b600052603160045260246000fdfea26469706673582212209a02c543160c23d4b3a2eba6daa4296a12c39a5f0bbd430b7379a64f8d384c2164736f6c634300080b0033697066733a2f2f516d61376468756568644a4b6e6333647932434c34796e554e65595767556f7872574734346248445a4c6a57534d2f000000000000000000000000885f00152dadcf85358c71cccc4a182c537dae62

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c8063715018a611610175578063a9962e4c116100dc578063e00dd16111610095578063e985e9c51161006f578063e985e9c514610820578063f02d9bb814610869578063f2fde38b1461087f578063fc1a1c361461089f57600080fd5b8063e00dd161146107bb578063e2285729146107d1578063e313303c146107f157600080fd5b8063a9962e4c14610706578063ac30777314610726578063b88d4fde1461073b578063c87b56dd1461075b578063d63d01681461077b578063de5f38681461079b57600080fd5b806395d89b411161012e57806395d89b41146106585780639b19251a1461066d5780639e6a1d7d1461069d578063a035b1fe146106bd578063a0712d68146106d3578063a22cb465146106e657600080fd5b8063715018a6146105b5578063717d57d3146105ca5780637501f741146105ea5780638456cb59146106005780638da5cb5b1461061557806391b7f5ed1461063857600080fd5b80633f4ba83a1161021957806353d6fd59116101d257806353d6fd591461050857806355234ec01461052857806355f804b31461053d5780635c975abb1461055d5780636352211e1461057557806370a082311461059557600080fd5b80633f4ba83a1461046357806342842e0e1461047857806342966c681461049857806349072f12146104b85780634f6ccce7146104ce57806351fb012d146104ee57600080fd5b806318160ddd1161026b57806318160ddd146103a457806318546706146103c357806323b872dd146103e35780632f745c591461040357806331d41c69146104235780633574a2dd1461044357600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a5780630874560914610342578063095ea7b314610364578063158ae0fa14610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b8c565b6108b5565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108c6565b6040516102df9190612c01565b34801561031657600080fd5b5061032a610325366004612c14565b610958565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d366004612c42565b6109e5565b005b34801561037057600080fd5b5061036261037f366004612c74565b610a28565b34801561039057600080fd5b5061036261039f366004612d2a565b610b3e565b3480156103b057600080fd5b506008545b6040519081526020016102df565b3480156103cf57600080fd5b506103626103de366004612d95565b610c3b565b3480156103ef57600080fd5b506103626103fe366004612df4565b610d44565b34801561040f57600080fd5b506103b561041e366004612c74565b610d76565b34801561042f57600080fd5b5061036261043e366004612ebb565b610e0c565b34801561044f57600080fd5b5061036261045e366004612f15565b610e4a565b34801561046f57600080fd5b50610362610e86565b34801561048457600080fd5b50610362610493366004612df4565b610ec0565b3480156104a457600080fd5b506103626104b3366004612c14565b610edb565b3480156104c457600080fd5b506103b560115481565b3480156104da57600080fd5b506103b56104e9366004612c14565b610f55565b3480156104fa57600080fd5b506016546102d39060ff1681565b34801561051457600080fd5b50610362610523366004612f56565b610fe8565b34801561053457600080fd5b506103b5611043565b34801561054957600080fd5b50610362610558366004612f15565b611066565b34801561056957600080fd5b50600b5460ff166102d3565b34801561058157600080fd5b5061032a610590366004612c14565b6110a2565b3480156105a157600080fd5b506103b56105b0366004612f89565b611119565b3480156105c157600080fd5b506103626111a0565b3480156105d657600080fd5b506103626105e5366004612c14565b6111da565b3480156105f657600080fd5b506103b560175481565b34801561060c57600080fd5b5061036261120f565b34801561062157600080fd5b50600b5461010090046001600160a01b031661032a565b34801561064457600080fd5b50610362610653366004612c14565b611247565b34801561066457600080fd5b506102fd61127c565b34801561067957600080fd5b506102d3610688366004612f89565b60156020526000908152604090205460ff1681565b3480156106a957600080fd5b506103626106b8366004612c14565b61128b565b3480156106c957600080fd5b506103b560125481565b6103626106e1366004612c14565b6112c0565b3480156106f257600080fd5b50610362610701366004612f56565b611476565b34801561071257600080fd5b50610362610721366004612c14565b611481565b34801561073257600080fd5b506103626114cb565b34801561074757600080fd5b50610362610756366004612fa4565b61158a565b34801561076757600080fd5b506102fd610776366004612c14565b6115c2565b34801561078757600080fd5b50610362610796366004612c14565b611781565b3480156107a757600080fd5b506103626107b636600461301f565b6117c3565b3480156107c757600080fd5b506103b5600c5481565b3480156107dd57600080fd5b506103626107ec366004612c14565b611864565b3480156107fd57600080fd5b5061081161080c366004613072565b6118a6565b6040516102df939291906130ab565b34801561082c57600080fd5b506102d361083b36600461314c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087557600080fd5b506103b5601a5481565b34801561088b57600080fd5b5061036261089a366004612f89565b611a55565b3480156108ab57600080fd5b506103b560135481565b60006108c082611af3565b92915050565b6060600080546108d590613176565b80601f016020809104026020016040519081016040528092919081815260200182805461090190613176565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611b18565b6109c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600b546001600160a01b03610100909104163314610a155760405162461bcd60e51b81526004016109c0906131b1565b6016805460ff1916911515919091179055565b6000610a33826110a2565b9050806001600160a01b0316836001600160a01b03161415610aa15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c0565b336001600160a01b0382161480610abd5750610abd813361083b565b610b2f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c0565b610b398383611b35565b505050565b600b546001600160a01b03610100909104163314610b6e5760405162461bcd60e51b81526004016109c0906131b1565b60005b83811015610c3457610c22858583818110610b8e57610b8e6131e6565b90506020020135610c1d610bfa86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610bf592508c91508b905088818110610be957610be96131e6565b90506020020135611ba3565b611ca0565b60405180604001604052806005815260200164173539b7b760d91b815250611ca0565b611ccc565b80610c2c81613212565b915050610b71565b5050505050565b600b546001600160a01b03610100909104163314610c6b5760405162461bcd60e51b81526004016109c0906131b1565b828114610cad5760405162461bcd60e51b815260206004820152601060248201526f57726f6e672061727261792073697a6560801b60448201526064016109c0565b60005b83811015610c3457610d32858583818110610ccd57610ccd6131e6565b90506020020135848484818110610ce657610ce66131e6565b9050602002810190610cf8919061322d565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ccc92505050565b80610d3c81613212565b915050610cb0565b610d4f335b82611d57565b610d6b5760405162461bcd60e51b81526004016109c090613273565b610b39838383611e3d565b6000610d8183611119565b8210610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3c5760405162461bcd60e51b81526004016109c0906131b1565b610e468282611ccc565b5050565b600b546001600160a01b03610100909104163314610e7a5760405162461bcd60e51b81526004016109c0906131b1565b610b3960198383612a33565b600b546001600160a01b03610100909104163314610eb65760405162461bcd60e51b81526004016109c0906131b1565b610ebe611fe8565b565b610b398383836040518060200160405280600081525061158a565b610ee433610d49565b610f495760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016109c0565b610f528161207b565b50565b6000610f6060085490565b8210610fc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c0565b60088281548110610fd657610fd66131e6565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146110185760405162461bcd60e51b81526004016109c0906131b1565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b60006001600c5461105491906132c4565b60115461106191906132c4565b905090565b600b546001600160a01b036101009091041633146110965760405162461bcd60e51b81526004016109c0906131b1565b610b3960188383612a33565b6000818152600260205260408120546001600160a01b0316806108c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c0565b60006001600160a01b0382166111845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c0565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b036101009091041633146111d05760405162461bcd60e51b81526004016109c0906131b1565b610ebe6000612084565b600b546001600160a01b0361010090910416331461120a5760405162461bcd60e51b81526004016109c0906131b1565b601355565b600b546001600160a01b0361010090910416331461123f5760405162461bcd60e51b81526004016109c0906131b1565b610ebe6120de565b600b546001600160a01b036101009091041633146112775760405162461bcd60e51b81526004016109c0906131b1565b601255565b6060600180546108d590613176565b600b546001600160a01b036101009091041633146112bb5760405162461bcd60e51b81526004016109c0906131b1565b601755565b600b5460ff16156112e35760405162461bcd60e51b81526004016109c0906132db565b60175481111580156112f55750600081115b6113415760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206c696d69747320657863656564656400000000000000000060448201526064016109c0565b3360009081526014602052604081205460ff1661139157601654829060ff16801561137b57503360009081526015602052604090205460ff165b6113875760125461138b565b6013545b02611394565b60005b90508034146113dd5760405162461bcd60e51b8152602060048201526015602482015274125b98dbdc9c9958dd08185b5bdd5b9d081c185a59605a1b60448201526064016109c0565b600c546011548382016000190111156114385760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e67000000000060448201526064016109c0565b60005b838110156114595761144d3383612136565b6001918201910161143b565b50600c555033600090815260036020526040902080548201905550565b610e46338383612150565b600b546001600160a01b036101009091041633146114b15760405162461bcd60e51b81526004016109c0906131b1565b80600c60008282546114c39190613305565b909155505050565b600b546001600160a01b036101009091041633146114fb5760405162461bcd60e51b81526004016109c0906131b1565b600e546010546001600160a01b03909116906108fc9060649061151e904761331d565b6115289190613352565b6040518115909202916000818181858888f19350505050158015611550573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610f52573d6000803e3d6000fd5b6115943383611d57565b6115b05760405162461bcd60e51b81526004016109c090613273565b6115bc8484848461221f565b50505050565b60606115cd82611b18565b6115e95760405162461bcd60e51b81526004016109c090613366565b6000828152600a60205260408120805461160290613176565b80601f016020809104026020016040519081016040528092919081815260200182805461162e90613176565b801561167b5780601f106116505761010080835404028352916020019161167b565b820191906000526020600020905b81548152906001019060200180831161165e57829003601f168201915b50505050509050600061168c612252565b82519091501561169d575092915050565b83601a54101580156116b0575060008151115b156116cd576116c581610bf5610bfa87611ba3565b949350505050565b6000601980546116dc90613176565b9050111561177857601980546116f190613176565b80601f016020809104026020016040519081016040528092919081815260200182805461171d90613176565b801561176a5780601f1061173f5761010080835404028352916020019161176a565b820191906000526020600020905b81548152906001019060200180831161174d57829003601f168201915b505050505092505050919050565b6116c584612261565b600b546001600160a01b036101009091041633146117b15760405162461bcd60e51b81526004016109c0906131b1565b80601a60008282546114c39190613305565b600b546001600160a01b036101009091041633146117f35760405162461bcd60e51b81526004016109c0906131b1565b60005b828110156115bc578160156000868685818110611815576118156131e6565b905060200201602081019061182a9190612f89565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061185c81613212565b9150506117f6565b600b546001600160a01b036101009091041633146118945760405162461bcd60e51b81526004016109c0906131b1565b80601160008282546114c39190613305565b6060806000806118b588611119565b9050856118c157600195505b8015611a4a578087106118dc576118d96001826132c4565b96505b806118e78789613305565b11156118fa576118f787826132c4565b95505b856001600160401b0381111561191257611912612e30565b60405190808252806020026020018201604052801561193b578160200160208202803683370190505b509350856001600160401b0381111561195657611956612e30565b60405190808252806020026020018201604052801561198957816020015b60608152602001906001900390816119745790505b5092506000805a905060005b600088116119a557600d546119a7565b875b831080156119b457508881105b15611a46576119c38a82613305565b945060006119d18c87610d76565b9050808883815181106119e6576119e66131e6565b6020026020010181815250506119fb816115c2565b878381518110611a0d57611a0d6131e6565b60200260200101819052505a611a2390846132c4565b611a2d9085613305565b93505a9250508080611a3e90613212565b915050611995565b5050505b509450945094915050565b600b546001600160a01b03610100909104163314611a855760405162461bcd60e51b81526004016109c0906131b1565b6001600160a01b038116611aea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c0565b610f5281612084565b60006001600160e01b0319821663780e9d6360e01b14806108c057506108c082612379565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b6a826110a2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606081611bc75750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bf15780611bdb81613212565b9150611bea9050600a83613352565b9150611bcb565b6000816001600160401b03811115611c0b57611c0b612e30565b6040519080825280601f01601f191660200182016040528015611c35576020820181803683370190505b5090505b84156116c557611c4a6001836132c4565b9150611c57600a866133b7565b611c62906030613305565b60f81b818381518110611c7757611c776131e6565b60200101906001600160f81b031916908160001a905350611c99600a86613352565b9450611c39565b60608282604051602001611cb59291906133cb565b604051602081830303815290604052905092915050565b611cd582611b18565b611d385760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016109c0565b6000828152600a602090815260409091208251610b3992840190612ab7565b6000611d6282611b18565b611dc35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c0565b6000611dce836110a2565b9050806001600160a01b0316846001600160a01b03161480611e095750836001600160a01b0316611dfe84610958565b6001600160a01b0316145b806116c557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166116c5565b826001600160a01b0316611e50826110a2565b6001600160a01b031614611eb85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c0565b6001600160a01b038216611f1a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c0565b611f258383836123c9565b611f30600082611b35565b6001600160a01b0383166000908152600360205260408120805460019290611f599084906132c4565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f87908490613305565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff166120315760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109c0565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610f52816123f7565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156121015760405162461bcd60e51b81526004016109c0906132db565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861205e3390565b610e46828260405180602001604052806000815250612437565b816001600160a01b0316836001600160a01b031614156121b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61222a848484611e3d565b6122368484848461246a565b6115bc5760405162461bcd60e51b81526004016109c0906133fa565b6060601880546108d590613176565b606061226c82611b18565b6122885760405162461bcd60e51b81526004016109c090613366565b6000828152600a6020526040812080546122a190613176565b80601f01602080910402602001604051908101604052809291908181526020018280546122cd90613176565b801561231a5780601f106122ef5761010080835404028352916020019161231a565b820191906000526020600020905b8154815290600101906020018083116122fd57829003601f168201915b50505050509050600061232b612252565b905080516000141561233e575092915050565b8151156123705780826040516020016123589291906133cb565b60405160208183030381529060405292505050919050565b6116c584612568565b60006001600160e01b031982166380ac58cd60e01b14806123aa57506001600160e01b03198216635b5e139f60e01b145b806108c057506301ffc9a760e01b6001600160e01b03198316146108c0565b600b5460ff16156123ec5760405162461bcd60e51b81526004016109c0906132db565b610b39838383612633565b612400816126eb565b6000818152600a60205260409020805461241990613176565b159050610f52576000818152600a60205260408120610f5291612b2b565b6124418383612792565b61244e600084848461246a565b610b395760405162461bcd60e51b81526004016109c0906133fa565b60006001600160a01b0384163b1561255d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124ae90339089908890889060040161344c565b6020604051808303816000875af19250505080156124e9575060408051601f3d908101601f191682019092526124e691810190613489565b60015b612543573d808015612517576040519150601f19603f3d011682016040523d82523d6000602084013e61251c565b606091505b50805161253b5760405162461bcd60e51b81526004016109c0906133fa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116c5565b506001949350505050565b606061257382611b18565b6125d75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c0565b60006125e1612252565b90506000815111612601576040518060200160405280600081525061262c565b8061260b84611ba3565b60405160200161261c9291906133cb565b6040516020818303038152906040525b9392505050565b6001600160a01b03831661268e5761268981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6126b1565b816001600160a01b0316836001600160a01b0316146126b1576126b183826128a3565b6001600160a01b0382166126c857610b3981612940565b826001600160a01b0316826001600160a01b031614610b3957610b3982826129ef565b60006126f6826110a2565b9050612704816000846123c9565b61270f600083611b35565b6001600160a01b03811660009081526003602052604081208054600192906127389084906132c4565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166127e85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c0565b6127f181611b18565b1561283e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c0565b61284a600083836123c9565b60008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600060016128b084611119565b6128ba91906132c4565b60008381526007602052604090205490915080821461290d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612952906001906132c4565b6000838152600960205260408120546008805493945090928490811061297a5761297a6131e6565b90600052602060002001549050806008838154811061299b5761299b6131e6565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129d3576129d36134a6565b6001900381819060005260206000200160009055905550505050565b60006129fa83611119565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612a3f90613176565b90600052602060002090601f016020900481019282612a615760008555612aa7565b82601f10612a7a5782800160ff19823516178555612aa7565b82800160010185558215612aa7579182015b82811115612aa7578235825591602001919060010190612a8c565b50612ab3929150612b61565b5090565b828054612ac390613176565b90600052602060002090601f016020900481019282612ae55760008555612aa7565b82601f10612afe57805160ff1916838001178555612aa7565b82800160010185558215612aa7579182015b82811115612aa7578251825591602001919060010190612b10565b508054612b3790613176565b6000825580601f10612b47575050565b601f016020900490600052602060002090810190610f5291905b5b80821115612ab35760008155600101612b62565b6001600160e01b031981168114610f5257600080fd5b600060208284031215612b9e57600080fd5b813561262c81612b76565b60005b83811015612bc4578181015183820152602001612bac565b838111156115bc5750506000910152565b60008151808452612bed816020860160208601612ba9565b601f01601f19169290920160200192915050565b60208152600061262c6020830184612bd5565b600060208284031215612c2657600080fd5b5035919050565b80358015158114612c3d57600080fd5b919050565b600060208284031215612c5457600080fd5b61262c82612c2d565b80356001600160a01b0381168114612c3d57600080fd5b60008060408385031215612c8757600080fd5b612c9083612c5d565b946020939093013593505050565b60008083601f840112612cb057600080fd5b5081356001600160401b03811115612cc757600080fd5b6020830191508360208260051b8501011115612ce257600080fd5b9250929050565b60008083601f840112612cfb57600080fd5b5081356001600160401b03811115612d1257600080fd5b602083019150836020828501011115612ce257600080fd5b60008060008060408587031215612d4057600080fd5b84356001600160401b0380821115612d5757600080fd5b612d6388838901612c9e565b90965094506020870135915080821115612d7c57600080fd5b50612d8987828801612ce9565b95989497509550505050565b60008060008060408587031215612dab57600080fd5b84356001600160401b0380821115612dc257600080fd5b612dce88838901612c9e565b90965094506020870135915080821115612de757600080fd5b50612d8987828801612c9e565b600080600060608486031215612e0957600080fd5b612e1284612c5d565b9250612e2060208501612c5d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612e6057612e60612e30565b604051601f8501601f19908116603f01168101908282118183101715612e8857612e88612e30565b81604052809350858152868686011115612ea157600080fd5b858560208301376000602087830101525050509392505050565b60008060408385031215612ece57600080fd5b8235915060208301356001600160401b03811115612eeb57600080fd5b8301601f81018513612efc57600080fd5b612f0b85823560208401612e46565b9150509250929050565b60008060208385031215612f2857600080fd5b82356001600160401b03811115612f3e57600080fd5b612f4a85828601612ce9565b90969095509350505050565b60008060408385031215612f6957600080fd5b612f7283612c5d565b9150612f8060208401612c2d565b90509250929050565b600060208284031215612f9b57600080fd5b61262c82612c5d565b60008060008060808587031215612fba57600080fd5b612fc385612c5d565b9350612fd160208601612c5d565b92506040850135915060608501356001600160401b03811115612ff357600080fd5b8501601f8101871361300457600080fd5b61301387823560208401612e46565b91505092959194509250565b60008060006040848603121561303457600080fd5b83356001600160401b0381111561304a57600080fd5b61305686828701612c9e565b9094509250613069905060208501612c2d565b90509250925092565b6000806000806080858703121561308857600080fd5b61309185612c5d565b966020860135965060408601359560600135945092505050565b606080825284519082018190526000906020906080840190828801845b828110156130e4578151845292840192908401906001016130c8565b50505083810382850152855180825282820190600581901b8301840188850160005b8381101561313457601f19868403018552613122838351612bd5565b94870194925090860190600101613106565b50508095505050505050826040830152949350505050565b6000806040838503121561315f57600080fd5b61316883612c5d565b9150612f8060208401612c5d565b600181811c9082168061318a57607f821691505b602082108114156131ab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415613226576132266131fc565b5060010190565b6000808335601e1984360301811261324457600080fd5b8301803591506001600160401b0382111561325e57600080fd5b602001915036819003821315612ce257600080fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000828210156132d6576132d66131fc565b500390565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60008219821115613318576133186131fc565b500190565b6000816000190483118215151615613337576133376131fc565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826133615761336161333c565b500490565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b6000826133c6576133c661333c565b500690565b600083516133dd818460208801612ba9565b8351908301906133f1818360208801612ba9565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061347f90830184612bd5565b9695505050505050565b60006020828403121561349b57600080fd5b815161262c81612b76565b634e487b7160e01b600052603160045260246000fdfea26469706673582212209a02c543160c23d4b3a2eba6daa4296a12c39a5f0bbd430b7379a64f8d384c2164736f6c634300080b0033

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

000000000000000000000000885f00152dadcf85358c71cccc4a182c537dae62

-----Decoded View---------------
Arg [0] : _dev (address): 0x885f00152dAdcF85358c71CCCC4a182C537DAe62

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000885f00152dadcf85358c71cccc4a182c537dae62


Deployed Bytecode Sourcemap

46180:6848:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51170:212;;;;;;;;;;-1:-1:-1;51170:212:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;51170:212:0;;;;;;;;19924:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21483:221::-;;;;;;;;;;-1:-1:-1;21483:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;21483:221:0;1528:203:1;52520:106:0;;;;;;;;;;-1:-1:-1;52520:106:0;;;;;:::i;:::-;;:::i;:::-;;21006:411;;;;;;;;;;-1:-1:-1;21006:411:0;;;;;:::i;:::-;;:::i;48589:256::-;;;;;;;;;;-1:-1:-1;48589:256:0;;;;;:::i;:::-;;:::i;33722:113::-;;;;;;;;;;-1:-1:-1;33810:10:0;:17;33722:113;;;4146:25:1;;;4134:2;4119:18;33722:113:0;4000:177:1;48310:267:0;;;;;;;;;;-1:-1:-1;48310:267:0;;;;;:::i;:::-;;:::i;22233:339::-;;;;;;;;;;-1:-1:-1;22233:339:0;;;;;:::i;:::-;;:::i;33390:256::-;;;;;;;;;;-1:-1:-1;33390:256:0;;;;;:::i;:::-;;:::i;48857:112::-;;;;;;;;;;-1:-1:-1;48857:112:0;;;;;:::i;:::-;;:::i;47640:124::-;;;;;;;;;;-1:-1:-1;47640:124:0;;;;;:::i;:::-;;:::i;49046:65::-;;;;;;;;;;;;;:::i;22643:185::-;;;;;;;;;;-1:-1:-1;22643:185:0;;;;;:::i;:::-;;:::i;45928:245::-;;;;;;;;;;-1:-1:-1;45928:245:0;;;;;:::i;:::-;;:::i;46600:33::-;;;;;;;;;;;;;;;;33912:233;;;;;;;;;;-1:-1:-1;33912:233:0;;;;;:::i;:::-;;:::i;46821:35::-;;;;;;;;;;-1:-1:-1;46821:35:0;;;;;;;;47402:122;;;;;;;;;;-1:-1:-1;47402:122:0;;;;;:::i;:::-;;:::i;52406:106::-;;;;;;;;;;;;;:::i;47536:96::-;;;;;;;;;;-1:-1:-1;47536:96:0;;;;;:::i;:::-;;:::i;42012:86::-;;;;;;;;;;-1:-1:-1;42083:7:0;;;;42012:86;;19618:239;;;;;;;;;;-1:-1:-1;19618:239:0;;;;;:::i;:::-;;:::i;19348:208::-;;;;;;;;;;-1:-1:-1;19348:208:0;;;;;:::i;:::-;;:::i;44768:103::-;;;;;;;;;;;;;:::i;47290:104::-;;;;;;;;;;-1:-1:-1;47290:104:0;;;;;:::i;:::-;;:::i;46863:27::-;;;;;;;;;;;;;;;;48977:61;;;;;;;;;;;;;:::i;44117:87::-;;;;;;;;;;-1:-1:-1;44190:6:0;;;;;-1:-1:-1;;;;;44190:6:0;44117:87;;47196:86;;;;;;;;;;-1:-1:-1;47196:86:0;;;;;:::i;:::-;;:::i;20093:104::-;;;;;;;;;;;;;:::i;46773:41::-;;;;;;;;;;-1:-1:-1;46773:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47776:96;;;;;;;;;;-1:-1:-1;47776:96:0;;;;;:::i;:::-;;:::i;46640:33::-;;;;;;;;;;;;;;;;49118:725;;;;;;:::i;:::-;;:::i;21776:155::-;;;;;;;;;;-1:-1:-1;21776:155:0;;;;;:::i;:::-;;:::i;47984:102::-;;;;;;;;;;-1:-1:-1;47984:102:0;;;;;:::i;:::-;;:::i;49851:171::-;;;;;;;;;;;;;:::i;22899:328::-;;;;;;;;;;-1:-1:-1;22899:328:0;;;;;:::i;:::-;;:::i;50459:702::-;;;;;;;;;;-1:-1:-1;50459:702:0;;;;;:::i;:::-;;:::i;48094:100::-;;;;;;;;;;-1:-1:-1;48094:100:0;;;;;:::i;:::-;;:::i;52634:211::-;;;;;;;;;;-1:-1:-1;52634:211:0;;;;;:::i;:::-;;:::i;46391:28::-;;;;;;;;;;;;;;;;47884:92;;;;;;;;;;-1:-1:-1;47884:92:0;;;;;:::i;:::-;;:::i;51390:1008::-;;;;;;;;;;-1:-1:-1;51390:1008:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;22002:164::-;;;;;;;;;;-1:-1:-1;22002:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;22123:25:0;;;22099:4;22123:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22002:164;47005:31;;;;;;;;;;;;;;;;45026:201;;;;;;;;;;-1:-1:-1;45026:201:0;;;;;:::i;:::-;;:::i;46680:42::-;;;;;;;;;;;;;;;;51170:212;51309:4;51338:36;51362:11;51338:23;:36::i;:::-;51331:43;51170:212;-1:-1:-1;;51170:212:0:o;19924:100::-;19978:13;20011:5;20004:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19924:100;:::o;21483:221::-;21559:7;21587:16;21595:7;21587;:16::i;:::-;21579:73;;;;-1:-1:-1;;;21579:73:0;;11282:2:1;21579:73:0;;;11264:21:1;11321:2;11301:18;;;11294:30;11360:34;11340:18;;;11333:62;-1:-1:-1;;;11411:18:1;;;11404:42;11463:19;;21579:73:0;;;;;;;;;-1:-1:-1;21672:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21672:24:0;;21483:221::o;52520:106::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;52591:16:::1;:27:::0;;-1:-1:-1;;52591:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52520:106::o;21006:411::-;21087:13;21103:23;21118:7;21103:14;:23::i;:::-;21087:39;;21151:5;-1:-1:-1;;;;;21145:11:0;:2;-1:-1:-1;;;;;21145:11:0;;;21137:57;;;;-1:-1:-1;;;21137:57:0;;12056:2:1;21137:57:0;;;12038:21:1;12095:2;12075:18;;;12068:30;12134:34;12114:18;;;12107:62;-1:-1:-1;;;12185:18:1;;;12178:31;12226:19;;21137:57:0;11854:397:1;21137:57:0;15647:10;-1:-1:-1;;;;;21229:21:0;;;;:62;;-1:-1:-1;21254:37:0;21271:5;15647:10;22002:164;:::i;21254:37::-;21207:168;;;;-1:-1:-1;;;21207:168:0;;12458:2:1;21207:168:0;;;12440:21:1;12497:2;12477:18;;;12470:30;12536:34;12516:18;;;12509:62;12607:26;12587:18;;;12580:54;12651:19;;21207:168:0;12256:420:1;21207:168:0;21388:21;21397:2;21401:7;21388:8;:21::i;:::-;21076:341;21006:411;;:::o;48589:256::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;48691:6:::1;48686:152;48703:14:::0;;::::1;48686:152;;;48738:87;48751:3;;48755:1;48751:6;;;;;;;:::i;:::-;;;;;;;48759:65;48771:37;48783:5;;48771:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;48790:17:0::1;::::0;-1:-1:-1;48790:3:0;;-1:-1:-1;48790:3:0;;-1:-1:-1;48794:1:0;48790:6;;::::1;;;;;:::i;:::-;;;;;;;:15;:17::i;:::-;48771:11;:37::i;:::-;48810:13;;;;;;;;;;;;;-1:-1:-1::0;;;48810:13:0::1;;::::0;48759:11:::1;:65::i;:::-;48738:12;:87::i;:::-;48719:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48686:152;;;;48589:256:::0;;;;:::o;48310:267::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;48417:26;;::::1;48409:55;;;::::0;-1:-1:-1;;;48409:55:0;;13287:2:1;48409:55:0::1;::::0;::::1;13269:21:1::0;13326:2;13306:18;;;13299:30;-1:-1:-1;;;13345:18:1;;;13338:46;13401:18;;48409:55:0::1;13085:340:1::0;48409:55:0::1;48480:6;48475:95;48492:14:::0;;::::1;48475:95;;;48527:30;48540:3;;48544:1;48540:6;;;;;;;:::i;:::-;;;;;;;48548:5;;48554:1;48548:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;48527:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;48527:12:0::1;::::0;-1:-1:-1;;;48527:30:0:i:1;:::-;48508:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48475:95;;22233:339:::0;22428:41;15647:10;22447:12;22461:7;22428:18;:41::i;:::-;22420:103;;;;-1:-1:-1;;;22420:103:0;;;;;;;:::i;:::-;22536:28;22546:4;22552:2;22556:7;22536:9;:28::i;33390:256::-;33487:7;33523:23;33540:5;33523:16;:23::i;:::-;33515:5;:31;33507:87;;;;-1:-1:-1;;;33507:87:0;;14577:2:1;33507:87:0;;;14559:21:1;14616:2;14596:18;;;14589:30;14655:34;14635:18;;;14628:62;-1:-1:-1;;;14706:18:1;;;14699:41;14757:19;;33507:87:0;14375:407:1;33507:87:0;-1:-1:-1;;;;;;33612:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33390:256::o;48857:112::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;48938:22:::1;48951:2;48955:4;48938:12;:22::i;:::-;48857:112:::0;;:::o;47640:124::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;47727:29:::1;:14;47744:12:::0;;47727:29:::1;:::i;49046:65::-:0;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;49093:10:::1;:8;:10::i;:::-;49046:65::o:0;22643:185::-;22781:39;22798:4;22804:2;22808:7;22781:39;;;;;;;;;;;;:16;:39::i;45928:245::-;46046:41;15647:10;46065:12;15567:98;46046:41;46038:102;;;;-1:-1:-1;;;46038:102:0;;14989:2:1;46038:102:0;;;14971:21:1;15028:2;15008:18;;;15001:30;15067:34;15047:18;;;15040:62;-1:-1:-1;;;15118:18:1;;;15111:46;15174:19;;46038:102:0;14787:412:1;46038:102:0;46151:14;46157:7;46151:5;:14::i;:::-;45928:245;:::o;33912:233::-;33987:7;34023:30;33810:10;:17;;33722:113;34023:30;34015:5;:38;34007:95;;;;-1:-1:-1;;;34007:95:0;;15406:2:1;34007:95:0;;;15388:21:1;15445:2;15425:18;;;15418:30;15484:34;15464:18;;;15457:62;-1:-1:-1;;;15535:18:1;;;15528:42;15587:19;;34007:95:0;15204:408:1;34007:95:0;34120:10;34131:5;34120:17;;;;;;;;:::i;:::-;;;;;;;;;34113:24;;33912:233;;;:::o;47402:122::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47485:21:0;;;::::1;;::::0;;;:12:::1;:21;::::0;;;;:31;;-1:-1:-1;;47485:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47402:122::o;52406:106::-;52449:7;52502:1;52492:9;;:11;;;;:::i;:::-;52476:12;;:28;;;;:::i;:::-;52469:35;;52406:106;:::o;47536:96::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;47609:15:::1;:7;47619:5:::0;;47609:15:::1;:::i;19618:239::-:0;19690:7;19726:16;;;:7;:16;;;;;;-1:-1:-1;;;;;19726:16:0;19761:19;19753:73;;;;-1:-1:-1;;;19753:73:0;;15949:2:1;19753:73:0;;;15931:21:1;15988:2;15968:18;;;15961:30;16027:34;16007:18;;;16000:62;-1:-1:-1;;;16078:18:1;;;16071:39;16127:19;;19753:73:0;15747:405:1;19348:208:0;19420:7;-1:-1:-1;;;;;19448:19:0;;19440:74;;;;-1:-1:-1;;;19440:74:0;;16359:2:1;19440:74:0;;;16341:21:1;16398:2;16378:18;;;16371:30;16437:34;16417:18;;;16410:62;-1:-1:-1;;;16488:18:1;;;16481:40;16538:19;;19440:74:0;16157:406:1;19440:74:0;-1:-1:-1;;;;;;19532:16:0;;;;;:9;:16;;;;;;;19348:208::o;44768:103::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;44833:30:::1;44860:1;44833:18;:30::i;47290:104::-:0;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;47363:14:::1;:23:::0;47290:104::o;48977:61::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;49022:8:::1;:6;:8::i;47196:86::-:0;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;47260:5:::1;:14:::0;47196:86::o;20093:104::-;20149:13;20182:7;20175:14;;;;;:::i;47776:96::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;47846:7:::1;:18:::0;47776:96::o;49118:725::-;42083:7;;;;42337:9;42329:38;;;;-1:-1:-1;;;42329:38:0;;;;;;;:::i;:::-;49208:7:::1;;49198:6;:17;;:31;;;;;49228:1;49219:6;:10;49198:31;49190:67;;;::::0;-1:-1:-1;;;49190:67:0;;17115:2:1;49190:67:0::1;::::0;::::1;17097:21:1::0;17154:2;17134:18;;;17127:30;17193:25;17173:18;;;17166:53;17236:18;;49190:67:0::1;16913:347:1::0;49190:67:0::1;49321:10;49288:17;49308:24:::0;;;:12:::1;:24;::::0;;;;;::::1;;:108;;49340:16;::::0;49410:6;;49340:16:::1;;:41:::0;::::1;;;-1:-1:-1::0;49370:10:0::1;49360:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;49340:41;:66;;49401:5;;49340:66;;;49384:14;;49340:66;49339:77;49308:108;;;49335:1;49308:108;49288:128;;49451:9;49438;:22;49429:57;;;::::0;-1:-1:-1;;;49429:57:0;;17467:2:1;49429:57:0::1;::::0;::::1;17449:21:1::0;17506:2;17486:18;;;17479:30;-1:-1:-1;;;17525:18:1;;;17518:51;17586:18;;49429:57:0::1;17265:345:1::0;49429:57:0::1;49524:9;::::0;49578:12:::1;::::0;49555:19;;;-1:-1:-1;;49555:19:0;:35:::1;;49546:76;;;::::0;-1:-1:-1;;;49546:76:0;;17817:2:1;49546:76:0::1;::::0;::::1;17799:21:1::0;17856:2;17836:18;;;17829:30;17895:29;17875:18;;;17868:57;17942:18;;49546:76:0::1;17615:351:1::0;49546:76:0::1;49648:6;49643:112;49664:6;49660:1;:10;49643:112;;;49691:29;49701:10;49713:6;49691:9;:29::i;:::-;49735:8;::::0;;::::1;::::0;49672:3:::1;49643:112;;;-1:-1:-1::0;49765:9:0::1;:18:::0;-1:-1:-1;49824:10:0::1;19242:13:::0;;;;:9;:13;;;;;:23;;;;;;45928:245;:::o;21776:155::-;21871:52;15647:10;21904:8;21914;21871:18;:52::i;47984:102::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;48071:7:::1;48058:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;47984:102:0:o;49851:171::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;49903:3:::1;::::0;49941:6:::1;::::0;-1:-1:-1;;;;;49903:3:0;;::::1;::::0;:52:::1;::::0;49951:3:::1;::::0;49917:30:::1;::::0;:21:::1;:30;:::i;:::-;49916:38;;;;:::i;:::-;49903:52;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;49966:7:0::1;::::0;:39:::1;::::0;-1:-1:-1;;;;;49966:7:0;;::::1;::::0;49983:21:::1;49966:39:::0;::::1;;;::::0;:7:::1;:39:::0;:7;:39;49983:21;49966:7;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;22899:328:::0;23074:41;15647:10;23107:7;23074:18;:41::i;:::-;23066:103;;;;-1:-1:-1;;;23066:103:0;;;;;;;:::i;:::-;23180:39;23194:4;23200:2;23204:7;23213:5;23180:13;:39::i;:::-;22899:328;;;;:::o;50459:702::-;50551:13;50585:17;50593:8;50585:7;:17::i;:::-;50577:79;;;;-1:-1:-1;;;50577:79:0;;;;;;;:::i;:::-;50667:23;50693:20;;;:10;:20;;;;;50667:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50724:18;50745:10;:8;:10::i;:::-;50772:23;;50724:31;;-1:-1:-1;50772:27:0;50768:76;;-1:-1:-1;50823:9:0;50459:702;-1:-1:-1;;50459:702:0:o;50768:76::-;50875:8;50861:10;;:22;;50860:50;;;;;50909:1;50894:4;50888:18;:22;50860:50;50856:156;;;50934:66;50946:4;50952:47;50964:19;:8;:17;:19::i;50934:66::-;50927:73;50459:702;-1:-1:-1;;;;50459:702:0:o;50856:156::-;51059:1;51034:14;51028:28;;;;;:::i;:::-;;;:32;51024:86;;;51084:14;51077:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50459:702;;;:::o;51024:86::-;51129:24;51144:8;51129:14;:24::i;48094:100::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;48179:7:::1;48165:10;;:21;;;;;;;:::i;52634:211::-:0;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;52736:9:::1;52731:107;52751:22:::0;;::::1;52731:107;;;52821:7;52793:9;:25;52803:11;;52815:1;52803:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52793:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;52793:25:0;:35;;-1:-1:-1;;52793:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52775:3;::::1;::::0;::::1;:::i;:::-;;;;52731:107;;47884:92:::0;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;47963:5:::1;47947:12;;:21;;;;;;;:::i;51390:1008::-:0;51488:25;51515;51542:14;51569:15;51587:13;51597:2;51587:9;:13::i;:::-;51569:31;-1:-1:-1;51615:10:0;51611:25;;51635:1;51627:9;;51611:25;51651:11;;51647:744;;51692:7;51683:5;:16;51679:39;;51709:9;51717:1;51709:7;:9;:::i;:::-;51701:17;;51679:39;51753:7;51737:13;51745:5;51737;:13;:::i;:::-;:23;51733:52;;;51770:15;51780:5;51770:7;:15;:::i;:::-;51762:23;;51733:52;51827:5;-1:-1:-1;;;;;51813:20:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51813:20:0;;51802:31;;51873:5;-1:-1:-1;;;;;51860:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51848:31;;51908:15;51942;51960:9;51942:27;;52003:9;51998:382;52034:1;52027:4;:8;:21;;52045:3;;52027:21;;;52038:4;52027:21;52016:7;:33;:46;;;;;52057:5;52053:1;:9;52016:46;51998:382;;;52097:7;52099:5;52097:1;:7;:::i;:::-;52088:16;;52123:10;52136:31;52156:2;52160:6;52136:19;:31::i;:::-;52123:44;;52200:2;52186:8;52195:1;52186:11;;;;;;;;:::i;:::-;;;;;;:16;;;;;52236:12;52245:2;52236:8;:12::i;:::-;52221:9;52231:1;52221:12;;;;;;;;:::i;:::-;;;;;;:27;;;;52316:9;52306:19;;:7;:19;:::i;:::-;52295:31;;:7;:31;:::i;:::-;52285:41;;52355:9;52345:19;;52069:311;52064:3;;;;;:::i;:::-;;;;51998:382;;;;51664:727;;51647:744;51558:840;51390:1008;;;;;;;;:::o;45026:201::-;44190:6;;-1:-1:-1;;;;;44190:6:0;;;;;15647:10;44337:23;44329:68;;;;-1:-1:-1;;;44329:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45115:22:0;::::1;45107:73;;;::::0;-1:-1:-1;;;45107:73:0;;19154:2:1;45107:73:0::1;::::0;::::1;19136:21:1::0;19193:2;19173:18;;;19166:30;19232:34;19212:18;;;19205:62;-1:-1:-1;;;19283:18:1;;;19276:36;19329:19;;45107:73:0::1;18952:402:1::0;45107:73:0::1;45191:28;45210:8;45191:18;:28::i;33082:224::-:0;33184:4;-1:-1:-1;;;;;;33208:50:0;;-1:-1:-1;;;33208:50:0;;:90;;;33262:36;33286:11;33262:23;:36::i;24737:127::-;24802:4;24826:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24826:16:0;:30;;;24737:127::o;28692:174::-;28767:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;28767:29:0;-1:-1:-1;;;;;28767:29:0;;;;;;;;:24;;28821:23;28767:24;28821:14;:23::i;:::-;-1:-1:-1;;;;;28812:46:0;;;;;;;;;;;28692:174;;:::o;16009:723::-;16065:13;16286:10;16282:53;;-1:-1:-1;;16313:10:0;;;;;;;;;;;;-1:-1:-1;;;16313:10:0;;;;;16009:723::o;16282:53::-;16360:5;16345:12;16401:78;16408:9;;16401:78;;16434:8;;;;:::i;:::-;;-1:-1:-1;16457:10:0;;-1:-1:-1;16465:2:0;16457:10;;:::i;:::-;;;16401:78;;;16489:19;16521:6;-1:-1:-1;;;;;16511:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16511:17:0;;16489:39;;16539:154;16546:10;;16539:154;;16573:11;16583:1;16573:11;;:::i;:::-;;-1:-1:-1;16642:10:0;16650:2;16642:5;:10;:::i;:::-;16629:24;;:2;:24;:::i;:::-;16616:39;;16599:6;16606;16599:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16599:56:0;;;;;;;;-1:-1:-1;16670:11:0;16679:2;16670:11;;:::i;:::-;;;16539:154;;52853:149;52931:13;52988:1;52991;52971:22;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52957:37;;52853:149;;;;:::o;40373:217::-;40473:16;40481:7;40473;:16::i;:::-;40465:75;;;;-1:-1:-1;;;40465:75:0;;20153:2:1;40465:75:0;;;20135:21:1;20192:2;20172:18;;;20165:30;20231:34;20211:18;;;20204:62;-1:-1:-1;;;20282:18:1;;;20275:44;20336:19;;40465:75:0;19951:410:1;40465:75:0;40551:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;25031:348::-;25124:4;25149:16;25157:7;25149;:16::i;:::-;25141:73;;;;-1:-1:-1;;;25141:73:0;;20568:2:1;25141:73:0;;;20550:21:1;20607:2;20587:18;;;20580:30;20646:34;20626:18;;;20619:62;-1:-1:-1;;;20697:18:1;;;20690:42;20749:19;;25141:73:0;20366:408:1;25141:73:0;25225:13;25241:23;25256:7;25241:14;:23::i;:::-;25225:39;;25294:5;-1:-1:-1;;;;;25283:16:0;:7;-1:-1:-1;;;;;25283:16:0;;:51;;;;25327:7;-1:-1:-1;;;;;25303:31:0;:20;25315:7;25303:11;:20::i;:::-;-1:-1:-1;;;;;25303:31:0;;25283:51;:87;;;-1:-1:-1;;;;;;22123:25:0;;;22099:4;22123:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;25338:32;22002:164;27994:580;28153:4;-1:-1:-1;;;;;28126:31:0;:23;28141:7;28126:14;:23::i;:::-;-1:-1:-1;;;;;28126:31:0;;28118:85;;;;-1:-1:-1;;;28118:85:0;;20981:2:1;28118:85:0;;;20963:21:1;21020:2;21000:18;;;20993:30;21059:34;21039:18;;;21032:62;-1:-1:-1;;;21110:18:1;;;21103:39;21159:19;;28118:85:0;20779:405:1;28118:85:0;-1:-1:-1;;;;;28222:16:0;;28214:65;;;;-1:-1:-1;;;28214:65:0;;21391:2:1;28214:65:0;;;21373:21:1;21430:2;21410:18;;;21403:30;21469:34;21449:18;;;21442:62;-1:-1:-1;;;21520:18:1;;;21513:34;21564:19;;28214:65:0;21189:400:1;28214:65:0;28292:39;28313:4;28319:2;28323:7;28292:20;:39::i;:::-;28396:29;28413:1;28417:7;28396:8;:29::i;:::-;-1:-1:-1;;;;;28438:15:0;;;;;;:9;:15;;;;;:20;;28457:1;;28438:15;:20;;28457:1;;28438:20;:::i;:::-;;;;-1:-1:-1;;;;;;;28469:13:0;;;;;;:9;:13;;;;;:18;;28486:1;;28469:13;:18;;28486:1;;28469:18;:::i;:::-;;;;-1:-1:-1;;28498:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28498:21:0;-1:-1:-1;;;;;28498:21:0;;;;;;;;;28539:27;;28498:16;;28539:27;;;;;;;27994:580;;;:::o;43071:120::-;42083:7;;;;42607:41;;;;-1:-1:-1;;;42607:41:0;;21796:2:1;42607:41:0;;;21778:21:1;21835:2;21815:18;;;21808:30;-1:-1:-1;;;21854:18:1;;;21847:50;21914:18;;42607:41:0;21594:344:1;42607:41:0;43130:7:::1;:15:::0;;-1:-1:-1;;43130:15:0::1;::::0;;43161:22:::1;15647:10:::0;43170:12:::1;43161:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;43161:22:0::1;;;;;;;43071:120::o:0;50336:115::-;50423:20;50435:7;50423:11;:20::i;45387:191::-;45480:6;;;-1:-1:-1;;;;;45497:17:0;;;45480:6;45497:17;;;-1:-1:-1;;;;;;45497:17:0;;;;;;45530:40;;45480:6;;;;;;;;45530:40;;45461:16;;45530:40;45450:128;45387:191;:::o;42812:118::-;42083:7;;;;42337:9;42329:38;;;;-1:-1:-1;;;42329:38:0;;;;;;;:::i;:::-;42872:7:::1;:14:::0;;-1:-1:-1;;42872:14:0::1;42882:4;42872:14;::::0;;42902:20:::1;42909:12;15647:10:::0;;15567:98;25721:110;25797:26;25807:2;25811:7;25797:26;;;;;;;;;;;;:9;:26::i;29008:315::-;29163:8;-1:-1:-1;;;;;29154:17:0;:5;-1:-1:-1;;;;;29154:17:0;;;29146:55;;;;-1:-1:-1;;;29146:55:0;;22145:2:1;29146:55:0;;;22127:21:1;22184:2;22164:18;;;22157:30;22223:27;22203:18;;;22196:55;22268:18;;29146:55:0;21943:349:1;29146:55:0;-1:-1:-1;;;;;29212:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;29212:46:0;;;;;;;;;;29274:41;;540::1;;;29274::0;;513:18:1;29274:41:0;;;;;;;29008:315;;;:::o;24109:::-;24266:28;24276:4;24282:2;24286:7;24266:9;:28::i;:::-;24313:48;24336:4;24342:2;24346:7;24355:5;24313:22;:48::i;:::-;24305:111;;;;-1:-1:-1;;;24305:111:0;;;;;;;:::i;48202:100::-;48254:13;48287:7;48280:14;;;;;:::i;39538:679::-;39611:13;39645:16;39653:7;39645;:16::i;:::-;39637:78;;;;-1:-1:-1;;;39637:78:0;;;;;;;:::i;:::-;39728:23;39754:19;;;:10;:19;;;;;39728:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39784:18;39805:10;:8;:10::i;:::-;39784:31;;39897:4;39891:18;39913:1;39891:23;39887:72;;;-1:-1:-1;39938:9:0;39538:679;-1:-1:-1;;39538:679:0:o;39887:72::-;40063:23;;:27;40059:108;;40138:4;40144:9;40121:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40107:48;;;;39538:679;;;:::o;40059:108::-;40186:23;40201:7;40186:14;:23::i;18828:305::-;18930:4;-1:-1:-1;;;;;;18967:40:0;;-1:-1:-1;;;18967:40:0;;:105;;-1:-1:-1;;;;;;;19024:48:0;;-1:-1:-1;;;19024:48:0;18967:105;:158;;;-1:-1:-1;;;;;;;;;;17546:40:0;;;19089:36;17437:157;50031:227;42083:7;;;;42337:9;42329:38;;;;-1:-1:-1;;;42329:38:0;;;;;;;:::i;:::-;50205:45:::1;50232:4;50238:2;50242:7;50205:26;:45::i;40819:206::-:0;40888:20;40900:7;40888:11;:20::i;:::-;40931:19;;;;:10;:19;;;;;40925:33;;;;;:::i;:::-;:38;;-1:-1:-1;40921:97:0;;40987:19;;;;:10;:19;;;;;40980:26;;;:::i;26058:321::-;26188:18;26194:2;26198:7;26188:5;:18::i;:::-;26239:54;26270:1;26274:2;26278:7;26287:5;26239:22;:54::i;:::-;26217:154;;;;-1:-1:-1;;;26217:154:0;;;;;;;:::i;29888:799::-;30043:4;-1:-1:-1;;;;;30064:13:0;;8019:20;8067:8;30060:620;;30100:72;;-1:-1:-1;;;30100:72:0;;-1:-1:-1;;;;;30100:36:0;;;;;:72;;15647:10;;30151:4;;30157:7;;30166:5;;30100:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30100:72:0;;;;;;;;-1:-1:-1;;30100:72:0;;;;;;;;;;;;:::i;:::-;;;30096:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30342:13:0;;30338:272;;30385:60;;-1:-1:-1;;;30385:60:0;;;;;;;:::i;30338:272::-;30560:6;30554:13;30545:6;30541:2;30537:15;30530:38;30096:529;-1:-1:-1;;;;;;30223:51:0;-1:-1:-1;;;30223:51:0;;-1:-1:-1;30216:58:0;;30060:620;-1:-1:-1;30664:4:0;29888:799;;;;;;:::o;20268:334::-;20341:13;20375:16;20383:7;20375;:16::i;:::-;20367:76;;;;-1:-1:-1;;;20367:76:0;;23666:2:1;20367:76:0;;;23648:21:1;23705:2;23685:18;;;23678:30;23744:34;23724:18;;;23717:62;-1:-1:-1;;;23795:18:1;;;23788:45;23850:19;;20367:76:0;23464:411:1;20367:76:0;20456:21;20480:10;:8;:10::i;:::-;20456:34;;20532:1;20514:7;20508:21;:25;:86;;;;;;;;;;;;;;;;;20560:7;20569:18;:7;:16;:18::i;:::-;20543:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20508:86;20501:93;20268:334;-1:-1:-1;;;20268:334:0:o;34758:589::-;-1:-1:-1;;;;;34964:18:0;;34960:187;;34999:40;35031:7;36174:10;:17;;36147:24;;;;:15;:24;;;;;:44;;;36202:24;;;;;;;;;;;;36070:164;34999:40;34960:187;;;35069:2;-1:-1:-1;;;;;35061:10:0;:4;-1:-1:-1;;;;;35061:10:0;;35057:90;;35088:47;35121:4;35127:7;35088:32;:47::i;:::-;-1:-1:-1;;;;;35161:16:0;;35157:183;;35194:45;35231:7;35194:36;:45::i;35157:183::-;35267:4;-1:-1:-1;;;;;35261:10:0;:2;-1:-1:-1;;;;;35261:10:0;;35257:83;;35288:40;35316:2;35320:7;35288:27;:40::i;27297:360::-;27357:13;27373:23;27388:7;27373:14;:23::i;:::-;27357:39;;27409:48;27430:5;27445:1;27449:7;27409:20;:48::i;:::-;27498:29;27515:1;27519:7;27498:8;:29::i;:::-;-1:-1:-1;;;;;27540:16:0;;;;;;:9;:16;;;;;:21;;27560:1;;27540:16;:21;;27560:1;;27540:21;:::i;:::-;;;;-1:-1:-1;;27579:16:0;;;;:7;:16;;;;;;27572:23;;-1:-1:-1;;;;;;27572:23:0;;;27613:36;27587:7;;27579:16;-1:-1:-1;;;;;27613:36:0;;;;;27579:16;;27613:36;27346:311;27297:360;:::o;26715:353::-;-1:-1:-1;;;;;26795:16:0;;26787:61;;;;-1:-1:-1;;;26787:61:0;;24082:2:1;26787:61:0;;;24064:21:1;;;24101:18;;;24094:30;24160:34;24140:18;;;24133:62;24212:18;;26787:61:0;23880:356:1;26787:61:0;26868:16;26876:7;26868;:16::i;:::-;26867:17;26859:58;;;;-1:-1:-1;;;26859:58:0;;24443:2:1;26859:58:0;;;24425:21:1;24482:2;24462:18;;;24455:30;24521;24501:18;;;24494:58;24569:18;;26859:58:0;24241:352:1;26859:58:0;26930:45;26959:1;26963:2;26967:7;26930:20;:45::i;:::-;26988:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;26988:21:0;-1:-1:-1;;;;;26988:21:0;;;;;;;;27027:33;;26988:16;;;27027:33;;26988:16;;27027:33;26715:353;;:::o;36861:988::-;37127:22;37177:1;37152:22;37169:4;37152:16;:22::i;:::-;:26;;;;:::i;:::-;37189:18;37210:26;;;:17;:26;;;;;;37127:51;;-1:-1:-1;37343:28:0;;;37339:328;;-1:-1:-1;;;;;37410:18:0;;37388:19;37410:18;;;:12;:18;;;;;;;;:34;;;;;;;;;37461:30;;;;;;:44;;;37578:30;;:17;:30;;;;;:43;;;37339:328;-1:-1:-1;37763:26:0;;;;:17;:26;;;;;;;;37756:33;;;-1:-1:-1;;;;;37807:18:0;;;;;:12;:18;;;;;:34;;;;;;;37800:41;36861:988::o;38144:1079::-;38422:10;:17;38397:22;;38422:21;;38442:1;;38422:21;:::i;:::-;38454:18;38475:24;;;:15;:24;;;;;;38848:10;:26;;38397:46;;-1:-1:-1;38475:24:0;;38397:46;;38848:26;;;;;;:::i;:::-;;;;;;;;;38826:48;;38912:11;38887:10;38898;38887:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;38992:28;;;:15;:28;;;;;;;:41;;;39164:24;;;;;39157:31;39199:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38215:1008;;;38144:1079;:::o;35648:221::-;35733:14;35750:20;35767:2;35750:16;:20::i;:::-;-1:-1:-1;;;;;35781:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;35826:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;35648:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:160::-;1801:20;;1857:13;;1850:21;1840:32;;1830:60;;1886:1;1883;1876:12;1830:60;1736:160;;;:::o;1901:180::-;1957:6;2010:2;1998:9;1989:7;1985:23;1981:32;1978:52;;;2026:1;2023;2016:12;1978:52;2049:26;2065:9;2049:26;:::i;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2523:367::-;2586:8;2596:6;2650:3;2643:4;2635:6;2631:17;2627:27;2617:55;;2668:1;2665;2658:12;2617:55;-1:-1:-1;2691:20:1;;-1:-1:-1;;;;;2723:30:1;;2720:50;;;2766:1;2763;2756:12;2720:50;2803:4;2795:6;2791:17;2779:29;;2863:3;2856:4;2846:6;2843:1;2839:14;2831:6;2827:27;2823:38;2820:47;2817:67;;;2880:1;2877;2870:12;2817:67;2523:367;;;;;:::o;2895:348::-;2947:8;2957:6;3011:3;3004:4;2996:6;2992:17;2988:27;2978:55;;3029:1;3026;3019:12;2978:55;-1:-1:-1;3052:20:1;;-1:-1:-1;;;;;3084:30:1;;3081:50;;;3127:1;3124;3117:12;3081:50;3164:4;3156:6;3152:17;3140:29;;3216:3;3209:4;3200:6;3192;3188:19;3184:30;3181:39;3178:59;;;3233:1;3230;3223:12;3248:747;3355:6;3363;3371;3379;3432:2;3420:9;3411:7;3407:23;3403:32;3400:52;;;3448:1;3445;3438:12;3400:52;3488:9;3475:23;-1:-1:-1;;;;;3558:2:1;3550:6;3547:14;3544:34;;;3574:1;3571;3564:12;3544:34;3613:70;3675:7;3666:6;3655:9;3651:22;3613:70;:::i;:::-;3702:8;;-1:-1:-1;3587:96:1;-1:-1:-1;3790:2:1;3775:18;;3762:32;;-1:-1:-1;3806:16:1;;;3803:36;;;3835:1;3832;3825:12;3803:36;;3874:61;3927:7;3916:8;3905:9;3901:24;3874:61;:::i;:::-;3248:747;;;;-1:-1:-1;3954:8:1;-1:-1:-1;;;;3248:747:1:o;4182:785::-;4316:6;4324;4332;4340;4393:2;4381:9;4372:7;4368:23;4364:32;4361:52;;;4409:1;4406;4399:12;4361:52;4449:9;4436:23;-1:-1:-1;;;;;4519:2:1;4511:6;4508:14;4505:34;;;4535:1;4532;4525:12;4505:34;4574:70;4636:7;4627:6;4616:9;4612:22;4574:70;:::i;:::-;4663:8;;-1:-1:-1;4548:96:1;-1:-1:-1;4751:2:1;4736:18;;4723:32;;-1:-1:-1;4767:16:1;;;4764:36;;;4796:1;4793;4786:12;4764:36;;4835:72;4899:7;4888:8;4877:9;4873:24;4835:72;:::i;4972:328::-;5049:6;5057;5065;5118:2;5106:9;5097:7;5093:23;5089:32;5086:52;;;5134:1;5131;5124:12;5086:52;5157:29;5176:9;5157:29;:::i;:::-;5147:39;;5205:38;5239:2;5228:9;5224:18;5205:38;:::i;:::-;5195:48;;5290:2;5279:9;5275:18;5262:32;5252:42;;4972:328;;;;;:::o;5305:127::-;5366:10;5361:3;5357:20;5354:1;5347:31;5397:4;5394:1;5387:15;5421:4;5418:1;5411:15;5437:632;5502:5;-1:-1:-1;;;;;5573:2:1;5565:6;5562:14;5559:40;;;5579:18;;:::i;:::-;5654:2;5648:9;5622:2;5708:15;;-1:-1:-1;;5704:24:1;;;5730:2;5700:33;5696:42;5684:55;;;5754:18;;;5774:22;;;5751:46;5748:72;;;5800:18;;:::i;:::-;5840:10;5836:2;5829:22;5869:6;5860:15;;5899:6;5891;5884:22;5939:3;5930:6;5925:3;5921:16;5918:25;5915:45;;;5956:1;5953;5946:12;5915:45;6006:6;6001:3;5994:4;5986:6;5982:17;5969:44;6061:1;6054:4;6045:6;6037;6033:19;6029:30;6022:41;;;;5437:632;;;;;:::o;6074:519::-;6152:6;6160;6213:2;6201:9;6192:7;6188:23;6184:32;6181:52;;;6229:1;6226;6219:12;6181:52;6265:9;6252:23;6242:33;;6326:2;6315:9;6311:18;6298:32;-1:-1:-1;;;;;6345:6:1;6342:30;6339:50;;;6385:1;6382;6375:12;6339:50;6408:22;;6461:4;6453:13;;6449:27;-1:-1:-1;6439:55:1;;6490:1;6487;6480:12;6439:55;6513:74;6579:7;6574:2;6561:16;6556:2;6552;6548:11;6513:74;:::i;:::-;6503:84;;;6074:519;;;;;:::o;6598:411::-;6669:6;6677;6730:2;6718:9;6709:7;6705:23;6701:32;6698:52;;;6746:1;6743;6736:12;6698:52;6786:9;6773:23;-1:-1:-1;;;;;6811:6:1;6808:30;6805:50;;;6851:1;6848;6841:12;6805:50;6890:59;6941:7;6932:6;6921:9;6917:22;6890:59;:::i;:::-;6968:8;;6864:85;;-1:-1:-1;6598:411:1;-1:-1:-1;;;;6598:411:1:o;7014:254::-;7079:6;7087;7140:2;7128:9;7119:7;7115:23;7111:32;7108:52;;;7156:1;7153;7146:12;7108:52;7179:29;7198:9;7179:29;:::i;:::-;7169:39;;7227:35;7258:2;7247:9;7243:18;7227:35;:::i;:::-;7217:45;;7014:254;;;;;:::o;7273:186::-;7332:6;7385:2;7373:9;7364:7;7360:23;7356:32;7353:52;;;7401:1;7398;7391:12;7353:52;7424:29;7443:9;7424:29;:::i;7464:667::-;7559:6;7567;7575;7583;7636:3;7624:9;7615:7;7611:23;7607:33;7604:53;;;7653:1;7650;7643:12;7604:53;7676:29;7695:9;7676:29;:::i;:::-;7666:39;;7724:38;7758:2;7747:9;7743:18;7724:38;:::i;:::-;7714:48;;7809:2;7798:9;7794:18;7781:32;7771:42;;7864:2;7853:9;7849:18;7836:32;-1:-1:-1;;;;;7883:6:1;7880:30;7877:50;;;7923:1;7920;7913:12;7877:50;7946:22;;7999:4;7991:13;;7987:27;-1:-1:-1;7977:55:1;;8028:1;8025;8018:12;7977:55;8051:74;8117:7;8112:2;8099:16;8094:2;8090;8086:11;8051:74;:::i;:::-;8041:84;;;7464:667;;;;;;;:::o;8136:505::-;8228:6;8236;8244;8297:2;8285:9;8276:7;8272:23;8268:32;8265:52;;;8313:1;8310;8303:12;8265:52;8353:9;8340:23;-1:-1:-1;;;;;8378:6:1;8375:30;8372:50;;;8418:1;8415;8408:12;8372:50;8457:70;8519:7;8510:6;8499:9;8495:22;8457:70;:::i;:::-;8546:8;;-1:-1:-1;8431:96:1;-1:-1:-1;8600:35:1;;-1:-1:-1;8631:2:1;8616:18;;8600:35;:::i;:::-;8590:45;;8136:505;;;;;:::o;8646:391::-;8732:6;8740;8748;8756;8809:3;8797:9;8788:7;8784:23;8780:33;8777:53;;;8826:1;8823;8816:12;8777:53;8849:29;8868:9;8849:29;:::i;:::-;8839:39;8925:2;8910:18;;8897:32;;-1:-1:-1;8976:2:1;8961:18;;8948:32;;9027:2;9012:18;8999:32;;-1:-1:-1;8646:391:1;-1:-1:-1;;;8646:391:1:o;9042:1383::-;9358:2;9370:21;;;9440:13;;9343:18;;;9462:22;;;9310:4;;9538;;9515:3;9500:19;;;9565:15;;;9310:4;9608:169;9622:6;9619:1;9616:13;9608:169;;;9683:13;;9671:26;;9717:12;;;;9752:15;;;;9644:1;9637:9;9608:169;;;-1:-1:-1;;;9813:19:1;;;9793:18;;;9786:47;9883:13;;9905:21;;;9944:12;;;;9996:1;9992:16;;;9983:26;;9979:35;;10039:15;;;10074:1;10084:269;10100:8;10095:3;10092:17;10084:269;;;10195:2;10191:7;10185:3;10177:6;10173:16;10169:30;10162:5;10155:45;10223:42;10258:6;10247:8;10241:15;10223:42;:::i;:::-;10329:14;;;;10213:52;-1:-1:-1;10290:17:1;;;;10128:1;10119:11;10084:269;;;10088:3;;10370:6;10362:14;;;;;;;10412:6;10407:2;10396:9;10392:18;10385:34;9042:1383;;;;;;:::o;10430:260::-;10498:6;10506;10559:2;10547:9;10538:7;10534:23;10530:32;10527:52;;;10575:1;10572;10565:12;10527:52;10598:29;10617:9;10598:29;:::i;:::-;10588:39;;10646:38;10680:2;10669:9;10665:18;10646:38;:::i;10695:380::-;10774:1;10770:12;;;;10817;;;10838:61;;10892:4;10884:6;10880:17;10870:27;;10838:61;10945:2;10937:6;10934:14;10914:18;10911:38;10908:161;;;10991:10;10986:3;10982:20;10979:1;10972:31;11026:4;11023:1;11016:15;11054:4;11051:1;11044:15;10908:161;;10695:380;;;:::o;11493:356::-;11695:2;11677:21;;;11714:18;;;11707:30;11773:34;11768:2;11753:18;;11746:62;11840:2;11825:18;;11493:356::o;12681:127::-;12742:10;12737:3;12733:20;12730:1;12723:31;12773:4;12770:1;12763:15;12797:4;12794:1;12787:15;12813:127;12874:10;12869:3;12865:20;12862:1;12855:31;12905:4;12902:1;12895:15;12929:4;12926:1;12919:15;12945:135;12984:3;-1:-1:-1;;13005:17:1;;13002:43;;;13025:18;;:::i;:::-;-1:-1:-1;13072:1:1;13061:13;;12945:135::o;13430:522::-;13508:4;13514:6;13574:11;13561:25;13668:2;13664:7;13653:8;13637:14;13633:29;13629:43;13609:18;13605:68;13595:96;;13687:1;13684;13677:12;13595:96;13714:33;;13766:20;;;-1:-1:-1;;;;;;13798:30:1;;13795:50;;;13841:1;13838;13831:12;13795:50;13874:4;13862:17;;-1:-1:-1;13905:14:1;13901:27;;;13891:38;;13888:58;;;13942:1;13939;13932:12;13957:413;14159:2;14141:21;;;14198:2;14178:18;;;14171:30;14237:34;14232:2;14217:18;;14210:62;-1:-1:-1;;;14303:2:1;14288:18;;14281:47;14360:3;14345:19;;13957:413::o;15617:125::-;15657:4;15685:1;15682;15679:8;15676:34;;;15690:18;;:::i;:::-;-1:-1:-1;15727:9:1;;15617:125::o;16568:340::-;16770:2;16752:21;;;16809:2;16789:18;;;16782:30;-1:-1:-1;;;16843:2:1;16828:18;;16821:46;16899:2;16884:18;;16568:340::o;17971:128::-;18011:3;18042:1;18038:6;18035:1;18032:13;18029:39;;;18048:18;;:::i;:::-;-1:-1:-1;18084:9:1;;17971:128::o;18104:168::-;18144:7;18210:1;18206;18202:6;18198:14;18195:1;18192:21;18187:1;18180:9;18173:17;18169:45;18166:71;;;18217:18;;:::i;:::-;-1:-1:-1;18257:9:1;;18104:168::o;18277:127::-;18338:10;18333:3;18329:20;18326:1;18319:31;18369:4;18366:1;18359:15;18393:4;18390:1;18383:15;18409:120;18449:1;18475;18465:35;;18480:18;;:::i;:::-;-1:-1:-1;18514:9:1;;18409:120::o;18534:413::-;18736:2;18718:21;;;18775:2;18755:18;;;18748:30;18814:34;18809:2;18794:18;;18787:62;-1:-1:-1;;;18880:2:1;18865:18;;18858:47;18937:3;18922:19;;18534:413::o;19359:112::-;19391:1;19417;19407:35;;19422:18;;:::i;:::-;-1:-1:-1;19456:9:1;;19359:112::o;19476:470::-;19655:3;19693:6;19687:13;19709:53;19755:6;19750:3;19743:4;19735:6;19731:17;19709:53;:::i;:::-;19825:13;;19784:16;;;;19847:57;19825:13;19784:16;19881:4;19869:17;;19847:57;:::i;:::-;19920:20;;19476:470;-1:-1:-1;;;;19476:470:1:o;22297:414::-;22499:2;22481:21;;;22538:2;22518:18;;;22511:30;22577:34;22572:2;22557:18;;22550:62;-1:-1:-1;;;22643:2:1;22628:18;;22621:48;22701:3;22686:19;;22297:414::o;22716:489::-;-1:-1:-1;;;;;22985:15:1;;;22967:34;;23037:15;;23032:2;23017:18;;23010:43;23084:2;23069:18;;23062:34;;;23132:3;23127:2;23112:18;;23105:31;;;22910:4;;23153:46;;23179:19;;23171:6;23153:46;:::i;:::-;23145:54;22716:489;-1:-1:-1;;;;;;22716:489:1:o;23210:249::-;23279:6;23332:2;23320:9;23311:7;23307:23;23303:32;23300:52;;;23348:1;23345;23338:12;23300:52;23380:9;23374:16;23399:30;23423:5;23399:30;:::i;24598:127::-;24659:10;24654:3;24650:20;24647:1;24640:31;24690:4;24687:1;24680:15;24714:4;24711:1;24704:15

Swarm Source

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