ETH Price: $3,155.06 (+2.75%)
Gas: 1 Gwei

Token

Deviant Alien Collective (DAC)
 

Overview

Max Total Supply

2,500 DAC

Holders

517

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 DAC
0xb60a8f1c98e6ec4116c7e70a14e5c4ac694ff78a
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:
DeviantAlienCollective

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-05-14
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @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 ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    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;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * 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 See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary 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 {
        _addressData[owner].aux = aux;
    }

    /**
     * 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) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // 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.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

    /**
     * @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, tokenId.toString())) : '';
    }

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @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 == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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.isContract() && !_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 && !_ownerships[tokenId].burned;
    }

    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.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(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 {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is 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 {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        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 Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert 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 {}
}

// File: contracts/dac.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)


//  $$$$$$$\   $$$$$$\   $$$$$$\        $$\   $$\ $$$$$$$$\ $$$$$$$$\ 
//  $$  __$$\ $$  __$$\ $$  __$$\       $$$\  $$ |$$  _____|\__$$  __|
//  $$ |  $$ |$$ /  $$ |$$ /  \__|      $$$$\ $$ |$$ |         $$ |   
//  $$ |  $$ |$$$$$$$$ |$$ |            $$ $$\$$ |$$$$$\       $$ |   
//  $$ |  $$ |$$  __$$ |$$ |            $$ \$$$$ |$$  __|      $$ |   
//  $$ |  $$ |$$ |  $$ |$$ |  $$\       $$ |\$$$ |$$ |         $$ |   
//  $$$$$$$  |$$ |  $$ |\$$$$$$  |      $$ | \$$ |$$ |         $$ |   
//  \_______/ \__|  \__| \______/       \__|  \__|\__|         \__|   





error MintIsPaused();
error MintMoreThanMaxSupply();
error MintMoreThanTxnLimit();
error MintEthValueNotEnough();
error WithdrawFailed();
error MintMoreThanWalletLimit();
error MaxSupplyMoreThanMaxSupplyLimit();
error MaxSupplyLessThanTotalSupply();

pragma solidity ^0.8.4;
/**
 * @title NFT contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract DeviantAlienCollective is ERC721A, Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    using Strings for uint256;

    bool public paused = true;
    bool public revealed = false;

    string public NETWORK_PROVENANCE = "";
    string public notRevealedUri;

    uint256 public maxSupply; // 2500
    uint256 public publicSalePrice; // FREE

    uint public maxMintPerTx; // 5
    uint public maxMintPerWallet; // 5
    string private _baseURIextended;

    mapping(address => bool) public isWhiteListed;

    constructor(string memory name, string memory symbol, uint256 _maxSupply, uint256 _maxMintPerTx, uint256 _publicSalePrice, uint256 _maxMintPerWallet) ERC721A(name, symbol) ReentrancyGuard() {
        maxSupply = _maxSupply;
        publicSalePrice = _publicSalePrice;
        maxMintPerTx = _maxMintPerTx;
        maxMintPerWallet = _maxMintPerWallet;
    }

    function _startTokenId() internal pure override returns (uint256) {
        return 1;
    }

    function mint(uint256 quantity) external payable {
        if (paused) revert MintIsPaused();
        if (quantity <= 0) revert MintZeroQuantity();
        if (quantity > maxMintPerTx) revert MintMoreThanTxnLimit();
        if (_currentIndex + quantity - _startTokenId() > maxSupply) revert MintMoreThanMaxSupply();
        if (this.balanceOf(msg.sender) + quantity > maxMintPerWallet) revert MintMoreThanWalletLimit();

        // _safeMint's second argument now takes in a quantity, not a tokenId.
        _safeMint(msg.sender, quantity);
    }

    function premint(uint256 quantity) external payable onlyOwner {
        if (quantity <= 0) revert MintZeroQuantity();
        if (_currentIndex + quantity - _startTokenId() > maxSupply) revert MintMoreThanMaxSupply();

        // _safeMint's second argument now takes in a quantity, not a tokenId.
        _safeMint(msg.sender, quantity);
    }

    function getTotalSupply() public view returns (uint){
        return totalSupply();
    }

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

    function setBaseURI(string calldata baseURI_) external onlyOwner {
        _baseURIextended = baseURI_;
    }

    function togglePauseState() external onlyOwner {
        paused = !paused;
    }

    function setPublicSalePrice(uint256 _publicSalePrice)external onlyOwner {
        publicSalePrice = _publicSalePrice;
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

      function withdraw() public onlyOwner nonReentrant {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
    /*     
    * Set provenance once it's calculated
    */

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        if (revealed == false) {
            return notRevealedUri;
        }
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }
    
    function setNotRevealedURI(string memory _notRevealedURI) external onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

        function setProvenanceHash(string memory provenanceHash) external onlyOwner {
        NETWORK_PROVENANCE = provenanceHash;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerTx","type":"uint256"},{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"},{"internalType":"uint256","name":"_maxMintPerWallet","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintIsPaused","type":"error"},{"inputs":[],"name":"MintMoreThanMaxSupply","type":"error"},{"inputs":[],"name":"MintMoreThanTxnLimit","type":"error"},{"inputs":[],"name":"MintMoreThanWalletLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"NETWORK_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"premint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicSalePrice","type":"uint256"}],"name":"setPublicSalePrice","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":[],"name":"togglePauseState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff02191690831515021790555060405180602001604052806000815250600b90805190602001906200006192919062000208565b503480156200006f57600080fd5b50604051620041f1380380620041f183398181016040528101906200009591906200034d565b85858160029080519060200190620000af92919062000208565b508060039080519060200190620000c892919062000208565b50620000d96200013160201b60201c565b600081905550505062000101620000f56200013a60201b60201c565b6200014260201b60201c565b600160098190555083600d8190555081600e8190555082600f8190555080601081905550505050505050620005cf565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021690620004c6565b90600052602060002090601f0160209004810192826200023a576000855562000286565b82601f106200025557805160ff191683800117855562000286565b8280016001018555821562000286579182015b828111156200028557825182559160200191906001019062000268565b5b50905062000295919062000299565b5090565b5b80821115620002b45760008160009055506001016200029a565b5090565b6000620002cf620002c98462000450565b62000427565b905082815260208101848484011115620002ee57620002ed62000595565b5b620002fb84828562000490565b509392505050565b600082601f8301126200031b576200031a62000590565b5b81516200032d848260208601620002b8565b91505092915050565b6000815190506200034781620005b5565b92915050565b60008060008060008060c087890312156200036d576200036c6200059f565b5b600087015167ffffffffffffffff8111156200038e576200038d6200059a565b5b6200039c89828a0162000303565b965050602087015167ffffffffffffffff811115620003c057620003bf6200059a565b5b620003ce89828a0162000303565b9550506040620003e189828a0162000336565b9450506060620003f489828a0162000336565b93505060806200040789828a0162000336565b92505060a06200041a89828a0162000336565b9150509295509295509295565b60006200043362000446565b9050620004418282620004fc565b919050565b6000604051905090565b600067ffffffffffffffff8211156200046e576200046d62000561565b5b6200047982620005a4565b9050602081019050919050565b6000819050919050565b60005b83811015620004b057808201518184015260208101905062000493565b83811115620004c0576000848401525b50505050565b60006002820490506001821680620004df57607f821691505b60208210811415620004f657620004f562000532565b5b50919050565b6200050782620005a4565b810181811067ffffffffffffffff8211171562000529576200052862000561565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620005c08162000486565b8114620005cc57600080fd5b50565b613c1280620005df6000396000f3fe60806040526004361061020e5760003560e01c8063715018a611610118578063b228d925116100a0578063d5abeb011161006f578063d5abeb0114610736578063de7fcb1d14610761578063e985e9c51461078c578063f2c4ce1e146107c9578063f2fde38b146107f25761020e565b8063b228d9251461067a578063b88d4fde146106a5578063c4e41b22146106ce578063c87b56dd146106f95761020e565b80639b6860c8116100e75780639b6860c8146105d75780639d5aef3014610602578063a0712d681461061e578063a22cb4651461063a578063a475b5dd146106635761020e565b8063715018a614610541578063791a2519146105585780638da5cb5b1461058157806395d89b41146105ac5761020e565b80632ff912a01161019b57806355f804b31161016a57806355f804b3146104365780635c975abb1461045f5780636352211e1461048a5780636f9170f6146104c757806370a08231146105045761020e565b80632ff912a0146103a05780633ccfd60b146103cb57806342842e0e146103e2578063518302271461040b5761020e565b8063081c8c44116101e2578063081c8c44146102cf578063095ea7b3146102fa578063109695231461032357806318160ddd1461034c57806323b872dd146103775761020e565b80628803d31461021357806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292575b600080fd5b34801561021f57600080fd5b5061022861081b565b005b34801561023657600080fd5b50610251600480360381019061024c91906131b8565b6108c3565b60405161025e919061354f565b60405180910390f35b34801561027357600080fd5b5061027c6109a5565b604051610289919061356a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906132a8565b610a37565b6040516102c691906134e8565b60405180910390f35b3480156102db57600080fd5b506102e4610ab3565b6040516102f1919061356a565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613178565b610b41565b005b34801561032f57600080fd5b5061034a6004803603810190610345919061325f565b610c4c565b005b34801561035857600080fd5b50610361610ce2565b60405161036e919061360c565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613062565b610cf9565b005b3480156103ac57600080fd5b506103b5610d09565b6040516103c2919061356a565b60405180910390f35b3480156103d757600080fd5b506103e0610d97565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613062565b610ee9565b005b34801561041757600080fd5b50610420610f09565b60405161042d919061354f565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613212565b610f1c565b005b34801561046b57600080fd5b50610474610fae565b604051610481919061354f565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac91906132a8565b610fc1565b6040516104be91906134e8565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612ff5565b610fd7565b6040516104fb919061354f565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612ff5565b610ff7565b604051610538919061360c565b60405180910390f35b34801561054d57600080fd5b506105566110c7565b005b34801561056457600080fd5b5061057f600480360381019061057a91906132a8565b61114f565b005b34801561058d57600080fd5b506105966111d5565b6040516105a391906134e8565b60405180910390f35b3480156105b857600080fd5b506105c16111ff565b6040516105ce919061356a565b60405180910390f35b3480156105e357600080fd5b506105ec611291565b6040516105f9919061360c565b60405180910390f35b61061c600480360381019061061791906132a8565b611297565b005b610638600480360381019061063391906132a8565b6113b5565b005b34801561064657600080fd5b50610661600480360381019061065c9190613138565b6115a9565b005b34801561066f57600080fd5b50610678611721565b005b34801561068657600080fd5b5061068f6117ba565b60405161069c919061360c565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906130b5565b6117c0565b005b3480156106da57600080fd5b506106e361183c565b6040516106f0919061360c565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b91906132a8565b61184b565b60405161072d919061356a565b60405180910390f35b34801561074257600080fd5b5061074b6119a1565b604051610758919061360c565b60405180910390f35b34801561076d57600080fd5b506107766119a7565b604051610783919061360c565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613022565b6119ad565b6040516107c0919061354f565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb919061325f565b611a41565b005b3480156107fe57600080fd5b5061081960048036038101906108149190612ff5565b611ad7565b005b610823611bcf565b73ffffffffffffffffffffffffffffffffffffffff166108416111d5565b73ffffffffffffffffffffffffffffffffffffffff1614610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e906135ac565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099e575061099d82611bd7565b5b9050919050565b6060600280546109b49061386d565b80601f01602080910402602001604051908101604052809291908181526020018280546109e09061386d565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000610a4282611c41565b610a78576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610ac09061386d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec9061386d565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b505050505081565b6000610b4c82610fc1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd3611bcf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c055750610c0381610bfe611bcf565b6119ad565b155b15610c3c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c47838383611c8f565b505050565b610c54611bcf565b73ffffffffffffffffffffffffffffffffffffffff16610c726111d5565b73ffffffffffffffffffffffffffffffffffffffff1614610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906135ac565b60405180910390fd5b80600b9080519060200190610cde929190612cd5565b5050565b6000610cec611d41565b6001546000540303905090565b610d04838383611d4a565b505050565b600b8054610d169061386d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d429061386d565b8015610d8f5780601f10610d6457610100808354040283529160200191610d8f565b820191906000526020600020905b815481529060010190602001808311610d7257829003601f168201915b505050505081565b610d9f611bcf565b73ffffffffffffffffffffffffffffffffffffffff16610dbd6111d5565b73ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a906135ac565b60405180910390fd5b60026009541415610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e50906135ec565b60405180910390fd5b60026009819055506000610e6b6111d5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e8e906134d3565b60006040518083038185875af1925050503d8060008114610ecb576040519150601f19603f3d011682016040523d82523d6000602084013e610ed0565b606091505b5050905080610ede57600080fd5b506001600981905550565b610f04838383604051806020016040528060008152506117c0565b505050565b600a60019054906101000a900460ff1681565b610f24611bcf565b73ffffffffffffffffffffffffffffffffffffffff16610f426111d5565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906135ac565b60405180910390fd5b818160119190610fa9929190612d5b565b505050565b600a60009054906101000a900460ff1681565b6000610fcc82612200565b600001519050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110cf611bcf565b73ffffffffffffffffffffffffffffffffffffffff166110ed6111d5565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906135ac565b60405180910390fd5b61114d600061248f565b565b611157611bcf565b73ffffffffffffffffffffffffffffffffffffffff166111756111d5565b73ffffffffffffffffffffffffffffffffffffffff16146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c2906135ac565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120e9061386d565b80601f016020809104026020016040519081016040528092919081815260200182805461123a9061386d565b80156112875780601f1061125c57610100808354040283529160200191611287565b820191906000526020600020905b81548152906001019060200180831161126a57829003601f168201915b5050505050905090565b600e5481565b61129f611bcf565b73ffffffffffffffffffffffffffffffffffffffff166112bd6111d5565b73ffffffffffffffffffffffffffffffffffffffff1614611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906135ac565b60405180910390fd5b6000811161134d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54611358611d41565b8260005461136691906136fc565b6113709190613783565b11156113a8576040517fb7e018dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113b23382612555565b50565b600a60009054906101000a900460ff16156113fc576040517f58fc318200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008111611436576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f54811115611472576040517f44f9da8300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5461147d611d41565b8260005461148b91906136fc565b6114959190613783565b11156114cd576040517fb7e018dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601054813073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161150a91906134e8565b60206040518083038186803b15801561152257600080fd5b505afa158015611536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155a91906132d5565b61156491906136fc565b111561159c576040517fa9e7b96d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115a63382612555565b50565b6115b1611bcf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611616576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611623611bcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d0611bcf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611715919061354f565b60405180910390a35050565b611729611bcf565b73ffffffffffffffffffffffffffffffffffffffff166117476111d5565b73ffffffffffffffffffffffffffffffffffffffff161461179d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611794906135ac565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b60105481565b6117cb848484611d4a565b6117ea8373ffffffffffffffffffffffffffffffffffffffff16612573565b80156117ff57506117fd84848484612596565b155b15611836576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611846610ce2565b905090565b606061185682611c41565b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906135cc565b60405180910390fd5b60001515600a60019054906101000a900460ff161515141561194357600c80546118be9061386d565b80601f01602080910402602001604051908101604052809291908181526020018280546118ea9061386d565b80156119375780601f1061190c57610100808354040283529160200191611937565b820191906000526020600020905b81548152906001019060200180831161191a57829003601f168201915b5050505050905061199c565b600061194d6126f6565b9050600081511161196d5760405180602001604052806000815250611998565b8061197784612788565b6040516020016119889291906134a4565b6040516020818303038152906040525b9150505b919050565b600d5481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a49611bcf565b73ffffffffffffffffffffffffffffffffffffffff16611a676111d5565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906135ac565b60405180910390fd5b80600c9080519060200190611ad3929190612cd5565b5050565b611adf611bcf565b73ffffffffffffffffffffffffffffffffffffffff16611afd6111d5565b73ffffffffffffffffffffffffffffffffffffffff1614611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a906135ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba9061358c565b60405180910390fd5b611bcc8161248f565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c4c611d41565b11158015611c5b575060005482105b8015611c88575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d5582612200565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dc0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611de1611bcf565b73ffffffffffffffffffffffffffffffffffffffff161480611e105750611e0f85611e0a611bcf565b6119ad565b5b80611e555750611e1e611bcf565b73ffffffffffffffffffffffffffffffffffffffff16611e3d84610a37565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e8e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ef5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0285858560016128e9565b611f0e60008487611c8f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218e57600054821461218d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f985858560016128ef565b5050505050565b612208612de1565b600082905080612216611d41565b11158015612225575060005481105b15612458576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161245657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461233a57809250505061248a565b5b60011561245557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461245057809250505061248a565b61233b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61256f8282604051806020016040528060008152506128f5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125bc611bcf565b8786866040518563ffffffff1660e01b81526004016125de9493929190613503565b602060405180830381600087803b1580156125f857600080fd5b505af192505050801561262957506040513d601f19601f8201168201806040525081019061262691906131e5565b60015b6126a3573d8060008114612659576040519150601f19603f3d011682016040523d82523d6000602084013e61265e565b606091505b5060008151141561269b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601180546127059061386d565b80601f01602080910402602001604051908101604052809291908181526020018280546127319061386d565b801561277e5780601f106127535761010080835404028352916020019161277e565b820191906000526020600020905b81548152906001019060200180831161276157829003601f168201915b5050505050905090565b606060008214156127d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128e4565b600082905060005b600082146128025780806127eb906138d0565b915050600a826127fb9190613752565b91506127d8565b60008167ffffffffffffffff81111561281e5761281d613a06565b5b6040519080825280601f01601f1916602001820160405280156128505781602001600182028036833780820191505090505b5090505b600085146128dd576001826128699190613783565b9150600a856128789190613919565b603061288491906136fc565b60f81b81838151811061289a576128996139d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128d69190613752565b9450612854565b8093505050505b919050565b50505050565b50505050565b6129028383836001612907565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612974576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129bc60008683876128e9565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b865750612b858773ffffffffffffffffffffffffffffffffffffffff16612573565b5b15612c4c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bfb6000888480600101955088612596565b612c31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b8c578260005414612c4757600080fd5b612cb8565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c4d575b816000819055505050612cce60008683876128ef565b5050505050565b828054612ce19061386d565b90600052602060002090601f016020900481019282612d035760008555612d4a565b82601f10612d1c57805160ff1916838001178555612d4a565b82800160010185558215612d4a579182015b82811115612d49578251825591602001919060010190612d2e565b5b509050612d579190612e24565b5090565b828054612d679061386d565b90600052602060002090601f016020900481019282612d895760008555612dd0565b82601f10612da257803560ff1916838001178555612dd0565b82800160010185558215612dd0579182015b82811115612dcf578235825591602001919060010190612db4565b5b509050612ddd9190612e24565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e3d576000816000905550600101612e25565b5090565b6000612e54612e4f8461364c565b613627565b905082815260208101848484011115612e7057612e6f613a44565b5b612e7b84828561382b565b509392505050565b6000612e96612e918461367d565b613627565b905082815260208101848484011115612eb257612eb1613a44565b5b612ebd84828561382b565b509392505050565b600081359050612ed481613b80565b92915050565b600081359050612ee981613b97565b92915050565b600081359050612efe81613bae565b92915050565b600081519050612f1381613bae565b92915050565b600082601f830112612f2e57612f2d613a3a565b5b8135612f3e848260208601612e41565b91505092915050565b60008083601f840112612f5d57612f5c613a3a565b5b8235905067ffffffffffffffff811115612f7a57612f79613a35565b5b602083019150836001820283011115612f9657612f95613a3f565b5b9250929050565b600082601f830112612fb257612fb1613a3a565b5b8135612fc2848260208601612e83565b91505092915050565b600081359050612fda81613bc5565b92915050565b600081519050612fef81613bc5565b92915050565b60006020828403121561300b5761300a613a4e565b5b600061301984828501612ec5565b91505092915050565b6000806040838503121561303957613038613a4e565b5b600061304785828601612ec5565b925050602061305885828601612ec5565b9150509250929050565b60008060006060848603121561307b5761307a613a4e565b5b600061308986828701612ec5565b935050602061309a86828701612ec5565b92505060406130ab86828701612fcb565b9150509250925092565b600080600080608085870312156130cf576130ce613a4e565b5b60006130dd87828801612ec5565b94505060206130ee87828801612ec5565b93505060406130ff87828801612fcb565b925050606085013567ffffffffffffffff8111156131205761311f613a49565b5b61312c87828801612f19565b91505092959194509250565b6000806040838503121561314f5761314e613a4e565b5b600061315d85828601612ec5565b925050602061316e85828601612eda565b9150509250929050565b6000806040838503121561318f5761318e613a4e565b5b600061319d85828601612ec5565b92505060206131ae85828601612fcb565b9150509250929050565b6000602082840312156131ce576131cd613a4e565b5b60006131dc84828501612eef565b91505092915050565b6000602082840312156131fb576131fa613a4e565b5b600061320984828501612f04565b91505092915050565b6000806020838503121561322957613228613a4e565b5b600083013567ffffffffffffffff81111561324757613246613a49565b5b61325385828601612f47565b92509250509250929050565b60006020828403121561327557613274613a4e565b5b600082013567ffffffffffffffff81111561329357613292613a49565b5b61329f84828501612f9d565b91505092915050565b6000602082840312156132be576132bd613a4e565b5b60006132cc84828501612fcb565b91505092915050565b6000602082840312156132eb576132ea613a4e565b5b60006132f984828501612fe0565b91505092915050565b61330b816137b7565b82525050565b61331a816137c9565b82525050565b600061332b826136ae565b61333581856136c4565b935061334581856020860161383a565b61334e81613a53565b840191505092915050565b6000613364826136b9565b61336e81856136e0565b935061337e81856020860161383a565b61338781613a53565b840191505092915050565b600061339d826136b9565b6133a781856136f1565b93506133b781856020860161383a565b80840191505092915050565b60006133d06026836136e0565b91506133db82613a64565b604082019050919050565b60006133f36005836136f1565b91506133fe82613ab3565b600582019050919050565b60006134166020836136e0565b915061342182613adc565b602082019050919050565b6000613439602f836136e0565b915061344482613b05565b604082019050919050565b600061345c6000836136d5565b915061346782613b54565b600082019050919050565b600061347f601f836136e0565b915061348a82613b57565b602082019050919050565b61349e81613821565b82525050565b60006134b08285613392565b91506134bc8284613392565b91506134c7826133e6565b91508190509392505050565b60006134de8261344f565b9150819050919050565b60006020820190506134fd6000830184613302565b92915050565b60006080820190506135186000830187613302565b6135256020830186613302565b6135326040830185613495565b81810360608301526135448184613320565b905095945050505050565b60006020820190506135646000830184613311565b92915050565b600060208201905081810360008301526135848184613359565b905092915050565b600060208201905081810360008301526135a5816133c3565b9050919050565b600060208201905081810360008301526135c581613409565b9050919050565b600060208201905081810360008301526135e58161342c565b9050919050565b6000602082019050818103600083015261360581613472565b9050919050565b60006020820190506136216000830184613495565b92915050565b6000613631613642565b905061363d828261389f565b919050565b6000604051905090565b600067ffffffffffffffff82111561366757613666613a06565b5b61367082613a53565b9050602081019050919050565b600067ffffffffffffffff82111561369857613697613a06565b5b6136a182613a53565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061370782613821565b915061371283613821565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137475761374661394a565b5b828201905092915050565b600061375d82613821565b915061376883613821565b92508261377857613777613979565b5b828204905092915050565b600061378e82613821565b915061379983613821565b9250828210156137ac576137ab61394a565b5b828203905092915050565b60006137c282613801565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561385857808201518184015260208101905061383d565b83811115613867576000848401525b50505050565b6000600282049050600182168061388557607f821691505b60208210811415613899576138986139a8565b5b50919050565b6138a882613a53565b810181811067ffffffffffffffff821117156138c7576138c6613a06565b5b80604052505050565b60006138db82613821565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390e5761390d61394a565b5b600182019050919050565b600061392482613821565b915061392f83613821565b92508261393f5761393e613979565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613b89816137b7565b8114613b9457600080fd5b50565b613ba0816137c9565b8114613bab57600080fd5b50565b613bb7816137d5565b8114613bc257600080fd5b50565b613bce81613821565b8114613bd957600080fd5b5056fea26469706673582212208c0bc4e5cdb56ff6b0cf65cddd2030a7ebba61f148e514b8c311df1647132a6f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000001844657669616e7420416c69656e20436f6c6c656374697665000000000000000000000000000000000000000000000000000000000000000000000000000000034441430000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020e5760003560e01c8063715018a611610118578063b228d925116100a0578063d5abeb011161006f578063d5abeb0114610736578063de7fcb1d14610761578063e985e9c51461078c578063f2c4ce1e146107c9578063f2fde38b146107f25761020e565b8063b228d9251461067a578063b88d4fde146106a5578063c4e41b22146106ce578063c87b56dd146106f95761020e565b80639b6860c8116100e75780639b6860c8146105d75780639d5aef3014610602578063a0712d681461061e578063a22cb4651461063a578063a475b5dd146106635761020e565b8063715018a614610541578063791a2519146105585780638da5cb5b1461058157806395d89b41146105ac5761020e565b80632ff912a01161019b57806355f804b31161016a57806355f804b3146104365780635c975abb1461045f5780636352211e1461048a5780636f9170f6146104c757806370a08231146105045761020e565b80632ff912a0146103a05780633ccfd60b146103cb57806342842e0e146103e2578063518302271461040b5761020e565b8063081c8c44116101e2578063081c8c44146102cf578063095ea7b3146102fa578063109695231461032357806318160ddd1461034c57806323b872dd146103775761020e565b80628803d31461021357806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292575b600080fd5b34801561021f57600080fd5b5061022861081b565b005b34801561023657600080fd5b50610251600480360381019061024c91906131b8565b6108c3565b60405161025e919061354f565b60405180910390f35b34801561027357600080fd5b5061027c6109a5565b604051610289919061356a565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906132a8565b610a37565b6040516102c691906134e8565b60405180910390f35b3480156102db57600080fd5b506102e4610ab3565b6040516102f1919061356a565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190613178565b610b41565b005b34801561032f57600080fd5b5061034a6004803603810190610345919061325f565b610c4c565b005b34801561035857600080fd5b50610361610ce2565b60405161036e919061360c565b60405180910390f35b34801561038357600080fd5b5061039e60048036038101906103999190613062565b610cf9565b005b3480156103ac57600080fd5b506103b5610d09565b6040516103c2919061356a565b60405180910390f35b3480156103d757600080fd5b506103e0610d97565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613062565b610ee9565b005b34801561041757600080fd5b50610420610f09565b60405161042d919061354f565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613212565b610f1c565b005b34801561046b57600080fd5b50610474610fae565b604051610481919061354f565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac91906132a8565b610fc1565b6040516104be91906134e8565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e99190612ff5565b610fd7565b6040516104fb919061354f565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190612ff5565b610ff7565b604051610538919061360c565b60405180910390f35b34801561054d57600080fd5b506105566110c7565b005b34801561056457600080fd5b5061057f600480360381019061057a91906132a8565b61114f565b005b34801561058d57600080fd5b506105966111d5565b6040516105a391906134e8565b60405180910390f35b3480156105b857600080fd5b506105c16111ff565b6040516105ce919061356a565b60405180910390f35b3480156105e357600080fd5b506105ec611291565b6040516105f9919061360c565b60405180910390f35b61061c600480360381019061061791906132a8565b611297565b005b610638600480360381019061063391906132a8565b6113b5565b005b34801561064657600080fd5b50610661600480360381019061065c9190613138565b6115a9565b005b34801561066f57600080fd5b50610678611721565b005b34801561068657600080fd5b5061068f6117ba565b60405161069c919061360c565b60405180910390f35b3480156106b157600080fd5b506106cc60048036038101906106c791906130b5565b6117c0565b005b3480156106da57600080fd5b506106e361183c565b6040516106f0919061360c565b60405180910390f35b34801561070557600080fd5b50610720600480360381019061071b91906132a8565b61184b565b60405161072d919061356a565b60405180910390f35b34801561074257600080fd5b5061074b6119a1565b604051610758919061360c565b60405180910390f35b34801561076d57600080fd5b506107766119a7565b604051610783919061360c565b60405180910390f35b34801561079857600080fd5b506107b360048036038101906107ae9190613022565b6119ad565b6040516107c0919061354f565b60405180910390f35b3480156107d557600080fd5b506107f060048036038101906107eb919061325f565b611a41565b005b3480156107fe57600080fd5b5061081960048036038101906108149190612ff5565b611ad7565b005b610823611bcf565b73ffffffffffffffffffffffffffffffffffffffff166108416111d5565b73ffffffffffffffffffffffffffffffffffffffff1614610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e906135ac565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099e575061099d82611bd7565b5b9050919050565b6060600280546109b49061386d565b80601f01602080910402602001604051908101604052809291908181526020018280546109e09061386d565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000610a4282611c41565b610a78576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c8054610ac09061386d565b80601f0160208091040260200160405190810160405280929190818152602001828054610aec9061386d565b8015610b395780601f10610b0e57610100808354040283529160200191610b39565b820191906000526020600020905b815481529060010190602001808311610b1c57829003601f168201915b505050505081565b6000610b4c82610fc1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd3611bcf565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c055750610c0381610bfe611bcf565b6119ad565b155b15610c3c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c47838383611c8f565b505050565b610c54611bcf565b73ffffffffffffffffffffffffffffffffffffffff16610c726111d5565b73ffffffffffffffffffffffffffffffffffffffff1614610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf906135ac565b60405180910390fd5b80600b9080519060200190610cde929190612cd5565b5050565b6000610cec611d41565b6001546000540303905090565b610d04838383611d4a565b505050565b600b8054610d169061386d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d429061386d565b8015610d8f5780601f10610d6457610100808354040283529160200191610d8f565b820191906000526020600020905b815481529060010190602001808311610d7257829003601f168201915b505050505081565b610d9f611bcf565b73ffffffffffffffffffffffffffffffffffffffff16610dbd6111d5565b73ffffffffffffffffffffffffffffffffffffffff1614610e13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0a906135ac565b60405180910390fd5b60026009541415610e59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e50906135ec565b60405180910390fd5b60026009819055506000610e6b6111d5565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e8e906134d3565b60006040518083038185875af1925050503d8060008114610ecb576040519150601f19603f3d011682016040523d82523d6000602084013e610ed0565b606091505b5050905080610ede57600080fd5b506001600981905550565b610f04838383604051806020016040528060008152506117c0565b505050565b600a60019054906101000a900460ff1681565b610f24611bcf565b73ffffffffffffffffffffffffffffffffffffffff16610f426111d5565b73ffffffffffffffffffffffffffffffffffffffff1614610f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8f906135ac565b60405180910390fd5b818160119190610fa9929190612d5b565b505050565b600a60009054906101000a900460ff1681565b6000610fcc82612200565b600001519050919050565b60126020528060005260406000206000915054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561105f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6110cf611bcf565b73ffffffffffffffffffffffffffffffffffffffff166110ed6111d5565b73ffffffffffffffffffffffffffffffffffffffff1614611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a906135ac565b60405180910390fd5b61114d600061248f565b565b611157611bcf565b73ffffffffffffffffffffffffffffffffffffffff166111756111d5565b73ffffffffffffffffffffffffffffffffffffffff16146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c2906135ac565b60405180910390fd5b80600e8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461120e9061386d565b80601f016020809104026020016040519081016040528092919081815260200182805461123a9061386d565b80156112875780601f1061125c57610100808354040283529160200191611287565b820191906000526020600020905b81548152906001019060200180831161126a57829003601f168201915b5050505050905090565b600e5481565b61129f611bcf565b73ffffffffffffffffffffffffffffffffffffffff166112bd6111d5565b73ffffffffffffffffffffffffffffffffffffffff1614611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a906135ac565b60405180910390fd5b6000811161134d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d54611358611d41565b8260005461136691906136fc565b6113709190613783565b11156113a8576040517fb7e018dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6113b23382612555565b50565b600a60009054906101000a900460ff16156113fc576040517f58fc318200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008111611436576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600f54811115611472576040517f44f9da8300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d5461147d611d41565b8260005461148b91906136fc565b6114959190613783565b11156114cd576040517fb7e018dc00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b601054813073ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b815260040161150a91906134e8565b60206040518083038186803b15801561152257600080fd5b505afa158015611536573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061155a91906132d5565b61156491906136fc565b111561159c576040517fa9e7b96d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115a63382612555565b50565b6115b1611bcf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611616576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611623611bcf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d0611bcf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611715919061354f565b60405180910390a35050565b611729611bcf565b73ffffffffffffffffffffffffffffffffffffffff166117476111d5565b73ffffffffffffffffffffffffffffffffffffffff161461179d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611794906135ac565b60405180910390fd5b6001600a60016101000a81548160ff021916908315150217905550565b60105481565b6117cb848484611d4a565b6117ea8373ffffffffffffffffffffffffffffffffffffffff16612573565b80156117ff57506117fd84848484612596565b155b15611836576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611846610ce2565b905090565b606061185682611c41565b611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c906135cc565b60405180910390fd5b60001515600a60019054906101000a900460ff161515141561194357600c80546118be9061386d565b80601f01602080910402602001604051908101604052809291908181526020018280546118ea9061386d565b80156119375780601f1061190c57610100808354040283529160200191611937565b820191906000526020600020905b81548152906001019060200180831161191a57829003601f168201915b5050505050905061199c565b600061194d6126f6565b9050600081511161196d5760405180602001604052806000815250611998565b8061197784612788565b6040516020016119889291906134a4565b6040516020818303038152906040525b9150505b919050565b600d5481565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a49611bcf565b73ffffffffffffffffffffffffffffffffffffffff16611a676111d5565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab4906135ac565b60405180910390fd5b80600c9080519060200190611ad3929190612cd5565b5050565b611adf611bcf565b73ffffffffffffffffffffffffffffffffffffffff16611afd6111d5565b73ffffffffffffffffffffffffffffffffffffffff1614611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a906135ac565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bba9061358c565b60405180910390fd5b611bcc8161248f565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611c4c611d41565b11158015611c5b575060005482105b8015611c88575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611d5582612200565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611dc0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611de1611bcf565b73ffffffffffffffffffffffffffffffffffffffff161480611e105750611e0f85611e0a611bcf565b6119ad565b5b80611e555750611e1e611bcf565b73ffffffffffffffffffffffffffffffffffffffff16611e3d84610a37565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e8e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ef5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f0285858560016128e9565b611f0e60008487611c8f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561218e57600054821461218d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121f985858560016128ef565b5050505050565b612208612de1565b600082905080612216611d41565b11158015612225575060005481105b15612458576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161245657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461233a57809250505061248a565b5b60011561245557818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461245057809250505061248a565b61233b565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61256f8282604051806020016040528060008152506128f5565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125bc611bcf565b8786866040518563ffffffff1660e01b81526004016125de9493929190613503565b602060405180830381600087803b1580156125f857600080fd5b505af192505050801561262957506040513d601f19601f8201168201806040525081019061262691906131e5565b60015b6126a3573d8060008114612659576040519150601f19603f3d011682016040523d82523d6000602084013e61265e565b606091505b5060008151141561269b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601180546127059061386d565b80601f01602080910402602001604051908101604052809291908181526020018280546127319061386d565b801561277e5780601f106127535761010080835404028352916020019161277e565b820191906000526020600020905b81548152906001019060200180831161276157829003601f168201915b5050505050905090565b606060008214156127d0576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128e4565b600082905060005b600082146128025780806127eb906138d0565b915050600a826127fb9190613752565b91506127d8565b60008167ffffffffffffffff81111561281e5761281d613a06565b5b6040519080825280601f01601f1916602001820160405280156128505781602001600182028036833780820191505090505b5090505b600085146128dd576001826128699190613783565b9150600a856128789190613919565b603061288491906136fc565b60f81b81838151811061289a576128996139d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128d69190613752565b9450612854565b8093505050505b919050565b50505050565b50505050565b6129028383836001612907565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612974576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156129af576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129bc60008683876128e9565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612b865750612b858773ffffffffffffffffffffffffffffffffffffffff16612573565b5b15612c4c575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bfb6000888480600101955088612596565b612c31576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612b8c578260005414612c4757600080fd5b612cb8565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612c4d575b816000819055505050612cce60008683876128ef565b5050505050565b828054612ce19061386d565b90600052602060002090601f016020900481019282612d035760008555612d4a565b82601f10612d1c57805160ff1916838001178555612d4a565b82800160010185558215612d4a579182015b82811115612d49578251825591602001919060010190612d2e565b5b509050612d579190612e24565b5090565b828054612d679061386d565b90600052602060002090601f016020900481019282612d895760008555612dd0565b82601f10612da257803560ff1916838001178555612dd0565b82800160010185558215612dd0579182015b82811115612dcf578235825591602001919060010190612db4565b5b509050612ddd9190612e24565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e3d576000816000905550600101612e25565b5090565b6000612e54612e4f8461364c565b613627565b905082815260208101848484011115612e7057612e6f613a44565b5b612e7b84828561382b565b509392505050565b6000612e96612e918461367d565b613627565b905082815260208101848484011115612eb257612eb1613a44565b5b612ebd84828561382b565b509392505050565b600081359050612ed481613b80565b92915050565b600081359050612ee981613b97565b92915050565b600081359050612efe81613bae565b92915050565b600081519050612f1381613bae565b92915050565b600082601f830112612f2e57612f2d613a3a565b5b8135612f3e848260208601612e41565b91505092915050565b60008083601f840112612f5d57612f5c613a3a565b5b8235905067ffffffffffffffff811115612f7a57612f79613a35565b5b602083019150836001820283011115612f9657612f95613a3f565b5b9250929050565b600082601f830112612fb257612fb1613a3a565b5b8135612fc2848260208601612e83565b91505092915050565b600081359050612fda81613bc5565b92915050565b600081519050612fef81613bc5565b92915050565b60006020828403121561300b5761300a613a4e565b5b600061301984828501612ec5565b91505092915050565b6000806040838503121561303957613038613a4e565b5b600061304785828601612ec5565b925050602061305885828601612ec5565b9150509250929050565b60008060006060848603121561307b5761307a613a4e565b5b600061308986828701612ec5565b935050602061309a86828701612ec5565b92505060406130ab86828701612fcb565b9150509250925092565b600080600080608085870312156130cf576130ce613a4e565b5b60006130dd87828801612ec5565b94505060206130ee87828801612ec5565b93505060406130ff87828801612fcb565b925050606085013567ffffffffffffffff8111156131205761311f613a49565b5b61312c87828801612f19565b91505092959194509250565b6000806040838503121561314f5761314e613a4e565b5b600061315d85828601612ec5565b925050602061316e85828601612eda565b9150509250929050565b6000806040838503121561318f5761318e613a4e565b5b600061319d85828601612ec5565b92505060206131ae85828601612fcb565b9150509250929050565b6000602082840312156131ce576131cd613a4e565b5b60006131dc84828501612eef565b91505092915050565b6000602082840312156131fb576131fa613a4e565b5b600061320984828501612f04565b91505092915050565b6000806020838503121561322957613228613a4e565b5b600083013567ffffffffffffffff81111561324757613246613a49565b5b61325385828601612f47565b92509250509250929050565b60006020828403121561327557613274613a4e565b5b600082013567ffffffffffffffff81111561329357613292613a49565b5b61329f84828501612f9d565b91505092915050565b6000602082840312156132be576132bd613a4e565b5b60006132cc84828501612fcb565b91505092915050565b6000602082840312156132eb576132ea613a4e565b5b60006132f984828501612fe0565b91505092915050565b61330b816137b7565b82525050565b61331a816137c9565b82525050565b600061332b826136ae565b61333581856136c4565b935061334581856020860161383a565b61334e81613a53565b840191505092915050565b6000613364826136b9565b61336e81856136e0565b935061337e81856020860161383a565b61338781613a53565b840191505092915050565b600061339d826136b9565b6133a781856136f1565b93506133b781856020860161383a565b80840191505092915050565b60006133d06026836136e0565b91506133db82613a64565b604082019050919050565b60006133f36005836136f1565b91506133fe82613ab3565b600582019050919050565b60006134166020836136e0565b915061342182613adc565b602082019050919050565b6000613439602f836136e0565b915061344482613b05565b604082019050919050565b600061345c6000836136d5565b915061346782613b54565b600082019050919050565b600061347f601f836136e0565b915061348a82613b57565b602082019050919050565b61349e81613821565b82525050565b60006134b08285613392565b91506134bc8284613392565b91506134c7826133e6565b91508190509392505050565b60006134de8261344f565b9150819050919050565b60006020820190506134fd6000830184613302565b92915050565b60006080820190506135186000830187613302565b6135256020830186613302565b6135326040830185613495565b81810360608301526135448184613320565b905095945050505050565b60006020820190506135646000830184613311565b92915050565b600060208201905081810360008301526135848184613359565b905092915050565b600060208201905081810360008301526135a5816133c3565b9050919050565b600060208201905081810360008301526135c581613409565b9050919050565b600060208201905081810360008301526135e58161342c565b9050919050565b6000602082019050818103600083015261360581613472565b9050919050565b60006020820190506136216000830184613495565b92915050565b6000613631613642565b905061363d828261389f565b919050565b6000604051905090565b600067ffffffffffffffff82111561366757613666613a06565b5b61367082613a53565b9050602081019050919050565b600067ffffffffffffffff82111561369857613697613a06565b5b6136a182613a53565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061370782613821565b915061371283613821565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137475761374661394a565b5b828201905092915050565b600061375d82613821565b915061376883613821565b92508261377857613777613979565b5b828204905092915050565b600061378e82613821565b915061379983613821565b9250828210156137ac576137ab61394a565b5b828203905092915050565b60006137c282613801565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561385857808201518184015260208101905061383d565b83811115613867576000848401525b50505050565b6000600282049050600182168061388557607f821691505b60208210811415613899576138986139a8565b5b50919050565b6138a882613a53565b810181811067ffffffffffffffff821117156138c7576138c6613a06565b5b80604052505050565b60006138db82613821565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561390e5761390d61394a565b5b600182019050919050565b600061392482613821565b915061392f83613821565b92508261393f5761393e613979565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613b89816137b7565b8114613b9457600080fd5b50565b613ba0816137c9565b8114613bab57600080fd5b50565b613bb7816137d5565b8114613bc257600080fd5b50565b613bce81613821565b8114613bd957600080fd5b5056fea26469706673582212208c0bc4e5cdb56ff6b0cf65cddd2030a7ebba61f148e514b8c311df1647132a6f64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000000000000000000000000000000000000000000500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000001844657669616e7420416c69656e20436f6c6c656374697665000000000000000000000000000000000000000000000000000000000000000000000000000000034441430000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Deviant Alien Collective
