ETH Price: $2,361.81 (+0.47%)

Token

LLAD (Live Like A Dog)
 

Overview

Max Total Supply

65 Live Like A Dog

Holders

64

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Live Like A Dog
0x33bda6543d6b3f4a1345b6cbb76ac1c34522917b
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:
LLAD

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-12-29
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.0 (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/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: LLAD.sol

//SPDX-License-Identifier: MIT

pragma solidity ^0.8.7;






contract LLAD is ERC721Enumerable, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.003 ether;
    uint256 public freeCost = 0 ether;
    uint256 public maxSupply = 5555;
    uint256 public maxMintAmount = 1000;
    uint256 public presaleMaxMintAmount = 1;
    bool public paused = false;
    bool public freeMode = true;
    mapping(address => uint256) public amountAddressMinted;
    

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

       
         

    }

	
    address private treasury_wallet = 0x30127e137082c6Ce851a86cF0D27BbD9a22cbca1
;


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

   

    // public
    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
         if (supply == 1) {
        freeMode = false;
        }
        address user = msg.sender;
        require(!paused, "Minting is Paused");
        require(supply + _mintAmount <= maxSupply, "Sold out");


        if (freeMode == true) {
            require(_mintAmount > 0 && amountAddressMinted[user] + _mintAmount <= presaleMaxMintAmount,"Invalid Mint Amount");
            require(msg.value >= freeCost *_mintAmount, "Not Enough ETH");

        } else {
            require(msg.value >= cost *_mintAmount, "Not Enough ETH");
            require(_mintAmount > 0 && amountAddressMinted[user] + _mintAmount <= maxMintAmount, "Invalid Mint Amount");
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            amountAddressMinted[user]++;
            _safeMint(user, supply + i);
        }
    }



    

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

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

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

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



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

 function setpresaleMaxMintAmount(uint256 _newpresaleMaxMintAmount) public onlyOwner {
        presaleMaxMintAmount = _newpresaleMaxMintAmount;
 }

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

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

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

     function setFreeMode(bool _state) public onlyOwner {
        freeMode = _state;
    }

 
    function mintToOwner(address user, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();

        for (uint256 i = 1111; i <= _mintAmount; i++) {
            amountAddressMinted[user]++;
            _safeMint(user, supply + i);
        }
    }

   

    function withdraw() public payable onlyOwner {

        // Calculated from the rest of the balance
		uint256 _team = address(this).balance;
        
        // distributed to the Team
  
    uint256 _tr= _team.mul(100).div(100);




		
 
        payable(treasury_wallet).transfer(_tr);



    }

	

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountAddressMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToOwner","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newpresaleMaxMintAmount","type":"uint256"}],"name":"setpresaleMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000344565b50660aa87bee538000600d556000600e556115b3600f556103e860105560016011556000601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055507330127e137082c6ce851a86cf0d27bbd9a22cbca1601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010b57600080fd5b506040516200504538038062005045833981810160405281019062000131919062000472565b828281600090805190602001906200014b92919062000344565b5080600190805190602001906200016492919062000344565b505050620001876200017b620001a160201b60201c565b620001a960201b60201c565b62000198816200026f60201b60201c565b50505062000732565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200027f620001a160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a56200031a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002fe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f59062000552565b60405180910390fd5b80600b90805190602001906200031692919062000344565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000352906200061a565b90600052602060002090601f016020900481019282620003765760008555620003c2565b82601f106200039157805160ff1916838001178555620003c2565b82800160010185558215620003c2579182015b82811115620003c1578251825591602001919060010190620003a4565b5b509050620003d19190620003d5565b5090565b5b80821115620003f0576000816000905550600101620003d6565b5090565b60006200040b62000405846200059d565b62000574565b9050828152602081018484840111156200042a5762000429620006e9565b5b62000437848285620005e4565b509392505050565b600082601f830112620004575762000456620006e4565b5b815162000469848260208601620003f4565b91505092915050565b6000806000606084860312156200048e576200048d620006f3565b5b600084015167ffffffffffffffff811115620004af57620004ae620006ee565b5b620004bd868287016200043f565b935050602084015167ffffffffffffffff811115620004e157620004e0620006ee565b5b620004ef868287016200043f565b925050604084015167ffffffffffffffff811115620005135762000512620006ee565b5b62000521868287016200043f565b9150509250925092565b60006200053a602083620005d3565b9150620005478262000709565b602082019050919050565b600060208201905081810360008301526200056d816200052b565b9050919050565b60006200058062000593565b90506200058e828262000650565b919050565b6000604051905090565b600067ffffffffffffffff821115620005bb57620005ba620006b5565b5b620005c682620006f8565b9050602081019050919050565b600082825260208201905092915050565b60005b8381101562000604578082015181840152602081019050620005e7565b8381111562000614576000848401525b50505050565b600060028204905060018216806200063357607f821691505b602082108114156200064a576200064962000686565b5b50919050565b6200065b82620006f8565b810181811067ffffffffffffffff821117156200067d576200067c620006b5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61490380620007426000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a0712d68116100ab578063d5abeb011161006f578063d5abeb011461085a578063da3ef23f14610885578063e985e9c5146108ae578063f292f1be146108eb578063f2fde38b146109165761023b565b8063a0712d6814610784578063a22cb465146107a0578063b88d4fde146107c9578063c6682862146107f2578063c87b56dd1461081d5761023b565b806372fe7177116100f257806372fe71771461069d5780637d917b1d146106c85780637f00c7a6146107055780638da5cb5b1461072e57806395d89b41146107595761023b565b80636352211e146105b85780636c0360eb146105f55780636d5794bc1461062057806370a0823114610649578063715018a6146106865761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104d357806355c57c3f1461051057806355f804b3146105395780635c975abb14610562578063615d1a251461058d5761023b565b80632f745c59146103fd5780633ccfd60b1461043a57806342842e0e14610444578063438b63001461046d57806344a0d68a146104aa5761023b565b806313faede61161020357806313faede61461033757806318160ddd14610362578063239c70ae1461038d57806323b872dd146103b857806329636ab2146103e15761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613460565b61093f565b6040516102749190613ac0565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613433565b6109b9565b005b3480156102b257600080fd5b506102bb610a52565b6040516102c89190613adb565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613503565b610ae4565b6040516103059190613a37565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906133f3565b610b69565b005b34801561034357600080fd5b5061034c610c81565b6040516103599190613dbd565b60405180910390f35b34801561036e57600080fd5b50610377610c87565b6040516103849190613dbd565b60405180910390f35b34801561039957600080fd5b506103a2610c94565b6040516103af9190613dbd565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906132dd565b610c9a565b005b6103fb60048036038101906103f691906133f3565b610cfa565b005b34801561040957600080fd5b50610424600480360381019061041f91906133f3565b610d98565b6040516104319190613dbd565b60405180910390f35b610442610e3d565b005b34801561045057600080fd5b5061046b600480360381019061046691906132dd565b610f56565b005b34801561047957600080fd5b50610494600480360381019061048f9190613270565b610f76565b6040516104a19190613a9e565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613503565b611024565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613503565b6110aa565b6040516105079190613dbd565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613503565b61111b565b005b34801561054557600080fd5b50610560600480360381019061055b91906134ba565b6111a1565b005b34801561056e57600080fd5b50610577611237565b6040516105849190613ac0565b60405180910390f35b34801561059957600080fd5b506105a261124a565b6040516105af9190613ac0565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190613503565b61125d565b6040516105ec9190613a37565b60405180910390f35b34801561060157600080fd5b5061060a61130f565b6040516106179190613adb565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190613433565b61139d565b005b34801561065557600080fd5b50610670600480360381019061066b9190613270565b611436565b60405161067d9190613dbd565b60405180910390f35b34801561069257600080fd5b5061069b6114ee565b005b3480156106a957600080fd5b506106b2611576565b6040516106bf9190613dbd565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190613270565b61157c565b6040516106fc9190613dbd565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613503565b611594565b005b34801561073a57600080fd5b5061074361161a565b6040516107509190613a37565b60405180910390f35b34801561076557600080fd5b5061076e611644565b60405161077b9190613adb565b60405180910390f35b61079e60048036038101906107999190613503565b6116d6565b005b3480156107ac57600080fd5b506107c760048036038101906107c291906133b3565b611a35565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613330565b611a4b565b005b3480156107fe57600080fd5b50610807611aad565b6040516108149190613adb565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190613503565b611b3b565b6040516108519190613adb565b60405180910390f35b34801561086657600080fd5b5061086f611be5565b60405161087c9190613dbd565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a791906134ba565b611beb565b005b3480156108ba57600080fd5b506108d560048036038101906108d0919061329d565b611c81565b6040516108e29190613ac0565b60405180910390f35b3480156108f757600080fd5b50610900611d15565b60405161090d9190613dbd565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190613270565b611d1b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b257506109b182611e13565b5b9050919050565b6109c1611ef5565b73ffffffffffffffffffffffffffffffffffffffff166109df61161a565b73ffffffffffffffffffffffffffffffffffffffff1614610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c90613cbd565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610a61906140bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d906140bb565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610aef82611efd565b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590613c9d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b748261125d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90613d1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c04611ef5565b73ffffffffffffffffffffffffffffffffffffffff161480610c335750610c3281610c2d611ef5565b611c81565b5b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990613c1d565b60405180910390fd5b610c7c8383611f69565b505050565b600d5481565b6000600880549050905090565b60105481565b610cab610ca5611ef5565b82612022565b610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613d3d565b60405180910390fd5b610cf5838383612100565b505050565b6000610d04610c87565b9050600061045790505b828111610d9257601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610d659061411e565b9190505550610d7f848284610d7a9190613ef0565b61235c565b8080610d8a9061411e565b915050610d0e565b50505050565b6000610da383611436565b8210610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90613afd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e45611ef5565b73ffffffffffffffffffffffffffffffffffffffff16610e6361161a565b73ffffffffffffffffffffffffffffffffffffffff1614610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090613cbd565b60405180910390fd5b60004790506000610ee76064610ed960648561237a90919063ffffffff16565b61239090919063ffffffff16565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f51573d6000803e3d6000fd5b505050565b610f7183838360405180602001604052806000815250611a4b565b505050565b60606000610f8383611436565b905060008167ffffffffffffffff811115610fa157610fa0614283565b5b604051908082528060200260200182016040528015610fcf5781602001602082028036833780820191505090505b50905060005b8281101561101957610fe78582610d98565b828281518110610ffa57610ff9614254565b5b60200260200101818152505080806110119061411e565b915050610fd5565b508092505050919050565b61102c611ef5565b73ffffffffffffffffffffffffffffffffffffffff1661104a61161a565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790613cbd565b60405180910390fd5b80600d8190555050565b60006110b4610c87565b82106110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90613d9d565b60405180910390fd5b6008828154811061110957611108614254565b5b90600052602060002001549050919050565b611123611ef5565b73ffffffffffffffffffffffffffffffffffffffff1661114161161a565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613cbd565b60405180910390fd5b8060118190555050565b6111a9611ef5565b73ffffffffffffffffffffffffffffffffffffffff166111c761161a565b73ffffffffffffffffffffffffffffffffffffffff161461121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613cbd565b60405180910390fd5b80600b9080519060200190611233929190613084565b5050565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613c5d565b60405180910390fd5b80915050919050565b600b805461131c906140bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611348906140bb565b80156113955780601f1061136a57610100808354040283529160200191611395565b820191906000526020600020905b81548152906001019060200180831161137857829003601f168201915b505050505081565b6113a5611ef5565b73ffffffffffffffffffffffffffffffffffffffff166113c361161a565b73ffffffffffffffffffffffffffffffffffffffff1614611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090613cbd565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613c3d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114f6611ef5565b73ffffffffffffffffffffffffffffffffffffffff1661151461161a565b73ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613cbd565b60405180910390fd5b61157460006123a6565b565b60115481565b60136020528060005260406000206000915090505481565b61159c611ef5565b73ffffffffffffffffffffffffffffffffffffffff166115ba61161a565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613cbd565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611653906140bb565b80601f016020809104026020016040519081016040528092919081815260200182805461167f906140bb565b80156116cc5780601f106116a1576101008083540402835291602001916116cc565b820191906000526020600020905b8154815290600101906020018083116116af57829003601f168201915b5050505050905090565b60006116e0610c87565b90506001811415611707576000601260016101000a81548160ff0219169083151502179055505b6000339050601260009054906101000a900460ff161561175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613d7d565b60405180910390fd5b600f54838361176b9190613ef0565b11156117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613d5d565b60405180910390fd5b60011515601260019054906101000a900460ff16151514156118b857600083118015611824575060115483601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118219190613ef0565b11155b611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613bdd565b60405180910390fd5b82600e546118719190613f77565b3410156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90613b7d565b60405180910390fd5b6119a4565b82600d546118c69190613f77565b341015611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613b7d565b60405180910390fd5b600083118015611964575060105483601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119619190613ef0565b11155b6119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90613bdd565b60405180910390fd5b5b6000600190505b838111611a2f57601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a029061411e565b9190505550611a1c828285611a179190613ef0565b61235c565b8080611a279061411e565b9150506119ab565b50505050565b611a47611a40611ef5565b838361246c565b5050565b611a5c611a56611ef5565b83612022565b611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290613d3d565b60405180910390fd5b611aa7848484846125d9565b50505050565b600c8054611aba906140bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae6906140bb565b8015611b335780601f10611b0857610100808354040283529160200191611b33565b820191906000526020600020905b815481529060010190602001808311611b1657829003601f168201915b505050505081565b6060611b4682611efd565b611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90613cfd565b60405180910390fd5b6000611b8f612635565b90506000815111611baf5760405180602001604052806000815250611bdd565b80611bb9846126c7565b600c604051602001611bcd93929190613a06565b6040516020818303038152906040525b915050919050565b600f5481565b611bf3611ef5565b73ffffffffffffffffffffffffffffffffffffffff16611c1161161a565b73ffffffffffffffffffffffffffffffffffffffff1614611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90613cbd565b60405180910390fd5b80600c9080519060200190611c7d929190613084565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611d23611ef5565b73ffffffffffffffffffffffffffffffffffffffff16611d4161161a565b73ffffffffffffffffffffffffffffffffffffffff1614611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90613b3d565b60405180910390fd5b611e10816123a6565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ede57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611eee5750611eed82612828565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fdc8361125d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061202d82611efd565b61206c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206390613bfd565b60405180910390fd5b60006120778361125d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120e657508373ffffffffffffffffffffffffffffffffffffffff166120ce84610ae4565b73ffffffffffffffffffffffffffffffffffffffff16145b806120f757506120f68185611c81565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121208261125d565b73ffffffffffffffffffffffffffffffffffffffff1614612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90613cdd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd90613b9d565b60405180910390fd5b6121f1838383612892565b6121fc600082611f69565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224c9190613fd1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a39190613ef0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123768282604051806020016040528060008152506129a6565b5050565b600081836123889190613f77565b905092915050565b6000818361239e9190613f46565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d290613bbd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125cc9190613ac0565b60405180910390a3505050565b6125e4848484612100565b6125f084848484612a01565b61262f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262690613b1d565b60405180910390fd5b50505050565b6060600b8054612644906140bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612670906140bb565b80156126bd5780601f10612692576101008083540402835291602001916126bd565b820191906000526020600020905b8154815290600101906020018083116126a057829003601f168201915b5050505050905090565b6060600082141561270f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612823565b600082905060005b6000821461274157808061272a9061411e565b915050600a8261273a9190613f46565b9150612717565b60008167ffffffffffffffff81111561275d5761275c614283565b5b6040519080825280601f01601f19166020018201604052801561278f5781602001600182028036833780820191505090505b5090505b6000851461281c576001826127a89190613fd1565b9150600a856127b79190614167565b60306127c39190613ef0565b60f81b8183815181106127d9576127d8614254565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128159190613f46565b9450612793565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61289d838383612b98565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e0576128db81612b9d565b61291f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461291e5761291d8382612be6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129625761295d81612d53565b6129a1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129a05761299f8282612e24565b5b5b505050565b6129b08383612ea3565b6129bd6000848484612a01565b6129fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f390613b1d565b60405180910390fd5b505050565b6000612a228473ffffffffffffffffffffffffffffffffffffffff16613071565b15612b8b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4b611ef5565b8786866040518563ffffffff1660e01b8152600401612a6d9493929190613a52565b602060405180830381600087803b158015612a8757600080fd5b505af1925050508015612ab857506040513d601f19601f82011682018060405250810190612ab5919061348d565b60015b612b3b573d8060008114612ae8576040519150601f19603f3d011682016040523d82523d6000602084013e612aed565b606091505b50600081511415612b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2a90613b1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b90565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bf384611436565b612bfd9190613fd1565b9050600060076000848152602001908152602001600020549050818114612ce2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d679190613fd1565b9050600060096000848152602001908152602001600020549050600060088381548110612d9757612d96614254565b5b906000526020600020015490508060088381548110612db957612db8614254565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e0857612e07614225565b5b6001900381819060005260206000200160009055905550505050565b6000612e2f83611436565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0a90613c7d565b60405180910390fd5b612f1c81611efd565b15612f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5390613b5d565b60405180910390fd5b612f6860008383612892565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fb89190613ef0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613090906140bb565b90600052602060002090601f0160209004810192826130b257600085556130f9565b82601f106130cb57805160ff19168380011785556130f9565b828001600101855582156130f9579182015b828111156130f85782518255916020019190600101906130dd565b5b509050613106919061310a565b5090565b5b8082111561312357600081600090555060010161310b565b5090565b600061313a61313584613dfd565b613dd8565b905082815260208101848484011115613156576131556142b7565b5b613161848285614079565b509392505050565b600061317c61317784613e2e565b613dd8565b905082815260208101848484011115613198576131976142b7565b5b6131a3848285614079565b509392505050565b6000813590506131ba81614871565b92915050565b6000813590506131cf81614888565b92915050565b6000813590506131e48161489f565b92915050565b6000815190506131f98161489f565b92915050565b600082601f830112613214576132136142b2565b5b8135613224848260208601613127565b91505092915050565b600082601f830112613242576132416142b2565b5b8135613252848260208601613169565b91505092915050565b60008135905061326a816148b6565b92915050565b600060208284031215613286576132856142c1565b5b6000613294848285016131ab565b91505092915050565b600080604083850312156132b4576132b36142c1565b5b60006132c2858286016131ab565b92505060206132d3858286016131ab565b9150509250929050565b6000806000606084860312156132f6576132f56142c1565b5b6000613304868287016131ab565b9350506020613315868287016131ab565b92505060406133268682870161325b565b9150509250925092565b6000806000806080858703121561334a576133496142c1565b5b6000613358878288016131ab565b9450506020613369878288016131ab565b935050604061337a8782880161325b565b925050606085013567ffffffffffffffff81111561339b5761339a6142bc565b5b6133a7878288016131ff565b91505092959194509250565b600080604083850312156133ca576133c96142c1565b5b60006133d8858286016131ab565b92505060206133e9858286016131c0565b9150509250929050565b6000806040838503121561340a576134096142c1565b5b6000613418858286016131ab565b92505060206134298582860161325b565b9150509250929050565b600060208284031215613449576134486142c1565b5b6000613457848285016131c0565b91505092915050565b600060208284031215613476576134756142c1565b5b6000613484848285016131d5565b91505092915050565b6000602082840312156134a3576134a26142c1565b5b60006134b1848285016131ea565b91505092915050565b6000602082840312156134d0576134cf6142c1565b5b600082013567ffffffffffffffff8111156134ee576134ed6142bc565b5b6134fa8482850161322d565b91505092915050565b600060208284031215613519576135186142c1565b5b60006135278482850161325b565b91505092915050565b600061353c83836139e8565b60208301905092915050565b61355181614005565b82525050565b600061356282613e84565b61356c8185613eb2565b935061357783613e5f565b8060005b838110156135a857815161358f8882613530565b975061359a83613ea5565b92505060018101905061357b565b5085935050505092915050565b6135be81614017565b82525050565b60006135cf82613e8f565b6135d98185613ec3565b93506135e9818560208601614088565b6135f2816142c6565b840191505092915050565b600061360882613e9a565b6136128185613ed4565b9350613622818560208601614088565b61362b816142c6565b840191505092915050565b600061364182613e9a565b61364b8185613ee5565b935061365b818560208601614088565b80840191505092915050565b60008154613674816140bb565b61367e8186613ee5565b9450600182166000811461369957600181146136aa576136dd565b60ff198316865281860193506136dd565b6136b385613e6f565b60005b838110156136d5578154818901526001820191506020810190506136b6565b838801955050505b50505092915050565b60006136f3602b83613ed4565b91506136fe826142d7565b604082019050919050565b6000613716603283613ed4565b915061372182614326565b604082019050919050565b6000613739602683613ed4565b915061374482614375565b604082019050919050565b600061375c601c83613ed4565b9150613767826143c4565b602082019050919050565b600061377f600e83613ed4565b915061378a826143ed565b602082019050919050565b60006137a2602483613ed4565b91506137ad82614416565b604082019050919050565b60006137c5601983613ed4565b91506137d082614465565b602082019050919050565b60006137e8601383613ed4565b91506137f38261448e565b602082019050919050565b600061380b602c83613ed4565b9150613816826144b7565b604082019050919050565b600061382e603883613ed4565b915061383982614506565b604082019050919050565b6000613851602a83613ed4565b915061385c82614555565b604082019050919050565b6000613874602983613ed4565b915061387f826145a4565b604082019050919050565b6000613897602083613ed4565b91506138a2826145f3565b602082019050919050565b60006138ba602c83613ed4565b91506138c58261461c565b604082019050919050565b60006138dd602083613ed4565b91506138e88261466b565b602082019050919050565b6000613900602983613ed4565b915061390b82614694565b604082019050919050565b6000613923602f83613ed4565b915061392e826146e3565b604082019050919050565b6000613946602183613ed4565b915061395182614732565b604082019050919050565b6000613969603183613ed4565b915061397482614781565b604082019050919050565b600061398c600883613ed4565b9150613997826147d0565b602082019050919050565b60006139af601183613ed4565b91506139ba826147f9565b602082019050919050565b60006139d2602c83613ed4565b91506139dd82614822565b604082019050919050565b6139f18161406f565b82525050565b613a008161406f565b82525050565b6000613a128286613636565b9150613a1e8285613636565b9150613a2a8284613667565b9150819050949350505050565b6000602082019050613a4c6000830184613548565b92915050565b6000608082019050613a676000830187613548565b613a746020830186613548565b613a8160408301856139f7565b8181036060830152613a9381846135c4565b905095945050505050565b60006020820190508181036000830152613ab88184613557565b905092915050565b6000602082019050613ad560008301846135b5565b92915050565b60006020820190508181036000830152613af581846135fd565b905092915050565b60006020820190508181036000830152613b16816136e6565b9050919050565b60006020820190508181036000830152613b3681613709565b9050919050565b60006020820190508181036000830152613b568161372c565b9050919050565b60006020820190508181036000830152613b768161374f565b9050919050565b60006020820190508181036000830152613b9681613772565b9050919050565b60006020820190508181036000830152613bb681613795565b9050919050565b60006020820190508181036000830152613bd6816137b8565b9050919050565b60006020820190508181036000830152613bf6816137db565b9050919050565b60006020820190508181036000830152613c16816137fe565b9050919050565b60006020820190508181036000830152613c3681613821565b9050919050565b60006020820190508181036000830152613c5681613844565b9050919050565b60006020820190508181036000830152613c7681613867565b9050919050565b60006020820190508181036000830152613c968161388a565b9050919050565b60006020820190508181036000830152613cb6816138ad565b9050919050565b60006020820190508181036000830152613cd6816138d0565b9050919050565b60006020820190508181036000830152613cf6816138f3565b9050919050565b60006020820190508181036000830152613d1681613916565b9050919050565b60006020820190508181036000830152613d3681613939565b9050919050565b60006020820190508181036000830152613d568161395c565b9050919050565b60006020820190508181036000830152613d768161397f565b9050919050565b60006020820190508181036000830152613d96816139a2565b9050919050565b60006020820190508181036000830152613db6816139c5565b9050919050565b6000602082019050613dd260008301846139f7565b92915050565b6000613de2613df3565b9050613dee82826140ed565b919050565b6000604051905090565b600067ffffffffffffffff821115613e1857613e17614283565b5b613e21826142c6565b9050602081019050919050565b600067ffffffffffffffff821115613e4957613e48614283565b5b613e52826142c6565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613efb8261406f565b9150613f068361406f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3b57613f3a614198565b5b828201905092915050565b6000613f518261406f565b9150613f5c8361406f565b925082613f6c57613f6b6141c7565b5b828204905092915050565b6000613f828261406f565b9150613f8d8361406f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc657613fc5614198565b5b828202905092915050565b6000613fdc8261406f565b9150613fe78361406f565b925082821015613ffa57613ff9614198565b5b828203905092915050565b60006140108261404f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140a657808201518184015260208101905061408b565b838111156140b5576000848401525b50505050565b600060028204905060018216806140d357607f821691505b602082108114156140e7576140e66141f6565b5b50919050565b6140f6826142c6565b810181811067ffffffffffffffff8211171561411557614114614283565b5b80604052505050565b60006141298261406f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561415c5761415b614198565b5b600182019050919050565b60006141728261406f565b915061417d8361406f565b92508261418d5761418c6141c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420456e6f75676820455448000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e76616c6964204d696e7420416d6f756e7400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4d696e74696e6720697320506175736564000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61487a81614005565b811461488557600080fd5b50565b61489181614017565b811461489c57600080fd5b50565b6148a881614023565b81146148b357600080fd5b50565b6148bf8161406f565b81146148ca57600080fd5b5056fea2646970667358221220f83f58c7808704476344dd3795cd75331231fa5039ba564919dd84bd44dca5aa64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000044c4c414400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4c697665204c696b65204120446f67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a0712d68116100ab578063d5abeb011161006f578063d5abeb011461085a578063da3ef23f14610885578063e985e9c5146108ae578063f292f1be146108eb578063f2fde38b146109165761023b565b8063a0712d6814610784578063a22cb465146107a0578063b88d4fde146107c9578063c6682862146107f2578063c87b56dd1461081d5761023b565b806372fe7177116100f257806372fe71771461069d5780637d917b1d146106c85780637f00c7a6146107055780638da5cb5b1461072e57806395d89b41146107595761023b565b80636352211e146105b85780636c0360eb146105f55780636d5794bc1461062057806370a0823114610649578063715018a6146106865761023b565b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce7146104d357806355c57c3f1461051057806355f804b3146105395780635c975abb14610562578063615d1a251461058d5761023b565b80632f745c59146103fd5780633ccfd60b1461043a57806342842e0e14610444578063438b63001461046d57806344a0d68a146104aa5761023b565b806313faede61161020357806313faede61461033757806318160ddd14610362578063239c70ae1461038d57806323b872dd146103b857806329636ab2146103e15761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613460565b61093f565b6040516102749190613ac0565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613433565b6109b9565b005b3480156102b257600080fd5b506102bb610a52565b6040516102c89190613adb565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613503565b610ae4565b6040516103059190613a37565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906133f3565b610b69565b005b34801561034357600080fd5b5061034c610c81565b6040516103599190613dbd565b60405180910390f35b34801561036e57600080fd5b50610377610c87565b6040516103849190613dbd565b60405180910390f35b34801561039957600080fd5b506103a2610c94565b6040516103af9190613dbd565b60405180910390f35b3480156103c457600080fd5b506103df60048036038101906103da91906132dd565b610c9a565b005b6103fb60048036038101906103f691906133f3565b610cfa565b005b34801561040957600080fd5b50610424600480360381019061041f91906133f3565b610d98565b6040516104319190613dbd565b60405180910390f35b610442610e3d565b005b34801561045057600080fd5b5061046b600480360381019061046691906132dd565b610f56565b005b34801561047957600080fd5b50610494600480360381019061048f9190613270565b610f76565b6040516104a19190613a9e565b60405180910390f35b3480156104b657600080fd5b506104d160048036038101906104cc9190613503565b611024565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613503565b6110aa565b6040516105079190613dbd565b60405180910390f35b34801561051c57600080fd5b5061053760048036038101906105329190613503565b61111b565b005b34801561054557600080fd5b50610560600480360381019061055b91906134ba565b6111a1565b005b34801561056e57600080fd5b50610577611237565b6040516105849190613ac0565b60405180910390f35b34801561059957600080fd5b506105a261124a565b6040516105af9190613ac0565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190613503565b61125d565b6040516105ec9190613a37565b60405180910390f35b34801561060157600080fd5b5061060a61130f565b6040516106179190613adb565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190613433565b61139d565b005b34801561065557600080fd5b50610670600480360381019061066b9190613270565b611436565b60405161067d9190613dbd565b60405180910390f35b34801561069257600080fd5b5061069b6114ee565b005b3480156106a957600080fd5b506106b2611576565b6040516106bf9190613dbd565b60405180910390f35b3480156106d457600080fd5b506106ef60048036038101906106ea9190613270565b61157c565b6040516106fc9190613dbd565b60405180910390f35b34801561071157600080fd5b5061072c60048036038101906107279190613503565b611594565b005b34801561073a57600080fd5b5061074361161a565b6040516107509190613a37565b60405180910390f35b34801561076557600080fd5b5061076e611644565b60405161077b9190613adb565b60405180910390f35b61079e60048036038101906107999190613503565b6116d6565b005b3480156107ac57600080fd5b506107c760048036038101906107c291906133b3565b611a35565b005b3480156107d557600080fd5b506107f060048036038101906107eb9190613330565b611a4b565b005b3480156107fe57600080fd5b50610807611aad565b6040516108149190613adb565b60405180910390f35b34801561082957600080fd5b50610844600480360381019061083f9190613503565b611b3b565b6040516108519190613adb565b60405180910390f35b34801561086657600080fd5b5061086f611be5565b60405161087c9190613dbd565b60405180910390f35b34801561089157600080fd5b506108ac60048036038101906108a791906134ba565b611beb565b005b3480156108ba57600080fd5b506108d560048036038101906108d0919061329d565b611c81565b6040516108e29190613ac0565b60405180910390f35b3480156108f757600080fd5b50610900611d15565b60405161090d9190613dbd565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190613270565b611d1b565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109b257506109b182611e13565b5b9050919050565b6109c1611ef5565b73ffffffffffffffffffffffffffffffffffffffff166109df61161a565b73ffffffffffffffffffffffffffffffffffffffff1614610a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2c90613cbd565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b606060008054610a61906140bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d906140bb565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b6000610aef82611efd565b610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2590613c9d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b748261125d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc90613d1d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c04611ef5565b73ffffffffffffffffffffffffffffffffffffffff161480610c335750610c3281610c2d611ef5565b611c81565b5b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990613c1d565b60405180910390fd5b610c7c8383611f69565b505050565b600d5481565b6000600880549050905090565b60105481565b610cab610ca5611ef5565b82612022565b610cea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce190613d3d565b60405180910390fd5b610cf5838383612100565b505050565b6000610d04610c87565b9050600061045790505b828111610d9257601360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190610d659061411e565b9190505550610d7f848284610d7a9190613ef0565b61235c565b8080610d8a9061411e565b915050610d0e565b50505050565b6000610da383611436565b8210610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90613afd565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e45611ef5565b73ffffffffffffffffffffffffffffffffffffffff16610e6361161a565b73ffffffffffffffffffffffffffffffffffffffff1614610eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb090613cbd565b60405180910390fd5b60004790506000610ee76064610ed960648561237a90919063ffffffff16565b61239090919063ffffffff16565b9050601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610f51573d6000803e3d6000fd5b505050565b610f7183838360405180602001604052806000815250611a4b565b505050565b60606000610f8383611436565b905060008167ffffffffffffffff811115610fa157610fa0614283565b5b604051908082528060200260200182016040528015610fcf5781602001602082028036833780820191505090505b50905060005b8281101561101957610fe78582610d98565b828281518110610ffa57610ff9614254565b5b60200260200101818152505080806110119061411e565b915050610fd5565b508092505050919050565b61102c611ef5565b73ffffffffffffffffffffffffffffffffffffffff1661104a61161a565b73ffffffffffffffffffffffffffffffffffffffff16146110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790613cbd565b60405180910390fd5b80600d8190555050565b60006110b4610c87565b82106110f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ec90613d9d565b60405180910390fd5b6008828154811061110957611108614254565b5b90600052602060002001549050919050565b611123611ef5565b73ffffffffffffffffffffffffffffffffffffffff1661114161161a565b73ffffffffffffffffffffffffffffffffffffffff1614611197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118e90613cbd565b60405180910390fd5b8060118190555050565b6111a9611ef5565b73ffffffffffffffffffffffffffffffffffffffff166111c761161a565b73ffffffffffffffffffffffffffffffffffffffff161461121d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121490613cbd565b60405180910390fd5b80600b9080519060200190611233929190613084565b5050565b601260009054906101000a900460ff1681565b601260019054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd90613c5d565b60405180910390fd5b80915050919050565b600b805461131c906140bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611348906140bb565b80156113955780601f1061136a57610100808354040283529160200191611395565b820191906000526020600020905b81548152906001019060200180831161137857829003601f168201915b505050505081565b6113a5611ef5565b73ffffffffffffffffffffffffffffffffffffffff166113c361161a565b73ffffffffffffffffffffffffffffffffffffffff1614611419576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141090613cbd565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e90613c3d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114f6611ef5565b73ffffffffffffffffffffffffffffffffffffffff1661151461161a565b73ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190613cbd565b60405180910390fd5b61157460006123a6565b565b60115481565b60136020528060005260406000206000915090505481565b61159c611ef5565b73ffffffffffffffffffffffffffffffffffffffff166115ba61161a565b73ffffffffffffffffffffffffffffffffffffffff1614611610576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160790613cbd565b60405180910390fd5b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611653906140bb565b80601f016020809104026020016040519081016040528092919081815260200182805461167f906140bb565b80156116cc5780601f106116a1576101008083540402835291602001916116cc565b820191906000526020600020905b8154815290600101906020018083116116af57829003601f168201915b5050505050905090565b60006116e0610c87565b90506001811415611707576000601260016101000a81548160ff0219169083151502179055505b6000339050601260009054906101000a900460ff161561175c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175390613d7d565b60405180910390fd5b600f54838361176b9190613ef0565b11156117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613d5d565b60405180910390fd5b60011515601260019054906101000a900460ff16151514156118b857600083118015611824575060115483601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118219190613ef0565b11155b611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a90613bdd565b60405180910390fd5b82600e546118719190613f77565b3410156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90613b7d565b60405180910390fd5b6119a4565b82600d546118c69190613f77565b341015611908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ff90613b7d565b60405180910390fd5b600083118015611964575060105483601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546119619190613ef0565b11155b6119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a90613bdd565b60405180910390fd5b5b6000600190505b838111611a2f57601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a029061411e565b9190505550611a1c828285611a179190613ef0565b61235c565b8080611a279061411e565b9150506119ab565b50505050565b611a47611a40611ef5565b838361246c565b5050565b611a5c611a56611ef5565b83612022565b611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290613d3d565b60405180910390fd5b611aa7848484846125d9565b50505050565b600c8054611aba906140bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611ae6906140bb565b8015611b335780601f10611b0857610100808354040283529160200191611b33565b820191906000526020600020905b815481529060010190602001808311611b1657829003601f168201915b505050505081565b6060611b4682611efd565b611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c90613cfd565b60405180910390fd5b6000611b8f612635565b90506000815111611baf5760405180602001604052806000815250611bdd565b80611bb9846126c7565b600c604051602001611bcd93929190613a06565b6040516020818303038152906040525b915050919050565b600f5481565b611bf3611ef5565b73ffffffffffffffffffffffffffffffffffffffff16611c1161161a565b73ffffffffffffffffffffffffffffffffffffffff1614611c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5e90613cbd565b60405180910390fd5b80600c9080519060200190611c7d929190613084565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e5481565b611d23611ef5565b73ffffffffffffffffffffffffffffffffffffffff16611d4161161a565b73ffffffffffffffffffffffffffffffffffffffff1614611d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8e90613cbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfe90613b3d565b60405180910390fd5b611e10816123a6565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ede57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611eee5750611eed82612828565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fdc8361125d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061202d82611efd565b61206c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206390613bfd565b60405180910390fd5b60006120778361125d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120e657508373ffffffffffffffffffffffffffffffffffffffff166120ce84610ae4565b73ffffffffffffffffffffffffffffffffffffffff16145b806120f757506120f68185611c81565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121208261125d565b73ffffffffffffffffffffffffffffffffffffffff1614612176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216d90613cdd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dd90613b9d565b60405180910390fd5b6121f1838383612892565b6121fc600082611f69565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224c9190613fd1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a39190613ef0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6123768282604051806020016040528060008152506129a6565b5050565b600081836123889190613f77565b905092915050565b6000818361239e9190613f46565b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d290613bbd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125cc9190613ac0565b60405180910390a3505050565b6125e4848484612100565b6125f084848484612a01565b61262f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262690613b1d565b60405180910390fd5b50505050565b6060600b8054612644906140bb565b80601f0160208091040260200160405190810160405280929190818152602001828054612670906140bb565b80156126bd5780601f10612692576101008083540402835291602001916126bd565b820191906000526020600020905b8154815290600101906020018083116126a057829003601f168201915b5050505050905090565b6060600082141561270f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612823565b600082905060005b6000821461274157808061272a9061411e565b915050600a8261273a9190613f46565b9150612717565b60008167ffffffffffffffff81111561275d5761275c614283565b5b6040519080825280601f01601f19166020018201604052801561278f5781602001600182028036833780820191505090505b5090505b6000851461281c576001826127a89190613fd1565b9150600a856127b79190614167565b60306127c39190613ef0565b60f81b8183815181106127d9576127d8614254565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128159190613f46565b9450612793565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61289d838383612b98565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128e0576128db81612b9d565b61291f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461291e5761291d8382612be6565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129625761295d81612d53565b6129a1565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129a05761299f8282612e24565b5b5b505050565b6129b08383612ea3565b6129bd6000848484612a01565b6129fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f390613b1d565b60405180910390fd5b505050565b6000612a228473ffffffffffffffffffffffffffffffffffffffff16613071565b15612b8b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a4b611ef5565b8786866040518563ffffffff1660e01b8152600401612a6d9493929190613a52565b602060405180830381600087803b158015612a8757600080fd5b505af1925050508015612ab857506040513d601f19601f82011682018060405250810190612ab5919061348d565b60015b612b3b573d8060008114612ae8576040519150601f19603f3d011682016040523d82523d6000602084013e612aed565b606091505b50600081511415612b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2a90613b1d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b90565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612bf384611436565b612bfd9190613fd1565b9050600060076000848152602001908152602001600020549050818114612ce2576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d679190613fd1565b9050600060096000848152602001908152602001600020549050600060088381548110612d9757612d96614254565b5b906000526020600020015490508060088381548110612db957612db8614254565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e0857612e07614225565b5b6001900381819060005260206000200160009055905550505050565b6000612e2f83611436565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0a90613c7d565b60405180910390fd5b612f1c81611efd565b15612f5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5390613b5d565b60405180910390fd5b612f6860008383612892565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fb89190613ef0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613090906140bb565b90600052602060002090601f0160209004810192826130b257600085556130f9565b82601f106130cb57805160ff19168380011785556130f9565b828001600101855582156130f9579182015b828111156130f85782518255916020019190600101906130dd565b5b509050613106919061310a565b5090565b5b8082111561312357600081600090555060010161310b565b5090565b600061313a61313584613dfd565b613dd8565b905082815260208101848484011115613156576131556142b7565b5b613161848285614079565b509392505050565b600061317c61317784613e2e565b613dd8565b905082815260208101848484011115613198576131976142b7565b5b6131a3848285614079565b509392505050565b6000813590506131ba81614871565b92915050565b6000813590506131cf81614888565b92915050565b6000813590506131e48161489f565b92915050565b6000815190506131f98161489f565b92915050565b600082601f830112613214576132136142b2565b5b8135613224848260208601613127565b91505092915050565b600082601f830112613242576132416142b2565b5b8135613252848260208601613169565b91505092915050565b60008135905061326a816148b6565b92915050565b600060208284031215613286576132856142c1565b5b6000613294848285016131ab565b91505092915050565b600080604083850312156132b4576132b36142c1565b5b60006132c2858286016131ab565b92505060206132d3858286016131ab565b9150509250929050565b6000806000606084860312156132f6576132f56142c1565b5b6000613304868287016131ab565b9350506020613315868287016131ab565b92505060406133268682870161325b565b9150509250925092565b6000806000806080858703121561334a576133496142c1565b5b6000613358878288016131ab565b9450506020613369878288016131ab565b935050604061337a8782880161325b565b925050606085013567ffffffffffffffff81111561339b5761339a6142bc565b5b6133a7878288016131ff565b91505092959194509250565b600080604083850312156133ca576133c96142c1565b5b60006133d8858286016131ab565b92505060206133e9858286016131c0565b9150509250929050565b6000806040838503121561340a576134096142c1565b5b6000613418858286016131ab565b92505060206134298582860161325b565b9150509250929050565b600060208284031215613449576134486142c1565b5b6000613457848285016131c0565b91505092915050565b600060208284031215613476576134756142c1565b5b6000613484848285016131d5565b91505092915050565b6000602082840312156134a3576134a26142c1565b5b60006134b1848285016131ea565b91505092915050565b6000602082840312156134d0576134cf6142c1565b5b600082013567ffffffffffffffff8111156134ee576134ed6142bc565b5b6134fa8482850161322d565b91505092915050565b600060208284031215613519576135186142c1565b5b60006135278482850161325b565b91505092915050565b600061353c83836139e8565b60208301905092915050565b61355181614005565b82525050565b600061356282613e84565b61356c8185613eb2565b935061357783613e5f565b8060005b838110156135a857815161358f8882613530565b975061359a83613ea5565b92505060018101905061357b565b5085935050505092915050565b6135be81614017565b82525050565b60006135cf82613e8f565b6135d98185613ec3565b93506135e9818560208601614088565b6135f2816142c6565b840191505092915050565b600061360882613e9a565b6136128185613ed4565b9350613622818560208601614088565b61362b816142c6565b840191505092915050565b600061364182613e9a565b61364b8185613ee5565b935061365b818560208601614088565b80840191505092915050565b60008154613674816140bb565b61367e8186613ee5565b9450600182166000811461369957600181146136aa576136dd565b60ff198316865281860193506136dd565b6136b385613e6f565b60005b838110156136d5578154818901526001820191506020810190506136b6565b838801955050505b50505092915050565b60006136f3602b83613ed4565b91506136fe826142d7565b604082019050919050565b6000613716603283613ed4565b915061372182614326565b604082019050919050565b6000613739602683613ed4565b915061374482614375565b604082019050919050565b600061375c601c83613ed4565b9150613767826143c4565b602082019050919050565b600061377f600e83613ed4565b915061378a826143ed565b602082019050919050565b60006137a2602483613ed4565b91506137ad82614416565b604082019050919050565b60006137c5601983613ed4565b91506137d082614465565b602082019050919050565b60006137e8601383613ed4565b91506137f38261448e565b602082019050919050565b600061380b602c83613ed4565b9150613816826144b7565b604082019050919050565b600061382e603883613ed4565b915061383982614506565b604082019050919050565b6000613851602a83613ed4565b915061385c82614555565b604082019050919050565b6000613874602983613ed4565b915061387f826145a4565b604082019050919050565b6000613897602083613ed4565b91506138a2826145f3565b602082019050919050565b60006138ba602c83613ed4565b91506138c58261461c565b604082019050919050565b60006138dd602083613ed4565b91506138e88261466b565b602082019050919050565b6000613900602983613ed4565b915061390b82614694565b604082019050919050565b6000613923602f83613ed4565b915061392e826146e3565b604082019050919050565b6000613946602183613ed4565b915061395182614732565b604082019050919050565b6000613969603183613ed4565b915061397482614781565b604082019050919050565b600061398c600883613ed4565b9150613997826147d0565b602082019050919050565b60006139af601183613ed4565b91506139ba826147f9565b602082019050919050565b60006139d2602c83613ed4565b91506139dd82614822565b604082019050919050565b6139f18161406f565b82525050565b613a008161406f565b82525050565b6000613a128286613636565b9150613a1e8285613636565b9150613a2a8284613667565b9150819050949350505050565b6000602082019050613a4c6000830184613548565b92915050565b6000608082019050613a676000830187613548565b613a746020830186613548565b613a8160408301856139f7565b8181036060830152613a9381846135c4565b905095945050505050565b60006020820190508181036000830152613ab88184613557565b905092915050565b6000602082019050613ad560008301846135b5565b92915050565b60006020820190508181036000830152613af581846135fd565b905092915050565b60006020820190508181036000830152613b16816136e6565b9050919050565b60006020820190508181036000830152613b3681613709565b9050919050565b60006020820190508181036000830152613b568161372c565b9050919050565b60006020820190508181036000830152613b768161374f565b9050919050565b60006020820190508181036000830152613b9681613772565b9050919050565b60006020820190508181036000830152613bb681613795565b9050919050565b60006020820190508181036000830152613bd6816137b8565b9050919050565b60006020820190508181036000830152613bf6816137db565b9050919050565b60006020820190508181036000830152613c16816137fe565b9050919050565b60006020820190508181036000830152613c3681613821565b9050919050565b60006020820190508181036000830152613c5681613844565b9050919050565b60006020820190508181036000830152613c7681613867565b9050919050565b60006020820190508181036000830152613c968161388a565b9050919050565b60006020820190508181036000830152613cb6816138ad565b9050919050565b60006020820190508181036000830152613cd6816138d0565b9050919050565b60006020820190508181036000830152613cf6816138f3565b9050919050565b60006020820190508181036000830152613d1681613916565b9050919050565b60006020820190508181036000830152613d3681613939565b9050919050565b60006020820190508181036000830152613d568161395c565b9050919050565b60006020820190508181036000830152613d768161397f565b9050919050565b60006020820190508181036000830152613d96816139a2565b9050919050565b60006020820190508181036000830152613db6816139c5565b9050919050565b6000602082019050613dd260008301846139f7565b92915050565b6000613de2613df3565b9050613dee82826140ed565b919050565b6000604051905090565b600067ffffffffffffffff821115613e1857613e17614283565b5b613e21826142c6565b9050602081019050919050565b600067ffffffffffffffff821115613e4957613e48614283565b5b613e52826142c6565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613efb8261406f565b9150613f068361406f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613f3b57613f3a614198565b5b828201905092915050565b6000613f518261406f565b9150613f5c8361406f565b925082613f6c57613f6b6141c7565b5b828204905092915050565b6000613f828261406f565b9150613f8d8361406f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613fc657613fc5614198565b5b828202905092915050565b6000613fdc8261406f565b9150613fe78361406f565b925082821015613ffa57613ff9614198565b5b828203905092915050565b60006140108261404f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140a657808201518184015260208101905061408b565b838111156140b5576000848401525b50505050565b600060028204905060018216806140d357607f821691505b602082108114156140e7576140e66141f6565b5b50919050565b6140f6826142c6565b810181811067ffffffffffffffff8211171561411557614114614283565b5b80604052505050565b60006141298261406f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561415c5761415b614198565b5b600182019050919050565b60006141728261406f565b915061417d8361406f565b92508261418d5761418c6141c7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420456e6f75676820455448000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e76616c6964204d696e7420416d6f756e7400000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f4d696e74696e6720697320506175736564000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b61487a81614005565b811461488557600080fd5b50565b61489181614017565b811461489c57600080fd5b50565b6148a881614023565b81146148b357600080fd5b50565b6148bf8161406f565b81146148ca57600080fd5b5056fea2646970667358221220f83f58c7808704476344dd3795cd75331231fa5039ba564919dd84bd44dca5aa64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000044c4c414400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f4c697665204c696b65204120446f67000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000013300000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): LLAD
Arg [1] : _symbol (string): Live Like A Dog
Arg [2] : _initBaseURI (string): 3

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 4c4c414400000000000000000000000000000000000000000000000000000000
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [6] : 4c697665204c696b65204120446f670000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [8] : 3300000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51533:4470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45293:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55206:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32787:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34346:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33869:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51722:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45933:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51840:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35096:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55392:274;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45601:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55681:312;;;:::i;:::-;;35506:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53489:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54555:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46123:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54780:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54935:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51928:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51961:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32481:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51650:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55294:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32211:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11757:103;;;;;;;;;;;;;:::i;:::-;;51882:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51995:54;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54653:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11106:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32956:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52537:932;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34639:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35762:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51678:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53887:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51802:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55047:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34865:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51762:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12015:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45293:224;45395:4;45434:35;45419:50;;;:11;:50;;;;:90;;;;45473:36;45497:11;45473:23;:36::i;:::-;45419:90;45412:97;;45293:224;;;:::o;55206:79::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55271:6:::1;55262;;:15;;;;;;;;;;;;;;;;;;55206:79:::0;:::o;32787:100::-;32841:13;32874:5;32867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32787:100;:::o;34346:221::-;34422:7;34450:16;34458:7;34450;:16::i;:::-;34442:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;34535:15;:24;34551:7;34535:24;;;;;;;;;;;;;;;;;;;;;34528:31;;34346:221;;;:::o;33869:411::-;33950:13;33966:23;33981:7;33966:14;:23::i;:::-;33950:39;;34014:5;34008:11;;:2;:11;;;;34000:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34108:5;34092:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;34117:37;34134:5;34141:12;:10;:12::i;:::-;34117:16;:37::i;:::-;34092:62;34070:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;34251:21;34260:2;34264:7;34251:8;:21::i;:::-;33939:341;33869:411;;:::o;51722:33::-;;;;:::o;45933:113::-;45994:7;46021:10;:17;;;;46014:24;;45933:113;:::o;51840:35::-;;;;:::o;35096:339::-;35291:41;35310:12;:10;:12::i;:::-;35324:7;35291:18;:41::i;:::-;35283:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;35399:28;35409:4;35415:2;35419:7;35399:9;:28::i;:::-;35096:339;;;:::o;55392:274::-;55474:14;55491:13;:11;:13::i;:::-;55474:30;;55522:9;55534:4;55522:16;;55517:142;55545:11;55540:1;:16;55517:142;;55578:19;:25;55598:4;55578:25;;;;;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;55620;55630:4;55645:1;55636:6;:10;;;;:::i;:::-;55620:9;:27::i;:::-;55558:3;;;;;:::i;:::-;;;;55517:142;;;;55463:203;55392:274;;:::o;45601:256::-;45698:7;45734:23;45751:5;45734:16;:23::i;:::-;45726:5;:31;45718:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45823:12;:19;45836:5;45823:19;;;;;;;;;;;;;;;:26;45843:5;45823:26;;;;;;;;;;;;45816:33;;45601:256;;;;:::o;55681:312::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55785:13:::1;55801:21;55785:37;;55879:11;55892:23;55911:3;55892:14;55902:3;55892:5;:9;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;55879:36;;55949:15;;;;;;;;;;;55941:33;;:38;55975:3;55941:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;55726:267;;55681:312::o:0;35506:185::-;35644:39;35661:4;35667:2;35671:7;35644:39;;;;;;;;;;;;:16;:39::i;:::-;35506:185;;;:::o;53489:390::-;53576:16;53610:23;53636:17;53646:6;53636:9;:17::i;:::-;53610:43;;53664:25;53706:15;53692:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53664:58;;53738:9;53733:113;53753:15;53749:1;:19;53733:113;;;53804:30;53824:6;53832:1;53804:19;:30::i;:::-;53790:8;53799:1;53790:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;53770:3;;;;;:::i;:::-;;;;53733:113;;;;53863:8;53856:15;;;;53489:390;;;:::o;54555:86::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54625:8:::1;54618:4;:15;;;;54555:86:::0;:::o;46123:233::-;46198:7;46234:30;:28;:30::i;:::-;46226:5;:38;46218:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;46331:10;46342:5;46331:17;;;;;;;;:::i;:::-;;;;;;;;;;46324:24;;46123:233;;;:::o;54780:147::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54898:24:::1;54875:20;:47;;;;54780:147:::0;:::o;54935:104::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55020:11:::1;55010:7;:21;;;;;;;;;;;;:::i;:::-;;54935:104:::0;:::o;51928:26::-;;;;;;;;;;;;;:::o;51961:27::-;;;;;;;;;;;;;:::o;32481:239::-;32553:7;32573:13;32589:7;:16;32597:7;32589:16;;;;;;;;;;;;;;;;;;;;;32573:32;;32641:1;32624:19;;:5;:19;;;;32616:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32707:5;32700:12;;;32481:239;;;:::o;51650:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55294:87::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55367:6:::1;55356:8;;:17;;;;;;;;;;;;;;;;;;55294:87:::0;:::o;32211:208::-;32283:7;32328:1;32311:19;;:5;:19;;;;32303:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;32395:9;:16;32405:5;32395:16;;;;;;;;;;;;;;;;32388:23;;32211:208;;;:::o;11757:103::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11822:30:::1;11849:1;11822:18;:30::i;:::-;11757:103::o:0;51882:39::-;;;;:::o;51995:54::-;;;;;;;;;;;;;;;;;:::o;54653:122::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54750:17:::1;54734:13;:33;;;;54653:122:::0;:::o;11106:87::-;11152:7;11179:6;;;;;;;;;;;11172:13;;11106:87;:::o;32956:104::-;33012:13;33045:7;33038:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32956:104;:::o;52537:932::-;52598:14;52615:13;:11;:13::i;:::-;52598:30;;52654:1;52644:6;:11;52640:56;;;52679:5;52668:8;;:16;;;;;;;;;;;;;;;;;;52640:56;52706:12;52721:10;52706:25;;52751:6;;;;;;;;;;;52750:7;52742:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;52822:9;;52807:11;52798:6;:20;;;;:::i;:::-;:33;;52790:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;52875:4;52863:16;;:8;;;;;;;;;;;:16;;;52859:452;;;52918:1;52904:11;:15;:82;;;;;52966:20;;52951:11;52923:19;:25;52943:4;52923:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:63;;52904:82;52896:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;53055:11;53045:8;;:21;;;;:::i;:::-;53032:9;:34;;53024:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;52859:452;;;53147:11;53141:4;;:17;;;;:::i;:::-;53128:9;:30;;53120:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;53214:1;53200:11;:15;:75;;;;;53262:13;;53247:11;53219:19;:25;53239:4;53219:25;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:56;;53200:75;53192:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;52859:452;53328:9;53340:1;53328:13;;53323:139;53348:11;53343:1;:16;53323:139;;53381:19;:25;53401:4;53381:25;;;;;;;;;;;;;;;;:27;;;;;;;;;:::i;:::-;;;;;;53423;53433:4;53448:1;53439:6;:10;;;;:::i;:::-;53423:9;:27::i;:::-;53361:3;;;;;:::i;:::-;;;;53323:139;;;;52587:882;;52537:932;:::o;34639:155::-;34734:52;34753:12;:10;:12::i;:::-;34767:8;34777;34734:18;:52::i;:::-;34639:155;;:::o;35762:328::-;35937:41;35956:12;:10;:12::i;:::-;35970:7;35937:18;:41::i;:::-;35929:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;36043:39;36057:4;36063:2;36067:7;36076:5;36043:13;:39::i;:::-;35762:328;;;;:::o;51678:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53887:642::-;54005:13;54058:16;54066:7;54058;:16::i;:::-;54036:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;54162:28;54193:10;:8;:10::i;:::-;54162:41;;54265:1;54240:14;54234:28;:32;:287;;;;;;;;;;;;;;;;;54358:14;54399:18;:7;:16;:18::i;:::-;54444:13;54315:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54234:287;54214:307;;;53887:642;;;:::o;51802:31::-;;;;:::o;55047:151::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55173:17:::1;55157:13;:33;;;;;;;;;;;;:::i;:::-;;55047:151:::0;:::o;34865:164::-;34962:4;34986:18;:25;35005:5;34986:25;;;;;;;;;;;;;;;:35;35012:8;34986:35;;;;;;;;;;;;;;;;;;;;;;;;;34979:42;;34865:164;;;;:::o;51762:33::-;;;;:::o;12015:201::-;11337:12;:10;:12::i;:::-;11326:23;;:7;:5;:7::i;:::-;:23;;;11318:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12124:1:::1;12104:22;;:8;:22;;;;12096:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12180:28;12199:8;12180:18;:28::i;:::-;12015:201:::0;:::o;31842:305::-;31944:4;31996:25;31981:40;;;:11;:40;;;;:105;;;;32053:33;32038:48;;;:11;:48;;;;31981:105;:158;;;;32103:36;32127:11;32103:23;:36::i;:::-;31981:158;31961:178;;31842:305;;;:::o;9830:98::-;9883:7;9910:10;9903:17;;9830:98;:::o;37600:127::-;37665:4;37717:1;37689:30;;:7;:16;37697:7;37689:16;;;;;;;;;;;;;;;;;;;;;:30;;;;37682:37;;37600:127;;;:::o;41582:174::-;41684:2;41657:15;:24;41673:7;41657:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;41740:7;41736:2;41702:46;;41711:23;41726:7;41711:14;:23::i;:::-;41702:46;;;;;;;;;;;;41582:174;;:::o;37894:348::-;37987:4;38012:16;38020:7;38012;:16::i;:::-;38004:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;38088:13;38104:23;38119:7;38104:14;:23::i;:::-;38088:39;;38157:5;38146:16;;:7;:16;;;:51;;;;38190:7;38166:31;;:20;38178:7;38166:11;:20::i;:::-;:31;;;38146:51;:87;;;;38201:32;38218:5;38225:7;38201:16;:32::i;:::-;38146:87;38138:96;;;37894:348;;;;:::o;40886:578::-;41045:4;41018:31;;:23;41033:7;41018:14;:23::i;:::-;:31;;;41010:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41128:1;41114:16;;:2;:16;;;;41106:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;41184:39;41205:4;41211:2;41215:7;41184:20;:39::i;:::-;41288:29;41305:1;41309:7;41288:8;:29::i;:::-;41349:1;41330:9;:15;41340:4;41330:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;41378:1;41361:9;:13;41371:2;41361:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;41409:2;41390:7;:16;41398:7;41390:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;41448:7;41444:2;41429:27;;41438:4;41429:27;;;;;;;;;;;;40886:578;;;:::o;38584:110::-;38660:26;38670:2;38674:7;38660:26;;;;;;;;;;;;:9;:26::i;:::-;38584:110;;:::o;3600:98::-;3658:7;3689:1;3685;:5;;;;:::i;:::-;3678:12;;3600:98;;;;:::o;3999:::-;4057:7;4088:1;4084;:5;;;;:::i;:::-;4077:12;;3999:98;;;;:::o;12376:191::-;12450:16;12469:6;;;;;;;;;;;12450:25;;12495:8;12486:6;;:17;;;;;;;;;;;;;;;;;;12550:8;12519:40;;12540:8;12519:40;;;;;;;;;;;;12439:128;12376:191;:::o;41898:315::-;42053:8;42044:17;;:5;:17;;;;42036:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;42140:8;42102:18;:25;42121:5;42102:25;;;;;;;;;;;;;;;:35;42128:8;42102:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;42186:8;42164:41;;42179:5;42164:41;;;42196:8;42164:41;;;;;;:::i;:::-;;;;;;;;41898:315;;;:::o;36972:::-;37129:28;37139:4;37145:2;37149:7;37129:9;:28::i;:::-;37176:48;37199:4;37205:2;37209:7;37218:5;37176:22;:48::i;:::-;37168:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;36972:315;;;;:::o;52399:108::-;52459:13;52492:7;52485:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52399:108;:::o;7392:723::-;7448:13;7678:1;7669:5;:10;7665:53;;;7696:10;;;;;;;;;;;;;;;;;;;;;7665:53;7728:12;7743:5;7728:20;;7759:14;7784:78;7799:1;7791:4;:9;7784:78;;7817:8;;;;;:::i;:::-;;;;7848:2;7840:10;;;;;:::i;:::-;;;7784:78;;;7872:19;7904:6;7894:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7872:39;;7922:154;7938:1;7929:5;:10;7922:154;;7966:1;7956:11;;;;;:::i;:::-;;;8033:2;8025:5;:10;;;;:::i;:::-;8012:2;:24;;;;:::i;:::-;7999:39;;7982:6;7989;7982:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8062:2;8053:11;;;;;:::i;:::-;;;7922:154;;;8100:6;8086:21;;;;;7392:723;;;;:::o;23538:157::-;23623:4;23662:25;23647:40;;;:11;:40;;;;23640:47;;23538:157;;;:::o;46969:589::-;47113:45;47140:4;47146:2;47150:7;47113:26;:45::i;:::-;47191:1;47175:18;;:4;:18;;;47171:187;;;47210:40;47242:7;47210:31;:40::i;:::-;47171:187;;;47280:2;47272:10;;:4;:10;;;47268:90;;47299:47;47332:4;47338:7;47299:32;:47::i;:::-;47268:90;47171:187;47386:1;47372:16;;:2;:16;;;47368:183;;;47405:45;47442:7;47405:36;:45::i;:::-;47368:183;;;47478:4;47472:10;;:2;:10;;;47468:83;;47499:40;47527:2;47531:7;47499:27;:40::i;:::-;47468:83;47368:183;46969:589;;;:::o;38921:321::-;39051:18;39057:2;39061:7;39051:5;:18::i;:::-;39102:54;39133:1;39137:2;39141:7;39150:5;39102:22;:54::i;:::-;39080:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;38921:321;;;:::o;42778:799::-;42933:4;42954:15;:2;:13;;;:15::i;:::-;42950:620;;;43006:2;42990:36;;;43027:12;:10;:12::i;:::-;43041:4;43047:7;43056:5;42990:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42986:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43249:1;43232:6;:13;:18;43228:272;;;43275:60;;;;;;;;;;:::i;:::-;;;;;;;;43228:272;43450:6;43444:13;43435:6;43431:2;43427:15;43420:38;42986:529;43123:41;;;43113:51;;;:6;:51;;;;43106:58;;;;;42950:620;43554:4;43547:11;;42778:799;;;;;;;:::o;44149:126::-;;;;:::o;48281:164::-;48385:10;:17;;;;48358:15;:24;48374:7;48358:24;;;;;;;;;;;:44;;;;48413:10;48429:7;48413:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48281:164;:::o;49072:988::-;49338:22;49388:1;49363:22;49380:4;49363:16;:22::i;:::-;:26;;;;:::i;:::-;49338:51;;49400:18;49421:17;:26;49439:7;49421:26;;;;;;;;;;;;49400:47;;49568:14;49554:10;:28;49550:328;;49599:19;49621:12;:18;49634:4;49621:18;;;;;;;;;;;;;;;:34;49640:14;49621:34;;;;;;;;;;;;49599:56;;49705:11;49672:12;:18;49685:4;49672:18;;;;;;;;;;;;;;;:30;49691:10;49672:30;;;;;;;;;;;:44;;;;49822:10;49789:17;:30;49807:11;49789:30;;;;;;;;;;;:43;;;;49584:294;49550:328;49974:17;:26;49992:7;49974:26;;;;;;;;;;;49967:33;;;50018:12;:18;50031:4;50018:18;;;;;;;;;;;;;;;:34;50037:14;50018:34;;;;;;;;;;;50011:41;;;49153:907;;49072:988;;:::o;50355:1079::-;50608:22;50653:1;50633:10;:17;;;;:21;;;;:::i;:::-;50608:46;;50665:18;50686:15;:24;50702:7;50686:24;;;;;;;;;;;;50665:45;;51037:19;51059:10;51070:14;51059:26;;;;;;;;:::i;:::-;;;;;;;;;;51037:48;;51123:11;51098:10;51109;51098:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;51234:10;51203:15;:28;51219:11;51203:28;;;;;;;;;;;:41;;;;51375:15;:24;51391:7;51375:24;;;;;;;;;;;51368:31;;;51410:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50426:1008;;;50355:1079;:::o;47859:221::-;47944:14;47961:20;47978:2;47961:16;:20::i;:::-;47944:37;;48019:7;47992:12;:16;48005:2;47992:16;;;;;;;;;;;;;;;:24;48009:6;47992:24;;;;;;;;;;;:34;;;;48066:6;48037:17;:26;48055:7;48037:26;;;;;;;;;;;:35;;;;47933:147;47859:221;;:::o;39578:382::-;39672:1;39658:16;;:2;:16;;;;39650:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39731:16;39739:7;39731;:16::i;:::-;39730:17;39722:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;39793:45;39822:1;39826:2;39830:7;39793:20;:45::i;:::-;39868:1;39851:9;:13;39861:2;39851:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;39899:2;39880:7;:16;39888:7;39880:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;39944:7;39940:2;39919:33;;39936:1;39919:33;;;;;;;;;;;;39578:382;;:::o;13394:387::-;13454:4;13662:12;13729:7;13717:20;13709:28;;13772:1;13765:4;:8;13758:15;;;13394:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:377::-;9521:3;9549:39;9582:5;9549:39;:::i;:::-;9604:89;9686:6;9681:3;9604:89;:::i;:::-;9597:96;;9702:52;9747:6;9742:3;9735:4;9728:5;9724:16;9702:52;:::i;:::-;9779:6;9774:3;9770:16;9763:23;;9525:267;9415:377;;;;:::o;9822:845::-;9925:3;9962:5;9956:12;9991:36;10017:9;9991:36;:::i;:::-;10043:89;10125:6;10120:3;10043:89;:::i;:::-;10036:96;;10163:1;10152:9;10148:17;10179:1;10174:137;;;;10325:1;10320:341;;;;10141:520;;10174:137;10258:4;10254:9;10243;10239:25;10234:3;10227:38;10294:6;10289:3;10285:16;10278:23;;10174:137;;10320:341;10387:38;10419:5;10387:38;:::i;:::-;10447:1;10461:154;10475:6;10472:1;10469:13;10461:154;;;10549:7;10543:14;10539:1;10534:3;10530:11;10523:35;10599:1;10590:7;10586:15;10575:26;;10497:4;10494:1;10490:12;10485:17;;10461:154;;;10644:6;10639:3;10635:16;10628:23;;10327:334;;10141:520;;9929:738;;9822:845;;;;:::o;10673:366::-;10815:3;10836:67;10900:2;10895:3;10836:67;:::i;:::-;10829:74;;10912:93;11001:3;10912:93;:::i;:::-;11030:2;11025:3;11021:12;11014:19;;10673:366;;;:::o;11045:::-;11187:3;11208:67;11272:2;11267:3;11208:67;:::i;:::-;11201:74;;11284:93;11373:3;11284:93;:::i;:::-;11402:2;11397:3;11393:12;11386:19;;11045:366;;;:::o;11417:::-;11559:3;11580:67;11644:2;11639:3;11580:67;:::i;:::-;11573:74;;11656:93;11745:3;11656:93;:::i;:::-;11774:2;11769:3;11765:12;11758:19;;11417:366;;;:::o;11789:::-;11931:3;11952:67;12016:2;12011:3;11952:67;:::i;:::-;11945:74;;12028:93;12117:3;12028:93;:::i;:::-;12146:2;12141:3;12137:12;12130:19;;11789:366;;;:::o;12161:::-;12303:3;12324:67;12388:2;12383:3;12324:67;:::i;:::-;12317:74;;12400:93;12489:3;12400:93;:::i;:::-;12518:2;12513:3;12509:12;12502:19;;12161:366;;;:::o;12533:::-;12675:3;12696:67;12760:2;12755:3;12696:67;:::i;:::-;12689:74;;12772:93;12861:3;12772:93;:::i;:::-;12890:2;12885:3;12881:12;12874:19;;12533:366;;;:::o;12905:::-;13047:3;13068:67;13132:2;13127:3;13068:67;:::i;:::-;13061:74;;13144:93;13233:3;13144:93;:::i;:::-;13262:2;13257:3;13253:12;13246:19;;12905:366;;;:::o;13277:::-;13419:3;13440:67;13504:2;13499:3;13440:67;:::i;:::-;13433:74;;13516:93;13605:3;13516:93;:::i;:::-;13634:2;13629:3;13625:12;13618:19;;13277:366;;;:::o;13649:::-;13791:3;13812:67;13876:2;13871:3;13812:67;:::i;:::-;13805:74;;13888:93;13977:3;13888:93;:::i;:::-;14006:2;14001:3;13997:12;13990:19;;13649:366;;;:::o;14021:::-;14163:3;14184:67;14248:2;14243:3;14184:67;:::i;:::-;14177:74;;14260:93;14349:3;14260:93;:::i;:::-;14378:2;14373:3;14369:12;14362:19;;14021:366;;;:::o;14393:::-;14535:3;14556:67;14620:2;14615:3;14556:67;:::i;:::-;14549:74;;14632:93;14721:3;14632:93;:::i;:::-;14750:2;14745:3;14741:12;14734:19;;14393:366;;;:::o;14765:::-;14907:3;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15004:93;15093:3;15004:93;:::i;:::-;15122:2;15117:3;15113:12;15106:19;;14765:366;;;:::o;15137:::-;15279:3;15300:67;15364:2;15359:3;15300:67;:::i;:::-;15293:74;;15376:93;15465:3;15376:93;:::i;:::-;15494:2;15489:3;15485:12;15478:19;;15137:366;;;:::o;15509:::-;15651:3;15672:67;15736:2;15731:3;15672:67;:::i;:::-;15665:74;;15748:93;15837:3;15748:93;:::i;:::-;15866:2;15861:3;15857:12;15850:19;;15509:366;;;:::o;15881:::-;16023:3;16044:67;16108:2;16103:3;16044:67;:::i;:::-;16037:74;;16120:93;16209:3;16120:93;:::i;:::-;16238:2;16233:3;16229:12;16222:19;;15881:366;;;:::o;16253:::-;16395:3;16416:67;16480:2;16475:3;16416:67;:::i;:::-;16409:74;;16492:93;16581:3;16492:93;:::i;:::-;16610:2;16605:3;16601:12;16594:19;;16253:366;;;:::o;16625:::-;16767:3;16788:67;16852:2;16847:3;16788:67;:::i;:::-;16781:74;;16864:93;16953:3;16864:93;:::i;:::-;16982:2;16977:3;16973:12;16966:19;;16625:366;;;:::o;16997:::-;17139:3;17160:67;17224:2;17219:3;17160:67;:::i;:::-;17153:74;;17236:93;17325:3;17236:93;:::i;:::-;17354:2;17349:3;17345:12;17338:19;;16997:366;;;:::o;17369:::-;17511:3;17532:67;17596:2;17591:3;17532:67;:::i;:::-;17525:74;;17608:93;17697:3;17608:93;:::i;:::-;17726:2;17721:3;17717:12;17710:19;;17369:366;;;:::o;17741:365::-;17883:3;17904:66;17968:1;17963:3;17904:66;:::i;:::-;17897:73;;17979:93;18068:3;17979:93;:::i;:::-;18097:2;18092:3;18088:12;18081:19;;17741:365;;;:::o;18112:366::-;18254:3;18275:67;18339:2;18334:3;18275:67;:::i;:::-;18268:74;;18351:93;18440:3;18351:93;:::i;:::-;18469:2;18464:3;18460:12;18453:19;;18112:366;;;:::o;18484:::-;18626:3;18647:67;18711:2;18706:3;18647:67;:::i;:::-;18640:74;;18723:93;18812:3;18723:93;:::i;:::-;18841:2;18836:3;18832:12;18825:19;;18484:366;;;:::o;18856:108::-;18933:24;18951:5;18933:24;:::i;:::-;18928:3;18921:37;18856:108;;:::o;18970:118::-;19057:24;19075:5;19057:24;:::i;:::-;19052:3;19045:37;18970:118;;:::o;19094:589::-;19319:3;19341:95;19432:3;19423:6;19341:95;:::i;:::-;19334:102;;19453:95;19544:3;19535:6;19453:95;:::i;:::-;19446:102;;19565:92;19653:3;19644:6;19565:92;:::i;:::-;19558:99;;19674:3;19667:10;;19094:589;;;;;;:::o;19689:222::-;19782:4;19820:2;19809:9;19805:18;19797:26;;19833:71;19901:1;19890:9;19886:17;19877:6;19833:71;:::i;:::-;19689:222;;;;:::o;19917:640::-;20112:4;20150:3;20139:9;20135:19;20127:27;;20164:71;20232:1;20221:9;20217:17;20208:6;20164:71;:::i;:::-;20245:72;20313:2;20302:9;20298:18;20289:6;20245:72;:::i;:::-;20327;20395:2;20384:9;20380:18;20371:6;20327:72;:::i;:::-;20446:9;20440:4;20436:20;20431:2;20420:9;20416:18;20409:48;20474:76;20545:4;20536:6;20474:76;:::i;:::-;20466:84;;19917:640;;;;;;;:::o;20563:373::-;20706:4;20744:2;20733:9;20729:18;20721:26;;20793:9;20787:4;20783:20;20779:1;20768:9;20764:17;20757:47;20821:108;20924:4;20915:6;20821:108;:::i;:::-;20813:116;;20563:373;;;;:::o;20942:210::-;21029:4;21067:2;21056:9;21052:18;21044:26;;21080:65;21142:1;21131:9;21127:17;21118:6;21080:65;:::i;:::-;20942:210;;;;:::o;21158:313::-;21271:4;21309:2;21298:9;21294:18;21286:26;;21358:9;21352:4;21348:20;21344:1;21333:9;21329:17;21322:47;21386:78;21459:4;21450:6;21386:78;:::i;:::-;21378:86;;21158:313;;;;:::o;21477:419::-;21643:4;21681:2;21670:9;21666:18;21658:26;;21730:9;21724:4;21720:20;21716:1;21705:9;21701:17;21694:47;21758:131;21884:4;21758:131;:::i;:::-;21750:139;;21477:419;;;:::o;21902:::-;22068:4;22106:2;22095:9;22091:18;22083:26;;22155:9;22149:4;22145:20;22141:1;22130:9;22126:17;22119:47;22183:131;22309:4;22183:131;:::i;:::-;22175:139;;21902:419;;;:::o;22327:::-;22493:4;22531:2;22520:9;22516:18;22508:26;;22580:9;22574:4;22570:20;22566:1;22555:9;22551:17;22544:47;22608:131;22734:4;22608:131;:::i;:::-;22600:139;;22327:419;;;:::o;22752:::-;22918:4;22956:2;22945:9;22941:18;22933:26;;23005:9;22999:4;22995:20;22991:1;22980:9;22976:17;22969:47;23033:131;23159:4;23033:131;:::i;:::-;23025:139;;22752:419;;;:::o;23177:::-;23343:4;23381:2;23370:9;23366:18;23358:26;;23430:9;23424:4;23420:20;23416:1;23405:9;23401:17;23394:47;23458:131;23584:4;23458:131;:::i;:::-;23450:139;;23177:419;;;:::o;23602:::-;23768:4;23806:2;23795:9;23791:18;23783:26;;23855:9;23849:4;23845:20;23841:1;23830:9;23826:17;23819:47;23883:131;24009:4;23883:131;:::i;:::-;23875:139;;23602:419;;;:::o;24027:::-;24193:4;24231:2;24220:9;24216:18;24208:26;;24280:9;24274:4;24270:20;24266:1;24255:9;24251:17;24244:47;24308:131;24434:4;24308:131;:::i;:::-;24300:139;;24027:419;;;:::o;24452:::-;24618:4;24656:2;24645:9;24641:18;24633:26;;24705:9;24699:4;24695:20;24691:1;24680:9;24676:17;24669:47;24733:131;24859:4;24733:131;:::i;:::-;24725:139;;24452:419;;;:::o;24877:::-;25043:4;25081:2;25070:9;25066:18;25058:26;;25130:9;25124:4;25120:20;25116:1;25105:9;25101:17;25094:47;25158:131;25284:4;25158:131;:::i;:::-;25150:139;;24877:419;;;:::o;25302:::-;25468:4;25506:2;25495:9;25491:18;25483:26;;25555:9;25549:4;25545:20;25541:1;25530:9;25526:17;25519:47;25583:131;25709:4;25583:131;:::i;:::-;25575:139;;25302:419;;;:::o;25727:::-;25893:4;25931:2;25920:9;25916:18;25908:26;;25980:9;25974:4;25970:20;25966:1;25955:9;25951:17;25944:47;26008:131;26134:4;26008:131;:::i;:::-;26000:139;;25727:419;;;:::o;26152:::-;26318:4;26356:2;26345:9;26341:18;26333:26;;26405:9;26399:4;26395:20;26391:1;26380:9;26376:17;26369:47;26433:131;26559:4;26433:131;:::i;:::-;26425:139;;26152:419;;;:::o;26577:::-;26743:4;26781:2;26770:9;26766:18;26758:26;;26830:9;26824:4;26820:20;26816:1;26805:9;26801:17;26794:47;26858:131;26984:4;26858:131;:::i;:::-;26850:139;;26577:419;;;:::o;27002:::-;27168:4;27206:2;27195:9;27191:18;27183:26;;27255:9;27249:4;27245:20;27241:1;27230:9;27226:17;27219:47;27283:131;27409:4;27283:131;:::i;:::-;27275:139;;27002:419;;;:::o;27427:::-;27593:4;27631:2;27620:9;27616:18;27608:26;;27680:9;27674:4;27670:20;27666:1;27655:9;27651:17;27644:47;27708:131;27834:4;27708:131;:::i;:::-;27700:139;;27427:419;;;:::o;27852:::-;28018:4;28056:2;28045:9;28041:18;28033:26;;28105:9;28099:4;28095:20;28091:1;28080:9;28076:17;28069:47;28133:131;28259:4;28133:131;:::i;:::-;28125:139;;27852:419;;;:::o;28277:::-;28443:4;28481:2;28470:9;28466:18;28458:26;;28530:9;28524:4;28520:20;28516:1;28505:9;28501:17;28494:47;28558:131;28684:4;28558:131;:::i;:::-;28550:139;;28277:419;;;:::o;28702:::-;28868:4;28906:2;28895:9;28891:18;28883:26;;28955:9;28949:4;28945:20;28941:1;28930:9;28926:17;28919:47;28983:131;29109:4;28983:131;:::i;:::-;28975:139;;28702:419;;;:::o;29127:::-;29293:4;29331:2;29320:9;29316:18;29308:26;;29380:9;29374:4;29370:20;29366:1;29355:9;29351:17;29344:47;29408:131;29534:4;29408:131;:::i;:::-;29400:139;;29127:419;;;:::o;29552:::-;29718:4;29756:2;29745:9;29741:18;29733:26;;29805:9;29799:4;29795:20;29791:1;29780:9;29776:17;29769:47;29833:131;29959:4;29833:131;:::i;:::-;29825:139;;29552:419;;;:::o;29977:::-;30143:4;30181:2;30170:9;30166:18;30158:26;;30230:9;30224:4;30220:20;30216:1;30205:9;30201:17;30194:47;30258:131;30384:4;30258:131;:::i;:::-;30250:139;;29977:419;;;:::o;30402:::-;30568:4;30606:2;30595:9;30591:18;30583:26;;30655:9;30649:4;30645:20;30641:1;30630:9;30626:17;30619:47;30683:131;30809:4;30683:131;:::i;:::-;30675:139;;30402:419;;;:::o;30827:222::-;30920:4;30958:2;30947:9;30943:18;30935:26;;30971:71;31039:1;31028:9;31024:17;31015:6;30971:71;:::i;:::-;30827:222;;;;:::o;31055:129::-;31089:6;31116:20;;:::i;:::-;31106:30;;31145:33;31173:4;31165:6;31145:33;:::i;:::-;31055:129;;;:::o;31190:75::-;31223:6;31256:2;31250:9;31240:19;;31190:75;:::o;31271:307::-;31332:4;31422:18;31414:6;31411:30;31408:56;;;31444:18;;:::i;:::-;31408:56;31482:29;31504:6;31482:29;:::i;:::-;31474:37;;31566:4;31560;31556:15;31548:23;;31271:307;;;:::o;31584:308::-;31646:4;31736:18;31728:6;31725:30;31722:56;;;31758:18;;:::i;:::-;31722:56;31796:29;31818:6;31796:29;:::i;:::-;31788:37;;31880:4;31874;31870:15;31862:23;;31584:308;;;:::o;31898:132::-;31965:4;31988:3;31980:11;;32018:4;32013:3;32009:14;32001:22;;31898:132;;;:::o;32036:141::-;32085:4;32108:3;32100:11;;32131:3;32128:1;32121:14;32165:4;32162:1;32152:18;32144:26;;32036:141;;;:::o;32183:114::-;32250:6;32284:5;32278:12;32268:22;;32183:114;;;:::o;32303:98::-;32354:6;32388:5;32382:12;32372:22;;32303:98;;;:::o;32407:99::-;32459:6;32493:5;32487:12;32477:22;;32407:99;;;:::o;32512:113::-;32582:4;32614;32609:3;32605:14;32597:22;;32512:113;;;:::o;32631:184::-;32730:11;32764:6;32759:3;32752:19;32804:4;32799:3;32795:14;32780:29;;32631:184;;;;:::o;32821:168::-;32904:11;32938:6;32933:3;32926:19;32978:4;32973:3;32969:14;32954:29;;32821:168;;;;:::o;32995:169::-;33079:11;33113:6;33108:3;33101:19;33153:4;33148:3;33144:14;33129:29;;32995:169;;;;:::o;33170:148::-;33272:11;33309:3;33294:18;;33170:148;;;;:::o;33324:305::-;33364:3;33383:20;33401:1;33383:20;:::i;:::-;33378:25;;33417:20;33435:1;33417:20;:::i;:::-;33412:25;;33571:1;33503:66;33499:74;33496:1;33493:81;33490:107;;;33577:18;;:::i;:::-;33490:107;33621:1;33618;33614:9;33607:16;;33324:305;;;;:::o;33635:185::-;33675:1;33692:20;33710:1;33692:20;:::i;:::-;33687:25;;33726:20;33744:1;33726:20;:::i;:::-;33721:25;;33765:1;33755:35;;33770:18;;:::i;:::-;33755:35;33812:1;33809;33805:9;33800:14;;33635:185;;;;:::o;33826:348::-;33866:7;33889:20;33907:1;33889:20;:::i;:::-;33884:25;;33923:20;33941:1;33923:20;:::i;:::-;33918:25;;34111:1;34043:66;34039:74;34036:1;34033:81;34028:1;34021:9;34014:17;34010:105;34007:131;;;34118:18;;:::i;:::-;34007:131;34166:1;34163;34159:9;34148:20;;33826:348;;;;:::o;34180:191::-;34220:4;34240:20;34258:1;34240:20;:::i;:::-;34235:25;;34274:20;34292:1;34274:20;:::i;:::-;34269:25;;34313:1;34310;34307:8;34304:34;;;34318:18;;:::i;:::-;34304:34;34363:1;34360;34356:9;34348:17;;34180:191;;;;:::o;34377:96::-;34414:7;34443:24;34461:5;34443:24;:::i;:::-;34432:35;;34377:96;;;:::o;34479:90::-;34513:7;34556:5;34549:13;34542:21;34531:32;;34479:90;;;:::o;34575:149::-;34611:7;34651:66;34644:5;34640:78;34629:89;;34575:149;;;:::o;34730:126::-;34767:7;34807:42;34800:5;34796:54;34785:65;;34730:126;;;:::o;34862:77::-;34899:7;34928:5;34917:16;;34862:77;;;:::o;34945:154::-;35029:6;35024:3;35019;35006:30;35091:1;35082:6;35077:3;35073:16;35066:27;34945:154;;;:::o;35105:307::-;35173:1;35183:113;35197:6;35194:1;35191:13;35183:113;;;35282:1;35277:3;35273:11;35267:18;35263:1;35258:3;35254:11;35247:39;35219:2;35216:1;35212:10;35207:15;;35183:113;;;35314:6;35311:1;35308:13;35305:101;;;35394:1;35385:6;35380:3;35376:16;35369:27;35305:101;35154:258;35105:307;;;:::o;35418:320::-;35462:6;35499:1;35493:4;35489:12;35479:22;;35546:1;35540:4;35536:12;35567:18;35557:81;;35623:4;35615:6;35611:17;35601:27;;35557:81;35685:2;35677:6;35674:14;35654:18;35651:38;35648:84;;;35704:18;;:::i;:::-;35648:84;35469:269;35418:320;;;:::o;35744:281::-;35827:27;35849:4;35827:27;:::i;:::-;35819:6;35815:40;35957:6;35945:10;35942:22;35921:18;35909:10;35906:34;35903:62;35900:88;;;35968:18;;:::i;:::-;35900:88;36008:10;36004:2;35997:22;35787:238;35744:281;;:::o;36031:233::-;36070:3;36093:24;36111:5;36093:24;:::i;:::-;36084:33;;36139:66;36132:5;36129:77;36126:103;;;36209:18;;:::i;:::-;36126:103;36256:1;36249:5;36245:13;36238:20;;36031:233;;;:::o;36270:176::-;36302:1;36319:20;36337:1;36319:20;:::i;:::-;36314:25;;36353:20;36371:1;36353:20;:::i;:::-;36348:25;;36392:1;36382:35;;36397:18;;:::i;:::-;36382:35;36438:1;36435;36431:9;36426:14;;36270:176;;;;:::o;36452:180::-;36500:77;36497:1;36490:88;36597:4;36594:1;36587:15;36621:4;36618:1;36611:15;36638:180;36686:77;36683:1;36676:88;36783:4;36780:1;36773:15;36807:4;36804:1;36797:15;36824:180;36872:77;36869:1;36862:88;36969:4;36966:1;36959:15;36993:4;36990:1;36983:15;37010:180;37058:77;37055:1;37048:88;37155:4;37152:1;37145:15;37179:4;37176:1;37169:15;37196:180;37244:77;37241:1;37234:88;37341:4;37338:1;37331:15;37365:4;37362:1;37355:15;37382:180;37430:77;37427:1;37420:88;37527:4;37524:1;37517:15;37551:4;37548:1;37541:15;37568:117;37677:1;37674;37667:12;37691:117;37800:1;37797;37790:12;37814:117;37923:1;37920;37913:12;37937:117;38046:1;38043;38036:12;38060:102;38101:6;38152:2;38148:7;38143:2;38136:5;38132:14;38128:28;38118:38;;38060:102;;;:::o;38168:230::-;38308:34;38304:1;38296:6;38292:14;38285:58;38377:13;38372:2;38364:6;38360:15;38353:38;38168:230;:::o;38404:237::-;38544:34;38540:1;38532:6;38528:14;38521:58;38613:20;38608:2;38600:6;38596:15;38589:45;38404:237;:::o;38647:225::-;38787:34;38783:1;38775:6;38771:14;38764:58;38856:8;38851:2;38843:6;38839:15;38832:33;38647:225;:::o;38878:178::-;39018:30;39014:1;39006:6;39002:14;38995:54;38878:178;:::o;39062:164::-;39202:16;39198:1;39190:6;39186:14;39179:40;39062:164;:::o;39232:223::-;39372:34;39368:1;39360:6;39356:14;39349:58;39441:6;39436:2;39428:6;39424:15;39417:31;39232:223;:::o;39461:175::-;39601:27;39597:1;39589:6;39585:14;39578:51;39461:175;:::o;39642:169::-;39782:21;39778:1;39770:6;39766:14;39759:45;39642:169;:::o;39817:231::-;39957:34;39953:1;39945:6;39941:14;39934:58;40026:14;40021:2;40013:6;40009:15;40002:39;39817:231;:::o;40054:243::-;40194:34;40190:1;40182:6;40178:14;40171:58;40263:26;40258:2;40250:6;40246:15;40239:51;40054:243;:::o;40303:229::-;40443:34;40439:1;40431:6;40427:14;40420:58;40512:12;40507:2;40499:6;40495:15;40488:37;40303:229;:::o;40538:228::-;40678:34;40674:1;40666:6;40662:14;40655:58;40747:11;40742:2;40734:6;40730:15;40723:36;40538:228;:::o;40772:182::-;40912:34;40908:1;40900:6;40896:14;40889:58;40772:182;:::o;40960:231::-;41100:34;41096:1;41088:6;41084:14;41077:58;41169:14;41164:2;41156:6;41152:15;41145:39;40960:231;:::o;41197:182::-;41337:34;41333:1;41325:6;41321:14;41314:58;41197:182;:::o;41385:228::-;41525:34;41521:1;41513:6;41509:14;41502:58;41594:11;41589:2;41581:6;41577:15;41570:36;41385:228;:::o;41619:234::-;41759:34;41755:1;41747:6;41743:14;41736:58;41828:17;41823:2;41815:6;41811:15;41804:42;41619:234;:::o;41859:220::-;41999:34;41995:1;41987:6;41983:14;41976:58;42068:3;42063:2;42055:6;42051:15;42044:28;41859:220;:::o;42085:236::-;42225:34;42221:1;42213:6;42209:14;42202:58;42294:19;42289:2;42281:6;42277:15;42270:44;42085:236;:::o;42327:158::-;42467:10;42463:1;42455:6;42451:14;42444:34;42327:158;:::o;42491:167::-;42631:19;42627:1;42619:6;42615:14;42608:43;42491:167;:::o;42664:231::-;42804:34;42800:1;42792:6;42788:14;42781:58;42873:14;42868:2;42860:6;42856:15;42849:39;42664:231;:::o;42901:122::-;42974:24;42992:5;42974:24;:::i;:::-;42967:5;42964:35;42954:63;;43013:1;43010;43003:12;42954:63;42901:122;:::o;43029:116::-;43099:21;43114:5;43099:21;:::i;:::-;43092:5;43089:32;43079:60;;43135:1;43132;43125:12;43079:60;43029:116;:::o;43151:120::-;43223:23;43240:5;43223:23;:::i;:::-;43216:5;43213:34;43203:62;;43261:1;43258;43251:12;43203:62;43151:120;:::o;43277:122::-;43350:24;43368:5;43350:24;:::i;:::-;43343:5;43340:35;43330:63;;43389:1;43386;43379:12;43330:63;43277:122;:::o

Swarm Source

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