ETH Price: $3,051.43 (+2.38%)
Gas: 1 Gwei

Token

CryptoNobles (CN)
 

Overview

Max Total Supply

2,500 CN

Holders

1,135

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
fanflip.eth
Balance
3 CN
0x70F5D1620C738F25eEcecc3473272D18E2a29FA9
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:
CryptoNobles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}


pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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 {}
}


pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b > a) return (false, 0);
        return (true, a - b);
    }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
    unchecked {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    unchecked {
        require(b <= a, errorMessage);
        return a - b;
    }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a % b;
    }
    }
}

pragma solidity >=0.7.0 <0.9.0;
// _________                        __          _______        ___.   .__                 
// \_   ___ \_______ ___.__._______/  |_  ____  \      \   ____\_ |__ |  |   ____   ______
// /    \  \/\_  __ <   |  |\____ \   __\/  _ \ /   |   \ /  _ \| __ \|  | _/ __ \ /  ___/
// \     \____|  | \/\___  ||  |_> >  | (  <_> )    |    (  <_> ) \_\ \  |_\  ___/ \___ \ 
//  \______  /|__|   / ____||   __/|__|  \____/\____|__  /\____/|___  /____/\___  >____  >
//         \/        \/     |__|                       \/           \/          \/     \/ 
contract CryptoNobles is ERC721, ERC721Enumerable, Ownable {
  using Strings for uint256;
  using SafeMath for uint256;
  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.06 ether;
  uint256 public whitelistCost = 0.04 ether;
  uint256 public maxSupply = 2500;
  uint256 public maxMintAmount = 3;
  uint256 public whiteListLength = 0;
  uint256 public maxWhitelistSpots = 500;
  mapping(address => bool) public whitelisted;
  bool public paused = true;
  bool public pauseWhitelistDrop = true; 
  bool public pauseWhitelist = false; 

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

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  } 
  
  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
      super._beforeTokenTransfer(from, to, tokenId);
  }

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

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require((cost.mul(_mintAmount)) <= msg.value);
    require(supply + _mintAmount <= maxSupply);
    require(walletOfOwner(_to).length < 3);
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

  function mintFromWhiteList(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!pauseWhitelistDrop);
    require(whitelisted[_to] != false);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require((whitelistCost.mul(_mintAmount)) <= msg.value);
    require(supply + _mintAmount <= maxSupply);
    require(walletOfOwner(_to).length < 3);
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

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

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

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

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

  function setWhitelistCost(uint256 _newCost) public onlyOwner {
    whitelistCost = _newCost;
  }

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

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function setPauseWhitelistDrop(bool _state) public onlyOwner {
    pauseWhitelistDrop = _state;
  }

  function setPauseWhitelist(bool _state) public onlyOwner {
    pauseWhitelist = _state;
  }

  function whitelistUser() public payable {
    require(whiteListLength < maxWhitelistSpots);
    require(whitelisted[msg.sender] != true);
    require(!pauseWhitelist);
    whitelisted[msg.sender] = true;
    whiteListLength ++;
  }
 
  function removeWhitelistUser(address _user) public onlyOwner {
    whitelisted[_user] = false;
    whiteListLength --;
  }

  function withdrawAll() public payable onlyOwner {
      require(payable(msg.sender).send(address(this).balance));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistSpots","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFromWhiteList","outputs":[],"stateMutability":"payable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pauseWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseWhitelistDrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPauseWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPauseWhitelistDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxWhitelistSpots","type":"uint256"}],"name":"setmaxWhitelistSpots","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistUser","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000315565b5066d529ae9e860000600d55668e1bc9bf040000600e556109c4600f55600360105560006011556101f46012556001601460006101000a81548160ff0219169083151502179055506001601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff021916908315150217905550348015620000dc57600080fd5b506040516200508238038062005082833981810160405281019062000102919062000443565b828281600090805190602001906200011c92919062000315565b5080600190805190602001906200013592919062000315565b505050620001586200014c6200017260201b60201c565b6200017a60201b60201c565b62000169816200024060201b60201c565b50505062000703565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002506200017260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000276620002eb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002cf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c69062000523565b60405180910390fd5b80600b9080519060200190620002e792919062000315565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032390620005eb565b90600052602060002090601f01602090048101928262000347576000855562000393565b82601f106200036257805160ff191683800117855562000393565b8280016001018555821562000393579182015b828111156200039257825182559160200191906001019062000375565b5b509050620003a29190620003a6565b5090565b5b80821115620003c1576000816000905550600101620003a7565b5090565b6000620003dc620003d6846200056e565b62000545565b905082815260208101848484011115620003fb57620003fa620006ba565b5b62000408848285620005b5565b509392505050565b600082601f830112620004285762000427620006b5565b5b81516200043a848260208601620003c5565b91505092915050565b6000806000606084860312156200045f576200045e620006c4565b5b600084015167ffffffffffffffff81111562000480576200047f620006bf565b5b6200048e8682870162000410565b935050602084015167ffffffffffffffff811115620004b257620004b1620006bf565b5b620004c08682870162000410565b925050604084015167ffffffffffffffff811115620004e457620004e3620006bf565b5b620004f28682870162000410565b9150509250925092565b60006200050b602083620005a4565b91506200051882620006da565b602082019050919050565b600060208201905081810360008301526200053e81620004fc565b9050919050565b60006200055162000564565b90506200055f828262000621565b919050565b6000604051905090565b600067ffffffffffffffff8211156200058c576200058b62000686565b5b6200059782620006c9565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005d5578082015181840152602081019050620005b8565b83811115620005e5576000848401525b50505050565b600060028204905060018216806200060457607f821691505b602082108114156200061b576200061a62000657565b5b50919050565b6200062c82620006c9565b810181811067ffffffffffffffff821117156200064e576200064d62000686565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61496f80620007136000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063c6682862116100c1578063d936547e1161007a578063d936547e1461093a578063da3ef23f14610977578063e7b99ec7146109a0578063e985e9c5146109cb578063f2fde38b14610a08578063f9bc80d014610a315761027d565b8063c668286214610828578063c87b56dd14610853578063cfe684f514610890578063d2080ccd146108bb578063d49479eb146108e6578063d5abeb011461090f5761027d565b80638da5cb5b116101135780638da5cb5b1461073b57806395d89b4114610766578063a22cb46514610791578063a4dc7a05146107ba578063b88d4fde146107e3578063be24be5a1461080c5761027d565b8063715018a61461069d57806376344568146106b4578063769c3f1a146106dd5780637f00c7a614610708578063853828b6146107315761027d565b806330cc7ae0116101f357806355f804b3116101ac57806355f804b31461059a57806358957a33146105c35780635c975abb146105cd5780636352211e146105f85780636c0360eb1461063557806370a08231146106605761027d565b806330cc7ae01461048957806340c10f19146104b257806342842e0e146104ce578063438b6300146104f757806344a0d68a146105345780634f6ccce71461055d5761027d565b806313faede61161024557806313faede61461037957806318160ddd146103a4578063239c70ae146103cf57806323b872dd146103fa57806324558a5f146104235780632f745c591461044c5761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613652565b610a5c565b6040516102b69190613c26565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613625565b610a6e565b005b3480156102f457600080fd5b506102fd610b07565b60405161030a9190613c41565b60405180910390f35b34801561031f57600080fd5b5061033a600480360381019061033591906136f5565b610b99565b6040516103479190613b9d565b60405180910390f35b34801561035c57600080fd5b50610377600480360381019061037291906135e5565b610c1e565b005b34801561038557600080fd5b5061038e610d36565b60405161039b9190613ea3565b60405180910390f35b3480156103b057600080fd5b506103b9610d3c565b6040516103c69190613ea3565b60405180910390f35b3480156103db57600080fd5b506103e4610d49565b6040516103f19190613ea3565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906134cf565b610d4f565b005b34801561042f57600080fd5b5061044a600480360381019061044591906136f5565b610daf565b005b34801561045857600080fd5b50610473600480360381019061046e91906135e5565b610e35565b6040516104809190613ea3565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613462565b610eda565b005b6104cc60048036038101906104c791906135e5565b610fc9565b005b3480156104da57600080fd5b506104f560048036038101906104f091906134cf565b611098565b005b34801561050357600080fd5b5061051e60048036038101906105199190613462565b6110b8565b60405161052b9190613c04565b60405180910390f35b34801561054057600080fd5b5061055b600480360381019061055691906136f5565b611166565b005b34801561056957600080fd5b50610584600480360381019061057f91906136f5565b6111ec565b6040516105919190613ea3565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906136ac565b61125d565b005b6105cb6112f3565b005b3480156105d957600080fd5b506105e26113ed565b6040516105ef9190613c26565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906136f5565b611400565b60405161062c9190613b9d565b60405180910390f35b34801561064157600080fd5b5061064a6114b2565b6040516106579190613c41565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613462565b611540565b6040516106949190613ea3565b60405180910390f35b3480156106a957600080fd5b506106b26115f8565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613625565b611680565b005b3480156106e957600080fd5b506106f2611719565b6040516106ff9190613c26565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a91906136f5565b61172c565b005b6107396117b2565b005b34801561074757600080fd5b5061075061186e565b60405161075d9190613b9d565b60405180910390f35b34801561077257600080fd5b5061077b611898565b6040516107889190613c41565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b391906135a5565b61192a565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613625565b611aab565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613522565b611b44565b005b610826600480360381019061082191906135e5565b611ba6565b005b34801561083457600080fd5b5061083d611cd3565b60405161084a9190613c41565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906136f5565b611d61565b6040516108879190613c41565b60405180910390f35b34801561089c57600080fd5b506108a5611e0b565b6040516108b29190613ea3565b60405180910390f35b3480156108c757600080fd5b506108d0611e11565b6040516108dd9190613c26565b60405180910390f35b3480156108f257600080fd5b5061090d600480360381019061090891906136f5565b611e24565b005b34801561091b57600080fd5b50610924611eaa565b6040516109319190613ea3565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c9190613462565b611eb0565b60405161096e9190613c26565b60405180910390f35b34801561098357600080fd5b5061099e600480360381019061099991906136ac565b611ed0565b005b3480156109ac57600080fd5b506109b5611f66565b6040516109c29190613ea3565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed919061348f565b611f6c565b6040516109ff9190613c26565b60405180910390f35b348015610a1457600080fd5b50610a2f6004803603810190610a2a9190613462565b612000565b005b348015610a3d57600080fd5b50610a466120f8565b604051610a539190613ea3565b60405180910390f35b6000610a67826120fe565b9050919050565b610a76612178565b73ffffffffffffffffffffffffffffffffffffffff16610a9461186e565b73ffffffffffffffffffffffffffffffffffffffff1614610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190613de3565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b606060008054610b16906141cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b42906141cb565b8015610b8f5780601f10610b6457610100808354040283529160200191610b8f565b820191906000526020600020905b815481529060010190602001808311610b7257829003601f168201915b5050505050905090565b6000610ba482612180565b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613dc3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2982611400565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190613e43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb9612178565b73ffffffffffffffffffffffffffffffffffffffff161480610ce85750610ce781610ce2612178565b611f6c565b5b610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90613d43565b60405180910390fd5b610d3183836121ec565b505050565b600d5481565b6000600880549050905090565b60105481565b610d60610d5a612178565b826122a5565b610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690613e63565b60405180910390fd5b610daa838383612383565b505050565b610db7612178565b73ffffffffffffffffffffffffffffffffffffffff16610dd561186e565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290613de3565b60405180910390fd5b8060128190555050565b6000610e4083611540565b8210610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613c63565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ee2612178565b73ffffffffffffffffffffffffffffffffffffffff16610f0061186e565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613de3565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060116000815480929190610fc1906141a1565b919050555050565b6000610fd3610d3c565b9050601460009054906101000a900460ff1615610fef57600080fd5b60008211610ffc57600080fd5b60105482111561100b57600080fd5b3461102183600d546125df90919063ffffffff16565b111561102c57600080fd5b600f54828261103b9190613fd6565b111561104657600080fd5b6003611051846110b8565b511061105c57600080fd5b6000600190505b8281116110925761107f84828461107a9190613fd6565b6125f5565b808061108a9061422e565b915050611063565b50505050565b6110b383838360405180602001604052806000815250611b44565b505050565b606060006110c583611540565b905060008167ffffffffffffffff8111156110e3576110e2614393565b5b6040519080825280602002602001820160405280156111115781602001602082028036833780820191505090505b50905060005b8281101561115b576111298582610e35565b82828151811061113c5761113b614364565b5b60200260200101818152505080806111539061422e565b915050611117565b508092505050919050565b61116e612178565b73ffffffffffffffffffffffffffffffffffffffff1661118c61186e565b73ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990613de3565b60405180910390fd5b80600d8190555050565b60006111f6610d3c565b8210611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613e83565b60405180910390fd5b6008828154811061124b5761124a614364565b5b90600052602060002001549050919050565b611265612178565b73ffffffffffffffffffffffffffffffffffffffff1661128361186e565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613de3565b60405180910390fd5b80600b90805190602001906112ef929190613276565b5050565b6012546011541061130357600080fd5b60011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561136157600080fd5b601460029054906101000a900460ff161561137b57600080fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550601160008154809291906113e69061422e565b9190505550565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090613d83565b60405180910390fd5b80915050919050565b600b80546114bf906141cb565b80601f01602080910402602001604051908101604052809291908181526020018280546114eb906141cb565b80156115385780601f1061150d57610100808354040283529160200191611538565b820191906000526020600020905b81548152906001019060200180831161151b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613d63565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611600612178565b73ffffffffffffffffffffffffffffffffffffffff1661161e61186e565b73ffffffffffffffffffffffffffffffffffffffff1614611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613de3565b60405180910390fd5b61167e6000612613565b565b611688612178565b73ffffffffffffffffffffffffffffffffffffffff166116a661186e565b73ffffffffffffffffffffffffffffffffffffffff16146116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613de3565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b601460019054906101000a900460ff1681565b611734612178565b73ffffffffffffffffffffffffffffffffffffffff1661175261186e565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613de3565b60405180910390fd5b8060108190555050565b6117ba612178565b73ffffffffffffffffffffffffffffffffffffffff166117d861186e565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613de3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061186c57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a7906141cb565b80601f01602080910402602001604051908101604052809291908181526020018280546118d3906141cb565b80156119205780601f106118f557610100808354040283529160200191611920565b820191906000526020600020905b81548152906001019060200180831161190357829003601f168201915b5050505050905090565b611932612178565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613d03565b60405180910390fd5b80600560006119ad612178565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5a612178565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9f9190613c26565b60405180910390a35050565b611ab3612178565b73ffffffffffffffffffffffffffffffffffffffff16611ad161186e565b73ffffffffffffffffffffffffffffffffffffffff1614611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613de3565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b611b55611b4f612178565b836122a5565b611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613e63565b60405180910390fd5b611ba0848484846126d9565b50505050565b6000611bb0610d3c565b9050601460019054906101000a900460ff1615611bcc57600080fd5b60001515601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611c2a57600080fd5b60008211611c3757600080fd5b601054821115611c4657600080fd5b34611c5c83600e546125df90919063ffffffff16565b1115611c6757600080fd5b600f548282611c769190613fd6565b1115611c8157600080fd5b6003611c8c846110b8565b5110611c9757600080fd5b6000600190505b828111611ccd57611cba848284611cb59190613fd6565b6125f5565b8080611cc59061422e565b915050611c9e565b50505050565b600c8054611ce0906141cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0c906141cb565b8015611d595780601f10611d2e57610100808354040283529160200191611d59565b820191906000526020600020905b815481529060010190602001808311611d3c57829003601f168201915b505050505081565b6060611d6c82612180565b611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613e23565b60405180910390fd5b6000611db5612735565b90506000815111611dd55760405180602001604052806000815250611e03565b80611ddf846127c7565b600c604051602001611df393929190613b6c565b6040516020818303038152906040525b915050919050565b60115481565b601460029054906101000a900460ff1681565b611e2c612178565b73ffffffffffffffffffffffffffffffffffffffff16611e4a61186e565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613de3565b60405180910390fd5b80600e8190555050565b600f5481565b60136020528060005260406000206000915054906101000a900460ff1681565b611ed8612178565b73ffffffffffffffffffffffffffffffffffffffff16611ef661186e565b73ffffffffffffffffffffffffffffffffffffffff1614611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390613de3565b60405180910390fd5b80600c9080519060200190611f62929190613276565b5050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612008612178565b73ffffffffffffffffffffffffffffffffffffffff1661202661186e565b73ffffffffffffffffffffffffffffffffffffffff161461207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390613de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390613ca3565b60405180910390fd5b6120f581612613565b50565b60125481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612171575061217082612928565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661225f83611400565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122b082612180565b6122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e690613d23565b60405180910390fd5b60006122fa83611400565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061236957508373ffffffffffffffffffffffffffffffffffffffff1661235184610b99565b73ffffffffffffffffffffffffffffffffffffffff16145b8061237a57506123798185611f6c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123a382611400565b73ffffffffffffffffffffffffffffffffffffffff16146123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613e03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090613ce3565b60405180910390fd5b612474838383612a0a565b61247f6000826121ec565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124cf91906140b7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125269190613fd6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836125ed919061405d565b905092915050565b61260f828260405180602001604052806000815250612a1a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126e4848484612383565b6126f084848484612a75565b61272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690613c83565b60405180910390fd5b50505050565b6060600b8054612744906141cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612770906141cb565b80156127bd5780601f10612792576101008083540402835291602001916127bd565b820191906000526020600020905b8154815290600101906020018083116127a057829003601f168201915b5050505050905090565b6060600082141561280f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612923565b600082905060005b6000821461284157808061282a9061422e565b915050600a8261283a919061402c565b9150612817565b60008167ffffffffffffffff81111561285d5761285c614393565b5b6040519080825280601f01601f19166020018201604052801561288f5781602001600182028036833780820191505090505b5090505b6000851461291c576001826128a891906140b7565b9150600a856128b79190614277565b60306128c39190613fd6565b60f81b8183815181106128d9576128d8614364565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612915919061402c565b9450612893565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129f357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a035750612a0282612c0c565b5b9050919050565b612a15838383612c76565b505050565b612a248383612d8a565b612a316000848484612a75565b612a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6790613c83565b60405180910390fd5b505050565b6000612a968473ffffffffffffffffffffffffffffffffffffffff16612f58565b15612bff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612abf612178565b8786866040518563ffffffff1660e01b8152600401612ae19493929190613bb8565b602060405180830381600087803b158015612afb57600080fd5b505af1925050508015612b2c57506040513d601f19601f82011682018060405250810190612b29919061367f565b60015b612baf573d8060008114612b5c576040519150601f19603f3d011682016040523d82523d6000602084013e612b61565b606091505b50600081511415612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90613c83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c04565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c81838383612f6b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cc457612cbf81612f70565b612d03565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d0257612d018382612fb9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4657612d4181613126565b612d85565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d8457612d8382826131f7565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df190613da3565b60405180910390fd5b612e0381612180565b15612e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3a90613cc3565b60405180910390fd5b612e4f60008383612a0a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e9f9190613fd6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fc684611540565b612fd091906140b7565b90506000600760008481526020019081526020016000205490508181146130b5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061313a91906140b7565b905060006009600084815260200190815260200160002054905060006008838154811061316a57613169614364565b5b90600052602060002001549050806008838154811061318c5761318b614364565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131db576131da614335565b5b6001900381819060005260206000200160009055905550505050565b600061320283611540565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613282906141cb565b90600052602060002090601f0160209004810192826132a457600085556132eb565b82601f106132bd57805160ff19168380011785556132eb565b828001600101855582156132eb579182015b828111156132ea5782518255916020019190600101906132cf565b5b5090506132f891906132fc565b5090565b5b808211156133155760008160009055506001016132fd565b5090565b600061332c61332784613ee3565b613ebe565b905082815260208101848484011115613348576133476143c7565b5b61335384828561415f565b509392505050565b600061336e61336984613f14565b613ebe565b90508281526020810184848401111561338a576133896143c7565b5b61339584828561415f565b509392505050565b6000813590506133ac816148dd565b92915050565b6000813590506133c1816148f4565b92915050565b6000813590506133d68161490b565b92915050565b6000815190506133eb8161490b565b92915050565b600082601f830112613406576134056143c2565b5b8135613416848260208601613319565b91505092915050565b600082601f830112613434576134336143c2565b5b813561344484826020860161335b565b91505092915050565b60008135905061345c81614922565b92915050565b600060208284031215613478576134776143d1565b5b60006134868482850161339d565b91505092915050565b600080604083850312156134a6576134a56143d1565b5b60006134b48582860161339d565b92505060206134c58582860161339d565b9150509250929050565b6000806000606084860312156134e8576134e76143d1565b5b60006134f68682870161339d565b93505060206135078682870161339d565b92505060406135188682870161344d565b9150509250925092565b6000806000806080858703121561353c5761353b6143d1565b5b600061354a8782880161339d565b945050602061355b8782880161339d565b935050604061356c8782880161344d565b925050606085013567ffffffffffffffff81111561358d5761358c6143cc565b5b613599878288016133f1565b91505092959194509250565b600080604083850312156135bc576135bb6143d1565b5b60006135ca8582860161339d565b92505060206135db858286016133b2565b9150509250929050565b600080604083850312156135fc576135fb6143d1565b5b600061360a8582860161339d565b925050602061361b8582860161344d565b9150509250929050565b60006020828403121561363b5761363a6143d1565b5b6000613649848285016133b2565b91505092915050565b600060208284031215613668576136676143d1565b5b6000613676848285016133c7565b91505092915050565b600060208284031215613695576136946143d1565b5b60006136a3848285016133dc565b91505092915050565b6000602082840312156136c2576136c16143d1565b5b600082013567ffffffffffffffff8111156136e0576136df6143cc565b5b6136ec8482850161341f565b91505092915050565b60006020828403121561370b5761370a6143d1565b5b60006137198482850161344d565b91505092915050565b600061372e8383613b4e565b60208301905092915050565b613743816140eb565b82525050565b600061375482613f6a565b61375e8185613f98565b935061376983613f45565b8060005b8381101561379a5781516137818882613722565b975061378c83613f8b565b92505060018101905061376d565b5085935050505092915050565b6137b0816140fd565b82525050565b60006137c182613f75565b6137cb8185613fa9565b93506137db81856020860161416e565b6137e4816143d6565b840191505092915050565b60006137fa82613f80565b6138048185613fba565b935061381481856020860161416e565b61381d816143d6565b840191505092915050565b600061383382613f80565b61383d8185613fcb565b935061384d81856020860161416e565b80840191505092915050565b60008154613866816141cb565b6138708186613fcb565b9450600182166000811461388b576001811461389c576138cf565b60ff198316865281860193506138cf565b6138a585613f55565b60005b838110156138c7578154818901526001820191506020810190506138a8565b838801955050505b50505092915050565b60006138e5602b83613fba565b91506138f0826143e7565b604082019050919050565b6000613908603283613fba565b915061391382614436565b604082019050919050565b600061392b602683613fba565b915061393682614485565b604082019050919050565b600061394e601c83613fba565b9150613959826144d4565b602082019050919050565b6000613971602483613fba565b915061397c826144fd565b604082019050919050565b6000613994601983613fba565b915061399f8261454c565b602082019050919050565b60006139b7602c83613fba565b91506139c282614575565b604082019050919050565b60006139da603883613fba565b91506139e5826145c4565b604082019050919050565b60006139fd602a83613fba565b9150613a0882614613565b604082019050919050565b6000613a20602983613fba565b9150613a2b82614662565b604082019050919050565b6000613a43602083613fba565b9150613a4e826146b1565b602082019050919050565b6000613a66602c83613fba565b9150613a71826146da565b604082019050919050565b6000613a89602083613fba565b9150613a9482614729565b602082019050919050565b6000613aac602983613fba565b9150613ab782614752565b604082019050919050565b6000613acf602f83613fba565b9150613ada826147a1565b604082019050919050565b6000613af2602183613fba565b9150613afd826147f0565b604082019050919050565b6000613b15603183613fba565b9150613b208261483f565b604082019050919050565b6000613b38602c83613fba565b9150613b438261488e565b604082019050919050565b613b5781614155565b82525050565b613b6681614155565b82525050565b6000613b788286613828565b9150613b848285613828565b9150613b908284613859565b9150819050949350505050565b6000602082019050613bb2600083018461373a565b92915050565b6000608082019050613bcd600083018761373a565b613bda602083018661373a565b613be76040830185613b5d565b8181036060830152613bf981846137b6565b905095945050505050565b60006020820190508181036000830152613c1e8184613749565b905092915050565b6000602082019050613c3b60008301846137a7565b92915050565b60006020820190508181036000830152613c5b81846137ef565b905092915050565b60006020820190508181036000830152613c7c816138d8565b9050919050565b60006020820190508181036000830152613c9c816138fb565b9050919050565b60006020820190508181036000830152613cbc8161391e565b9050919050565b60006020820190508181036000830152613cdc81613941565b9050919050565b60006020820190508181036000830152613cfc81613964565b9050919050565b60006020820190508181036000830152613d1c81613987565b9050919050565b60006020820190508181036000830152613d3c816139aa565b9050919050565b60006020820190508181036000830152613d5c816139cd565b9050919050565b60006020820190508181036000830152613d7c816139f0565b9050919050565b60006020820190508181036000830152613d9c81613a13565b9050919050565b60006020820190508181036000830152613dbc81613a36565b9050919050565b60006020820190508181036000830152613ddc81613a59565b9050919050565b60006020820190508181036000830152613dfc81613a7c565b9050919050565b60006020820190508181036000830152613e1c81613a9f565b9050919050565b60006020820190508181036000830152613e3c81613ac2565b9050919050565b60006020820190508181036000830152613e5c81613ae5565b9050919050565b60006020820190508181036000830152613e7c81613b08565b9050919050565b60006020820190508181036000830152613e9c81613b2b565b9050919050565b6000602082019050613eb86000830184613b5d565b92915050565b6000613ec8613ed9565b9050613ed482826141fd565b919050565b6000604051905090565b600067ffffffffffffffff821115613efe57613efd614393565b5b613f07826143d6565b9050602081019050919050565b600067ffffffffffffffff821115613f2f57613f2e614393565b5b613f38826143d6565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fe182614155565b9150613fec83614155565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614021576140206142a8565b5b828201905092915050565b600061403782614155565b915061404283614155565b925082614052576140516142d7565b5b828204905092915050565b600061406882614155565b915061407383614155565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ac576140ab6142a8565b5b828202905092915050565b60006140c282614155565b91506140cd83614155565b9250828210156140e0576140df6142a8565b5b828203905092915050565b60006140f682614135565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561418c578082015181840152602081019050614171565b8381111561419b576000848401525b50505050565b60006141ac82614155565b915060008214156141c0576141bf6142a8565b5b600182039050919050565b600060028204905060018216806141e357607f821691505b602082108114156141f7576141f6614306565b5b50919050565b614206826143d6565b810181811067ffffffffffffffff8211171561422557614224614393565b5b80604052505050565b600061423982614155565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561426c5761426b6142a8565b5b600182019050919050565b600061428282614155565b915061428d83614155565b92508261429d5761429c6142d7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6148e6816140eb565b81146148f157600080fd5b50565b6148fd816140fd565b811461490857600080fd5b50565b61491481614109565b811461491f57600080fd5b50565b61492b81614155565b811461493657600080fd5b5056fea26469706673582212203dd4dbc73295b115761ed987a5f99f07a8821a6ffc4e67a86112adf688951aa364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c43727970746f4e6f626c657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002434e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b506c616365686f6c646572000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f578063c6682862116100c1578063d936547e1161007a578063d936547e1461093a578063da3ef23f14610977578063e7b99ec7146109a0578063e985e9c5146109cb578063f2fde38b14610a08578063f9bc80d014610a315761027d565b8063c668286214610828578063c87b56dd14610853578063cfe684f514610890578063d2080ccd146108bb578063d49479eb146108e6578063d5abeb011461090f5761027d565b80638da5cb5b116101135780638da5cb5b1461073b57806395d89b4114610766578063a22cb46514610791578063a4dc7a05146107ba578063b88d4fde146107e3578063be24be5a1461080c5761027d565b8063715018a61461069d57806376344568146106b4578063769c3f1a146106dd5780637f00c7a614610708578063853828b6146107315761027d565b806330cc7ae0116101f357806355f804b3116101ac57806355f804b31461059a57806358957a33146105c35780635c975abb146105cd5780636352211e146105f85780636c0360eb1461063557806370a08231146106605761027d565b806330cc7ae01461048957806340c10f19146104b257806342842e0e146104ce578063438b6300146104f757806344a0d68a146105345780634f6ccce71461055d5761027d565b806313faede61161024557806313faede61461037957806318160ddd146103a4578063239c70ae146103cf57806323b872dd146103fa57806324558a5f146104235780632f745c591461044c5761027d565b806301ffc9a71461028257806302329a29146102bf57806306fdde03146102e8578063081812fc14610313578063095ea7b314610350575b600080fd5b34801561028e57600080fd5b506102a960048036038101906102a49190613652565b610a5c565b6040516102b69190613c26565b60405180910390f35b3480156102cb57600080fd5b506102e660048036038101906102e19190613625565b610a6e565b005b3480156102f457600080fd5b506102fd610b07565b60405161030a9190613c41565b60405180910390f35b34801561031f57600080fd5b5061033a600480360381019061033591906136f5565b610b99565b6040516103479190613b9d565b60405180910390f35b34801561035c57600080fd5b50610377600480360381019061037291906135e5565b610c1e565b005b34801561038557600080fd5b5061038e610d36565b60405161039b9190613ea3565b60405180910390f35b3480156103b057600080fd5b506103b9610d3c565b6040516103c69190613ea3565b60405180910390f35b3480156103db57600080fd5b506103e4610d49565b6040516103f19190613ea3565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906134cf565b610d4f565b005b34801561042f57600080fd5b5061044a600480360381019061044591906136f5565b610daf565b005b34801561045857600080fd5b50610473600480360381019061046e91906135e5565b610e35565b6040516104809190613ea3565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613462565b610eda565b005b6104cc60048036038101906104c791906135e5565b610fc9565b005b3480156104da57600080fd5b506104f560048036038101906104f091906134cf565b611098565b005b34801561050357600080fd5b5061051e60048036038101906105199190613462565b6110b8565b60405161052b9190613c04565b60405180910390f35b34801561054057600080fd5b5061055b600480360381019061055691906136f5565b611166565b005b34801561056957600080fd5b50610584600480360381019061057f91906136f5565b6111ec565b6040516105919190613ea3565b60405180910390f35b3480156105a657600080fd5b506105c160048036038101906105bc91906136ac565b61125d565b005b6105cb6112f3565b005b3480156105d957600080fd5b506105e26113ed565b6040516105ef9190613c26565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a91906136f5565b611400565b60405161062c9190613b9d565b60405180910390f35b34801561064157600080fd5b5061064a6114b2565b6040516106579190613c41565b60405180910390f35b34801561066c57600080fd5b5061068760048036038101906106829190613462565b611540565b6040516106949190613ea3565b60405180910390f35b3480156106a957600080fd5b506106b26115f8565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613625565b611680565b005b3480156106e957600080fd5b506106f2611719565b6040516106ff9190613c26565b60405180910390f35b34801561071457600080fd5b5061072f600480360381019061072a91906136f5565b61172c565b005b6107396117b2565b005b34801561074757600080fd5b5061075061186e565b60405161075d9190613b9d565b60405180910390f35b34801561077257600080fd5b5061077b611898565b6040516107889190613c41565b60405180910390f35b34801561079d57600080fd5b506107b860048036038101906107b391906135a5565b61192a565b005b3480156107c657600080fd5b506107e160048036038101906107dc9190613625565b611aab565b005b3480156107ef57600080fd5b5061080a60048036038101906108059190613522565b611b44565b005b610826600480360381019061082191906135e5565b611ba6565b005b34801561083457600080fd5b5061083d611cd3565b60405161084a9190613c41565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906136f5565b611d61565b6040516108879190613c41565b60405180910390f35b34801561089c57600080fd5b506108a5611e0b565b6040516108b29190613ea3565b60405180910390f35b3480156108c757600080fd5b506108d0611e11565b6040516108dd9190613c26565b60405180910390f35b3480156108f257600080fd5b5061090d600480360381019061090891906136f5565b611e24565b005b34801561091b57600080fd5b50610924611eaa565b6040516109319190613ea3565b60405180910390f35b34801561094657600080fd5b50610961600480360381019061095c9190613462565b611eb0565b60405161096e9190613c26565b60405180910390f35b34801561098357600080fd5b5061099e600480360381019061099991906136ac565b611ed0565b005b3480156109ac57600080fd5b506109b5611f66565b6040516109c29190613ea3565b60405180910390f35b3480156109d757600080fd5b506109f260048036038101906109ed919061348f565b611f6c565b6040516109ff9190613c26565b60405180910390f35b348015610a1457600080fd5b50610a2f6004803603810190610a2a9190613462565b612000565b005b348015610a3d57600080fd5b50610a466120f8565b604051610a539190613ea3565b60405180910390f35b6000610a67826120fe565b9050919050565b610a76612178565b73ffffffffffffffffffffffffffffffffffffffff16610a9461186e565b73ffffffffffffffffffffffffffffffffffffffff1614610aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae190613de3565b60405180910390fd5b80601460006101000a81548160ff02191690831515021790555050565b606060008054610b16906141cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b42906141cb565b8015610b8f5780601f10610b6457610100808354040283529160200191610b8f565b820191906000526020600020905b815481529060010190602001808311610b7257829003601f168201915b5050505050905090565b6000610ba482612180565b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90613dc3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c2982611400565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190613e43565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb9612178565b73ffffffffffffffffffffffffffffffffffffffff161480610ce85750610ce781610ce2612178565b611f6c565b5b610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90613d43565b60405180910390fd5b610d3183836121ec565b505050565b600d5481565b6000600880549050905090565b60105481565b610d60610d5a612178565b826122a5565b610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690613e63565b60405180910390fd5b610daa838383612383565b505050565b610db7612178565b73ffffffffffffffffffffffffffffffffffffffff16610dd561186e565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2290613de3565b60405180910390fd5b8060128190555050565b6000610e4083611540565b8210610e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7890613c63565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610ee2612178565b73ffffffffffffffffffffffffffffffffffffffff16610f0061186e565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d90613de3565b60405180910390fd5b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060116000815480929190610fc1906141a1565b919050555050565b6000610fd3610d3c565b9050601460009054906101000a900460ff1615610fef57600080fd5b60008211610ffc57600080fd5b60105482111561100b57600080fd5b3461102183600d546125df90919063ffffffff16565b111561102c57600080fd5b600f54828261103b9190613fd6565b111561104657600080fd5b6003611051846110b8565b511061105c57600080fd5b6000600190505b8281116110925761107f84828461107a9190613fd6565b6125f5565b808061108a9061422e565b915050611063565b50505050565b6110b383838360405180602001604052806000815250611b44565b505050565b606060006110c583611540565b905060008167ffffffffffffffff8111156110e3576110e2614393565b5b6040519080825280602002602001820160405280156111115781602001602082028036833780820191505090505b50905060005b8281101561115b576111298582610e35565b82828151811061113c5761113b614364565b5b60200260200101818152505080806111539061422e565b915050611117565b508092505050919050565b61116e612178565b73ffffffffffffffffffffffffffffffffffffffff1661118c61186e565b73ffffffffffffffffffffffffffffffffffffffff16146111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990613de3565b60405180910390fd5b80600d8190555050565b60006111f6610d3c565b8210611237576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122e90613e83565b60405180910390fd5b6008828154811061124b5761124a614364565b5b90600052602060002001549050919050565b611265612178565b73ffffffffffffffffffffffffffffffffffffffff1661128361186e565b73ffffffffffffffffffffffffffffffffffffffff16146112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613de3565b60405180910390fd5b80600b90805190602001906112ef929190613276565b5050565b6012546011541061130357600080fd5b60011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561136157600080fd5b601460029054906101000a900460ff161561137b57600080fd5b6001601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550601160008154809291906113e69061422e565b9190505550565b601460009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a090613d83565b60405180910390fd5b80915050919050565b600b80546114bf906141cb565b80601f01602080910402602001604051908101604052809291908181526020018280546114eb906141cb565b80156115385780601f1061150d57610100808354040283529160200191611538565b820191906000526020600020905b81548152906001019060200180831161151b57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a890613d63565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611600612178565b73ffffffffffffffffffffffffffffffffffffffff1661161e61186e565b73ffffffffffffffffffffffffffffffffffffffff1614611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90613de3565b60405180910390fd5b61167e6000612613565b565b611688612178565b73ffffffffffffffffffffffffffffffffffffffff166116a661186e565b73ffffffffffffffffffffffffffffffffffffffff16146116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613de3565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b601460019054906101000a900460ff1681565b611734612178565b73ffffffffffffffffffffffffffffffffffffffff1661175261186e565b73ffffffffffffffffffffffffffffffffffffffff16146117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90613de3565b60405180910390fd5b8060108190555050565b6117ba612178565b73ffffffffffffffffffffffffffffffffffffffff166117d861186e565b73ffffffffffffffffffffffffffffffffffffffff161461182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613de3565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061186c57600080fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a7906141cb565b80601f01602080910402602001604051908101604052809291908181526020018280546118d3906141cb565b80156119205780601f106118f557610100808354040283529160200191611920565b820191906000526020600020905b81548152906001019060200180831161190357829003601f168201915b5050505050905090565b611932612178565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613d03565b60405180910390fd5b80600560006119ad612178565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5a612178565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9f9190613c26565b60405180910390a35050565b611ab3612178565b73ffffffffffffffffffffffffffffffffffffffff16611ad161186e565b73ffffffffffffffffffffffffffffffffffffffff1614611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613de3565b60405180910390fd5b80601460016101000a81548160ff02191690831515021790555050565b611b55611b4f612178565b836122a5565b611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613e63565b60405180910390fd5b611ba0848484846126d9565b50505050565b6000611bb0610d3c565b9050601460019054906101000a900460ff1615611bcc57600080fd5b60001515601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415611c2a57600080fd5b60008211611c3757600080fd5b601054821115611c4657600080fd5b34611c5c83600e546125df90919063ffffffff16565b1115611c6757600080fd5b600f548282611c769190613fd6565b1115611c8157600080fd5b6003611c8c846110b8565b5110611c9757600080fd5b6000600190505b828111611ccd57611cba848284611cb59190613fd6565b6125f5565b8080611cc59061422e565b915050611c9e565b50505050565b600c8054611ce0906141cb565b80601f0160208091040260200160405190810160405280929190818152602001828054611d0c906141cb565b8015611d595780601f10611d2e57610100808354040283529160200191611d59565b820191906000526020600020905b815481529060010190602001808311611d3c57829003601f168201915b505050505081565b6060611d6c82612180565b611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613e23565b60405180910390fd5b6000611db5612735565b90506000815111611dd55760405180602001604052806000815250611e03565b80611ddf846127c7565b600c604051602001611df393929190613b6c565b6040516020818303038152906040525b915050919050565b60115481565b601460029054906101000a900460ff1681565b611e2c612178565b73ffffffffffffffffffffffffffffffffffffffff16611e4a61186e565b73ffffffffffffffffffffffffffffffffffffffff1614611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613de3565b60405180910390fd5b80600e8190555050565b600f5481565b60136020528060005260406000206000915054906101000a900460ff1681565b611ed8612178565b73ffffffffffffffffffffffffffffffffffffffff16611ef661186e565b73ffffffffffffffffffffffffffffffffffffffff1614611f4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4390613de3565b60405180910390fd5b80600c9080519060200190611f62929190613276565b5050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612008612178565b73ffffffffffffffffffffffffffffffffffffffff1661202661186e565b73ffffffffffffffffffffffffffffffffffffffff161461207c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207390613de3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e390613ca3565b60405180910390fd5b6120f581612613565b50565b60125481565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612171575061217082612928565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661225f83611400565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006122b082612180565b6122ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e690613d23565b60405180910390fd5b60006122fa83611400565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061236957508373ffffffffffffffffffffffffffffffffffffffff1661235184610b99565b73ffffffffffffffffffffffffffffffffffffffff16145b8061237a57506123798185611f6c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166123a382611400565b73ffffffffffffffffffffffffffffffffffffffff16146123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090613e03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246090613ce3565b60405180910390fd5b612474838383612a0a565b61247f6000826121ec565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124cf91906140b7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125269190613fd6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836125ed919061405d565b905092915050565b61260f828260405180602001604052806000815250612a1a565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6126e4848484612383565b6126f084848484612a75565b61272f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272690613c83565b60405180910390fd5b50505050565b6060600b8054612744906141cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612770906141cb565b80156127bd5780601f10612792576101008083540402835291602001916127bd565b820191906000526020600020905b8154815290600101906020018083116127a057829003601f168201915b5050505050905090565b6060600082141561280f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612923565b600082905060005b6000821461284157808061282a9061422e565b915050600a8261283a919061402c565b9150612817565b60008167ffffffffffffffff81111561285d5761285c614393565b5b6040519080825280601f01601f19166020018201604052801561288f5781602001600182028036833780820191505090505b5090505b6000851461291c576001826128a891906140b7565b9150600a856128b79190614277565b60306128c39190613fd6565b60f81b8183815181106128d9576128d8614364565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612915919061402c565b9450612893565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129f357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a035750612a0282612c0c565b5b9050919050565b612a15838383612c76565b505050565b612a248383612d8a565b612a316000848484612a75565b612a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6790613c83565b60405180910390fd5b505050565b6000612a968473ffffffffffffffffffffffffffffffffffffffff16612f58565b15612bff578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612abf612178565b8786866040518563ffffffff1660e01b8152600401612ae19493929190613bb8565b602060405180830381600087803b158015612afb57600080fd5b505af1925050508015612b2c57506040513d601f19601f82011682018060405250810190612b29919061367f565b60015b612baf573d8060008114612b5c576040519150601f19603f3d011682016040523d82523d6000602084013e612b61565b606091505b50600081511415612ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b9e90613c83565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c04565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612c81838383612f6b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612cc457612cbf81612f70565b612d03565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d0257612d018382612fb9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d4657612d4181613126565b612d85565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d8457612d8382826131f7565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df190613da3565b60405180910390fd5b612e0381612180565b15612e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3a90613cc3565b60405180910390fd5b612e4f60008383612a0a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e9f9190613fd6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fc684611540565b612fd091906140b7565b90506000600760008481526020019081526020016000205490508181146130b5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061313a91906140b7565b905060006009600084815260200190815260200160002054905060006008838154811061316a57613169614364565b5b90600052602060002001549050806008838154811061318c5761318b614364565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806131db576131da614335565b5b6001900381819060005260206000200160009055905550505050565b600061320283611540565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613282906141cb565b90600052602060002090601f0160209004810192826132a457600085556132eb565b82601f106132bd57805160ff19168380011785556132eb565b828001600101855582156132eb579182015b828111156132ea5782518255916020019190600101906132cf565b5b5090506132f891906132fc565b5090565b5b808211156133155760008160009055506001016132fd565b5090565b600061332c61332784613ee3565b613ebe565b905082815260208101848484011115613348576133476143c7565b5b61335384828561415f565b509392505050565b600061336e61336984613f14565b613ebe565b90508281526020810184848401111561338a576133896143c7565b5b61339584828561415f565b509392505050565b6000813590506133ac816148dd565b92915050565b6000813590506133c1816148f4565b92915050565b6000813590506133d68161490b565b92915050565b6000815190506133eb8161490b565b92915050565b600082601f830112613406576134056143c2565b5b8135613416848260208601613319565b91505092915050565b600082601f830112613434576134336143c2565b5b813561344484826020860161335b565b91505092915050565b60008135905061345c81614922565b92915050565b600060208284031215613478576134776143d1565b5b60006134868482850161339d565b91505092915050565b600080604083850312156134a6576134a56143d1565b5b60006134b48582860161339d565b92505060206134c58582860161339d565b9150509250929050565b6000806000606084860312156134e8576134e76143d1565b5b60006134f68682870161339d565b93505060206135078682870161339d565b92505060406135188682870161344d565b9150509250925092565b6000806000806080858703121561353c5761353b6143d1565b5b600061354a8782880161339d565b945050602061355b8782880161339d565b935050604061356c8782880161344d565b925050606085013567ffffffffffffffff81111561358d5761358c6143cc565b5b613599878288016133f1565b91505092959194509250565b600080604083850312156135bc576135bb6143d1565b5b60006135ca8582860161339d565b92505060206135db858286016133b2565b9150509250929050565b600080604083850312156135fc576135fb6143d1565b5b600061360a8582860161339d565b925050602061361b8582860161344d565b9150509250929050565b60006020828403121561363b5761363a6143d1565b5b6000613649848285016133b2565b91505092915050565b600060208284031215613668576136676143d1565b5b6000613676848285016133c7565b91505092915050565b600060208284031215613695576136946143d1565b5b60006136a3848285016133dc565b91505092915050565b6000602082840312156136c2576136c16143d1565b5b600082013567ffffffffffffffff8111156136e0576136df6143cc565b5b6136ec8482850161341f565b91505092915050565b60006020828403121561370b5761370a6143d1565b5b60006137198482850161344d565b91505092915050565b600061372e8383613b4e565b60208301905092915050565b613743816140eb565b82525050565b600061375482613f6a565b61375e8185613f98565b935061376983613f45565b8060005b8381101561379a5781516137818882613722565b975061378c83613f8b565b92505060018101905061376d565b5085935050505092915050565b6137b0816140fd565b82525050565b60006137c182613f75565b6137cb8185613fa9565b93506137db81856020860161416e565b6137e4816143d6565b840191505092915050565b60006137fa82613f80565b6138048185613fba565b935061381481856020860161416e565b61381d816143d6565b840191505092915050565b600061383382613f80565b61383d8185613fcb565b935061384d81856020860161416e565b80840191505092915050565b60008154613866816141cb565b6138708186613fcb565b9450600182166000811461388b576001811461389c576138cf565b60ff198316865281860193506138cf565b6138a585613f55565b60005b838110156138c7578154818901526001820191506020810190506138a8565b838801955050505b50505092915050565b60006138e5602b83613fba565b91506138f0826143e7565b604082019050919050565b6000613908603283613fba565b915061391382614436565b604082019050919050565b600061392b602683613fba565b915061393682614485565b604082019050919050565b600061394e601c83613fba565b9150613959826144d4565b602082019050919050565b6000613971602483613fba565b915061397c826144fd565b604082019050919050565b6000613994601983613fba565b915061399f8261454c565b602082019050919050565b60006139b7602c83613fba565b91506139c282614575565b604082019050919050565b60006139da603883613fba565b91506139e5826145c4565b604082019050919050565b60006139fd602a83613fba565b9150613a0882614613565b604082019050919050565b6000613a20602983613fba565b9150613a2b82614662565b604082019050919050565b6000613a43602083613fba565b9150613a4e826146b1565b602082019050919050565b6000613a66602c83613fba565b9150613a71826146da565b604082019050919050565b6000613a89602083613fba565b9150613a9482614729565b602082019050919050565b6000613aac602983613fba565b9150613ab782614752565b604082019050919050565b6000613acf602f83613fba565b9150613ada826147a1565b604082019050919050565b6000613af2602183613fba565b9150613afd826147f0565b604082019050919050565b6000613b15603183613fba565b9150613b208261483f565b604082019050919050565b6000613b38602c83613fba565b9150613b438261488e565b604082019050919050565b613b5781614155565b82525050565b613b6681614155565b82525050565b6000613b788286613828565b9150613b848285613828565b9150613b908284613859565b9150819050949350505050565b6000602082019050613bb2600083018461373a565b92915050565b6000608082019050613bcd600083018761373a565b613bda602083018661373a565b613be76040830185613b5d565b8181036060830152613bf981846137b6565b905095945050505050565b60006020820190508181036000830152613c1e8184613749565b905092915050565b6000602082019050613c3b60008301846137a7565b92915050565b60006020820190508181036000830152613c5b81846137ef565b905092915050565b60006020820190508181036000830152613c7c816138d8565b9050919050565b60006020820190508181036000830152613c9c816138fb565b9050919050565b60006020820190508181036000830152613cbc8161391e565b9050919050565b60006020820190508181036000830152613cdc81613941565b9050919050565b60006020820190508181036000830152613cfc81613964565b9050919050565b60006020820190508181036000830152613d1c81613987565b9050919050565b60006020820190508181036000830152613d3c816139aa565b9050919050565b60006020820190508181036000830152613d5c816139cd565b9050919050565b60006020820190508181036000830152613d7c816139f0565b9050919050565b60006020820190508181036000830152613d9c81613a13565b9050919050565b60006020820190508181036000830152613dbc81613a36565b9050919050565b60006020820190508181036000830152613ddc81613a59565b9050919050565b60006020820190508181036000830152613dfc81613a7c565b9050919050565b60006020820190508181036000830152613e1c81613a9f565b9050919050565b60006020820190508181036000830152613e3c81613ac2565b9050919050565b60006020820190508181036000830152613e5c81613ae5565b9050919050565b60006020820190508181036000830152613e7c81613b08565b9050919050565b60006020820190508181036000830152613e9c81613b2b565b9050919050565b6000602082019050613eb86000830184613b5d565b92915050565b6000613ec8613ed9565b9050613ed482826141fd565b919050565b6000604051905090565b600067ffffffffffffffff821115613efe57613efd614393565b5b613f07826143d6565b9050602081019050919050565b600067ffffffffffffffff821115613f2f57613f2e614393565b5b613f38826143d6565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fe182614155565b9150613fec83614155565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614021576140206142a8565b5b828201905092915050565b600061403782614155565b915061404283614155565b925082614052576140516142d7565b5b828204905092915050565b600061406882614155565b915061407383614155565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140ac576140ab6142a8565b5b828202905092915050565b60006140c282614155565b91506140cd83614155565b9250828210156140e0576140df6142a8565b5b828203905092915050565b60006140f682614135565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561418c578082015181840152602081019050614171565b8381111561419b576000848401525b50505050565b60006141ac82614155565b915060008214156141c0576141bf6142a8565b5b600182039050919050565b600060028204905060018216806141e357607f821691505b602082108114156141f7576141f6614306565b5b50919050565b614206826143d6565b810181811067ffffffffffffffff8211171561422557614224614393565b5b80604052505050565b600061423982614155565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561426c5761426b6142a8565b5b600182019050919050565b600061428282614155565b915061428d83614155565b92508261429d5761429c6142d7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6148e6816140eb565b81146148f157600080fd5b50565b6148fd816140fd565b811461490857600080fd5b50565b61491481614109565b811461491f57600080fd5b50565b61492b81614155565b811461493657600080fd5b5056fea26469706673582212203dd4dbc73295b115761ed987a5f99f07a8821a6ffc4e67a86112adf688951aa364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c43727970746f4e6f626c657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002434e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b506c616365686f6c646572000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CryptoNobles
Arg [1] : _symbol (string): CN
Arg [2] : _initBaseURI (string): Placeholder

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 43727970746f4e6f626c65730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 434e000000000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 506c616365686f6c646572000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49536:4489:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50609:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53243:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23910:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25469:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24992:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49729:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36575:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49848:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26359:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52873:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36243:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53772:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50803:442;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26769:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51774:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52557:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36765:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53011:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53528:237;;;:::i;:::-;;50015:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23604:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49661:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23334:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20193:94;;;;;;;;;;;;;:::i;:::-;;53429:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50045:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52747:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53903:119;;;:::i;:::-;;19542:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24079:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25762:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53322:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27025:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51251:517;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49687:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52128:423;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49885:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50088;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52643:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49812:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49967:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53115:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49766:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26128:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20442:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49924:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50609:175;50720:4;50742:36;50766:11;50742:23;:36::i;:::-;50735:43;;50609:175;;;:::o;53243:73::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53304:6:::1;53295;;:15;;;;;;;;;;;;;;;;;;53243:73:::0;:::o;23910:100::-;23964:13;23997:5;23990:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23910:100;:::o;25469:221::-;25545:7;25573:16;25581:7;25573;:16::i;:::-;25565:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25658:15;:24;25674:7;25658:24;;;;;;;;;;;;;;;;;;;;;25651:31;;25469:221;;;:::o;24992:411::-;25073:13;25089:23;25104:7;25089:14;:23::i;:::-;25073:39;;25137:5;25131:11;;:2;:11;;;;25123:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25231:5;25215:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25240:37;25257:5;25264:12;:10;:12::i;:::-;25240:16;:37::i;:::-;25215:62;25193:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25374:21;25383:2;25387:7;25374:8;:21::i;:::-;25062:341;24992:411;;:::o;49729:32::-;;;;:::o;36575:113::-;36636:7;36663:10;:17;;;;36656:24;;36575:113;:::o;49848:32::-;;;;:::o;26359:339::-;26554:41;26573:12;:10;:12::i;:::-;26587:7;26554:18;:41::i;:::-;26546:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26662:28;26672:4;26678:2;26682:7;26662:9;:28::i;:::-;26359:339;;;:::o;52873:132::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52978:21:::1;52958:17;:41;;;;52873:132:::0;:::o;36243:256::-;36340:7;36376:23;36393:5;36376:16;:23::i;:::-;36368:5;:31;36360:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36465:12;:19;36478:5;36465:19;;;;;;;;;;;;;;;:26;36485:5;36465:26;;;;;;;;;;;;36458:33;;36243:256;;;;:::o;53772:125::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53861:5:::1;53840:11;:18;53852:5;53840:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;53873:15;;:18;;;;;;;;;:::i;:::-;;;;;;53772:125:::0;:::o;50803:442::-;50873:14;50890:13;:11;:13::i;:::-;50873:30;;50919:6;;;;;;;;;;;50918:7;50910:16;;;;;;50955:1;50941:11;:15;50933:24;;;;;;50987:13;;50972:11;:28;;50964:37;;;;;;51043:9;51017:21;51026:11;51017:4;;:8;;:21;;;;:::i;:::-;51016:36;;51008:45;;;;;;51092:9;;51077:11;51068:6;:20;;;;:::i;:::-;:33;;51060:42;;;;;;51145:1;51117:18;51131:3;51117:13;:18::i;:::-;:25;:29;51109:38;;;;;;51159:9;51171:1;51159:13;;51154:86;51179:11;51174:1;:16;51154:86;;51206:26;51216:3;51230:1;51221:6;:10;;;;:::i;:::-;51206:9;:26::i;:::-;51192:3;;;;;:::i;:::-;;;;51154:86;;;;50866:379;50803:442;;:::o;26769:185::-;26907:39;26924:4;26930:2;26934:7;26907:39;;;;;;;;;;;;:16;:39::i;:::-;26769:185;;;:::o;51774:348::-;51849:16;51877:23;51903:17;51913:6;51903:9;:17::i;:::-;51877:43;;51927:25;51969:15;51955:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51927:58;;51997:9;51992:103;52012:15;52008:1;:19;51992:103;;;52057:30;52077:6;52085:1;52057:19;:30::i;:::-;52043:8;52052:1;52043:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;52029:3;;;;;:::i;:::-;;;;51992:103;;;;52108:8;52101:15;;;;51774:348;;;:::o;52557:80::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52623:8:::1;52616:4;:15;;;;52557:80:::0;:::o;36765:233::-;36840:7;36876:30;:28;:30::i;:::-;36868:5;:38;36860:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;36973:10;36984:5;36973:17;;;;;;;;:::i;:::-;;;;;;;;;;36966:24;;36765:233;;;:::o;53011:98::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53092:11:::1;53082:7;:21;;;;;;;;;;;;:::i;:::-;;53011:98:::0;:::o;53528:237::-;53601:17;;53583:15;;:35;53575:44;;;;;;53661:4;53634:31;;:11;:23;53646:10;53634:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;;53626:40;;;;;;53682:14;;;;;;;;;;;53681:15;53673:24;;;;;;53730:4;53704:11;:23;53716:10;53704:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;53741:15;;:18;;;;;;;;;:::i;:::-;;;;;;53528:237::o;50015:25::-;;;;;;;;;;;;;:::o;23604:239::-;23676:7;23696:13;23712:7;:16;23720:7;23712:16;;;;;;;;;;;;;;;;;;;;;23696:32;;23764:1;23747:19;;:5;:19;;;;23739:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23830:5;23823:12;;;23604:239;;;:::o;49661:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23334:208::-;23406:7;23451:1;23434:19;;:5;:19;;;;23426:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23518:9;:16;23528:5;23518:16;;;;;;;;;;;;;;;;23511:23;;23334:208;;;:::o;20193:94::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20258:21:::1;20276:1;20258:9;:21::i;:::-;20193:94::o:0;53429:93::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53510:6:::1;53493:14;;:23;;;;;;;;;;;;;;;;;;53429:93:::0;:::o;50045:37::-;;;;;;;;;;;;;:::o;52747:116::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52840:17:::1;52824:13;:33;;;;52747:116:::0;:::o;53903:119::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53976:10:::1;53968:24;;:47;53993:21;53968:47;;;;;;;;;;;;;;;;;;;;;;;53960:56;;;::::0;::::1;;53903:119::o:0;19542:87::-;19588:7;19615:6;;;;;;;;;;;19608:13;;19542:87;:::o;24079:104::-;24135:13;24168:7;24161:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24079:104;:::o;25762:295::-;25877:12;:10;:12::i;:::-;25865:24;;:8;:24;;;;25857:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25977:8;25932:18;:32;25951:12;:10;:12::i;:::-;25932:32;;;;;;;;;;;;;;;:42;25965:8;25932:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26030:8;26001:48;;26016:12;:10;:12::i;:::-;26001:48;;;26040:8;26001:48;;;;;;:::i;:::-;;;;;;;;25762:295;;:::o;53322:101::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53411:6:::1;53390:18;;:27;;;;;;;;;;;;;;;;;;53322:101:::0;:::o;27025:328::-;27200:41;27219:12;:10;:12::i;:::-;27233:7;27200:18;:41::i;:::-;27192:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27306:39;27320:4;27326:2;27330:7;27339:5;27306:13;:39::i;:::-;27025:328;;;;:::o;51251:517::-;51334:14;51351:13;:11;:13::i;:::-;51334:30;;51380:18;;;;;;;;;;;51379:19;51371:28;;;;;;51434:5;51414:25;;:11;:16;51426:3;51414:16;;;;;;;;;;;;;;;;;;;;;;;;;:25;;;;51406:34;;;;;;51469:1;51455:11;:15;51447:24;;;;;;51501:13;;51486:11;:28;;51478:37;;;;;;51566:9;51531:30;51549:11;51531:13;;:17;;:30;;;;:::i;:::-;51530:45;;51522:54;;;;;;51615:9;;51600:11;51591:6;:20;;;;:::i;:::-;:33;;51583:42;;;;;;51668:1;51640:18;51654:3;51640:13;:18::i;:::-;:25;:29;51632:38;;;;;;51682:9;51694:1;51682:13;;51677:86;51702:11;51697:1;:16;51677:86;;51729:26;51739:3;51753:1;51744:6;:10;;;;:::i;:::-;51729:9;:26::i;:::-;51715:3;;;;;:::i;:::-;;;;51677:86;;;;51327:441;51251:517;;:::o;49687:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52128:423::-;52226:13;52267:16;52275:7;52267;:16::i;:::-;52251:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;52357:28;52388:10;:8;:10::i;:::-;52357:41;;52443:1;52418:14;52412:28;:32;:133;;;;;;;;;;;;;;;;;52480:14;52496:18;:7;:16;:18::i;:::-;52516:13;52463:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52412:133;52405:140;;;52128:423;;;:::o;49885:34::-;;;;:::o;50088:::-;;;;;;;;;;;;;:::o;52643:98::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52727:8:::1;52711:13;:24;;;;52643:98:::0;:::o;49812:31::-;;;;:::o;49967:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;53115:122::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53214:17:::1;53198:13;:33;;;;;;;;;;;;:::i;:::-;;53115:122:::0;:::o;49766:41::-;;;;:::o;26128:164::-;26225:4;26249:18;:25;26268:5;26249:25;;;;;;;;;;;;;;;:35;26275:8;26249:35;;;;;;;;;;;;;;;;;;;;;;;;;26242:42;;26128:164;;;;:::o;20442:192::-;19773:12;:10;:12::i;:::-;19762:23;;:7;:5;:7::i;:::-;:23;;;19754:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20551:1:::1;20531:22;;:8;:22;;;;20523:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20607:19;20617:8;20607:9;:19::i;:::-;20442:192:::0;:::o;49924:38::-;;;;:::o;35935:224::-;36037:4;36076:35;36061:50;;;:11;:50;;;;:90;;;;36115:36;36139:11;36115:23;:36::i;:::-;36061:90;36054:97;;35935:224;;;:::o;18391:98::-;18444:7;18471:10;18464:17;;18391:98;:::o;28863:127::-;28928:4;28980:1;28952:30;;:7;:16;28960:7;28952:16;;;;;;;;;;;;;;;;;;;;;:30;;;;28945:37;;28863:127;;;:::o;32845:174::-;32947:2;32920:15;:24;32936:7;32920:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33003:7;32999:2;32965:46;;32974:23;32989:7;32974:14;:23::i;:::-;32965:46;;;;;;;;;;;;32845:174;;:::o;29157:348::-;29250:4;29275:16;29283:7;29275;:16::i;:::-;29267:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29351:13;29367:23;29382:7;29367:14;:23::i;:::-;29351:39;;29420:5;29409:16;;:7;:16;;;:51;;;;29453:7;29429:31;;:20;29441:7;29429:11;:20::i;:::-;:31;;;29409:51;:87;;;;29464:32;29481:5;29488:7;29464:16;:32::i;:::-;29409:87;29401:96;;;29157:348;;;;:::o;32149:578::-;32308:4;32281:31;;:23;32296:7;32281:14;:23::i;:::-;:31;;;32273:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32391:1;32377:16;;:2;:16;;;;32369:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32447:39;32468:4;32474:2;32478:7;32447:20;:39::i;:::-;32551:29;32568:1;32572:7;32551:8;:29::i;:::-;32612:1;32593:9;:15;32603:4;32593:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;32641:1;32624:9;:13;32634:2;32624:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32672:2;32653:7;:16;32661:7;32653:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32711:7;32707:2;32692:27;;32701:4;32692:27;;;;;;;;;;;;32149:578;;;:::o;45447:98::-;45505:7;45536:1;45532;:5;;;;:::i;:::-;45525:12;;45447:98;;;;:::o;29847:110::-;29923:26;29933:2;29937:7;29923:26;;;;;;;;;;;;:9;:26::i;:::-;29847:110;;:::o;20642:173::-;20698:16;20717:6;;;;;;;;;;;20698:25;;20743:8;20734:6;;:17;;;;;;;;;;;;;;;;;;20798:8;20767:40;;20788:8;20767:40;;;;;;;;;;;;20687:128;20642:173;:::o;28235:315::-;28392:28;28402:4;28408:2;28412:7;28392:9;:28::i;:::-;28439:48;28462:4;28468:2;28472:7;28481:5;28439:22;:48::i;:::-;28431:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28235:315;;;;:::o;50315:102::-;50375:13;50404:7;50397:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50315:102;:::o;8240:723::-;8296:13;8526:1;8517:5;:10;8513:53;;;8544:10;;;;;;;;;;;;;;;;;;;;;8513:53;8576:12;8591:5;8576:20;;8607:14;8632:78;8647:1;8639:4;:9;8632:78;;8665:8;;;;;:::i;:::-;;;;8696:2;8688:10;;;;;:::i;:::-;;;8632:78;;;8720:19;8752:6;8742:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8720:39;;8770:154;8786:1;8777:5;:10;8770:154;;8814:1;8804:11;;;;;:::i;:::-;;;8881:2;8873:5;:10;;;;:::i;:::-;8860:2;:24;;;;:::i;:::-;8847:39;;8830:6;8837;8830:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8910:2;8901:11;;;;;:::i;:::-;;;8770:154;;;8948:6;8934:21;;;;;8240:723;;;;:::o;22965:305::-;23067:4;23119:25;23104:40;;;:11;:40;;;;:105;;;;23176:33;23161:48;;;:11;:48;;;;23104:105;:158;;;;23226:36;23250:11;23226:23;:36::i;:::-;23104:158;23084:178;;22965:305;;;:::o;50426:177::-;50552:45;50579:4;50585:2;50589:7;50552:26;:45::i;:::-;50426:177;;;:::o;30184:321::-;30314:18;30320:2;30324:7;30314:5;:18::i;:::-;30365:54;30396:1;30400:2;30404:7;30413:5;30365:22;:54::i;:::-;30343:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;30184:321;;;:::o;33584:803::-;33739:4;33760:15;:2;:13;;;:15::i;:::-;33756:624;;;33812:2;33796:36;;;33833:12;:10;:12::i;:::-;33847:4;33853:7;33862:5;33796:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;33792:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34059:1;34042:6;:13;:18;34038:272;;;34085:60;;;;;;;;;;:::i;:::-;;;;;;;;34038:272;34260:6;34254:13;34245:6;34241:2;34237:15;34230:38;33792:533;33929:45;;;33919:55;;;:6;:55;;;;33912:62;;;;;33756:624;34364:4;34357:11;;33584:803;;;;;;;:::o;21547:157::-;21632:4;21671:25;21656:40;;;:11;:40;;;;21649:47;;21547:157;;;:::o;37611:589::-;37755:45;37782:4;37788:2;37792:7;37755:26;:45::i;:::-;37833:1;37817:18;;:4;:18;;;37813:187;;;37852:40;37884:7;37852:31;:40::i;:::-;37813:187;;;37922:2;37914:10;;:4;:10;;;37910:90;;37941:47;37974:4;37980:7;37941:32;:47::i;:::-;37910:90;37813:187;38028:1;38014:16;;:2;:16;;;38010:183;;;38047:45;38084:7;38047:36;:45::i;:::-;38010:183;;;38120:4;38114:10;;:2;:10;;;38110:83;;38141:40;38169:2;38173:7;38141:27;:40::i;:::-;38110:83;38010:183;37611:589;;;:::o;30841:382::-;30935:1;30921:16;;:2;:16;;;;30913:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;30994:16;31002:7;30994;:16::i;:::-;30993:17;30985:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31056:45;31085:1;31089:2;31093:7;31056:20;:45::i;:::-;31131:1;31114:9;:13;31124:2;31114:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31162:2;31143:7;:16;31151:7;31143:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31207:7;31203:2;31182:33;;31199:1;31182:33;;;;;;;;;;;;30841:382;;:::o;10709:387::-;10769:4;10977:12;11044:7;11032:20;11024:28;;11087:1;11080:4;:8;11073:15;;;10709:387;;;:::o;34959:126::-;;;;:::o;38923:164::-;39027:10;:17;;;;39000:15;:24;39016:7;39000:24;;;;;;;;;;;:44;;;;39055:10;39071:7;39055:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38923:164;:::o;39714:988::-;39980:22;40030:1;40005:22;40022:4;40005:16;:22::i;:::-;:26;;;;:::i;:::-;39980:51;;40042:18;40063:17;:26;40081:7;40063:26;;;;;;;;;;;;40042:47;;40210:14;40196:10;:28;40192:328;;40241:19;40263:12;:18;40276:4;40263:18;;;;;;;;;;;;;;;:34;40282:14;40263:34;;;;;;;;;;;;40241:56;;40347:11;40314:12;:18;40327:4;40314:18;;;;;;;;;;;;;;;:30;40333:10;40314:30;;;;;;;;;;;:44;;;;40464:10;40431:17;:30;40449:11;40431:30;;;;;;;;;;;:43;;;;40226:294;40192:328;40616:17;:26;40634:7;40616:26;;;;;;;;;;;40609:33;;;40660:12;:18;40673:4;40660:18;;;;;;;;;;;;;;;:34;40679:14;40660:34;;;;;;;;;;;40653:41;;;39795:907;;39714:988;;:::o;40997:1079::-;41250:22;41295:1;41275:10;:17;;;;:21;;;;:::i;:::-;41250:46;;41307:18;41328:15;:24;41344:7;41328:24;;;;;;;;;;;;41307:45;;41679:19;41701:10;41712:14;41701:26;;;;;;;;:::i;:::-;;;;;;;;;;41679:48;;41765:11;41740:10;41751;41740:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;41876:10;41845:15;:28;41861:11;41845:28;;;;;;;;;;;:41;;;;42017:15;:24;42033:7;42017:24;;;;;;;;;;;42010:31;;;42052:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41068:1008;;;40997:1079;:::o;38501:221::-;38586:14;38603:20;38620:2;38603:16;:20::i;:::-;38586:37;;38661:7;38634:12;:16;38647:2;38634:16;;;;;;;;;;;;;;;:24;38651:6;38634:24;;;;;;;;;;;:34;;;;38708:6;38679:17;:26;38697:7;38679:26;;;;;;;;;;;:35;;;;38575:147;38501:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:108::-;17446:24;17464:5;17446:24;:::i;:::-;17441:3;17434:37;17369:108;;:::o;17483:118::-;17570:24;17588:5;17570:24;:::i;:::-;17565:3;17558:37;17483:118;;:::o;17607:589::-;17832:3;17854:95;17945:3;17936:6;17854:95;:::i;:::-;17847:102;;17966:95;18057:3;18048:6;17966:95;:::i;:::-;17959:102;;18078:92;18166:3;18157:6;18078:92;:::i;:::-;18071:99;;18187:3;18180:10;;17607:589;;;;;;:::o;18202:222::-;18295:4;18333:2;18322:9;18318:18;18310:26;;18346:71;18414:1;18403:9;18399:17;18390:6;18346:71;:::i;:::-;18202:222;;;;:::o;18430:640::-;18625:4;18663:3;18652:9;18648:19;18640:27;;18677:71;18745:1;18734:9;18730:17;18721:6;18677:71;:::i;:::-;18758:72;18826:2;18815:9;18811:18;18802:6;18758:72;:::i;:::-;18840;18908:2;18897:9;18893:18;18884:6;18840:72;:::i;:::-;18959:9;18953:4;18949:20;18944:2;18933:9;18929:18;18922:48;18987:76;19058:4;19049:6;18987:76;:::i;:::-;18979:84;;18430:640;;;;;;;:::o;19076:373::-;19219:4;19257:2;19246:9;19242:18;19234:26;;19306:9;19300:4;19296:20;19292:1;19281:9;19277:17;19270:47;19334:108;19437:4;19428:6;19334:108;:::i;:::-;19326:116;;19076:373;;;;:::o;19455:210::-;19542:4;19580:2;19569:9;19565:18;19557:26;;19593:65;19655:1;19644:9;19640:17;19631:6;19593:65;:::i;:::-;19455:210;;;;:::o;19671:313::-;19784:4;19822:2;19811:9;19807:18;19799:26;;19871:9;19865:4;19861:20;19857:1;19846:9;19842:17;19835:47;19899:78;19972:4;19963:6;19899:78;:::i;:::-;19891:86;;19671:313;;;;:::o;19990:419::-;20156:4;20194:2;20183:9;20179:18;20171:26;;20243:9;20237:4;20233:20;20229:1;20218:9;20214:17;20207:47;20271:131;20397:4;20271:131;:::i;:::-;20263:139;;19990:419;;;:::o;20415:::-;20581:4;20619:2;20608:9;20604:18;20596:26;;20668:9;20662:4;20658:20;20654:1;20643:9;20639:17;20632:47;20696:131;20822:4;20696:131;:::i;:::-;20688:139;;20415:419;;;:::o;20840:::-;21006:4;21044:2;21033:9;21029:18;21021:26;;21093:9;21087:4;21083:20;21079:1;21068:9;21064:17;21057:47;21121:131;21247:4;21121:131;:::i;:::-;21113:139;;20840:419;;;:::o;21265:::-;21431:4;21469:2;21458:9;21454:18;21446:26;;21518:9;21512:4;21508:20;21504:1;21493:9;21489:17;21482:47;21546:131;21672:4;21546:131;:::i;:::-;21538:139;;21265:419;;;:::o;21690:::-;21856:4;21894:2;21883:9;21879:18;21871:26;;21943:9;21937:4;21933:20;21929:1;21918:9;21914:17;21907:47;21971:131;22097:4;21971:131;:::i;:::-;21963:139;;21690:419;;;:::o;22115:::-;22281:4;22319:2;22308:9;22304:18;22296:26;;22368:9;22362:4;22358:20;22354:1;22343:9;22339:17;22332:47;22396:131;22522:4;22396:131;:::i;:::-;22388:139;;22115:419;;;:::o;22540:::-;22706:4;22744:2;22733:9;22729:18;22721:26;;22793:9;22787:4;22783:20;22779:1;22768:9;22764:17;22757:47;22821:131;22947:4;22821:131;:::i;:::-;22813:139;;22540:419;;;:::o;22965:::-;23131:4;23169:2;23158:9;23154:18;23146:26;;23218:9;23212:4;23208:20;23204:1;23193:9;23189:17;23182:47;23246:131;23372:4;23246:131;:::i;:::-;23238:139;;22965:419;;;:::o;23390:::-;23556:4;23594:2;23583:9;23579:18;23571:26;;23643:9;23637:4;23633:20;23629:1;23618:9;23614:17;23607:47;23671:131;23797:4;23671:131;:::i;:::-;23663:139;;23390:419;;;:::o;23815:::-;23981:4;24019:2;24008:9;24004:18;23996:26;;24068:9;24062:4;24058:20;24054:1;24043:9;24039:17;24032:47;24096:131;24222:4;24096:131;:::i;:::-;24088:139;;23815:419;;;:::o;24240:::-;24406:4;24444:2;24433:9;24429:18;24421:26;;24493:9;24487:4;24483:20;24479:1;24468:9;24464:17;24457:47;24521:131;24647:4;24521:131;:::i;:::-;24513:139;;24240:419;;;:::o;24665:::-;24831:4;24869:2;24858:9;24854:18;24846:26;;24918:9;24912:4;24908:20;24904:1;24893:9;24889:17;24882:47;24946:131;25072:4;24946:131;:::i;:::-;24938:139;;24665:419;;;:::o;25090:::-;25256:4;25294:2;25283:9;25279:18;25271:26;;25343:9;25337:4;25333:20;25329:1;25318:9;25314:17;25307:47;25371:131;25497:4;25371:131;:::i;:::-;25363:139;;25090:419;;;:::o;25515:::-;25681:4;25719:2;25708:9;25704:18;25696:26;;25768:9;25762:4;25758:20;25754:1;25743:9;25739:17;25732:47;25796:131;25922:4;25796:131;:::i;:::-;25788:139;;25515:419;;;:::o;25940:::-;26106:4;26144:2;26133:9;26129:18;26121:26;;26193:9;26187:4;26183:20;26179:1;26168:9;26164:17;26157:47;26221:131;26347:4;26221:131;:::i;:::-;26213:139;;25940:419;;;:::o;26365:::-;26531:4;26569:2;26558:9;26554:18;26546:26;;26618:9;26612:4;26608:20;26604:1;26593:9;26589:17;26582:47;26646:131;26772:4;26646:131;:::i;:::-;26638:139;;26365:419;;;:::o;26790:::-;26956:4;26994:2;26983:9;26979:18;26971:26;;27043:9;27037:4;27033:20;27029:1;27018:9;27014:17;27007:47;27071:131;27197:4;27071:131;:::i;:::-;27063:139;;26790:419;;;:::o;27215:::-;27381:4;27419:2;27408:9;27404:18;27396:26;;27468:9;27462:4;27458:20;27454:1;27443:9;27439:17;27432:47;27496:131;27622:4;27496:131;:::i;:::-;27488:139;;27215:419;;;:::o;27640:222::-;27733:4;27771:2;27760:9;27756:18;27748:26;;27784:71;27852:1;27841:9;27837:17;27828:6;27784:71;:::i;:::-;27640:222;;;;:::o;27868:129::-;27902:6;27929:20;;:::i;:::-;27919:30;;27958:33;27986:4;27978:6;27958:33;:::i;:::-;27868:129;;;:::o;28003:75::-;28036:6;28069:2;28063:9;28053:19;;28003:75;:::o;28084:307::-;28145:4;28235:18;28227:6;28224:30;28221:56;;;28257:18;;:::i;:::-;28221:56;28295:29;28317:6;28295:29;:::i;:::-;28287:37;;28379:4;28373;28369:15;28361:23;;28084:307;;;:::o;28397:308::-;28459:4;28549:18;28541:6;28538:30;28535:56;;;28571:18;;:::i;:::-;28535:56;28609:29;28631:6;28609:29;:::i;:::-;28601:37;;28693:4;28687;28683:15;28675:23;;28397:308;;;:::o;28711:132::-;28778:4;28801:3;28793:11;;28831:4;28826:3;28822:14;28814:22;;28711:132;;;:::o;28849:141::-;28898:4;28921:3;28913:11;;28944:3;28941:1;28934:14;28978:4;28975:1;28965:18;28957:26;;28849:141;;;:::o;28996:114::-;29063:6;29097:5;29091:12;29081:22;;28996:114;;;:::o;29116:98::-;29167:6;29201:5;29195:12;29185:22;;29116:98;;;:::o;29220:99::-;29272:6;29306:5;29300:12;29290:22;;29220:99;;;:::o;29325:113::-;29395:4;29427;29422:3;29418:14;29410:22;;29325:113;;;:::o;29444:184::-;29543:11;29577:6;29572:3;29565:19;29617:4;29612:3;29608:14;29593:29;;29444:184;;;;:::o;29634:168::-;29717:11;29751:6;29746:3;29739:19;29791:4;29786:3;29782:14;29767:29;;29634:168;;;;:::o;29808:169::-;29892:11;29926:6;29921:3;29914:19;29966:4;29961:3;29957:14;29942:29;;29808:169;;;;:::o;29983:148::-;30085:11;30122:3;30107:18;;29983:148;;;;:::o;30137:305::-;30177:3;30196:20;30214:1;30196:20;:::i;:::-;30191:25;;30230:20;30248:1;30230:20;:::i;:::-;30225:25;;30384:1;30316:66;30312:74;30309:1;30306:81;30303:107;;;30390:18;;:::i;:::-;30303:107;30434:1;30431;30427:9;30420:16;;30137:305;;;;:::o;30448:185::-;30488:1;30505:20;30523:1;30505:20;:::i;:::-;30500:25;;30539:20;30557:1;30539:20;:::i;:::-;30534:25;;30578:1;30568:35;;30583:18;;:::i;:::-;30568:35;30625:1;30622;30618:9;30613:14;;30448:185;;;;:::o;30639:348::-;30679:7;30702:20;30720:1;30702:20;:::i;:::-;30697:25;;30736:20;30754:1;30736:20;:::i;:::-;30731:25;;30924:1;30856:66;30852:74;30849:1;30846:81;30841:1;30834:9;30827:17;30823:105;30820:131;;;30931:18;;:::i;:::-;30820:131;30979:1;30976;30972:9;30961:20;;30639:348;;;;:::o;30993:191::-;31033:4;31053:20;31071:1;31053:20;:::i;:::-;31048:25;;31087:20;31105:1;31087:20;:::i;:::-;31082:25;;31126:1;31123;31120:8;31117:34;;;31131:18;;:::i;:::-;31117:34;31176:1;31173;31169:9;31161:17;;30993:191;;;;:::o;31190:96::-;31227:7;31256:24;31274:5;31256:24;:::i;:::-;31245:35;;31190:96;;;:::o;31292:90::-;31326:7;31369:5;31362:13;31355:21;31344:32;;31292:90;;;:::o;31388:149::-;31424:7;31464:66;31457:5;31453:78;31442:89;;31388:149;;;:::o;31543:126::-;31580:7;31620:42;31613:5;31609:54;31598:65;;31543:126;;;:::o;31675:77::-;31712:7;31741:5;31730:16;;31675:77;;;:::o;31758:154::-;31842:6;31837:3;31832;31819:30;31904:1;31895:6;31890:3;31886:16;31879:27;31758:154;;;:::o;31918:307::-;31986:1;31996:113;32010:6;32007:1;32004:13;31996:113;;;32095:1;32090:3;32086:11;32080:18;32076:1;32071:3;32067:11;32060:39;32032:2;32029:1;32025:10;32020:15;;31996:113;;;32127:6;32124:1;32121:13;32118:101;;;32207:1;32198:6;32193:3;32189:16;32182:27;32118:101;31967:258;31918:307;;;:::o;32231:171::-;32270:3;32293:24;32311:5;32293:24;:::i;:::-;32284:33;;32339:4;32332:5;32329:15;32326:41;;;32347:18;;:::i;:::-;32326:41;32394:1;32387:5;32383:13;32376:20;;32231:171;;;:::o;32408:320::-;32452:6;32489:1;32483:4;32479:12;32469:22;;32536:1;32530:4;32526:12;32557:18;32547:81;;32613:4;32605:6;32601:17;32591:27;;32547:81;32675:2;32667:6;32664:14;32644:18;32641:38;32638:84;;;32694:18;;:::i;:::-;32638:84;32459:269;32408:320;;;:::o;32734:281::-;32817:27;32839:4;32817:27;:::i;:::-;32809:6;32805:40;32947:6;32935:10;32932:22;32911:18;32899:10;32896:34;32893:62;32890:88;;;32958:18;;:::i;:::-;32890:88;32998:10;32994:2;32987:22;32777:238;32734:281;;:::o;33021:233::-;33060:3;33083:24;33101:5;33083:24;:::i;:::-;33074:33;;33129:66;33122:5;33119:77;33116:103;;;33199:18;;:::i;:::-;33116:103;33246:1;33239:5;33235:13;33228:20;;33021:233;;;:::o;33260:176::-;33292:1;33309:20;33327:1;33309:20;:::i;:::-;33304:25;;33343:20;33361:1;33343:20;:::i;:::-;33338:25;;33382:1;33372:35;;33387:18;;:::i;:::-;33372:35;33428:1;33425;33421:9;33416:14;;33260:176;;;;:::o;33442:180::-;33490:77;33487:1;33480:88;33587:4;33584:1;33577:15;33611:4;33608:1;33601:15;33628:180;33676:77;33673:1;33666:88;33773:4;33770:1;33763:15;33797:4;33794:1;33787:15;33814:180;33862:77;33859:1;33852:88;33959:4;33956:1;33949:15;33983:4;33980:1;33973:15;34000:180;34048:77;34045:1;34038:88;34145:4;34142:1;34135:15;34169:4;34166:1;34159:15;34186:180;34234:77;34231:1;34224:88;34331:4;34328:1;34321:15;34355:4;34352:1;34345:15;34372:180;34420:77;34417:1;34410:88;34517:4;34514:1;34507:15;34541:4;34538:1;34531:15;34558:117;34667:1;34664;34657:12;34681:117;34790:1;34787;34780:12;34804:117;34913:1;34910;34903:12;34927:117;35036:1;35033;35026:12;35050:102;35091:6;35142:2;35138:7;35133:2;35126:5;35122:14;35118:28;35108:38;;35050:102;;;:::o;35158:230::-;35298:34;35294:1;35286:6;35282:14;35275:58;35367:13;35362:2;35354:6;35350:15;35343:38;35158:230;:::o;35394:237::-;35534:34;35530:1;35522:6;35518:14;35511:58;35603:20;35598:2;35590:6;35586:15;35579:45;35394:237;:::o;35637:225::-;35777:34;35773:1;35765:6;35761:14;35754:58;35846:8;35841:2;35833:6;35829:15;35822:33;35637:225;:::o;35868:178::-;36008:30;36004:1;35996:6;35992:14;35985:54;35868:178;:::o;36052:223::-;36192:34;36188:1;36180:6;36176:14;36169:58;36261:6;36256:2;36248:6;36244:15;36237:31;36052:223;:::o;36281:175::-;36421:27;36417:1;36409:6;36405:14;36398:51;36281:175;:::o;36462:231::-;36602:34;36598:1;36590:6;36586:14;36579:58;36671:14;36666:2;36658:6;36654:15;36647:39;36462:231;:::o;36699:243::-;36839:34;36835:1;36827:6;36823:14;36816:58;36908:26;36903:2;36895:6;36891:15;36884:51;36699:243;:::o;36948:229::-;37088:34;37084:1;37076:6;37072:14;37065:58;37157:12;37152:2;37144:6;37140:15;37133:37;36948:229;:::o;37183:228::-;37323:34;37319:1;37311:6;37307:14;37300:58;37392:11;37387:2;37379:6;37375:15;37368:36;37183:228;:::o;37417:182::-;37557:34;37553:1;37545:6;37541:14;37534:58;37417:182;:::o;37605:231::-;37745:34;37741:1;37733:6;37729:14;37722:58;37814:14;37809:2;37801:6;37797:15;37790:39;37605:231;:::o;37842:182::-;37982:34;37978:1;37970:6;37966:14;37959:58;37842:182;:::o;38030:228::-;38170:34;38166:1;38158:6;38154:14;38147:58;38239:11;38234:2;38226:6;38222:15;38215:36;38030:228;:::o;38264:234::-;38404:34;38400:1;38392:6;38388:14;38381:58;38473:17;38468:2;38460:6;38456:15;38449:42;38264:234;:::o;38504:220::-;38644:34;38640:1;38632:6;38628:14;38621:58;38713:3;38708:2;38700:6;38696:15;38689:28;38504:220;:::o;38730:236::-;38870:34;38866:1;38858:6;38854:14;38847:58;38939:19;38934:2;38926:6;38922:15;38915:44;38730:236;:::o;38972:231::-;39112:34;39108:1;39100:6;39096:14;39089:58;39181:14;39176:2;39168:6;39164:15;39157:39;38972:231;:::o;39209:122::-;39282:24;39300:5;39282:24;:::i;:::-;39275:5;39272:35;39262:63;;39321:1;39318;39311:12;39262:63;39209:122;:::o;39337:116::-;39407:21;39422:5;39407:21;:::i;:::-;39400:5;39397:32;39387:60;;39443:1;39440;39433:12;39387:60;39337:116;:::o;39459:120::-;39531:23;39548:5;39531:23;:::i;:::-;39524:5;39521:34;39511:62;;39569:1;39566;39559:12;39511:62;39459:120;:::o;39585:122::-;39658:24;39676:5;39658:24;:::i;:::-;39651:5;39648:35;39638:63;;39697:1;39694;39687:12;39638:63;39585:122;:::o

Swarm Source

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