ETH Price: $3,005.14 (+4.31%)
Gas: 2 Gwei

Token

Coroodles (Coroodles)
 

Overview

Max Total Supply

2,000 Coroodles

Holders

428

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Coroodles
0xe59dc1d23bdc21a72a85c71844c3a5917651cffc
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:
Coroodles

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-06-22
*/

/*                                                                                     

 ______   ______   ______    ______   ______   ______   __       ______   ______      
/_____/\ /_____/\ /_____/\  /_____/\ /_____/\ /_____/\ /_/\     /_____/\ /_____/\     
\:::__\/ \:::_ \ \\:::_ \ \ \:::_ \ \\:::_ \ \\:::_ \ \\:\ \    \::::_\/_\::::_\/_    
 \:\ \  __\:\ \ \ \\:(_) ) )_\:\ \ \ \\:\ \ \ \\:\ \ \ \\:\ \    \:\/___/\\:\/___/\   
  \:\ \/_/\\:\ \ \ \\: __ `\ \\:\ \ \ \\:\ \ \ \\:\ \ \ \\:\ \____\::___\/_\_::._\:\  
   \:\_\ \ \\:\_\ \ \\ \ `\ \ \\:\_\ \ \\:\_\ \ \\:\/.:| |\:\/___/\\:\____/\ /____\:\ 
    \_____\/ \_____\/ \_\/ \_\/ \_____\/ \_____\/ \____/_/ \_____\/ \_____\/ \_____\/ 

*/


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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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


// SPDX-License-Identifier: MIT
// ERC721E Contracts v0.1.0
// Creator: Coroodles Dev

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721E compliant contract.
 */
interface IERC721E {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * Not have withdrawable amount.
     */
    error NoWithdrawableAmount();

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

    // ==============================
    //            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);

    // ==============================
    //            IERC721
    // ==============================

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

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

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