Arg [1] : symbol (string): DAC
Arg [2] : _maxSupply (uint256): 2500
Arg [3] : _maxMintPerTx (uint256): 5
Arg [4] : _publicSalePrice (uint256): 0
Arg [5] : _maxMintPerWallet (uint256): 5

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [7] : 44657669616e7420416c69656e20436f6c6c6563746976650000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [9] : 4441430000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

55618:4137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57902:82;;;;;;;;;;;;;:::i;:::-;;36791:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39904:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41407:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55874:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40970:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59620:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36040:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42272:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55830:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58206:475;;;;;;;;;;;;;:::i;:::-;;42513:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55793:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57783:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55761:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39712:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56113:45;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37160:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14549:103;;;;;;;;;;;;;:::i;:::-;;57992:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13898:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40073:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55950:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57201:350;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56638:555;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41683:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58125:71;;;;;;;;;;;;;:::i;:::-;;56033:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42769:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57559:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58753:715;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55911:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55997;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42041:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59480:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14807:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57902:82;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57970:6:::1;;;;;;;;;;;57969:7;57960:6;;:16;;;;;;;;;;;;;;;;;;57902:82::o:0;36791:305::-;36893:4;36945:25;36930:40;;;:11;:40;;;;:105;;;;37002:33;36987:48;;;:11;:48;;;;36930:105;:158;;;;37052:36;37076:11;37052:23;:36::i;:::-;36930:158;36910:178;;36791:305;;;:::o;39904:100::-;39958:13;39991:5;39984:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39904:100;:::o;41407:204::-;41475:7;41500:16;41508:7;41500;:16::i;:::-;41495:64;;41525:34;;;;;;;;;;;;;;41495:64;41579:15;:24;41595:7;41579:24;;;;;;;;;;;;;;;;;;;;;41572:31;;41407:204;;;:::o;55874:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40970:371::-;41043:13;41059:24;41075:7;41059:15;:24::i;:::-;41043:40;;41104:5;41098:11;;:2;:11;;;41094:48;;;41118:24;;;;;;;;;;;;;;41094:48;41175:5;41159:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;41185:37;41202:5;41209:12;:10;:12::i;:::-;41185:16;:37::i;:::-;41184:38;41159:63;41155:138;;;41246:35;;;;;;;;;;;;;;41155:138;41305:28;41314:2;41318:7;41327:5;41305:8;:28::i;:::-;41032:309;40970:371;;:::o;59620:130::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59728:14:::1;59707:18;:35;;;;;;;;;;;;:::i;:::-;;59620:130:::0;:::o;36040:303::-;36084:7;36309:15;:13;:15::i;:::-;36294:12;;36278:13;;:28;:46;36271:53;;36040:303;:::o;42272:170::-;42406:28;42416:4;42422:2;42426:7;42406:9;:28::i;:::-;42272:170;;;:::o;55830:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58206:475::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8872:1:::1;9470:7;;:19;;9462:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8872:1;9603:7;:18;;;;58503:7:::2;58524;:5;:7::i;:::-;58516:21;;58545;58516:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58502:69;;;58586:2;58578:11;;;::::0;::::2;;58256:425;8828:1:::1;9782:7;:22;;;;58206:475::o:0;42513:185::-;42651:39;42668:4;42674:2;42678:7;42651:39;;;;;;;;;;;;:16;:39::i;:::-;42513:185;;;:::o;55793:28::-;;;;;;;;;;;;;:::o;57783:111::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57878:8:::1;;57859:16;:27;;;;;;;:::i;:::-;;57783:111:::0;;:::o;55761:25::-;;;;;;;;;;;;;:::o;39712:125::-;39776:7;39803:21;39816:7;39803:12;:21::i;:::-;:26;;;39796:33;;39712:125;;;:::o;56113:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;37160:206::-;37224:7;37265:1;37248:19;;:5;:19;;;37244:60;;;37276:28;;;;;;;;;;;;;;37244:60;37330:12;:19;37343:5;37330:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37322:36;;37315:43;;37160:206;;;:::o;14549:103::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14614:30:::1;14641:1;14614:18;:30::i;:::-;14549:103::o:0;57992:125::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58093:16:::1;58075:15;:34;;;;57992:125:::0;:::o;13898:87::-;13944:7;13971:6;;;;;;;;;;;13964:13;;13898:87;:::o;40073:104::-;40129:13;40162:7;40155:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40073:104;:::o;55950:30::-;;;;:::o;57201:350::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57290:1:::1;57278:8;:13;57274:44;;57300:18;;;;;;;;;;;;;;57274:44;57378:9;;57360:15;:13;:15::i;:::-;57349:8;57333:13;;:24;;;;:::i;:::-;:42;;;;:::i;:::-;:54;57329:90;;;57396:23;;;;;;;;;;;;;;57329:90;57512:31;57522:10;57534:8;57512:9;:31::i;:::-;57201:350:::0;:::o;56638:555::-;56702:6;;;;;;;;;;;56698:33;;;56717:14;;;;;;;;;;;;;;56698:33;56758:1;56746:8;:13;56742:44;;56768:18;;;;;;;;;;;;;;56742:44;56812:12;;56801:8;:23;56797:58;;;56833:22;;;;;;;;;;;;;;56797:58;56915:9;;56897:15;:13;:15::i;:::-;56886:8;56870:13;;:24;;;;:::i;:::-;:42;;;;:::i;:::-;:54;56866:90;;;56933:23;;;;;;;;;;;;;;56866:90;57011:16;;57000:8;56971:4;:14;;;56986:10;56971:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;;;:::i;:::-;:56;56967:94;;;57036:25;;;;;;;;;;;;;;56967:94;57154:31;57164:10;57176:8;57154:9;:31::i;:::-;56638:555;:::o;41683:287::-;41794:12;:10;:12::i;:::-;41782:24;;:8;:24;;;41778:54;;;41815:17;;;;;;;;;;;;;;41778:54;41890:8;41845:18;:32;41864:12;:10;:12::i;:::-;41845:32;;;;;;;;;;;;;;;:42;41878:8;41845:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41943:8;41914:48;;41929:12;:10;:12::i;:::-;41914:48;;;41953:8;41914:48;;;;;;:::i;:::-;;;;;;;;41683:287;;:::o;58125:71::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58184:4:::1;58173:8;;:15;;;;;;;;;;;;;;;;;;58125:71::o:0;56033:28::-;;;;:::o;42769:369::-;42936:28;42946:4;42952:2;42956:7;42936:9;:28::i;:::-;42979:15;:2;:13;;;:15::i;:::-;:76;;;;;42999:56;43030:4;43036:2;43040:7;43049:5;42999:30;:56::i;:::-;42998:57;42979:76;42975:156;;;43079:40;;;;;;;;;;;;;;42975:156;42769:369;;;;:::o;57559:91::-;57606:4;57629:13;:11;:13::i;:::-;57622:20;;57559:91;:::o;58753:715::-;58871:13;58924:16;58932:7;58924;:16::i;:::-;58902:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;59042:5;59030:17;;:8;;;;;;;;;;;:17;;;59026:71;;;59071:14;59064:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59026:71;59107:28;59138:10;:8;:10::i;:::-;59107:41;;59210:1;59185:14;59179:28;:32;:281;;;;;;;;;;;;;;;;;59303:14;59344:18;:7;:16;:18::i;:::-;59260:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59179:281;59159:301;;;58753:715;;;;:::o;55911:24::-;;;;:::o;55997:::-;;;;:::o;42041:164::-;42138:4;42162:18;:25;42181:5;42162:25;;;;;;;;;;;;;;;:35;42188:8;42162:35;;;;;;;;;;;;;;;;;;;;;;;;;42155:42;;42041:164;;;;:::o;59480:128::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;59585:15:::1;59568:14;:32;;;;;;;;;;;;:::i;:::-;;59480:128:::0;:::o;14807:201::-;14129:12;:10;:12::i;:::-;14118:23;;:7;:5;:7::i;:::-;:23;;;14110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14916:1:::1;14896:22;;:8;:22;;;;14888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14972:28;14991:8;14972:18;:28::i;:::-;14807:201:::0;:::o;12622:98::-;12675:7;12702:10;12695:17;;12622:98;:::o;26682:157::-;26767:4;26806:25;26791:40;;;:11;:40;;;;26784:47;;26682:157;;;:::o;43393:174::-;43450:4;43493:7;43474:15;:13;:15::i;:::-;:26;;:53;;;;;43514:13;;43504:7;:23;43474:53;:85;;;;;43532:11;:20;43544:7;43532:20;;;;;;;;;;;:27;;;;;;;;;;;;43531:28;43474:85;43467:92;;43393:174;;;:::o;51550:196::-;51692:2;51665:15;:24;51681:7;51665:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51730:7;51726:2;51710:28;;51719:5;51710:28;;;;;;;;;;;;51550:196;;;:::o;56537:93::-;56594:7;56621:1;56614:8;;56537:93;:::o;46493:2130::-;46608:35;46646:21;46659:7;46646:12;:21::i;:::-;46608:59;;46706:4;46684:26;;:13;:18;;;:26;;;46680:67;;46719:28;;;;;;;;;;;;;;46680:67;46760:22;46802:4;46786:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;46823:36;46840:4;46846:12;:10;:12::i;:::-;46823:16;:36::i;:::-;46786:73;:126;;;;46900:12;:10;:12::i;:::-;46876:36;;:20;46888:7;46876:11;:20::i;:::-;:36;;;46786:126;46760:153;;46931:17;46926:66;;46957:35;;;;;;;;;;;;;;46926:66;47021:1;47007:16;;:2;:16;;;47003:52;;;47032:23;;;;;;;;;;;;;;47003:52;47068:43;47090:4;47096:2;47100:7;47109:1;47068:21;:43::i;:::-;47176:35;47193:1;47197:7;47206:4;47176:8;:35::i;:::-;47537:1;47507:12;:18;47520:4;47507:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47581:1;47553:12;:16;47566:2;47553:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47599:31;47633:11;:20;47645:7;47633:20;;;;;;;;;;;47599:54;;47684:2;47668:8;:13;;;:18;;;;;;;;;;;;;;;;;;47734:15;47701:8;:23;;;:49;;;;;;;;;;;;;;;;;;48002:19;48034:1;48024:7;:11;48002:33;;48050:31;48084:11;:24;48096:11;48084:24;;;;;;;;;;;48050:58;;48152:1;48127:27;;:8;:13;;;;;;;;;;;;:27;;;48123:384;;;48337:13;;48322:11;:28;48318:174;;48391:4;48375:8;:13;;;:20;;;;;;;;;;;;;;;;;;48444:13;:28;;;48418:8;:23;;;:54;;;;;;;;;;;;;;;;;;48318:174;48123:384;47482:1036;;;48554:7;48550:2;48535:27;;48544:4;48535:27;;;;;;;;;;;;48573:42;48594:4;48600:2;48604:7;48613:1;48573:20;:42::i;:::-;46597:2026;;46493:2130;;;:::o;38541:1109::-;38603:21;;:::i;:::-;38637:12;38652:7;38637:22;;38720:4;38701:15;:13;:15::i;:::-;:23;;:47;;;;;38735:13;;38728:4;:20;38701:47;38697:886;;;38769:31;38803:11;:17;38815:4;38803:17;;;;;;;;;;;38769:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38844:9;:16;;;38839:729;;38915:1;38889:28;;:9;:14;;;:28;;;38885:101;;38953:9;38946:16;;;;;;38885:101;39288:261;39295:4;39288:261;;;39328:6;;;;;;;;39373:11;:17;39385:4;39373:17;;;;;;;;;;;39361:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39447:1;39421:28;;:9;:14;;;:28;;;39417:109;;39489:9;39482:16;;;;;;39417:109;39288:261;;;38839:729;38750:833;38697:886;39611:31;;;;;;;;;;;;;;38541:1109;;;;:::o;15168:191::-;15242:16;15261:6;;;;;;;;;;;15242:25;;15287:8;15278:6;;:17;;;;;;;;;;;;;;;;;;15342:8;15311:40;;15332:8;15311:40;;;;;;;;;;;;15231:128;15168:191;:::o;43575:104::-;43644:27;43654:2;43658:8;43644:27;;;;;;;;;;;;:9;:27::i;:::-;43575:104;;:::o;16599:326::-;16659:4;16916:1;16894:7;:19;;;:23;16887:30;;16599:326;;;:::o;52238:667::-;52401:4;52438:2;52422:36;;;52459:12;:10;:12::i;:::-;52473:4;52479:7;52488:5;52422:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52418:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52673:1;52656:6;:13;:18;52652:235;;;52702:40;;;;;;;;;;;;;;52652:235;52845:6;52839:13;52830:6;52826:2;52822:15;52815:38;52418:480;52551:45;;;52541:55;;;:6;:55;;;;52534:62;;;52238:667;;;;;;:::o;57658:117::-;57718:13;57751:16;57744:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57658:117;:::o;10184:723::-;10240:13;10470:1;10461:5;:10;10457:53;;;10488:10;;;;;;;;;;;;;;;;;;;;;10457:53;10520:12;10535:5;10520:20;;10551:14;10576:78;10591:1;10583:4;:9;10576:78;;10609:8;;;;;:::i;:::-;;;;10640:2;10632:10;;;;;:::i;:::-;;;10576:78;;;10664:19;10696:6;10686:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10664:39;;10714:154;10730:1;10721:5;:10;10714:154;;10758:1;10748:11;;;;;:::i;:::-;;;10825:2;10817:5;:10;;;;:::i;:::-;10804:2;:24;;;;:::i;:::-;10791:39;;10774:6;10781;10774:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10854:2;10845:11;;;;;:::i;:::-;;;10714:154;;;10892:6;10878:21;;;;;10184:723;;;;:::o;53553:159::-;;;;;:::o;54371:158::-;;;;;:::o;44042:163::-;44165:32;44171:2;44175:8;44185:5;44192:4;44165:5;:32::i;:::-;44042:163;;;:::o;44464:1775::-;44603:20;44626:13;;44603:36;;44668:1;44654:16;;:2;:16;;;44650:48;;;44679:19;;;;;;;;;;;;;;44650:48;44725:1;44713:8;:13;44709:44;;;44735:18;;;;;;;;;;;;;;44709:44;44766:61;44796:1;44800:2;44804:12;44818:8;44766:21;:61::i;:::-;45139:8;45104:12;:16;45117:2;45104:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45203:8;45163:12;:16;45176:2;45163:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45262:2;45229:11;:25;45241:12;45229:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45329:15;45279:11;:25;45291:12;45279:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;45362:20;45385:12;45362:35;;45412:11;45441:8;45426:12;:23;45412:37;;45470:4;:23;;;;;45478:15;:2;:13;;;:15::i;:::-;45470:23;45466:641;;;45514:314;45570:12;45566:2;45545:38;;45562:1;45545:38;;;;;;;;;;;;45611:69;45650:1;45654:2;45658:14;;;;;;45674:5;45611:30;:69::i;:::-;45606:174;;45716:40;;;;;;;;;;;;;;45606:174;45823:3;45807:12;:19;;45514:314;;45909:12;45892:13;;:29;45888:43;;45923:8;;;45888:43;45466:641;;;45972:120;46028:14;;;;;;46024:2;46003:40;;46020:1;46003:40;;;;;;;;;;;;46087:3;46071:12;:19;;45972:120;;45466:641;46137:12;46121:13;:28;;;;45079:1082;;46171:60;46200:1;46204:2;46208:12;46222:8;46171:20;:60::i;:::-;44592:1647;44464:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:553::-;1844:8;1854:6;1904:3;1897:4;1889:6;1885:17;1881:27;1871:122;;1912:79;;:::i;:::-;1871:122;2025:6;2012:20;2002:30;;2055:18;2047:6;2044:30;2041:117;;;2077:79;;:::i;:::-;2041:117;2191:4;2183:6;2179:17;2167:29;;2245:3;2237:4;2229:6;2225:17;2215:8;2211:32;2208:41;2205:128;;;2252:79;;:::i;:::-;2205:128;1786:553;;;;;:::o;2359:340::-;2415:5;2464:3;2457:4;2449:6;2445:17;2441:27;2431:122;;2472:79;;:::i;:::-;2431:122;2589:6;2576:20;2614:79;2689:3;2681:6;2674:4;2666:6;2662:17;2614:79;:::i;:::-;2605:88;;2421:278;2359:340;;;;:::o;2705:139::-;2751:5;2789:6;2776:20;2767:29;;2805:33;2832:5;2805:33;:::i;:::-;2705:139;;;;:::o;2850:143::-;2907:5;2938:6;2932:13;2923:22;;2954:33;2981:5;2954:33;:::i;:::-;2850:143;;;;:::o;2999:329::-;3058:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:119;;;3113:79;;:::i;:::-;3075:119;3233:1;3258:53;3303:7;3294:6;3283:9;3279:22;3258:53;:::i;:::-;3248:63;;3204:117;2999:329;;;;:::o;3334:474::-;3402:6;3410;3459:2;3447:9;3438:7;3434:23;3430:32;3427:119;;;3465:79;;:::i;:::-;3427:119;3585:1;3610:53;3655:7;3646:6;3635:9;3631:22;3610:53;:::i;:::-;3600:63;;3556:117;3712:2;3738:53;3783:7;3774:6;3763:9;3759:22;3738:53;:::i;:::-;3728:63;;3683:118;3334:474;;;;;:::o;3814:619::-;3891:6;3899;3907;3956:2;3944:9;3935:7;3931:23;3927:32;3924:119;;;3962:79;;:::i;:::-;3924:119;4082:1;4107:53;4152:7;4143:6;4132:9;4128:22;4107:53;:::i;:::-;4097:63;;4053:117;4209:2;4235:53;4280:7;4271:6;4260:9;4256:22;4235:53;:::i;:::-;4225:63;;4180:118;4337:2;4363:53;4408:7;4399:6;4388:9;4384:22;4363:53;:::i;:::-;4353:63;;4308:118;3814:619;;;;;:::o;4439:943::-;4534:6;4542;4550;4558;4607:3;4595:9;4586:7;4582:23;4578:33;4575:120;;;4614:79;;:::i;:::-;4575:120;4734:1;4759:53;4804:7;4795:6;4784:9;4780:22;4759:53;:::i;:::-;4749:63;;4705:117;4861:2;4887:53;4932:7;4923:6;4912:9;4908:22;4887:53;:::i;:::-;4877:63;;4832:118;4989:2;5015:53;5060:7;5051:6;5040:9;5036:22;5015:53;:::i;:::-;5005:63;;4960:118;5145:2;5134:9;5130:18;5117:32;5176:18;5168:6;5165:30;5162:117;;;5198:79;;:::i;:::-;5162:117;5303:62;5357:7;5348:6;5337:9;5333:22;5303:62;:::i;:::-;5293:72;;5088:287;4439:943;;;;;;;:::o;5388:468::-;5453:6;5461;5510:2;5498:9;5489:7;5485:23;5481:32;5478:119;;;5516:79;;:::i;:::-;5478:119;5636:1;5661:53;5706:7;5697:6;5686:9;5682:22;5661:53;:::i;:::-;5651:63;;5607:117;5763:2;5789:50;5831:7;5822:6;5811:9;5807:22;5789:50;:::i;:::-;5779:60;;5734:115;5388:468;;;;;:::o;5862:474::-;5930:6;5938;5987:2;5975:9;5966:7;5962:23;5958:32;5955:119;;;5993:79;;:::i;:::-;5955:119;6113:1;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6084:117;6240:2;6266:53;6311:7;6302:6;6291:9;6287:22;6266:53;:::i;:::-;6256:63;;6211:118;5862:474;;;;;:::o;6342:327::-;6400:6;6449:2;6437:9;6428:7;6424:23;6420:32;6417:119;;;6455:79;;:::i;:::-;6417:119;6575:1;6600:52;6644:7;6635:6;6624:9;6620:22;6600:52;:::i;:::-;6590:62;;6546:116;6342:327;;;;:::o;6675:349::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:63;6999:7;6990:6;6979:9;6975:22;6944:63;:::i;:::-;6934:73;;6890:127;6675:349;;;;:::o;7030:529::-;7101:6;7109;7158:2;7146:9;7137:7;7133:23;7129:32;7126:119;;;7164:79;;:::i;:::-;7126:119;7312:1;7301:9;7297:17;7284:31;7342:18;7334:6;7331:30;7328:117;;;7364:79;;:::i;:::-;7328:117;7477:65;7534:7;7525:6;7514:9;7510:22;7477:65;:::i;:::-;7459:83;;;;7255:297;7030:529;;;;;:::o;7565:509::-;7634:6;7683:2;7671:9;7662:7;7658:23;7654:32;7651:119;;;7689:79;;:::i;:::-;7651:119;7837:1;7826:9;7822:17;7809:31;7867:18;7859:6;7856:30;7853:117;;;7889:79;;:::i;:::-;7853:117;7994:63;8049:7;8040:6;8029:9;8025:22;7994:63;:::i;:::-;7984:73;;7780:287;7565:509;;;;:::o;8080:329::-;8139:6;8188:2;8176:9;8167:7;8163:23;8159:32;8156:119;;;8194:79;;:::i;:::-;8156:119;8314:1;8339:53;8384:7;8375:6;8364:9;8360:22;8339:53;:::i;:::-;8329:63;;8285:117;8080:329;;;;:::o;8415:351::-;8485:6;8534:2;8522:9;8513:7;8509:23;8505:32;8502:119;;;8540:79;;:::i;:::-;8502:119;8660:1;8685:64;8741:7;8732:6;8721:9;8717:22;8685:64;:::i;:::-;8675:74;;8631:128;8415:351;;;;:::o;8772:118::-;8859:24;8877:5;8859:24;:::i;:::-;8854:3;8847:37;8772:118;;:::o;8896:109::-;8977:21;8992:5;8977:21;:::i;:::-;8972:3;8965:34;8896:109;;:::o;9011:360::-;9097:3;9125:38;9157:5;9125:38;:::i;:::-;9179:70;9242:6;9237:3;9179:70;:::i;:::-;9172:77;;9258:52;9303:6;9298:3;9291:4;9284:5;9280:16;9258:52;:::i;:::-;9335:29;9357:6;9335:29;:::i;:::-;9330:3;9326:39;9319:46;;9101:270;9011:360;;;;:::o;9377:364::-;9465:3;9493:39;9526:5;9493:39;:::i;:::-;9548:71;9612:6;9607:3;9548:71;:::i;:::-;9541:78;;9628:52;9673:6;9668:3;9661:4;9654:5;9650:16;9628:52;:::i;:::-;9705:29;9727:6;9705:29;:::i;:::-;9700:3;9696:39;9689:46;;9469:272;9377:364;;;;:::o;9747:377::-;9853:3;9881:39;9914:5;9881:39;:::i;:::-;9936:89;10018:6;10013:3;9936:89;:::i;:::-;9929:96;;10034:52;10079:6;10074:3;10067:4;10060:5;10056:16;10034:52;:::i;:::-;10111:6;10106:3;10102:16;10095:23;;9857:267;9747:377;;;;:::o;10130:366::-;10272:3;10293:67;10357:2;10352:3;10293:67;:::i;:::-;10286:74;;10369:93;10458:3;10369:93;:::i;:::-;10487:2;10482:3;10478:12;10471:19;;10130:366;;;:::o;10502:400::-;10662:3;10683:84;10765:1;10760:3;10683:84;:::i;:::-;10676:91;;10776:93;10865:3;10776:93;:::i;:::-;10894:1;10889:3;10885:11;10878:18;;10502:400;;;:::o;10908:366::-;11050:3;11071:67;11135:2;11130:3;11071:67;:::i;:::-;11064:74;;11147:93;11236:3;11147:93;:::i;:::-;11265:2;11260:3;11256:12;11249:19;;10908:366;;;:::o;11280:::-;11422:3;11443:67;11507:2;11502:3;11443:67;:::i;:::-;11436:74;;11519:93;11608:3;11519:93;:::i;:::-;11637:2;11632:3;11628:12;11621:19;;11280:366;;;:::o;11652:398::-;11811:3;11832:83;11913:1;11908:3;11832:83;:::i;:::-;11825:90;;11924:93;12013:3;11924:93;:::i;:::-;12042:1;12037:3;12033:11;12026:18;;11652:398;;;:::o;12056:366::-;12198:3;12219:67;12283:2;12278:3;12219:67;:::i;:::-;12212:74;;12295:93;12384:3;12295:93;:::i;:::-;12413:2;12408:3;12404:12;12397:19;;12056:366;;;:::o;12428:118::-;12515:24;12533:5;12515:24;:::i;:::-;12510:3;12503:37;12428:118;;:::o;12552:701::-;12833:3;12855:95;12946:3;12937:6;12855:95;:::i;:::-;12848:102;;12967:95;13058:3;13049:6;12967:95;:::i;:::-;12960:102;;13079:148;13223:3;13079:148;:::i;:::-;13072:155;;13244:3;13237:10;;12552:701;;;;;:::o;13259:379::-;13443:3;13465:147;13608:3;13465:147;:::i;:::-;13458:154;;13629:3;13622:10;;13259:379;;;:::o;13644:222::-;13737:4;13775:2;13764:9;13760:18;13752:26;;13788:71;13856:1;13845:9;13841:17;13832:6;13788:71;:::i;:::-;13644:222;;;;:::o;13872:640::-;14067:4;14105:3;14094:9;14090:19;14082:27;;14119:71;14187:1;14176:9;14172:17;14163:6;14119:71;:::i;:::-;14200:72;14268:2;14257:9;14253:18;14244:6;14200:72;:::i;:::-;14282;14350:2;14339:9;14335:18;14326:6;14282:72;:::i;:::-;14401:9;14395:4;14391:20;14386:2;14375:9;14371:18;14364:48;14429:76;14500:4;14491:6;14429:76;:::i;:::-;14421:84;;13872:640;;;;;;;:::o;14518:210::-;14605:4;14643:2;14632:9;14628:18;14620:26;;14656:65;14718:1;14707:9;14703:17;14694:6;14656:65;:::i;:::-;14518:210;;;;:::o;14734:313::-;14847:4;14885:2;14874:9;14870:18;14862:26;;14934:9;14928:4;14924:20;14920:1;14909:9;14905:17;14898:47;14962:78;15035:4;15026:6;14962:78;:::i;:::-;14954:86;;14734:313;;;;:::o;15053:419::-;15219:4;15257:2;15246:9;15242:18;15234:26;;15306:9;15300:4;15296:20;15292:1;15281:9;15277:17;15270:47;15334:131;15460:4;15334:131;:::i;:::-;15326:139;;15053:419;;;:::o;15478:::-;15644:4;15682:2;15671:9;15667:18;15659:26;;15731:9;15725:4;15721:20;15717:1;15706:9;15702:17;15695:47;15759:131;15885:4;15759:131;:::i;:::-;15751:139;;15478:419;;;:::o;15903:::-;16069:4;16107:2;16096:9;16092:18;16084:26;;16156:9;16150:4;16146:20;16142:1;16131:9;16127:17;16120:47;16184:131;16310:4;16184:131;:::i;:::-;16176:139;;15903:419;;;:::o;16328:::-;16494:4;16532:2;16521:9;16517:18;16509:26;;16581:9;16575:4;16571:20;16567:1;16556:9;16552:17;16545:47;16609:131;16735:4;16609:131;:::i;:::-;16601:139;;16328:419;;;:::o;16753:222::-;16846:4;16884:2;16873:9;16869:18;16861:26;;16897:71;16965:1;16954:9;16950:17;16941:6;16897:71;:::i;:::-;16753:222;;;;:::o;16981:129::-;17015:6;17042:20;;:::i;:::-;17032:30;;17071:33;17099:4;17091:6;17071:33;:::i;:::-;16981:129;;;:::o;17116:75::-;17149:6;17182:2;17176:9;17166:19;;17116:75;:::o;17197:307::-;17258:4;17348:18;17340:6;17337:30;17334:56;;;17370:18;;:::i;:::-;17334:56;17408:29;17430:6;17408:29;:::i;:::-;17400:37;;17492:4;17486;17482:15;17474:23;;17197:307;;;:::o;17510:308::-;17572:4;17662:18;17654:6;17651:30;17648:56;;;17684:18;;:::i;:::-;17648:56;17722:29;17744:6;17722:29;:::i;:::-;17714:37;;17806:4;17800;17796:15;17788:23;;17510:308;;;:::o;17824:98::-;17875:6;17909:5;17903:12;17893:22;;17824:98;;;:::o;17928:99::-;17980:6;18014:5;18008:12;17998:22;;17928:99;;;:::o;18033:168::-;18116:11;18150:6;18145:3;18138:19;18190:4;18185:3;18181:14;18166:29;;18033:168;;;;:::o;18207:147::-;18308:11;18345:3;18330:18;;18207:147;;;;:::o;18360:169::-;18444:11;18478:6;18473:3;18466:19;18518:4;18513:3;18509:14;18494:29;;18360:169;;;;:::o;18535:148::-;18637:11;18674:3;18659:18;;18535:148;;;;:::o;18689:305::-;18729:3;18748:20;18766:1;18748:20;:::i;:::-;18743:25;;18782:20;18800:1;18782:20;:::i;:::-;18777:25;;18936:1;18868:66;18864:74;18861:1;18858:81;18855:107;;;18942:18;;:::i;:::-;18855:107;18986:1;18983;18979:9;18972:16;;18689:305;;;;:::o;19000:185::-;19040:1;19057:20;19075:1;19057:20;:::i;:::-;19052:25;;19091:20;19109:1;19091:20;:::i;:::-;19086:25;;19130:1;19120:35;;19135:18;;:::i;:::-;19120:35;19177:1;19174;19170:9;19165:14;;19000:185;;;;:::o;19191:191::-;19231:4;19251:20;19269:1;19251:20;:::i;:::-;19246:25;;19285:20;19303:1;19285:20;:::i;:::-;19280:25;;19324:1;19321;19318:8;19315:34;;;19329:18;;:::i;:::-;19315:34;19374:1;19371;19367:9;19359:17;;19191:191;;;;:::o;19388:96::-;19425:7;19454:24;19472:5;19454:24;:::i;:::-;19443:35;;19388:96;;;:::o;19490:90::-;19524:7;19567:5;19560:13;19553:21;19542:32;;19490:90;;;:::o;19586:149::-;19622:7;19662:66;19655:5;19651:78;19640:89;;19586:149;;;:::o;19741:126::-;19778:7;19818:42;19811:5;19807:54;19796:65;;19741:126;;;:::o;19873:77::-;19910:7;19939:5;19928:16;;19873:77;;;:::o;19956:154::-;20040:6;20035:3;20030;20017:30;20102:1;20093:6;20088:3;20084:16;20077:27;19956:154;;;:::o;20116:307::-;20184:1;20194:113;20208:6;20205:1;20202:13;20194:113;;;20293:1;20288:3;20284:11;20278:18;20274:1;20269:3;20265:11;20258:39;20230:2;20227:1;20223:10;20218:15;;20194:113;;;20325:6;20322:1;20319:13;20316:101;;;20405:1;20396:6;20391:3;20387:16;20380:27;20316:101;20165:258;20116:307;;;:::o;20429:320::-;20473:6;20510:1;20504:4;20500:12;20490:22;;20557:1;20551:4;20547:12;20578:18;20568:81;;20634:4;20626:6;20622:17;20612:27;;20568:81;20696:2;20688:6;20685:14;20665:18;20662:38;20659:84;;;20715:18;;:::i;:::-;20659:84;20480:269;20429:320;;;:::o;20755:281::-;20838:27;20860:4;20838:27;:::i;:::-;20830:6;20826:40;20968:6;20956:10;20953:22;20932:18;20920:10;20917:34;20914:62;20911:88;;;20979:18;;:::i;:::-;20911:88;21019:10;21015:2;21008:22;20798:238;20755:281;;:::o;21042:233::-;21081:3;21104:24;21122:5;21104:24;:::i;:::-;21095:33;;21150:66;21143:5;21140:77;21137:103;;;21220:18;;:::i;:::-;21137:103;21267:1;21260:5;21256:13;21249:20;;21042:233;;;:::o;21281:176::-;21313:1;21330:20;21348:1;21330:20;:::i;:::-;21325:25;;21364:20;21382:1;21364:20;:::i;:::-;21359:25;;21403:1;21393:35;;21408:18;;:::i;:::-;21393:35;21449:1;21446;21442:9;21437:14;;21281:176;;;;:::o;21463:180::-;21511:77;21508:1;21501:88;21608:4;21605:1;21598:15;21632:4;21629:1;21622:15;21649:180;21697:77;21694:1;21687:88;21794:4;21791:1;21784:15;21818:4;21815:1;21808:15;21835:180;21883:77;21880:1;21873:88;21980:4;21977:1;21970:15;22004:4;22001:1;21994:15;22021:180;22069:77;22066:1;22059:88;22166:4;22163:1;22156:15;22190:4;22187:1;22180:15;22207:180;22255:77;22252:1;22245:88;22352:4;22349:1;22342:15;22376:4;22373:1;22366:15;22393:117;22502:1;22499;22492:12;22516:117;22625:1;22622;22615:12;22639:117;22748:1;22745;22738:12;22762:117;22871:1;22868;22861:12;22885:117;22994:1;22991;22984:12;23008:117;23117:1;23114;23107:12;23131:102;23172:6;23223:2;23219:7;23214:2;23207:5;23203:14;23199:28;23189:38;;23131:102;;;:::o;23239:225::-;23379:34;23375:1;23367:6;23363:14;23356:58;23448:8;23443:2;23435:6;23431:15;23424:33;23239:225;:::o;23470:155::-;23610:7;23606:1;23598:6;23594:14;23587:31;23470:155;:::o;23631:182::-;23771:34;23767:1;23759:6;23755:14;23748:58;23631:182;:::o;23819:234::-;23959:34;23955:1;23947:6;23943:14;23936:58;24028:17;24023:2;24015:6;24011:15;24004:42;23819:234;:::o;24059:114::-;;:::o;24179:181::-;24319:33;24315:1;24307:6;24303:14;24296:57;24179:181;:::o;24366:122::-;24439:24;24457:5;24439:24;:::i;:::-;24432:5;24429:35;24419:63;;24478:1;24475;24468:12;24419:63;24366:122;:::o;24494:116::-;24564:21;24579:5;24564:21;:::i;:::-;24557:5;24554:32;24544:60;;24600:1;24597;24590:12;24544:60;24494:116;:::o;24616:120::-;24688:23;24705:5;24688:23;:::i;:::-;24681:5;24678:34;24668:62;;24726:1;24723;24716:12;24668:62;24616:120;:::o;24742:122::-;24815:24;24833:5;24815:24;:::i;:::-;24808:5;24805:35;24795:63;;24854:1;24851;24844:12;24795:63;24742:122;:::o

Swarm Source

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