    // ==============================
    //        IERC721Metadata
    // ==============================

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


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721E__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721E is IERC721E, Ownable {
    // Mask of an entry in packed address data.
    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Token price
    uint256 public _price;

    // Divided royalties sender --> Divided royalties
    mapping(address => uint256) public hadWithdrawedAddress;

    // Get donation or fund information
    mapping(address => uint256) public addressToAmountFunded;

    uint256 public withdrawned = 0;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

    // 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;

    constructor(
        string memory name_,
        string memory symbol_,
        uint256 price_
    ) {
        _name = name_;
        _symbol = symbol_;
        _price = price_;
        _currentIndex = _startTokenId();
    }

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to `_startTokenId()`
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return
            (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) &
            BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return
            (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) &
            BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly {
            // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId)
        private
        view
        returns (uint256)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed)
        private
        pure
        returns (TokenOwnership memory ownership)
    {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index)
        internal
        view
        returns (TokenOwnership memory)
    {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @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)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value)
        private
        pure
        returns (uint256 result)
    {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));

        if (_msgSenderERC721E() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721E())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (operator == _msgSenderERC721E()) revert ApproveToCaller();

        _operatorApprovals[_msgSenderERC721E()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721E(), 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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            index++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _packedAddressData[to] +=
                quantity *
                ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 offset;
            do {
                emit Transfer(address(0), to, startTokenId + offset++);
            } while (offset < quantity);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from)
            revert TransferFromIncorrectOwner();

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721E() == from ||
            isApprovedForAll(from, _msgSenderERC721E()) ||
            approvedAddress == _msgSenderERC721E());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (_addressToUint256(to) == 0) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));
        address approvedAddress = _tokenApprovals[tokenId];

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721E() == from ||
                isApprovedForAll(from, _msgSenderERC721E()) ||
                approvedAddress == _msgSenderERC721E());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED |
                BITMASK_NEXT_INITIALIZED;

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try
            ERC721E__IERC721Receiver(to).onERC721Received(
                _msgSenderERC721E(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return
                retval ==
                ERC721E__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721E() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value)
        internal
        pure
        returns (string memory ptr)
    {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }

    // Donate money and record the address of the sender of the message and the amount sent
    function fund() public payable {
        addressToAmountFunded[msg.sender] += msg.value;
    }

    function getThisBalance() public view returns (uint256) {
        return address(this).balance;
    }

    function getAllRoyaltyProfit() public view returns (uint256) {
        return address(this).balance - totalSupply() * _price - withdrawned;
    }

    // Get the current maximum withdrawal of the project party
    function canMaxWithdraw() public view returns (uint256) {
        return _price * totalSupply() - withdrawned;
    }

    // Withdraws ether from the contract
    function withdraw() public payable virtual onlyOwner {
        // Amount not withdrawn by the project party = current number of units sold * selling price - amount withdrawn by the project party
        uint256 canWithdraw = _price * totalSupply() - withdrawned;
        withdrawned += canWithdraw;
        (bool os, ) = payable(msg.sender).call{value: canWithdraw}("");
        require(os);
    }

    // Users get their own royalties to be distributed
    function getExtractRoyalties(address userAddress)
        public
        view
        virtual
        returns (uint256)
    {
        // Access balance + amount already withdrawn by the project owner + amount already withdrawn by the user + accidental withdrawals >= contract revenue (excluding accidental withdrawals) = (sell profit + royalty profit)
        // Contract revenue = (sell profit + royalty profit) = (project owner's undrawn cash + project owner's withdrawn cash) + (user's undrawn cash + user's withdrawn cash)
        // Contract revenue = money to the project owner + money to the user = (amount of cash undrawn by the project owner + amount of cash withdrawn by the project owner) + (amount of cash undrawn by the user + amount of cash withdrawn by the user)
        // Contract Revenue = Projector's undrawn cash + Projector's withdrawn cash + User's undrawn cash + User's withdrawn cash = (sell profit + royalty profit)
        uint256 overage = address(this).balance;

        // Project revenue = number of units currently sold * selling price = amount of cash undrawn by the project + amount of cash withdrawn by the project
        // Project's undrawn cash = Number of units currently sold * Sold price - Project's withdrawn cash
        uint256 notWithdrawnProfit = (_currentIndex -
            _burnCounter -
            _startTokenId()) *
            _price -
            withdrawned;

        // royalty profit = balance + amount withdrawn by the project owner + amount withdrawn by the user - sell profit = balance + amount withdrawn by the user - (sell profit - amount withdrawn by the project owner)
        // Royalty Earnings = Balance + User's Withdrawn Cash - Projector's Undrawn Cash = Balance + (Royalty Earnings - User's Undrawn Cash) - Projector's Undrawn Cash
        // User's undrawn cash = balance - project owner's undrawn cash
        uint256 royaltyProfit = overage - notWithdrawnProfit;

        // sender's share of royalties = royalty profit / total number of issues * number of sender's purchases - the sender's share of royalties
        uint256 giveSender = (royaltyProfit /
            (_currentIndex - _burnCounter - _startTokenId())) *
            balanceOf(userAddress) -
            hadWithdrawedAddress[userAddress];

        // If there is a situation where a late mint user comes in, and the total undrawn amount for all current users < the calculation of the equal share (royalties to be shared), it will need to be calculated after subsequent royalty increases
        // This case returns 0
        if (giveSender <= 0) return 0;
        return giveSender;
    }

    function extractRoyalties() public payable {
        uint256 giveSender = getExtractRoyalties(msg.sender);

        if (giveSender == 0) revert NoWithdrawableAmount();

        // Update sender divided royalties
        hadWithdrawedAddress[msg.sender] += giveSender;

        // Pay the sender
        (bool os, ) = payable(msg.sender).call{value: giveSender}("");
        require(os);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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.7.0 <0.9.0;


/**
 * @dev Implementation of [ERC721E](https://github.com/ERC721E/ERC721E) and
 * [ERC721A](https://github.com/chiru-labs/ERC721A). Thanks to contributors!
 * Save on gas when you mint multiple NFTs at once. ERC721A is an improved implementation of the IERC721
 * standard that supports minting multiple tokens for close to the cost of one.
 */
contract Coroodles is ERC721E {
    using Strings for uint256;
    string public baseURI;
    uint256 public price = 0 ether;
    uint256 public maxSupply = 2000;
    bool public revealed = false;
    bool public publicSale = false;
    mapping(address => uint256) public userMaxMintNum;
    mapping(address => uint256) public userMintNum;

    event Minted(address minter, uint256 amount);

    error NotStarted();
    error InsufficientSupply();
    error MintAtLeastOne();
    error InsufficientBalance();
    error InsufficientNumberOfNFTs();
    error NonexistentToken();
    error InvalidMerkleProof();
    error AddressAlreadyClaimed();

    modifier isNotFalse(bool _x) {
        if (_x == false) {
            revert NotStarted();
        }
        _;
    }

    modifier sufficientSupply(uint256 _mintAmount) {
        if (_mintAmount <= 0) {
            revert MintAtLeastOne();
        }
        uint256 supply = totalSupply();
        if (supply + _mintAmount > maxSupply) {
            revert InsufficientSupply();
        }
        _;
    }

    constructor(string memory _name, string memory _symbol)
        ERC721E(_name, _symbol, price)
    {}

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

    // Airdrop NFTs to OG
    function reserve(address _address, uint256 _mintAmount)
        public
        onlyOwner
        sufficientSupply(_mintAmount)
    {
        _safeMint(_address, _mintAmount);
        emit Minted(_address, _mintAmount);
    }

    function setUserMaxMintNum(address[] memory userAddress, uint256 num)
        public
        onlyOwner
    {
        // uint256 public o1Mint = 3;
        // uint256 public o2Mint = 5;
        // uint256 public o3Mint = 8;
        // uint256 public o4Mint = 10;
        for (uint256 i; i < userAddress.length; i++) {
            userMaxMintNum[userAddress[i]] = num;
        }
    }

    // Get the number of mints that an address can currently mint
    function getCouldMintNum(address userAddress)
        public
        view
        returns (uint256)
    {
        uint256 _userMaxMintNum = userMaxMintNum[userAddress] == 0
            ? 3
            : userMaxMintNum[userAddress];
        return _userMaxMintNum - userMintNum[userAddress];
    }

    // Official of NFT minting
    function publicSaleMint(uint256 _mintAmount)
        public
        payable
        isNotFalse(publicSale)
        sufficientSupply(_mintAmount)
    {
        if (_mintAmount > getCouldMintNum(msg.sender)) {
            revert InsufficientNumberOfNFTs();
        }
        if (msg.value < price * _mintAmount) {
            revert InsufficientBalance();
        }
        userMintNum[msg.sender] += _mintAmount;
        _safeMint(msg.sender, _mintAmount);
        emit Minted(msg.sender, _mintAmount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) {
            revert NonexistentToken();
        }
        if (revealed == false) {
            return
                "https://gateway.pinata.cloud/ipfs/QmUrjCDHCGzz2sybBboopiD4tmwaQBgybc2NfsDxCn5ecJ";
        } else {
            string memory currentBaseURI = _baseURI();
            return
                bytes(currentBaseURI).length > 0
                    ? string(
                        abi.encodePacked(
                            currentBaseURI,
                            tokenId.toString(),
                            ".json"
                        )
                    )
                    : "";
        }
    }

    // Open the blind box
    function setRreveal(bool _state, string memory _revealURI)
        public
        onlyOwner
    {
        revealed = _state;
        baseURI = _revealURI;
    }

    // Set the official release price
    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    // Official sale begins
    function setPublicSale(bool _state) public onlyOwner {
        publicSale = _state;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AddressAlreadyClaimed","type":"error"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InsufficientBalance","type":"error"},{"inputs":[],"name":"InsufficientNumberOfNFTs","type":"error"},{"inputs":[],"name":"InsufficientSupply","type":"error"},{"inputs":[],"name":"InvalidMerkleProof","type":"error"},{"inputs":[],"name":"MintAtLeastOne","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NoWithdrawableAmount","type":"error"},{"inputs":[],"name":"NonexistentToken","type":"error"},{"inputs":[],"name":"NotStarted","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToAmountFunded","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"canMaxWithdraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extractRoyalties","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"fund","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getAllRoyaltyProfit","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":"userAddress","type":"address"}],"name":"getCouldMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"getExtractRoyalties","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getThisBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hadWithdrawedAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"},{"internalType":"string","name":"_revealURI","type":"string"}],"name":"setRreveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userAddress","type":"address[]"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setUserMaxMintNum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMaxMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260006008556000600e556107d0600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055503480156200005757600080fd5b5060405162003ecc38038062003ecc83398181016040528101906200007d9190620002fb565b8181600e54620000a262000096620000fc60201b60201c565b6200010460201b60201c565b8260039080519060200190620000ba929190620001cd565b508160049080519060200190620000d3929190620001cd565b5080600581905550620000eb620001c860201b60201c565b600181905550505050505062000504565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620001db9062000415565b90600052602060002090601f016020900481019282620001ff57600085556200024b565b82601f106200021a57805160ff19168380011785556200024b565b828001600101855582156200024b579182015b828111156200024a5782518255916020019190600101906200022d565b5b5090506200025a91906200025e565b5090565b5b80821115620002795760008160009055506001016200025f565b5090565b6000620002946200028e84620003a9565b62000380565b905082815260208101848484011115620002b357620002b2620004e4565b5b620002c0848285620003df565b509392505050565b600082601f830112620002e057620002df620004df565b5b8151620002f28482602086016200027d565b91505092915050565b60008060408385031215620003155762000314620004ee565b5b600083015167ffffffffffffffff811115620003365762000335620004e9565b5b6200034485828601620002c8565b925050602083015167ffffffffffffffff811115620003685762000367620004e9565b5b6200037685828601620002c8565b9150509250929050565b60006200038c6200039f565b90506200039a82826200044b565b919050565b6000604051905090565b600067ffffffffffffffff821115620003c757620003c6620004b0565b5b620003d282620004f3565b9050602081019050919050565b60005b83811015620003ff578082015181840152602081019050620003e2565b838111156200040f576000848401525b50505050565b600060028204905060018216806200042e57607f821691505b6020821081141562000445576200044462000481565b5b50919050565b6200045682620004f3565b810181811067ffffffffffffffff82111715620004785762000477620004b0565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6139b880620005146000396000f3fe6080604052600436106102505760003560e01c806370a0823111610139578063a22cb465116100b6578063cc47a40b1161007a578063cc47a40b1461087d578063d1c4b6f8146108a6578063d5abeb01146108d1578063da184f6c146108fc578063e985e9c514610939578063f2fde38b1461097657610250565b8063a22cb465146107c8578063b3ab66b0146107f1578063b60d42881461080d578063b88d4fde14610817578063c87b56dd1461084057610250565b80638e8cf4a8116100fd5780638e8cf4a8146106e157806391b7f5ed1461070c57806395d89b41146107355780639e39c8c914610760578063a035b1fe1461079d57610250565b806370a082311461062f578063715018a61461066c57806384fcd5b9146106835780638c7fed43146106ac5780638da5cb5b146106b657610250565b80633ccfd60b116101d2578063518302271161019657806351830227146104f95780635aca1bb6146105245780635f1a360a1461054d5780636352211e1461058a5780636c0360eb146105c75780636d46802a146105f257610250565b80633ccfd60b146104355780633d87f97a1461043f5780633e47d6f31461046857806342842e0e146104a55780634b957a69146104ce57610250565b806318160ddd1161021957806318160ddd14610360578063235b6ea11461038b57806323b872dd146103b657806332f34d53146103df57806333bc1c5c1461040a57610250565b80627b24991461025557806301ffc9a71461029257806306fdde03146102cf578063081812fc146102fa578063095ea7b314610337575b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190612d7d565b61099f565b6040516102899190613359565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613025565b6109b7565b6040516102c691906132dc565b60405180910390f35b3480156102db57600080fd5b506102e4610a49565b6040516102f191906132f7565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c919061307f565b610adb565b60405161032e919061324c565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612f00565b610b57565b005b34801561036c57600080fd5b50610375610c98565b6040516103829190613359565b60405180910390f35b34801561039757600080fd5b506103a0610caf565b6040516103ad9190613359565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612dea565b610cb5565b005b3480156103eb57600080fd5b506103f4610cc5565b6040516104019190613359565b60405180910390f35b34801561041657600080fd5b5061041f610ccb565b60405161042c91906132dc565b60405180910390f35b61043d610cde565b005b34801561044b57600080fd5b5061046660048036038101906104619190612fc9565b610e13565b005b34801561047457600080fd5b5061048f600480360381019061048a9190612d7d565b610ec4565b60405161049c9190613359565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190612dea565b610edc565b005b3480156104da57600080fd5b506104e3610efc565b6040516104f09190613359565b60405180910390f35b34801561050557600080fd5b5061050e610f30565b60405161051b91906132dc565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190612f9c565b610f43565b005b34801561055957600080fd5b50610574600480360381019061056f9190612d7d565b610fdc565b6040516105819190613359565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac919061307f565b610ff4565b6040516105be919061324c565b60405180910390f35b3480156105d357600080fd5b506105dc611006565b6040516105e991906132f7565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612d7d565b611094565b6040516106269190613359565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612d7d565b61117b565b6040516106639190613359565b60405180910390f35b34801561067857600080fd5b50610681611210565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612f40565b611298565b005b6106b4611396565b005b3480156106c257600080fd5b506106cb6114ae565b6040516106d8919061324c565b60405180910390f35b3480156106ed57600080fd5b506106f66114d7565b6040516107039190613359565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e919061307f565b6114df565b005b34801561074157600080fd5b5061074a611565565b60405161075791906132f7565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190612d7d565b6115f7565b6040516107949190613359565b60405180910390f35b3480156107a957600080fd5b506107b26116fd565b6040516107bf9190613359565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612ec0565b611703565b005b61080b6004803603810190610806919061307f565b61187b565b005b610815611a80565b005b34801561082357600080fd5b5061083e60048036038101906108399190612e3d565b611ad8565b005b34801561084c57600080fd5b506108676004803603810190610862919061307f565b611b4b565b60405161087491906132f7565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f9190612f00565b611c26565b005b3480156108b257600080fd5b506108bb611d79565b6040516108c89190613359565b60405180910390f35b3480156108dd57600080fd5b506108e6611da2565b6040516108f39190613359565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190612d7d565b611da8565b6040516109309190613359565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190612daa565b611dc0565b60405161096d91906132dc565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190612d7d565b611e54565b005b60116020528060005260406000206000915090505481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a425750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a5890613640565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490613640565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611f4c565b610b1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6282611fab565b90508073ffffffffffffffffffffffffffffffffffffffff16610b83612079565b73ffffffffffffffffffffffffffffffffffffffff1614610be657610baf81610baa612079565b611dc0565b610be5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82600b600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ca2612081565b6002546001540303905090565b60055481565b610cc0838383612086565b505050565b60085481565b601060019054906101000a900460ff1681565b610ce661244e565b73ffffffffffffffffffffffffffffffffffffffff16610d046114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613339565b60405180910390fd5b6000600854610d67610c98565b600554610d7491906134fc565b610d7e9190613556565b90508060086000828254610d929190613475565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff1682604051610dbf90613237565b60006040518083038185875af1925050503d8060008114610dfc576040519150601f19603f3d011682016040523d82523d6000602084013e610e01565b606091505b5050905080610e0f57600080fd5b5050565b610e1b61244e565b73ffffffffffffffffffffffffffffffffffffffff16610e396114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613339565b60405180910390fd5b81601060006101000a81548160ff02191690831515021790555080600d9080519060200190610ebf929190612af3565b505050565b60076020528060005260406000206000915090505481565b610ef783838360405180602001604052806000815250611ad8565b505050565b6000600854600554610f0c610c98565b610f1691906134fc565b47610f219190613556565b610f2b9190613556565b905090565b601060009054906101000a900460ff1681565b610f4b61244e565b73ffffffffffffffffffffffffffffffffffffffff16610f696114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613339565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915090505481565b6000610fff82611fab565b9050919050565b600d805461101390613640565b80601f016020809104026020016040519081016040528092919081815260200182805461103f90613640565b801561108c5780601f106110615761010080835404028352916020019161108c565b820191906000526020600020905b81548152906001019060200180831161106f57829003601f168201915b505050505081565b6000806000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461112357601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611126565b60035b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054816111739190613556565b915050919050565b60008061118783612456565b14156111bf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61121861244e565b73ffffffffffffffffffffffffffffffffffffffff166112366114ae565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613339565b60405180910390fd5b6112966000612460565b565b6112a061244e565b73ffffffffffffffffffffffffffffffffffffffff166112be6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613339565b60405180910390fd5b60005b8251811015611391578160116000858481518110611338576113376137aa565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611389906136a3565b915050611317565b505050565b60006113a1336115f7565b905060008114156113de576040517f1b1d786100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142d9190613475565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff168260405161145a90613237565b60006040518083038185875af1925050503d8060008114611497576040519150601f19603f3d011682016040523d82523d6000602084013e61149c565b606091505b50509050806114aa57600080fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600047905090565b6114e761244e565b73ffffffffffffffffffffffffffffffffffffffff166115056114ae565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613339565b60405180910390fd5b80600e8190555050565b60606004805461157490613640565b80601f01602080910402602001604051908101604052809291908181526020018280546115a090613640565b80156115ed5780601f106115c2576101008083540402835291602001916115ed565b820191906000526020600020905b8154815290600101906020018083116115d057829003601f168201915b5050505050905090565b600080479050600060085460055461160d612081565b60025460015461161d9190613556565b6116279190613556565b61163191906134fc565b61163b9190613556565b90506000818361164b9190613556565b90506000600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116988761117b565b6116a0612081565b6002546001546116b09190613556565b6116ba9190613556565b846116c591906134cb565b6116cf91906134fc565b6116d99190613556565b9050600081116116f05760009450505050506116f8565b809450505050505b919050565b600e5481565b61170b612079565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611770576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c600061177d612079565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182a612079565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161186f91906132dc565b60405180910390a35050565b601060019054906101000a900460ff166000151581151514156118ca576040517f6f312cbd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160008111611905576040517f58c4685200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061190f610c98565b9050600f5482826119209190613475565b1115611958576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61196133611094565b84111561199a576040517fc7d526e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600e546119a891906134fc565b3410156119e1576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a309190613475565b92505081905550611a413385612524565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3385604051611a729291906132b3565b60405180910390a150505050565b34600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611acf9190613475565b92505081905550565b611ae3848484612086565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b4557611b0e84848484612542565b611b44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b5682611f4c565b611b8c576040517fb1d04f0800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515601060009054906101000a900460ff1615151415611bc857604051806080016040528060508152602001613933605091399050611c21565b6000611bd26126a2565b90506000815111611bf25760405180602001604052806000815250611c1d565b80611bfc84612734565b604051602001611c0d929190613208565b6040516020818303038152906040525b9150505b919050565b611c2e61244e565b73ffffffffffffffffffffffffffffffffffffffff16611c4c6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990613339565b60405180910390fd5b8060008111611cdd576040517f58c4685200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ce7610c98565b9050600f548282611cf89190613475565b1115611d30576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d3a8484612524565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8484604051611d6b9291906132b3565b60405180910390a150505050565b6000600854611d86610c98565b600554611d9391906134fc565b611d9d9190613556565b905090565b600f5481565b60066020528060005260406000206000915090505481565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e5c61244e565b73ffffffffffffffffffffffffffffffffffffffff16611e7a6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec790613339565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3790613319565b60405180910390fd5b611f4981612460565b50565b600081611f57612081565b11158015611f66575060015482105b8015611fa4575060007c0100000000000000000000000000000000000000000000000000000000600960008581526020019081526020016000205416145b9050919050565b60008082905080611fba612081565b11612042576001548110156120415760006009600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561203f575b600081141561203557600960008360019003935083815260200190815260200160002054905061200a565b8092505050612074565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061209182611fab565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600b600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612151612079565b73ffffffffffffffffffffffffffffffffffffffff161480612180575061217f8661217a612079565b611dc0565b5b806121bd575061218e612079565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806121f6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061220186612456565b1415612239576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122468686866001612895565b600061225183612456565b1461228d57600b600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61235487612456565b1717600960008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156123de5760006001850190506000600960008381526020019081526020016000205414156123dc5760015481146123db578360096000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612446868686600161289b565b505050505050565b600033905090565b6000819050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61253e8282604051806020016040528060008152506128a1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612568612079565b8786866040518563ffffffff1660e01b815260040161258a9493929190613267565b602060405180830381600087803b1580156125a457600080fd5b505af19250505080156125d557506040513d601f19601f820116820180604052508101906125d29190613052565b60015b61264f573d8060008114612605576040519150601f19603f3d011682016040523d82523d6000602084013e61260a565b606091505b50600081511415612647576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d80546126b190613640565b80601f01602080910402602001604051908101604052809291908181526020018280546126dd90613640565b801561272a5780601f106126ff5761010080835404028352916020019161272a565b820191906000526020600020905b81548152906001019060200180831161270d57829003601f168201915b5050505050905090565b6060600082141561277c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612890565b600082905060005b600082146127ae578080612797906136a3565b915050600a826127a791906134cb565b9150612784565b60008167ffffffffffffffff8111156127ca576127c96137d9565b5b6040519080825280601f01601f1916602001820160405280156127fc5781602001600182028036833780820191505090505b5090505b60008514612889576001826128159190613556565b9150600a8561282491906136ec565b60306128309190613475565b60f81b818381518110612846576128456137aa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561288291906134cb565b9450612800565b8093505050505b919050565b50505050565b50505050565b6128ab838361293f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461293a5760006001549050600083820390505b6128ec6000868380600101945086612542565b612922576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106128d957816001541461293757600080fd5b50505b505050565b60006001549050600061295184612456565b1415612989576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156129c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129d16000848385612895565b600160406001901b178202600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612a3660018414612ae9565b901b60a042901b612a4685612456565b1717600960008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828110612a625782820160018190555050612ae4600084838561289b565b505050565b6000819050919050565b828054612aff90613640565b90600052602060002090601f016020900481019282612b215760008555612b68565b82601f10612b3a57805160ff1916838001178555612b68565b82800160010185558215612b68579182015b82811115612b67578251825591602001919060010190612b4c565b5b509050612b759190612b79565b5090565b5b80821115612b92576000816000905550600101612b7a565b5090565b6000612ba9612ba484613399565b613374565b90508083825260208201905082856020860282011115612bcc57612bcb61380d565b5b60005b85811015612bfc5781612be28882612c8a565b845260208401935060208301925050600181019050612bcf565b5050509392505050565b6000612c19612c14846133c5565b613374565b905082815260208101848484011115612c3557612c34613812565b5b612c408482856135fe565b509392505050565b6000612c5b612c56846133f6565b613374565b905082815260208101848484011115612c7757612c76613812565b5b612c828482856135fe565b509392505050565b600081359050612c99816138d6565b92915050565b600082601f830112612cb457612cb3613808565b5b8135612cc4848260208601612b96565b91505092915050565b600081359050612cdc816138ed565b92915050565b600081359050612cf181613904565b92915050565b600081519050612d0681613904565b92915050565b600082601f830112612d2157612d20613808565b5b8135612d31848260208601612c06565b91505092915050565b600082601f830112612d4f57612d4e613808565b5b8135612d5f848260208601612c48565b91505092915050565b600081359050612d778161391b565b92915050565b600060208284031215612d9357612d9261381c565b5b6000612da184828501612c8a565b91505092915050565b60008060408385031215612dc157612dc061381c565b5b6000612dcf85828601612c8a565b9250506020612de085828601612c8a565b9150509250929050565b600080600060608486031215612e0357612e0261381c565b5b6000612e1186828701612c8a565b9350506020612e2286828701612c8a565b9250506040612e3386828701612d68565b9150509250925092565b60008060008060808587031215612e5757612e5661381c565b5b6000612e6587828801612c8a565b9450506020612e7687828801612c8a565b9350506040612e8787828801612d68565b925050606085013567ffffffffffffffff811115612ea857612ea7613817565b5b612eb487828801612d0c565b91505092959194509250565b60008060408385031215612ed757612ed661381c565b5b6000612ee585828601612c8a565b9250506020612ef685828601612ccd565b9150509250929050565b60008060408385031215612f1757612f1661381c565b5b6000612f2585828601612c8a565b9250506020612f3685828601612d68565b9150509250929050565b60008060408385031215612f5757612f5661381c565b5b600083013567ffffffffffffffff811115612f7557612f74613817565b5b612f8185828601612c9f565b9250506020612f9285828601612d68565b9150509250929050565b600060208284031215612fb257612fb161381c565b5b6000612fc084828501612ccd565b91505092915050565b60008060408385031215612fe057612fdf61381c565b5b6000612fee85828601612ccd565b925050602083013567ffffffffffffffff81111561300f5761300e613817565b5b61301b85828601612d3a565b9150509250929050565b60006020828403121561303b5761303a61381c565b5b600061304984828501612ce2565b91505092915050565b6000602082840312156130685761306761381c565b5b600061307684828501612cf7565b91505092915050565b6000602082840312156130955761309461381c565b5b60006130a384828501612d68565b91505092915050565b6130b58161358a565b82525050565b6130c48161359c565b82525050565b60006130d582613427565b6130df818561343d565b93506130ef81856020860161360d565b6130f881613821565b840191505092915050565b600061310e82613432565b6131188185613459565b935061312881856020860161360d565b61313181613821565b840191505092915050565b600061314782613432565b613151818561346a565b935061316181856020860161360d565b80840191505092915050565b600061317a602683613459565b915061318582613832565b604082019050919050565b600061319d60058361346a565b91506131a882613881565b600582019050919050565b60006131c0602083613459565b91506131cb826138aa565b602082019050919050565b60006131e360008361344e565b91506131ee826138d3565b600082019050919050565b613202816135f4565b82525050565b6000613214828561313c565b9150613220828461313c565b915061322b82613190565b91508190509392505050565b6000613242826131d6565b9150819050919050565b600060208201905061326160008301846130ac565b92915050565b600060808201905061327c60008301876130ac565b61328960208301866130ac565b61329660408301856131f9565b81810360608301526132a881846130ca565b905095945050505050565b60006040820190506132c860008301856130ac565b6132d560208301846131f9565b9392505050565b60006020820190506132f160008301846130bb565b92915050565b600060208201905081810360008301526133118184613103565b905092915050565b600060208201905081810360008301526133328161316d565b9050919050565b60006020820190508181036000830152613352816131b3565b9050919050565b600060208201905061336e60008301846131f9565b92915050565b600061337e61338f565b905061338a8282613672565b919050565b6000604051905090565b600067ffffffffffffffff8211156133b4576133b36137d9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133e0576133df6137d9565b5b6133e982613821565b9050602081019050919050565b600067ffffffffffffffff821115613411576134106137d9565b5b61341a82613821565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613480826135f4565b915061348b836135f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c0576134bf61371d565b5b828201905092915050565b60006134d6826135f4565b91506134e1836135f4565b9250826134f1576134f061374c565b5b828204905092915050565b6000613507826135f4565b9150613512836135f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354b5761354a61371d565b5b828202905092915050565b6000613561826135f4565b915061356c836135f4565b92508282101561357f5761357e61371d565b5b828203905092915050565b6000613595826135d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561362b578082015181840152602081019050613610565b8381111561363a576000848401525b50505050565b6000600282049050600182168061365857607f821691505b6020821081141561366c5761366b61377b565b5b50919050565b61367b82613821565b810181811067ffffffffffffffff8211171561369a576136996137d9565b5b80604052505050565b60006136ae826135f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136e1576136e061371d565b5b600182019050919050565b60006136f7826135f4565b9150613702836135f4565b9250826137125761371161374c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6138df8161358a565b81146138ea57600080fd5b50565b6138f68161359c565b811461390157600080fd5b50565b61390d816135a8565b811461391857600080fd5b50565b613924816135f4565b811461392f57600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55726a43444843477a7a3273796242626f6f70694434746d7761514267796263324e66734478436e3565634aa26469706673582212205d0a0c54747b1d77917f2020373f8f47b526872b030e756f6b9b272b72c3f3b564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009436f726f6f646c657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009436f726f6f646c65730000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102505760003560e01c806370a0823111610139578063a22cb465116100b6578063cc47a40b1161007a578063cc47a40b1461087d578063d1c4b6f8146108a6578063d5abeb01146108d1578063da184f6c146108fc578063e985e9c514610939578063f2fde38b1461097657610250565b8063a22cb465146107c8578063b3ab66b0146107f1578063b60d42881461080d578063b88d4fde14610817578063c87b56dd1461084057610250565b80638e8cf4a8116100fd5780638e8cf4a8146106e157806391b7f5ed1461070c57806395d89b41146107355780639e39c8c914610760578063a035b1fe1461079d57610250565b806370a082311461062f578063715018a61461066c57806384fcd5b9146106835780638c7fed43146106ac5780638da5cb5b146106b657610250565b80633ccfd60b116101d2578063518302271161019657806351830227146104f95780635aca1bb6146105245780635f1a360a1461054d5780636352211e1461058a5780636c0360eb146105c75780636d46802a146105f257610250565b80633ccfd60b146104355780633d87f97a1461043f5780633e47d6f31461046857806342842e0e146104a55780634b957a69146104ce57610250565b806318160ddd1161021957806318160ddd14610360578063235b6ea11461038b57806323b872dd146103b657806332f34d53146103df57806333bc1c5c1461040a57610250565b80627b24991461025557806301ffc9a71461029257806306fdde03146102cf578063081812fc146102fa578063095ea7b314610337575b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190612d7d565b61099f565b6040516102899190613359565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613025565b6109b7565b6040516102c691906132dc565b60405180910390f35b3480156102db57600080fd5b506102e4610a49565b6040516102f191906132f7565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c919061307f565b610adb565b60405161032e919061324c565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190612f00565b610b57565b005b34801561036c57600080fd5b50610375610c98565b6040516103829190613359565b60405180910390f35b34801561039757600080fd5b506103a0610caf565b6040516103ad9190613359565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d89190612dea565b610cb5565b005b3480156103eb57600080fd5b506103f4610cc5565b6040516104019190613359565b60405180910390f35b34801561041657600080fd5b5061041f610ccb565b60405161042c91906132dc565b60405180910390f35b61043d610cde565b005b34801561044b57600080fd5b5061046660048036038101906104619190612fc9565b610e13565b005b34801561047457600080fd5b5061048f600480360381019061048a9190612d7d565b610ec4565b60405161049c9190613359565b60405180910390f35b3480156104b157600080fd5b506104cc60048036038101906104c79190612dea565b610edc565b005b3480156104da57600080fd5b506104e3610efc565b6040516104f09190613359565b60405180910390f35b34801561050557600080fd5b5061050e610f30565b60405161051b91906132dc565b60405180910390f35b34801561053057600080fd5b5061054b60048036038101906105469190612f9c565b610f43565b005b34801561055957600080fd5b50610574600480360381019061056f9190612d7d565b610fdc565b6040516105819190613359565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac919061307f565b610ff4565b6040516105be919061324c565b60405180910390f35b3480156105d357600080fd5b506105dc611006565b6040516105e991906132f7565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190612d7d565b611094565b6040516106269190613359565b60405180910390f35b34801561063b57600080fd5b5061065660048036038101906106519190612d7d565b61117b565b6040516106639190613359565b60405180910390f35b34801561067857600080fd5b50610681611210565b005b34801561068f57600080fd5b506106aa60048036038101906106a59190612f40565b611298565b005b6106b4611396565b005b3480156106c257600080fd5b506106cb6114ae565b6040516106d8919061324c565b60405180910390f35b3480156106ed57600080fd5b506106f66114d7565b6040516107039190613359565b60405180910390f35b34801561071857600080fd5b50610733600480360381019061072e919061307f565b6114df565b005b34801561074157600080fd5b5061074a611565565b60405161075791906132f7565b60405180910390f35b34801561076c57600080fd5b5061078760048036038101906107829190612d7d565b6115f7565b6040516107949190613359565b60405180910390f35b3480156107a957600080fd5b506107b26116fd565b6040516107bf9190613359565b60405180910390f35b3480156107d457600080fd5b506107ef60048036038101906107ea9190612ec0565b611703565b005b61080b6004803603810190610806919061307f565b61187b565b005b610815611a80565b005b34801561082357600080fd5b5061083e60048036038101906108399190612e3d565b611ad8565b005b34801561084c57600080fd5b506108676004803603810190610862919061307f565b611b4b565b60405161087491906132f7565b60405180910390f35b34801561088957600080fd5b506108a4600480360381019061089f9190612f00565b611c26565b005b3480156108b257600080fd5b506108bb611d79565b6040516108c89190613359565b60405180910390f35b3480156108dd57600080fd5b506108e6611da2565b6040516108f39190613359565b60405180910390f35b34801561090857600080fd5b50610923600480360381019061091e9190612d7d565b611da8565b6040516109309190613359565b60405180910390f35b34801561094557600080fd5b50610960600480360381019061095b9190612daa565b611dc0565b60405161096d91906132dc565b60405180910390f35b34801561098257600080fd5b5061099d60048036038101906109989190612d7d565b611e54565b005b60116020528060005260406000206000915090505481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a1257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a425750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610a5890613640565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8490613640565b8015610ad15780601f10610aa657610100808354040283529160200191610ad1565b820191906000526020600020905b815481529060010190602001808311610ab457829003601f168201915b5050505050905090565b6000610ae682611f4c565b610b1c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600b600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b6282611fab565b90508073ffffffffffffffffffffffffffffffffffffffff16610b83612079565b73ffffffffffffffffffffffffffffffffffffffff1614610be657610baf81610baa612079565b611dc0565b610be5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b82600b600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610ca2612081565b6002546001540303905090565b60055481565b610cc0838383612086565b505050565b60085481565b601060019054906101000a900460ff1681565b610ce661244e565b73ffffffffffffffffffffffffffffffffffffffff16610d046114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613339565b60405180910390fd5b6000600854610d67610c98565b600554610d7491906134fc565b610d7e9190613556565b90508060086000828254610d929190613475565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff1682604051610dbf90613237565b60006040518083038185875af1925050503d8060008114610dfc576040519150601f19603f3d011682016040523d82523d6000602084013e610e01565b606091505b5050905080610e0f57600080fd5b5050565b610e1b61244e565b73ffffffffffffffffffffffffffffffffffffffff16610e396114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690613339565b60405180910390fd5b81601060006101000a81548160ff02191690831515021790555080600d9080519060200190610ebf929190612af3565b505050565b60076020528060005260406000206000915090505481565b610ef783838360405180602001604052806000815250611ad8565b505050565b6000600854600554610f0c610c98565b610f1691906134fc565b47610f219190613556565b610f2b9190613556565b905090565b601060009054906101000a900460ff1681565b610f4b61244e565b73ffffffffffffffffffffffffffffffffffffffff16610f696114ae565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb690613339565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b60126020528060005260406000206000915090505481565b6000610fff82611fab565b9050919050565b600d805461101390613640565b80601f016020809104026020016040519081016040528092919081815260200182805461103f90613640565b801561108c5780601f106110615761010080835404028352916020019161108c565b820191906000526020600020905b81548152906001019060200180831161106f57829003601f168201915b505050505081565b6000806000601160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461112357601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611126565b60035b9050601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054816111739190613556565b915050919050565b60008061118783612456565b14156111bf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61121861244e565b73ffffffffffffffffffffffffffffffffffffffff166112366114ae565b73ffffffffffffffffffffffffffffffffffffffff161461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390613339565b60405180910390fd5b6112966000612460565b565b6112a061244e565b73ffffffffffffffffffffffffffffffffffffffff166112be6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613339565b60405180910390fd5b60005b8251811015611391578160116000858481518110611338576113376137aa565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080611389906136a3565b915050611317565b505050565b60006113a1336115f7565b905060008114156113de576040517f1b1d786100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461142d9190613475565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff168260405161145a90613237565b60006040518083038185875af1925050503d8060008114611497576040519150601f19603f3d011682016040523d82523d6000602084013e61149c565b606091505b50509050806114aa57600080fd5b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600047905090565b6114e761244e565b73ffffffffffffffffffffffffffffffffffffffff166115056114ae565b73ffffffffffffffffffffffffffffffffffffffff161461155b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155290613339565b60405180910390fd5b80600e8190555050565b60606004805461157490613640565b80601f01602080910402602001604051908101604052809291908181526020018280546115a090613640565b80156115ed5780601f106115c2576101008083540402835291602001916115ed565b820191906000526020600020905b8154815290600101906020018083116115d057829003601f168201915b5050505050905090565b600080479050600060085460055461160d612081565b60025460015461161d9190613556565b6116279190613556565b61163191906134fc565b61163b9190613556565b90506000818361164b9190613556565b90506000600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116988761117b565b6116a0612081565b6002546001546116b09190613556565b6116ba9190613556565b846116c591906134cb565b6116cf91906134fc565b6116d99190613556565b9050600081116116f05760009450505050506116f8565b809450505050505b919050565b600e5481565b61170b612079565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611770576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c600061177d612079565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661182a612079565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161186f91906132dc565b60405180910390a35050565b601060019054906101000a900460ff166000151581151514156118ca576040517f6f312cbd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160008111611905576040517f58c4685200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061190f610c98565b9050600f5482826119209190613475565b1115611958576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61196133611094565b84111561199a576040517fc7d526e600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83600e546119a891906134fc565b3410156119e1576040517ff4d678b800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b83601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a309190613475565b92505081905550611a413385612524565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe3385604051611a729291906132b3565b60405180910390a150505050565b34600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611acf9190613475565b92505081905550565b611ae3848484612086565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b4557611b0e84848484612542565b611b44576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611b5682611f4c565b611b8c576040517fb1d04f0800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60001515601060009054906101000a900460ff1615151415611bc857604051806080016040528060508152602001613933605091399050611c21565b6000611bd26126a2565b90506000815111611bf25760405180602001604052806000815250611c1d565b80611bfc84612734565b604051602001611c0d929190613208565b6040516020818303038152906040525b9150505b919050565b611c2e61244e565b73ffffffffffffffffffffffffffffffffffffffff16611c4c6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990613339565b60405180910390fd5b8060008111611cdd576040517f58c4685200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611ce7610c98565b9050600f548282611cf89190613475565b1115611d30576040517f33aa101c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d3a8484612524565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe8484604051611d6b9291906132b3565b60405180910390a150505050565b6000600854611d86610c98565b600554611d9391906134fc565b611d9d9190613556565b905090565b600f5481565b60066020528060005260406000206000915090505481565b6000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e5c61244e565b73ffffffffffffffffffffffffffffffffffffffff16611e7a6114ae565b73ffffffffffffffffffffffffffffffffffffffff1614611ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec790613339565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3790613319565b60405180910390fd5b611f4981612460565b50565b600081611f57612081565b11158015611f66575060015482105b8015611fa4575060007c0100000000000000000000000000000000000000000000000000000000600960008581526020019081526020016000205416145b9050919050565b60008082905080611fba612081565b11612042576001548110156120415760006009600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561203f575b600081141561203557600960008360019003935083815260200190815260200160002054905061200a565b8092505050612074565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b600061209182611fab565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146120f8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600b600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff16612151612079565b73ffffffffffffffffffffffffffffffffffffffff161480612180575061217f8661217a612079565b611dc0565b5b806121bd575061218e612079565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806121f6576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061220186612456565b1415612239576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122468686866001612895565b600061225183612456565b1461228d57600b600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61235487612456565b1717600960008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156123de5760006001850190506000600960008381526020019081526020016000205414156123dc5760015481146123db578360096000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612446868686600161289b565b505050505050565b600033905090565b6000819050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61253e8282604051806020016040528060008152506128a1565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612568612079565b8786866040518563ffffffff1660e01b815260040161258a9493929190613267565b602060405180830381600087803b1580156125a457600080fd5b505af19250505080156125d557506040513d601f19601f820116820180604052508101906125d29190613052565b60015b61264f573d8060008114612605576040519150601f19603f3d011682016040523d82523d6000602084013e61260a565b606091505b50600081511415612647576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d80546126b190613640565b80601f01602080910402602001604051908101604052809291908181526020018280546126dd90613640565b801561272a5780601f106126ff5761010080835404028352916020019161272a565b820191906000526020600020905b81548152906001019060200180831161270d57829003601f168201915b5050505050905090565b6060600082141561277c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612890565b600082905060005b600082146127ae578080612797906136a3565b915050600a826127a791906134cb565b9150612784565b60008167ffffffffffffffff8111156127ca576127c96137d9565b5b6040519080825280601f01601f1916602001820160405280156127fc5781602001600182028036833780820191505090505b5090505b60008514612889576001826128159190613556565b9150600a8561282491906136ec565b60306128309190613475565b60f81b818381518110612846576128456137aa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561288291906134cb565b9450612800565b8093505050505b919050565b50505050565b50505050565b6128ab838361293f565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461293a5760006001549050600083820390505b6128ec6000868380600101945086612542565b612922576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106128d957816001541461293757600080fd5b50505b505050565b60006001549050600061295184612456565b1415612989576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156129c4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129d16000848385612895565b600160406001901b178202600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612a3660018414612ae9565b901b60a042901b612a4685612456565b1717600960008381526020019081526020016000208190555060005b8080600101915082018473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4828110612a625782820160018190555050612ae4600084838561289b565b505050565b6000819050919050565b828054612aff90613640565b90600052602060002090601f016020900481019282612b215760008555612b68565b82601f10612b3a57805160ff1916838001178555612b68565b82800160010185558215612b68579182015b82811115612b67578251825591602001919060010190612b4c565b5b509050612b759190612b79565b5090565b5b80821115612b92576000816000905550600101612b7a565b5090565b6000612ba9612ba484613399565b613374565b90508083825260208201905082856020860282011115612bcc57612bcb61380d565b5b60005b85811015612bfc5781612be28882612c8a565b845260208401935060208301925050600181019050612bcf565b5050509392505050565b6000612c19612c14846133c5565b613374565b905082815260208101848484011115612c3557612c34613812565b5b612c408482856135fe565b509392505050565b6000612c5b612c56846133f6565b613374565b905082815260208101848484011115612c7757612c76613812565b5b612c828482856135fe565b509392505050565b600081359050612c99816138d6565b92915050565b600082601f830112612cb457612cb3613808565b5b8135612cc4848260208601612b96565b91505092915050565b600081359050612cdc816138ed565b92915050565b600081359050612cf181613904565b92915050565b600081519050612d0681613904565b92915050565b600082601f830112612d2157612d20613808565b5b8135612d31848260208601612c06565b91505092915050565b600082601f830112612d4f57612d4e613808565b5b8135612d5f848260208601612c48565b91505092915050565b600081359050612d778161391b565b92915050565b600060208284031215612d9357612d9261381c565b5b6000612da184828501612c8a565b91505092915050565b60008060408385031215612dc157612dc061381c565b5b6000612dcf85828601612c8a565b9250506020612de085828601612c8a565b9150509250929050565b600080600060608486031215612e0357612e0261381c565b5b6000612e1186828701612c8a565b9350506020612e2286828701612c8a565b9250506040612e3386828701612d68565b9150509250925092565b60008060008060808587031215612e5757612e5661381c565b5b6000612e6587828801612c8a565b9450506020612e7687828801612c8a565b9350506040612e8787828801612d68565b925050606085013567ffffffffffffffff811115612ea857612ea7613817565b5b612eb487828801612d0c565b91505092959194509250565b60008060408385031215612ed757612ed661381c565b5b6000612ee585828601612c8a565b9250506020612ef685828601612ccd565b9150509250929050565b60008060408385031215612f1757612f1661381c565b5b6000612f2585828601612c8a565b9250506020612f3685828601612d68565b9150509250929050565b60008060408385031215612f5757612f5661381c565b5b600083013567ffffffffffffffff811115612f7557612f74613817565b5b612f8185828601612c9f565b9250506020612f9285828601612d68565b9150509250929050565b600060208284031215612fb257612fb161381c565b5b6000612fc084828501612ccd565b91505092915050565b60008060408385031215612fe057612fdf61381c565b5b6000612fee85828601612ccd565b925050602083013567ffffffffffffffff81111561300f5761300e613817565b5b61301b85828601612d3a565b9150509250929050565b60006020828403121561303b5761303a61381c565b5b600061304984828501612ce2565b91505092915050565b6000602082840312156130685761306761381c565b5b600061307684828501612cf7565b91505092915050565b6000602082840312156130955761309461381c565b5b60006130a384828501612d68565b91505092915050565b6130b58161358a565b82525050565b6130c48161359c565b82525050565b60006130d582613427565b6130df818561343d565b93506130ef81856020860161360d565b6130f881613821565b840191505092915050565b600061310e82613432565b6131188185613459565b935061312881856020860161360d565b61313181613821565b840191505092915050565b600061314782613432565b613151818561346a565b935061316181856020860161360d565b80840191505092915050565b600061317a602683613459565b915061318582613832565b604082019050919050565b600061319d60058361346a565b91506131a882613881565b600582019050919050565b60006131c0602083613459565b91506131cb826138aa565b602082019050919050565b60006131e360008361344e565b91506131ee826138d3565b600082019050919050565b613202816135f4565b82525050565b6000613214828561313c565b9150613220828461313c565b915061322b82613190565b91508190509392505050565b6000613242826131d6565b9150819050919050565b600060208201905061326160008301846130ac565b92915050565b600060808201905061327c60008301876130ac565b61328960208301866130ac565b61329660408301856131f9565b81810360608301526132a881846130ca565b905095945050505050565b60006040820190506132c860008301856130ac565b6132d560208301846131f9565b9392505050565b60006020820190506132f160008301846130bb565b92915050565b600060208201905081810360008301526133118184613103565b905092915050565b600060208201905081810360008301526133328161316d565b9050919050565b60006020820190508181036000830152613352816131b3565b9050919050565b600060208201905061336e60008301846131f9565b92915050565b600061337e61338f565b905061338a8282613672565b919050565b6000604051905090565b600067ffffffffffffffff8211156133b4576133b36137d9565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156133e0576133df6137d9565b5b6133e982613821565b9050602081019050919050565b600067ffffffffffffffff821115613411576134106137d9565b5b61341a82613821565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613480826135f4565b915061348b836135f4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134c0576134bf61371d565b5b828201905092915050565b60006134d6826135f4565b91506134e1836135f4565b9250826134f1576134f061374c565b5b828204905092915050565b6000613507826135f4565b9150613512836135f4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354b5761354a61371d565b5b828202905092915050565b6000613561826135f4565b915061356c836135f4565b92508282101561357f5761357e61371d565b5b828203905092915050565b6000613595826135d4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561362b578082015181840152602081019050613610565b8381111561363a576000848401525b50505050565b6000600282049050600182168061365857607f821691505b6020821081141561366c5761366b61377b565b5b50919050565b61367b82613821565b810181811067ffffffffffffffff8211171561369a576136996137d9565b5b80604052505050565b60006136ae826135f4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156136e1576136e061371d565b5b600182019050919050565b60006136f7826135f4565b9150613702836135f4565b9250826137125761371161374c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6138df8161358a565b81146138ea57600080fd5b50565b6138f68161359c565b811461390157600080fd5b50565b61390d816135a8565b811461391857600080fd5b50565b613924816135f4565b811461392f57600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d55726a43444843477a7a3273796242626f6f70694434746d7761514267796263324e66734478436e3565634aa26469706673582212205d0a0c54747b1d77917f2020373f8f47b526872b030e756f6b9b272b72c3f3b564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000009436f726f6f646c657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000009436f726f6f646c65730000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Coroodles
Arg [1] : _symbol (string): Coroodles

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 436f726f6f646c65730000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 436f726f6f646c65730000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

54081:4228:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54325:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17478:665;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22744:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24886:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24405:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16532:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14461:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25895:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14716:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54288;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42976:403;;;:::i;:::-;;57875:166;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14651:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26136:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42589:147;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54253:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58215:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54381:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22533:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54150:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56142:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18207:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3124:103;;;;;;;;;;;;;:::i;:::-;;55674:393;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46113:403;;;:::i;:::-;;2473:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42478:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58088:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22913:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43443:2662;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54178:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25203:340;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56487:522;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42374:96;;;:::i;:::-;;26392:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57017:823;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55435:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42808:118;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54215:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14546:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25614:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3382:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54325:49;;;;;;;;;;;;;;;;;:::o;17478:665::-;17608:4;17928:10;17913:25;;:11;:25;;;;:102;;;;18005:10;17990:25;;:11;:25;;;;17913:102;:179;;;;18082:10;18067:25;;:11;:25;;;;17913:179;17893:199;;17478:665;;;:::o;22744:100::-;22798:13;22831:5;22824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22744:100;:::o;24886:245::-;24990:7;25020:16;25028:7;25020;:16::i;:::-;25015:64;;25045:34;;;;;;;;;;;;;;25015:64;25099:15;:24;25115:7;25099:24;;;;;;;;;;;;;;;;;;;;;25092:31;;24886:245;;;:::o;24405:415::-;24478:13;24510:27;24529:7;24510:18;:27::i;:::-;24478:61;;24579:5;24556:28;;:19;:17;:19::i;:::-;:28;;;24552:175;;24604:44;24621:5;24628:19;:17;:19::i;:::-;24604:16;:44::i;:::-;24599:128;;24676:35;;;;;;;;;;;;;;24599:128;24552:175;24766:2;24739:15;:24;24755:7;24739:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24804:7;24800:2;24784:28;;24793:5;24784:28;;;;;;;;;;;;24467:353;24405:415;;:::o;16532:315::-;16585:7;16813:15;:13;:15::i;:::-;16798:12;;16782:13;;:28;:46;16775:53;;16532:315;:::o;14461:21::-;;;;:::o;25895:170::-;26029:28;26039:4;26045:2;26049:7;26029:9;:28::i;:::-;25895:170;;;:::o;14716:30::-;;;;:::o;54288:::-;;;;;;;;;;;;;:::o;42976:403::-;2704:12;:10;:12::i;:::-;2693:23;;:7;:5;:7::i;:::-;:23;;;2685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43181:19:::1;43228:11;;43212:13;:11;:13::i;:::-;43203:6;;:22;;;;:::i;:::-;:36;;;;:::i;:::-;43181:58;;43265:11;43250;;:26;;;;;;;:::i;:::-;;;;;;;;43288:7;43309:10;43301:24;;43333:11;43301:48;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43287:62;;;43368:2;43360:11;;;::::0;::::1;;43029:350;;42976:403::o:0;57875:166::-;2704:12;:10;:12::i;:::-;2693:23;;:7;:5;:7::i;:::-;:23;;;2685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57996:6:::1;57985:8;;:17;;;;;;;;;;;;;;;;;;58023:10;58013:7;:20;;;;;;;;;;;;:::i;:::-;;57875:166:::0;;:::o;14651:56::-;;;;;;;;;;;;;;;;;:::o;26136:185::-;26274:39;26291:4;26297:2;26301:7;26274:39;;;;;;;;;;;;:16;:39::i;:::-;26136:185;;;:::o;42589:147::-;42641:7;42717:11;;42708:6;;42692:13;:11;:13::i;:::-;:22;;;;:::i;:::-;42668:21;:46;;;;:::i;:::-;:60;;;;:::i;:::-;42661:67;;42589:147;:::o;54253:28::-;;;;;;;;;;;;;:::o;58215:91::-;2704:12;:10;:12::i;:::-;2693:23;;:7;:5;:7::i;:::-;:23;;;2685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58292:6:::1;58279:10;;:19;;;;;;;;;;;;;;;;;;58215:91:::0;:::o;54381:46::-;;;;;;;;;;;;;;;;;:::o;22533:144::-;22597:7;22640:27;22659:7;22640:18;:27::i;:::-;22617:52;;22533:144;;;:::o;54150:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56142:305::-;56236:7;56261:23;56318:1;56287:14;:27;56302:11;56287:27;;;;;;;;;;;;;;;;:32;:92;;56352:14;:27;56367:11;56352:27;;;;;;;;;;;;;;;;56287:92;;;56335:1;56287:92;56261:118;;56415:11;:24;56427:11;56415:24;;;;;;;;;;;;;;;;56397:15;:42;;;;:::i;:::-;56390:49;;;56142:305;;;:::o;18207:234::-;18271:7;18323:1;18295:24;18313:5;18295:17;:24::i;:::-;:29;18291:70;;;18333:28;;;;;;;;;;;;;;18291:70;13112:13;18379:18;:25;18398:5;18379:25;;;;;;;;;;;;;;;;:54;18372:61;;18207:234;;;:::o;3124:103::-;2704:12;:10;:12::i;:::-;2693:23;;:7;:5;:7::i;:::-;:23;;;2685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3189:30:::1;3216:1;3189:18;:30::i;:::-;3124:103::o:0;55674:393::-;2704:12;:10;:12::i;:::-;2693:23;;:7;:5;:7::i;:::-;:23;;;2685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55957:9:::1;55952:108;55972:11;:18;55968:1;:22;55952:108;;;56045:3;56012:14;:30;56027:11;56039:1;56027:14;;;;;;;;:::i;:::-;;;;;;;;56012:30;;;;;;;;;;;;;;;:36;;;;55992:3;;;;;:::i;:::-;;;;55952:108;;;;55674:393:::0;;:::o;46113:403::-;46167:18;46188:31;46208:10;46188:19;:31::i;:::-;46167:52;;46250:1;46236:10;:15;46232:50;;;46260:22;;;;;;;;;;;;;;46232:50;46375:10;46339:20;:32;46360:10;46339:32;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;46426:7;46447:10;46439:24;;46471:10;46439:47;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46425:61;;;46505:2;46497:11;;;;;;46156:360;;46113:403::o;2473:87::-;2519:7;2546:6;;;;;;;;;;;2539:13;;2473:87;:::o;42478:103::-;42525:7;42552:21;42545:28;;42478:103;:::o;58088:90::-;2704:12;:10;:12::i;:::-;2693:23;;:7;:5;:7::i;:::-;:23;;;2685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58161:9:::1;58153:5;:17;;;;58088:90:::0;:::o;22913:104::-;22969:13;23002:7;22995:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22913:104;:::o;43443:2662::-;43558:7;44402:15;44420:21;44402:39;;44721:26;44862:11;;44840:6;;44808:15;:13;:15::i;:::-;44780:12;;44751:13;;:41;;;;:::i;:::-;:72;;;;:::i;:::-;44750:96;;;;:::i;:::-;:123;;;;:::i;:::-;44721:152;;45348:21;45382:18;45372:7;:28;;;;:::i;:::-;45348:52;;45560:18;45714:20;:33;45735:11;45714:33;;;;;;;;;;;;;;;;45676:22;45686:11;45676:9;:22::i;:::-;45643:15;:13;:15::i;:::-;45628:12;;45612:13;;:28;;;;:::i;:::-;:46;;;;:::i;:::-;45582:13;:77;;;;:::i;:::-;45581:117;;;;:::i;:::-;:166;;;;:::i;:::-;45560:187;;46058:1;46044:10;:15;46040:29;;46068:1;46061:8;;;;;;;;46040:29;46087:10;46080:17;;;;;;43443:2662;;;;:::o;54178:30::-;;;;:::o;25203:340::-;25346:19;:17;:19::i;:::-;25334:31;;:8;:31;;;25330:61;;;25374:17;;;;;;;;;;;;;;25330:61;25456:8;25404:18;:39;25423:19;:17;:19::i;:::-;25404:39;;;;;;;;;;;;;;;:49;25444:8;25404:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25516:8;25480:55;;25495:19;:17;:19::i;:::-;25480:55;;;25526:8;25480:55;;;;;;:::i;:::-;;;;;;;;25203:340;;:::o;56487:522::-;56585:10;;;;;;;;;;;54801:5;54795:11;;:2;:11;;;54791:63;;;54830:12;;;;;;;;;;;;;;54791:63;56623:11:::1;54958:1;54943:11;:16;54939:72;;54983:16;;;;;;;;;;;;;;54939:72;55021:14;55038:13;:11;:13::i;:::-;55021:30;;55089:9;;55075:11;55066:6;:20;;;;:::i;:::-;:32;55062:92;;;55122:20;;;;;;;;;;;;;;55062:92;56670:27:::2;56686:10;56670:15;:27::i;:::-;56656:11;:41;56652:107;;;56721:26;;;;;;;;;;;;;;56652:107;56793:11;56785:5;;:19;;;;:::i;:::-;56773:9;:31;56769:92;;;56828:21;;;;;;;;;;;;;;56769:92;56898:11;56871;:23;56883:10;56871:23;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;56920:34;56930:10;56942:11;56920:9;:34::i;:::-;56970:31;56977:10;56989:11;56970:31;;;;;;;:::i;:::-;;;;;;;;54928:245:::1;54864:1;56487:522:::0;;:::o;42374:96::-;42453:9;42416:21;:33;42438:10;42416:33;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;42374:96::o;26392:396::-;26559:28;26569:4;26575:2;26579:7;26559:9;:28::i;:::-;26620:1;26602:2;:14;;;:19;26598:183;;26641:56;26672:4;26678:2;26682:7;26691:5;26641:30;:56::i;:::-;26636:145;;26725:40;;;;;;;;;;;;;;26636:145;26598:183;26392:396;;;;:::o;57017:823::-;57135:13;57171:16;57179:7;57171;:16::i;:::-;57166:75;;57211:18;;;;;;;;;;;;;;57166:75;57267:5;57255:17;;:8;;;;;;;;;;;:17;;;57251:582;;;57289:106;;;;;;;;;;;;;;;;;;;;;57251:582;57428:28;57459:10;:8;:10::i;:::-;57428:41;;57539:1;57514:14;57508:28;:32;:313;;;;;;;;;;;;;;;;;57644:14;57689:18;:7;:16;:18::i;:::-;57597:175;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57508:313;57484:337;;;57017:823;;;;:::o;55435:231::-;2704:12;:10;:12::i;:::-;2693:23;;:7;:5;:7::i;:::-;:23;;;2685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55552:11:::1;54958:1;54943:11;:16;54939:72;;54983:16;;;;;;;;;;;;;;54939:72;55021:14;55038:13;:11;:13::i;:::-;55021:30;;55089:9;;55075:11;55066:6;:20;;;;:::i;:::-;:32;55062:92;;;55122:20;;;;;;;;;;;;;;55062:92;55581:32:::2;55591:8;55601:11;55581:9;:32::i;:::-;55629:29;55636:8;55646:11;55629:29;;;;;;;:::i;:::-;;;;;;;;54928:245:::1;2764:1;55435:231:::0;;:::o;42808:118::-;42855:7;42907:11;;42891:13;:11;:13::i;:::-;42882:6;;:22;;;;:::i;:::-;:36;;;;:::i;:::-;42875:43;;42808:118;:::o;54215:31::-;;;;:::o;14546:55::-;;;;;;;;;;;;;;;;;:::o;25614:214::-;25756:4;25785:18;:25;25804:5;25785:25;;;;;;;;;;;;;;;:35;25811:8;25785:35;;;;;;;;;;;;;;;;;;;;;;;;;25778:42;;25614:214;;;;:::o;3382:238::-;2704:12;:10;:12::i;:::-;2693:23;;:7;:5;:7::i;:::-;:23;;;2685:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3505:1:::1;3485:22;;:8;:22;;;;3463:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3584:28;3603:8;3584:18;:28::i;:::-;3382:238:::0;:::o;27043:273::-;27100:4;27156:7;27137:15;:13;:15::i;:::-;:26;;:66;;;;;27190:13;;27180:7;:23;27137:66;:152;;;;;27288:1;13882:8;27241:17;:26;27259:7;27241:26;;;;;;;;;;;;:43;:48;27137:152;27117:172;;27043:273;;;:::o;19920:1161::-;20014:7;20039:12;20054:7;20039:22;;20122:4;20103:15;:13;:15::i;:::-;:23;20099:915;;20156:13;;20149:4;:20;20145:869;;;20194:14;20211:17;:23;20229:4;20211:23;;;;;;;;;;;;20194:40;;20327:1;13882:8;20300:6;:23;:28;20296:699;;;20819:113;20836:1;20826:6;:11;20819:113;;;20879:17;:25;20897:6;;;;;;;20879:25;;;;;;;;;;;;20870:34;;20819:113;;;20965:6;20958:13;;;;;;20296:699;20171:843;20145:869;20099:915;21042:31;;;;;;;;;;;;;;19920:1161;;;;:::o;40070:105::-;40130:7;40157:10;40150:17;;40070:105;:::o;16056:92::-;16112:7;16056:92;:::o;30934:2667::-;31049:27;31079;31098:7;31079:18;:27::i;:::-;31049:57;;31164:4;31123:45;;31139:19;31123:45;;;31119:99;;31190:28;;;;;;;;;;;;;;31119:99;31231:23;31257:15;:24;31273:7;31257:24;;;;;;;;;;;;;;;;;;;;;31231:50;;31294:22;31343:4;31320:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;31364:43;31381:4;31387:19;:17;:19::i;:::-;31364:16;:43::i;:::-;31320:87;:142;;;;31443:19;:17;:19::i;:::-;31424:38;;:15;:38;;;31320:142;31294:169;;31481:17;31476:66;;31507:35;;;;;;;;;;;;;;31476:66;31582:1;31557:21;31575:2;31557:17;:21::i;:::-;:26;31553:62;;;31592:23;;;;;;;;;;;;;;31553:62;31628:43;31650:4;31656:2;31660:7;31669:1;31628:21;:43::i;:::-;31779:1;31741:34;31759:15;31741:17;:34::i;:::-;:39;31737:103;;31804:15;:24;31820:7;31804:24;;;;;;;;;;;;31797:31;;;;;;;;;;;31737:103;32207:18;:24;32226:4;32207:24;;;;;;;;;;;;;;;;32205:26;;;;;;;;;;;;32276:18;:22;32295:2;32276:22;;;;;;;;;;;;;;;;32274:24;;;;;;;;;;;14160:8;13766:3;32657:15;:41;;32615:21;32633:2;32615:17;:21::i;:::-;:84;:128;32569:17;:26;32587:7;32569:26;;;;;;;;;;;:174;;;;32913:1;14160:8;32863:19;:46;:51;32859:626;;;32935:19;32967:1;32957:7;:11;32935:33;;33124:1;33090:17;:30;33108:11;33090:30;;;;;;;;;;;;:35;33086:384;;;33228:13;;33213:11;:28;33209:242;;33408:19;33375:17;:30;33393:11;33375:30;;;;;;;;;;;:52;;;;33209:242;33086:384;32916:569;32859:626;33532:7;33528:2;33513:27;;33522:4;33513:27;;;;;;;;;;;;33551:42;33572:4;33578:2;33582:7;33591:1;33551:20;:42::i;:::-;31038:2563;;;30934:2667;;;:::o;1284:98::-;1337:7;1364:10;1357:17;;1284:98;:::o;23934:180::-;24025:14;24091:5;24081:15;;23934:180;;;:::o;3780:191::-;3854:16;3873:6;;;;;;;;;;;3854:25;;3899:8;3890:6;;:17;;;;;;;;;;;;;;;;;;3954:8;3923:40;;3944:8;3923:40;;;;;;;;;;;;3843:128;3780:191;:::o;27400:104::-;27469:27;27479:2;27483:8;27469:27;;;;;;;;;;;;:9;:27::i;:::-;27400:104;;:::o;37424:831::-;37587:4;37646:2;37621:45;;;37685:19;:17;:19::i;:::-;37723:4;37746:7;37772:5;37621:171;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37604:644;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38023:1;38006:6;:13;:18;38002:235;;;38052:40;;;;;;;;;;;;;;38002:235;38195:6;38189:13;38180:6;38176:2;38172:15;38165:38;37604:644;37892:54;;;37865:81;;;:6;:81;;;;37841:105;;;37424:831;;;;;;:::o;55292:108::-;55352:13;55385:7;55378:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55292:108;:::o;51929:723::-;51985:13;52215:1;52206:5;:10;52202:53;;;52233:10;;;;;;;;;;;;;;;;;;;;;52202:53;52265:12;52280:5;52265:20;;52296:14;52321:78;52336:1;52328:4;:9;52321:78;;52354:8;;;;;:::i;:::-;;;;52385:2;52377:10;;;;;:::i;:::-;;;52321:78;;;52409:19;52441:6;52431:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52409:39;;52459:154;52475:1;52466:5;:10;52459:154;;52503:1;52493:11;;;;;:::i;:::-;;;52570:2;52562:5;:10;;;;:::i;:::-;52549:2;:24;;;;:::i;:::-;52536:39;;52519:6;52526;52519:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;52599:2;52590:11;;;;;:::i;:::-;;;52459:154;;;52637:6;52623:21;;;;;51929:723;;;;:::o;38903:159::-;;;;;:::o;39721:158::-;;;;;:::o;27891:872::-;28014:19;28020:2;28024:8;28014:5;:19::i;:::-;28093:1;28075:2;:14;;;:19;28071:674;;28115:11;28129:13;;28115:27;;28161:13;28183:8;28177:3;:14;28161:30;;28210:424;28267:205;28336:1;28369:2;28402:7;;;;;;28440:5;28267:30;:205::i;:::-;28236:358;;28530:40;;;;;;;;;;;;;;28236:358;28629:3;28621:5;:11;28210:424;;28716:3;28699:13;;:20;28695:34;;28721:8;;;28695:34;28096:649;;28071:674;27891:872;;;:::o;29036:1644::-;29101:20;29124:13;;29101:36;;29177:1;29152:21;29170:2;29152:17;:21::i;:::-;:26;29148:58;;;29187:19;;;;;;;;;;;;;;29148:58;29233:1;29221:8;:13;29217:44;;;29243:18;;;;;;;;;;;;;;29217:44;29274:61;29304:1;29308:2;29312:12;29326:8;29274:21;:61::i;:::-;29912:1;13249:2;29883:1;:25;;29882:31;29853:8;:61;29810:18;:22;29829:2;29810:22;;;;;;;;;;;;;;;;:104;;;;;;;;;;;14025:3;30313:29;30340:1;30328:8;:13;30313:14;:29::i;:::-;:56;;13766:3;30250:15;:41;;30208:21;30226:2;30208:17;:21::i;:::-;:84;:162;30157:17;:31;30175:12;30157:31;;;;;;;;;;;:213;;;;30387:14;30416:119;30483:8;;;;;;30468:12;:23;30464:2;30443:49;;30460:1;30443:49;;;;;;;;;;;;30525:8;30516:6;:17;30416:119;;30582:8;30567:12;:23;30551:13;:39;;;;29587:1015;30612:60;30641:1;30645:2;30649:12;30663:8;30612:20;:60::i;:::-;29090:1590;29036:1644;;:::o;24201:142::-;24259:14;24320:5;24310:15;;24201:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:684::-;6851:6;6859;6908:2;6896:9;6887:7;6883:23;6879:32;6876:119;;;6914:79;;:::i;:::-;6876:119;7062:1;7051:9;7047:17;7034:31;7092:18;7084:6;7081:30;7078:117;;;7114:79;;:::i;:::-;7078:117;7219:78;7289:7;7280:6;7269:9;7265:22;7219:78;:::i;:::-;7209:88;;7005:302;7346:2;7372:53;7417:7;7408:6;7397:9;7393:22;7372:53;:::i;:::-;7362:63;;7317:118;6758:684;;;;;:::o;7448:323::-;7504:6;7553:2;7541:9;7532:7;7528:23;7524:32;7521:119;;;7559:79;;:::i;:::-;7521:119;7679:1;7704:50;7746:7;7737:6;7726:9;7722:22;7704:50;:::i;:::-;7694:60;;7650:114;7448:323;;;;:::o;7777:648::-;7852:6;7860;7909:2;7897:9;7888:7;7884:23;7880:32;7877:119;;;7915:79;;:::i;:::-;7877:119;8035:1;8060:50;8102:7;8093:6;8082:9;8078:22;8060:50;:::i;:::-;8050:60;;8006:114;8187:2;8176:9;8172:18;8159:32;8218:18;8210:6;8207:30;8204:117;;;8240:79;;:::i;:::-;8204:117;8345:63;8400:7;8391:6;8380:9;8376:22;8345:63;:::i;:::-;8335:73;;8130:288;7777:648;;;;;:::o;8431:327::-;8489:6;8538:2;8526:9;8517:7;8513:23;8509:32;8506:119;;;8544:79;;:::i;:::-;8506:119;8664:1;8689:52;8733:7;8724:6;8713:9;8709:22;8689:52;:::i;:::-;8679:62;;8635:116;8431:327;;;;:::o;8764:349::-;8833:6;8882:2;8870:9;8861:7;8857:23;8853:32;8850:119;;;8888:79;;:::i;:::-;8850:119;9008:1;9033:63;9088:7;9079:6;9068:9;9064:22;9033:63;:::i;:::-;9023:73;;8979:127;8764:349;;;;:::o;9119:329::-;9178:6;9227:2;9215:9;9206:7;9202:23;9198:32;9195:119;;;9233:79;;:::i;:::-;9195:119;9353:1;9378:53;9423:7;9414:6;9403:9;9399:22;9378:53;:::i;:::-;9368:63;;9324:117;9119:329;;;;:::o;9454:118::-;9541:24;9559:5;9541:24;:::i;:::-;9536:3;9529:37;9454:118;;:::o;9578:109::-;9659:21;9674:5;9659:21;:::i;:::-;9654:3;9647:34;9578:109;;:::o;9693:360::-;9779:3;9807:38;9839:5;9807:38;:::i;:::-;9861:70;9924:6;9919:3;9861:70;:::i;:::-;9854:77;;9940:52;9985:6;9980:3;9973:4;9966:5;9962:16;9940:52;:::i;:::-;10017:29;10039:6;10017:29;:::i;:::-;10012:3;10008:39;10001:46;;9783:270;9693:360;;;;:::o;10059:364::-;10147:3;10175:39;10208:5;10175:39;:::i;:::-;10230:71;10294:6;10289:3;10230:71;:::i;:::-;10223:78;;10310:52;10355:6;10350:3;10343:4;10336:5;10332:16;10310:52;:::i;:::-;10387:29;10409:6;10387:29;:::i;:::-;10382:3;10378:39;10371:46;;10151:272;10059:364;;;;:::o;10429:377::-;10535:3;10563:39;10596:5;10563:39;:::i;:::-;10618:89;10700:6;10695:3;10618:89;:::i;:::-;10611:96;;10716:52;10761:6;10756:3;10749:4;10742:5;10738:16;10716:52;:::i;:::-;10793:6;10788:3;10784:16;10777:23;;10539:267;10429:377;;;;:::o;10812:366::-;10954:3;10975:67;11039:2;11034:3;10975:67;:::i;:::-;10968:74;;11051:93;11140:3;11051:93;:::i;:::-;11169:2;11164:3;11160:12;11153:19;;10812:366;;;:::o;11184:400::-;11344:3;11365:84;11447:1;11442:3;11365:84;:::i;:::-;11358:91;;11458:93;11547:3;11458:93;:::i;:::-;11576:1;11571:3;11567:11;11560:18;;11184:400;;;:::o;11590:366::-;11732:3;11753:67;11817:2;11812:3;11753:67;:::i;:::-;11746:74;;11829:93;11918:3;11829:93;:::i;:::-;11947:2;11942:3;11938:12;11931:19;;11590:366;;;:::o;11962:398::-;12121:3;12142:83;12223:1;12218:3;12142:83;:::i;:::-;12135:90;;12234:93;12323:3;12234:93;:::i;:::-;12352:1;12347:3;12343:11;12336:18;;11962:398;;;:::o;12366:118::-;12453:24;12471:5;12453:24;:::i;:::-;12448:3;12441:37;12366:118;;:::o;12490:701::-;12771:3;12793:95;12884:3;12875:6;12793:95;:::i;:::-;12786:102;;12905:95;12996:3;12987:6;12905:95;:::i;:::-;12898:102;;13017:148;13161:3;13017:148;:::i;:::-;13010:155;;13182:3;13175:10;;12490:701;;;;;:::o;13197:379::-;13381:3;13403:147;13546:3;13403:147;:::i;:::-;13396:154;;13567:3;13560:10;;13197:379;;;:::o;13582:222::-;13675:4;13713:2;13702:9;13698:18;13690:26;;13726:71;13794:1;13783:9;13779:17;13770:6;13726:71;:::i;:::-;13582:222;;;;:::o;13810:640::-;14005:4;14043:3;14032:9;14028:19;14020:27;;14057:71;14125:1;14114:9;14110:17;14101:6;14057:71;:::i;:::-;14138:72;14206:2;14195:9;14191:18;14182:6;14138:72;:::i;:::-;14220;14288:2;14277:9;14273:18;14264:6;14220:72;:::i;:::-;14339:9;14333:4;14329:20;14324:2;14313:9;14309:18;14302:48;14367:76;14438:4;14429:6;14367:76;:::i;:::-;14359:84;;13810:640;;;;;;;:::o;14456:332::-;14577:4;14615:2;14604:9;14600:18;14592:26;;14628:71;14696:1;14685:9;14681:17;14672:6;14628:71;:::i;:::-;14709:72;14777:2;14766:9;14762:18;14753:6;14709:72;:::i;:::-;14456:332;;;;;:::o;14794:210::-;14881:4;14919:2;14908:9;14904:18;14896:26;;14932:65;14994:1;14983:9;14979:17;14970:6;14932:65;:::i;:::-;14794:210;;;;:::o;15010:313::-;15123:4;15161:2;15150:9;15146:18;15138:26;;15210:9;15204:4;15200:20;15196:1;15185:9;15181:17;15174:47;15238:78;15311:4;15302:6;15238:78;:::i;:::-;15230:86;;15010:313;;;;:::o;15329:419::-;15495:4;15533:2;15522:9;15518:18;15510:26;;15582:9;15576:4;15572:20;15568:1;15557:9;15553:17;15546:47;15610:131;15736:4;15610:131;:::i;:::-;15602:139;;15329:419;;;:::o;15754:::-;15920:4;15958:2;15947:9;15943:18;15935:26;;16007:9;16001:4;15997:20;15993:1;15982:9;15978:17;15971:47;16035:131;16161:4;16035:131;:::i;:::-;16027:139;;15754:419;;;:::o;16179:222::-;16272:4;16310:2;16299:9;16295:18;16287:26;;16323:71;16391:1;16380:9;16376:17;16367:6;16323:71;:::i;:::-;16179:222;;;;:::o;16407:129::-;16441:6;16468:20;;:::i;:::-;16458:30;;16497:33;16525:4;16517:6;16497:33;:::i;:::-;16407:129;;;:::o;16542:75::-;16575:6;16608:2;16602:9;16592:19;;16542:75;:::o;16623:311::-;16700:4;16790:18;16782:6;16779:30;16776:56;;;16812:18;;:::i;:::-;16776:56;16862:4;16854:6;16850:17;16842:25;;16922:4;16916;16912:15;16904:23;;16623:311;;;:::o;16940:307::-;17001:4;17091:18;17083:6;17080:30;17077:56;;;17113:18;;:::i;:::-;17077:56;17151:29;17173:6;17151:29;:::i;:::-;17143:37;;17235:4;17229;17225:15;17217:23;;16940:307;;;:::o;17253:308::-;17315:4;17405:18;17397:6;17394:30;17391:56;;;17427:18;;:::i;:::-;17391:56;17465:29;17487:6;17465:29;:::i;:::-;17457:37;;17549:4;17543;17539:15;17531:23;;17253:308;;;:::o;17567:98::-;17618:6;17652:5;17646:12;17636:22;;17567:98;;;:::o;17671:99::-;17723:6;17757:5;17751:12;17741:22;;17671:99;;;:::o;17776:168::-;17859:11;17893:6;17888:3;17881:19;17933:4;17928:3;17924:14;17909:29;;17776:168;;;;:::o;17950:147::-;18051:11;18088:3;18073:18;;17950:147;;;;:::o;18103:169::-;18187:11;18221:6;18216:3;18209:19;18261:4;18256:3;18252:14;18237:29;;18103:169;;;;:::o;18278:148::-;18380:11;18417:3;18402:18;;18278:148;;;;:::o;18432:305::-;18472:3;18491:20;18509:1;18491:20;:::i;:::-;18486:25;;18525:20;18543:1;18525:20;:::i;:::-;18520:25;;18679:1;18611:66;18607:74;18604:1;18601:81;18598:107;;;18685:18;;:::i;:::-;18598:107;18729:1;18726;18722:9;18715:16;;18432:305;;;;:::o;18743:185::-;18783:1;18800:20;18818:1;18800:20;:::i;:::-;18795:25;;18834:20;18852:1;18834:20;:::i;:::-;18829:25;;18873:1;18863:35;;18878:18;;:::i;:::-;18863:35;18920:1;18917;18913:9;18908:14;;18743:185;;;;:::o;18934:348::-;18974:7;18997:20;19015:1;18997:20;:::i;:::-;18992:25;;19031:20;19049:1;19031:20;:::i;:::-;19026:25;;19219:1;19151:66;19147:74;19144:1;19141:81;19136:1;19129:9;19122:17;19118:105;19115:131;;;19226:18;;:::i;:::-;19115:131;19274:1;19271;19267:9;19256:20;;18934:348;;;;:::o;19288:191::-;19328:4;19348:20;19366:1;19348:20;:::i;:::-;19343:25;;19382:20;19400:1;19382:20;:::i;:::-;19377:25;;19421:1;19418;19415:8;19412:34;;;19426:18;;:::i;:::-;19412:34;19471:1;19468;19464:9;19456:17;;19288:191;;;;:::o;19485:96::-;19522:7;19551:24;19569:5;19551:24;:::i;:::-;19540:35;;19485:96;;;:::o;19587:90::-;19621:7;19664:5;19657:13;19650:21;19639:32;;19587:90;;;:::o;19683:149::-;19719:7;19759:66;19752:5;19748:78;19737:89;;19683:149;;;:::o;19838:126::-;19875:7;19915:42;19908:5;19904:54;19893:65;;19838:126;;;:::o;19970:77::-;20007:7;20036:5;20025:16;;19970:77;;;:::o;20053:154::-;20137:6;20132:3;20127;20114:30;20199:1;20190:6;20185:3;20181:16;20174:27;20053:154;;;:::o;20213:307::-;20281:1;20291:113;20305:6;20302:1;20299:13;20291:113;;;20390:1;20385:3;20381:11;20375:18;20371:1;20366:3;20362:11;20355:39;20327:2;20324:1;20320:10;20315:15;;20291:113;;;20422:6;20419:1;20416:13;20413:101;;;20502:1;20493:6;20488:3;20484:16;20477:27;20413:101;20262:258;20213:307;;;:::o;20526:320::-;20570:6;20607:1;20601:4;20597:12;20587:22;;20654:1;20648:4;20644:12;20675:18;20665:81;;20731:4;20723:6;20719:17;20709:27;;20665:81;20793:2;20785:6;20782:14;20762:18;20759:38;20756:84;;;20812:18;;:::i;:::-;20756:84;20577:269;20526:320;;;:::o;20852:281::-;20935:27;20957:4;20935:27;:::i;:::-;20927:6;20923:40;21065:6;21053:10;21050:22;21029:18;21017:10;21014:34;21011:62;21008:88;;;21076:18;;:::i;:::-;21008:88;21116:10;21112:2;21105:22;20895:238;20852:281;;:::o;21139:233::-;21178:3;21201:24;21219:5;21201:24;:::i;:::-;21192:33;;21247:66;21240:5;21237:77;21234:103;;;21317:18;;:::i;:::-;21234:103;21364:1;21357:5;21353:13;21346:20;;21139:233;;;:::o;21378:176::-;21410:1;21427:20;21445:1;21427:20;:::i;:::-;21422:25;;21461:20;21479:1;21461:20;:::i;:::-;21456:25;;21500:1;21490:35;;21505:18;;:::i;:::-;21490:35;21546:1;21543;21539:9;21534:14;;21378:176;;;;:::o;21560:180::-;21608:77;21605:1;21598:88;21705:4;21702:1;21695:15;21729:4;21726:1;21719:15;21746:180;21794:77;21791:1;21784:88;21891:4;21888:1;21881:15;21915:4;21912:1;21905:15;21932:180;21980:77;21977:1;21970:88;22077:4;22074:1;22067:15;22101:4;22098:1;22091:15;22118:180;22166:77;22163:1;22156:88;22263:4;22260:1;22253:15;22287:4;22284:1;22277:15;22304:180;22352:77;22349:1;22342:88;22449:4;22446:1;22439:15;22473:4;22470:1;22463:15;22490:117;22599:1;22596;22589:12;22613:117;22722:1;22719;22712:12;22736:117;22845:1;22842;22835:12;22859:117;22968:1;22965;22958:12;22982:117;23091:1;23088;23081:12;23105:102;23146:6;23197:2;23193:7;23188:2;23181:5;23177:14;23173:28;23163:38;;23105:102;;;:::o;23213:225::-;23353:34;23349:1;23341:6;23337:14;23330:58;23422:8;23417:2;23409:6;23405:15;23398:33;23213:225;:::o;23444:155::-;23584:7;23580:1;23572:6;23568:14;23561:31;23444:155;:::o;23605:182::-;23745:34;23741:1;23733:6;23729:14;23722:58;23605:182;:::o;23793:114::-;;:::o;23913:122::-;23986:24;24004:5;23986:24;:::i;:::-;23979:5;23976:35;23966:63;;24025:1;24022;24015:12;23966:63;23913:122;:::o;24041:116::-;24111:21;24126:5;24111:21;:::i;:::-;24104:5;24101:32;24091:60;;24147:1;24144;24137:12;24091:60;24041:116;:::o;24163:120::-;24235:23;24252:5;24235:23;:::i;:::-;24228:5;24225:34;24215:62;;24273:1;24270;24263:12;24215:62;24163:120;:::o;24289:122::-;24362:24;24380:5;24362:24;:::i;:::-;24355:5;24352:35;24342:63;;24401:1;24398;24391:12;24342:63;24289:122;:::o

Swarm Source

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