ETH Price: $3,514.51 (+4.69%)
Gas: 4 Gwei

Token

LoonBirds (LB)
 

Overview

Max Total Supply

10,000 LB

Holders

1,076

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 LB
0xd63a869444f5460eaaf1d91eb96f3410161f3885
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:
LoonBirds8

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity 0.8.10;

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

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

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

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

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

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

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

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


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


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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


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

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


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

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


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

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

/**
 * @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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

/**
 * @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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}



contract LoonBirds8 is ERC721A, Ownable, ReentrancyGuard {
    using SafeMath for uint256;

    string public baseURI = "ipfs://bafybeifvtunpilavdcghdsw6pjw6gpnjvhvvq45qiuyd3qdgoil2zexxry/";

    uint256 public birdPrice = 80000000000000000; //0.08 ETH

    uint public constant maxBirdPurchase = 20;

    uint public maxBirdFreePerAddress = 20;

    uint256 public maxBirdFree;
    
    uint256 public numberOfBirdsFreeMinted;

    mapping (address => uint256) addressToNumberOfBirdsFreeMinted;

    uint256 public MAX_BIRDS = 10000;

    bool public saleIsActive = false;

    bool public freeMintIsActive = false;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_TWO;

    constructor(string memory name, string memory symbol) ERC721A(name, symbol) {
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    } 

    function withdrawTo(address to, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Request would exceed balance of this contract");
        payable(to).transfer(amount);
    } 

    function reserveBirds(address to, uint numberOfTokens) public onlyOwner {        
        require(totalSupply().add(numberOfTokens) <= MAX_BIRDS, "Request would exceed max supply of Birds");
        _safeMint(to, numberOfTokens);
    }         
    
    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }    

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function flipFreeMintState() public onlyOwner {
        freeMintIsActive = !freeMintIsActive;
    }

    function openFreeMint(uint256 _maxBirdFreePerAddress, uint256 _maxBirdFree) public onlyOwner{
        saleIsActive = true;
        freeMintIsActive = true;
        maxBirdFreePerAddress = _maxBirdFreePerAddress;
        maxBirdFree = _maxBirdFree;
        numberOfBirdsFreeMinted = 0;
    }

    function mintBird(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint Bird");
        require(numberOfTokens <= maxBirdPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_BIRDS, "Purchase would exceed max supply of Birds");
        if(freeMintIsActive){
            if(msg.value <= 0){
                require(addressToNumberOfBirdsFreeMinted[msg.sender].add(numberOfTokens) <= maxBirdFreePerAddress, "No free mints left for this wallet");
                require(numberOfBirdsFreeMinted.add(numberOfTokens) <= maxBirdFree, "No free mints left");
            } else{
                require(birdPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
            }
        } else{
            require(birdPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
        }
        
        _safeMint(msg.sender, numberOfTokens);

        if(freeMintIsActive && msg.value <= 0){
            addressToNumberOfBirdsFreeMinted[msg.sender] = addressToNumberOfBirdsFreeMinted[msg.sender].add( numberOfTokens );
            numberOfBirdsFreeMinted = numberOfBirdsFreeMinted.add(numberOfTokens);
            if(numberOfBirdsFreeMinted >= maxBirdFree){
                freeMintIsActive = false;
            }
        }
    }

    function setBirdPrice(uint256 newBirdPrice) public onlyOwner{
        birdPrice = newBirdPrice;
    }

    function getTotalFreeMinted(address adr) public view returns(uint256) {
        return addressToNumberOfBirdsFreeMinted[adr];
    }   

    function setMaxBirdFreePerAddress(uint256 _maxBirdFreePerAddress) public onlyOwner{
        maxBirdFreePerAddress = _maxBirdFreePerAddress;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) 
    {
        require(_exists(_tokenId), "Token does not exist.");
        if (tokenUriMode == TokenURIMode.MODE_TWO) {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId)
            )
          ) : "";
        } else {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
          ) : "";
        }
    }

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    } 

    function setMaxSupply(uint256 _maxSupply) external onlyOwner {
      MAX_BIRDS = _maxSupply;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BIRDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"birdPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipFreeMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintIsActive","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":"adr","type":"address"}],"name":"getTotalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBirdFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBirdFreePerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBirdPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintBird","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfBirdsFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBirdFreePerAddress","type":"uint256"},{"internalType":"uint256","name":"_maxBirdFree","type":"uint256"}],"name":"openFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveBirds","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBirdPrice","type":"uint256"}],"name":"setBirdPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBirdFreePerAddress","type":"uint256"}],"name":"setMaxBirdFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806043815260200162004abe60439139600a90805190602001906200003592919062000233565b5067011c37937e080000600b556014600c556127106010556000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690836001811115620000ac57620000ab620002e3565b5b0217905550348015620000be57600080fd5b5060405162004b0138038062004b018339818101604052810190620000e49190620004af565b81818160029080519060200190620000fe92919062000233565b5080600390805190602001906200011792919062000233565b50620001286200016060201b60201c565b600081905550505062000150620001446200016560201b60201c565b6200016d60201b60201c565b6001600981905550505062000599565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002419062000563565b90600052602060002090601f016020900481019282620002655760008555620002b1565b82601f106200028057805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b057825182559160200191906001019062000293565b5b509050620002c09190620002c4565b5090565b5b80821115620002df576000816000905550600101620002c5565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200037b8262000330565b810181811067ffffffffffffffff821117156200039d576200039c62000341565b5b80604052505050565b6000620003b262000312565b9050620003c0828262000370565b919050565b600067ffffffffffffffff821115620003e357620003e262000341565b5b620003ee8262000330565b9050602081019050919050565b60005b838110156200041b578082015181840152602081019050620003fe565b838111156200042b576000848401525b50505050565b6000620004486200044284620003c5565b620003a6565b9050828152602081018484840111156200046757620004666200032b565b5b62000474848285620003fb565b509392505050565b600082601f83011262000494576200049362000326565b5b8151620004a684826020860162000431565b91505092915050565b60008060408385031215620004c957620004c86200031c565b5b600083015167ffffffffffffffff811115620004ea57620004e962000321565b5b620004f8858286016200047c565b925050602083015167ffffffffffffffff8111156200051c576200051b62000321565b5b6200052a858286016200047c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200057c57607f821691505b6020821081141562000593576200059262000534565b5b50919050565b61451580620005a96000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063ba5fbd5e116100ab578063dc33e6811161006f578063dc33e68114610823578063e985e9c514610860578063eb8d24441461089d578063f2fde38b146108c8578063ff46973e146108f15761023b565b8063ba5fbd5e1461074e578063bc5bac8214610779578063c87b56dd146107a4578063d3e86440146107e1578063db94b1ff1461080c5761023b565b8063900c71f5116100f2578063900c71f51461067f57806395d89b41146106a8578063a22cb465146106d3578063af752403146106fc578063b88d4fde146107255761023b565b806370a0823114610598578063715018a6146105d55780638b168d95146105ec5780638da5cb5b146106295780638e04f5c0146106545761023b565b806334918dfd116101bc5780636352211e116101805780636352211e146104b3578063684185f9146104f05780636c0360eb1461051b5780636d88b437146105465780636f8b44b01461056f5761023b565b806334918dfd1461040857806335ee0fd21461041f5780633ccfd60b1461044a57806342842e0e1461046157806355f804b31461048a5761023b565b8063174efd1d11610203578063174efd1d1461033757806318160ddd146103605780631f73bf7f1461038b578063205c2878146103b657806323b872dd146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063105a5d641461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906132da565b61090d565b6040516102749190613322565b60405180910390f35b34801561028957600080fd5b506102926109ef565b60405161029f91906133d6565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061342e565b610a81565b6040516102dc919061349c565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906134e3565b610afd565b005b34801561031a57600080fd5b506103356004803603810190610330919061342e565b610c02565b005b34801561034357600080fd5b5061035e6004803603810190610359919061342e565b610c88565b005b34801561036c57600080fd5b50610375610d0e565b6040516103829190613532565b60405180910390f35b34801561039757600080fd5b506103a0610d25565b6040516103ad9190613532565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906134e3565b610d2a565b005b3480156103eb57600080fd5b506104066004803603810190610401919061354d565b610e34565b005b34801561041457600080fd5b5061041d610e44565b005b34801561042b57600080fd5b50610434610eec565b6040516104419190613322565b60405180910390f35b34801561045657600080fd5b5061045f610eff565b005b34801561046d57600080fd5b506104886004803603810190610483919061354d565b610fca565b005b34801561049657600080fd5b506104b160048036038101906104ac91906136d5565b610fea565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061342e565b611080565b6040516104e7919061349c565b60405180910390f35b3480156104fc57600080fd5b50610505611096565b6040516105129190613532565b60405180910390f35b34801561052757600080fd5b5061053061109c565b60405161053d91906133d6565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061371e565b61112a565b005b34801561057b57600080fd5b506105966004803603810190610591919061342e565b6111f6565b005b3480156105a457600080fd5b506105bf60048036038101906105ba919061375e565b61127c565b6040516105cc9190613532565b60405180910390f35b3480156105e157600080fd5b506105ea61134c565b005b3480156105f857600080fd5b50610613600480360381019061060e919061375e565b6113d4565b6040516106209190613532565b60405180910390f35b34801561063557600080fd5b5061063e61141d565b60405161064b919061349c565b60405180910390f35b34801561066057600080fd5b50610669611447565b6040516106769190613532565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a1919061342e565b61144d565b005b3480156106b457600080fd5b506106bd611531565b6040516106ca91906133d6565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f591906137b7565b6115c3565b005b34801561070857600080fd5b50610723600480360381019061071e91906134e3565b61173b565b005b34801561073157600080fd5b5061074c60048036038101906107479190613898565b611823565b005b34801561075a57600080fd5b5061076361189b565b6040516107709190613532565b60405180910390f35b34801561078557600080fd5b5061078e6118a1565b60405161079b9190613532565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c6919061342e565b6118a7565b6040516107d891906133d6565b60405180910390f35b3480156107ed57600080fd5b506107f66119e9565b6040516108039190613532565b60405180910390f35b34801561081857600080fd5b506108216119ef565b005b34801561082f57600080fd5b5061084a6004803603810190610845919061375e565b611a97565b6040516108579190613532565b60405180910390f35b34801561086c57600080fd5b506108876004803603810190610882919061391b565b611aa9565b6040516108949190613322565b60405180910390f35b3480156108a957600080fd5b506108b2611b3d565b6040516108bf9190613322565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea919061375e565b611b50565b005b61090b6004803603810190610906919061342e565b611c48565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e857506109e782612006565b5b9050919050565b6060600280546109fe9061398a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a9061398a565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b6000610a8c82612070565b610ac2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0882611080565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b70576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8f6120be565b73ffffffffffffffffffffffffffffffffffffffff1614610bf257610bbb81610bb66120be565b611aa9565b610bf1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bfd8383836120c6565b505050565b610c0a6120be565b73ffffffffffffffffffffffffffffffffffffffff16610c2861141d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613a08565b60405180910390fd5b80600c8190555050565b610c906120be565b73ffffffffffffffffffffffffffffffffffffffff16610cae61141d565b73ffffffffffffffffffffffffffffffffffffffff1614610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90613a08565b60405180910390fd5b80600b8190555050565b6000610d18612178565b6001546000540303905090565b601481565b610d326120be565b73ffffffffffffffffffffffffffffffffffffffff16610d5061141d565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613a08565b60405180910390fd5b47811115610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090613a9a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e2f573d6000803e3d6000fd5b505050565b610e3f83838361217d565b505050565b610e4c6120be565b73ffffffffffffffffffffffffffffffffffffffff16610e6a61141d565b73ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613a08565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b601160019054906101000a900460ff1681565b610f076120be565b73ffffffffffffffffffffffffffffffffffffffff16610f2561141d565b73ffffffffffffffffffffffffffffffffffffffff1614610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613a08565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fc6573d6000803e3d6000fd5b5050565b610fe583838360405180602001604052806000815250611823565b505050565b610ff26120be565b73ffffffffffffffffffffffffffffffffffffffff1661101061141d565b73ffffffffffffffffffffffffffffffffffffffff1614611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90613a08565b60405180910390fd5b80600a908051906020019061107c929190613188565b5050565b600061108b82612633565b600001519050919050565b600e5481565b600a80546110a99061398a565b80601f01602080910402602001604051908101604052809291908181526020018280546110d59061398a565b80156111225780601f106110f757610100808354040283529160200191611122565b820191906000526020600020905b81548152906001019060200180831161110557829003601f168201915b505050505081565b6111326120be565b73ffffffffffffffffffffffffffffffffffffffff1661115061141d565b73ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90613a08565b60405180910390fd5b6001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff02191690831515021790555081600c8190555080600d819055506000600e819055505050565b6111fe6120be565b73ffffffffffffffffffffffffffffffffffffffff1661121c61141d565b73ffffffffffffffffffffffffffffffffffffffff1614611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990613a08565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113546120be565b73ffffffffffffffffffffffffffffffffffffffff1661137261141d565b73ffffffffffffffffffffffffffffffffffffffff16146113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90613a08565b60405180910390fd5b6113d260006128be565b565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6114556120be565b73ffffffffffffffffffffffffffffffffffffffff1661147361141d565b73ffffffffffffffffffffffffffffffffffffffff16146114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090613a08565b60405180910390fd5b6002811415611502576001601160026101000a81548160ff021916908360018111156114f8576114f7613aba565b5b021790555061152e565b6000601160026101000a81548160ff0219169083600181111561152857611527613aba565b5b02179055505b50565b6060600380546115409061398a565b80601f016020809104026020016040519081016040528092919081815260200182805461156c9061398a565b80156115b95780601f1061158e576101008083540402835291602001916115b9565b820191906000526020600020905b81548152906001019060200180831161159c57829003601f168201915b5050505050905090565b6115cb6120be565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611630576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061163d6120be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ea6120be565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172f9190613322565b60405180910390a35050565b6117436120be565b73ffffffffffffffffffffffffffffffffffffffff1661176161141d565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613a08565b60405180910390fd5b6010546117d4826117c6610d0e565b61298490919063ffffffff16565b1115611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613b5b565b60405180910390fd5b61181f82826129e2565b5050565b61182e84848461217d565b61184d8373ffffffffffffffffffffffffffffffffffffffff16612a00565b156118955761185e84848484612a23565b611894576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b600d5481565b60606118b282612070565b6118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613bc7565b60405180910390fd5b60018081111561190457611903613aba565b5b601160029054906101000a900460ff16600181111561192657611925613aba565b5b141561198a576000600a805461193b9061398a565b9050116119575760405180602001604052806000815250611983565b600a61196283612b74565b604051602001611973929190613cb7565b6040516020818303038152906040525b90506119e4565b6000600a80546119999061398a565b9050116119b557604051806020016040528060008152506119e1565b600a6119c083612b74565b6040516020016119d1929190613d27565b6040516020818303038152906040525b90505b919050565b60105481565b6119f76120be565b73ffffffffffffffffffffffffffffffffffffffff16611a1561141d565b73ffffffffffffffffffffffffffffffffffffffff1614611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290613a08565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000611aa282612cd5565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b611b586120be565b73ffffffffffffffffffffffffffffffffffffffff16611b7661141d565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390613a08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390613dc8565b60405180910390fd5b611c45816128be565b50565b601160009054906101000a900460ff16611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613e34565b60405180910390fd5b6014811115611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613ec6565b60405180910390fd5b601054611cf882611cea610d0e565b61298490919063ffffffff16565b1115611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090613f58565b60405180910390fd5b601160019054906101000a900460ff1615611ea75760003411611e4a57600c54611dab82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298490919063ffffffff16565b1115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390613fea565b60405180910390fd5b600d54611e0482600e5461298490919063ffffffff16565b1115611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c90614056565b60405180910390fd5b611ea2565b34611e6082600b54612d3f90919063ffffffff16565b1115611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e98906140c2565b60405180910390fd5b5b611eff565b34611ebd82600b54612d3f90919063ffffffff16565b1115611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef5906140c2565b60405180910390fd5b5b611f0933826129e2565b601160019054906101000a900460ff168015611f26575060003411155b1561200357611f7d81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298490919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fd581600e5461298490919063ffffffff16565b600e81905550600d54600e5410612002576000601160016101000a81548160ff0219169083151502179055505b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161207b612178565b1115801561208a575060005482105b80156120b7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061218882612633565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121f3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122146120be565b73ffffffffffffffffffffffffffffffffffffffff16148061224357506122428561223d6120be565b611aa9565b5b8061228857506122516120be565b73ffffffffffffffffffffffffffffffffffffffff1661227084610a81565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612328576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123358585856001612dba565b612341600084876120c6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125c15760005482146125c057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461262c8585856001612dc0565b5050505050565b61263b61320e565b600082905080612649612178565b1161288757600054811015612886576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161288457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127685780925050506128b9565b5b60011561288357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461287e5780925050506128b9565b612769565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082846129939190614111565b9050838110156129d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cf906141b3565b60405180910390fd5b8091505092915050565b6129fc828260405180602001604052806000815250612dc6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a496120be565b8786866040518563ffffffff1660e01b8152600401612a6b9493929190614228565b6020604051808303816000875af1925050508015612aa757506040513d601f19601f82011682018060405250810190612aa49190614289565b60015b612b21573d8060008114612ad7576040519150601f19603f3d011682016040523d82523d6000602084013e612adc565b606091505b50600081511415612b19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612bbc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cd0565b600082905060005b60008214612bee578080612bd7906142b6565b915050600a82612be7919061432e565b9150612bc4565b60008167ffffffffffffffff811115612c0a57612c096135aa565b5b6040519080825280601f01601f191660200182016040528015612c3c5781602001600182028036833780820191505090505b5090505b60008514612cc957600182612c55919061435f565b9150600a85612c649190614393565b6030612c709190614111565b60f81b818381518110612c8657612c856143c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cc2919061432e565b9450612c40565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600080831415612d525760009050612db4565b60008284612d6091906143f3565b9050828482612d6f919061432e565b14612daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da6906144bf565b60405180910390fd5b809150505b92915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e33576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612e6e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e7b6000858386612dba565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061303c8673ffffffffffffffffffffffffffffffffffffffff16612a00565b15613101575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b16000878480600101955087612a23565b6130e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130425782600054146130fc57600080fd5b61316c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613102575b8160008190555050506131826000858386612dc0565b50505050565b8280546131949061398a565b90600052602060002090601f0160209004810192826131b657600085556131fd565b82601f106131cf57805160ff19168380011785556131fd565b828001600101855582156131fd579182015b828111156131fc5782518255916020019190600101906131e1565b5b50905061320a9190613251565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561326a576000816000905550600101613252565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132b781613282565b81146132c257600080fd5b50565b6000813590506132d4816132ae565b92915050565b6000602082840312156132f0576132ef613278565b5b60006132fe848285016132c5565b91505092915050565b60008115159050919050565b61331c81613307565b82525050565b60006020820190506133376000830184613313565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561337757808201518184015260208101905061335c565b83811115613386576000848401525b50505050565b6000601f19601f8301169050919050565b60006133a88261333d565b6133b28185613348565b93506133c2818560208601613359565b6133cb8161338c565b840191505092915050565b600060208201905081810360008301526133f0818461339d565b905092915050565b6000819050919050565b61340b816133f8565b811461341657600080fd5b50565b60008135905061342881613402565b92915050565b60006020828403121561344457613443613278565b5b600061345284828501613419565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134868261345b565b9050919050565b6134968161347b565b82525050565b60006020820190506134b1600083018461348d565b92915050565b6134c08161347b565b81146134cb57600080fd5b50565b6000813590506134dd816134b7565b92915050565b600080604083850312156134fa576134f9613278565b5b6000613508858286016134ce565b925050602061351985828601613419565b9150509250929050565b61352c816133f8565b82525050565b60006020820190506135476000830184613523565b92915050565b60008060006060848603121561356657613565613278565b5b6000613574868287016134ce565b9350506020613585868287016134ce565b925050604061359686828701613419565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135e28261338c565b810181811067ffffffffffffffff82111715613601576136006135aa565b5b80604052505050565b600061361461326e565b905061362082826135d9565b919050565b600067ffffffffffffffff8211156136405761363f6135aa565b5b6136498261338c565b9050602081019050919050565b82818337600083830152505050565b600061367861367384613625565b61360a565b905082815260208101848484011115613694576136936135a5565b5b61369f848285613656565b509392505050565b600082601f8301126136bc576136bb6135a0565b5b81356136cc848260208601613665565b91505092915050565b6000602082840312156136eb576136ea613278565b5b600082013567ffffffffffffffff8111156137095761370861327d565b5b613715848285016136a7565b91505092915050565b6000806040838503121561373557613734613278565b5b600061374385828601613419565b925050602061375485828601613419565b9150509250929050565b60006020828403121561377457613773613278565b5b6000613782848285016134ce565b91505092915050565b61379481613307565b811461379f57600080fd5b50565b6000813590506137b18161378b565b92915050565b600080604083850312156137ce576137cd613278565b5b60006137dc858286016134ce565b92505060206137ed858286016137a2565b9150509250929050565b600067ffffffffffffffff821115613812576138116135aa565b5b61381b8261338c565b9050602081019050919050565b600061383b613836846137f7565b61360a565b905082815260208101848484011115613857576138566135a5565b5b613862848285613656565b509392505050565b600082601f83011261387f5761387e6135a0565b5b813561388f848260208601613828565b91505092915050565b600080600080608085870312156138b2576138b1613278565b5b60006138c0878288016134ce565b94505060206138d1878288016134ce565b93505060406138e287828801613419565b925050606085013567ffffffffffffffff8111156139035761390261327d565b5b61390f8782880161386a565b91505092959194509250565b6000806040838503121561393257613931613278565b5b6000613940858286016134ce565b9250506020613951858286016134ce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139a257607f821691505b602082108114156139b6576139b561395b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139f2602083613348565b91506139fd826139bc565b602082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613a84602d83613348565b9150613a8f82613a28565b604082019050919050565b60006020820190508181036000830152613ab381613a77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f66204269726473000000000000000000000000000000000000000000000000602082015250565b6000613b45602883613348565b9150613b5082613ae9565b604082019050919050565b60006020820190508181036000830152613b7481613b38565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613bb1601583613348565b9150613bbc82613b7b565b602082019050919050565b60006020820190508181036000830152613be081613ba4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c148161398a565b613c1e8186613be7565b94506001821660008114613c395760018114613c4a57613c7d565b60ff19831686528186019350613c7d565b613c5385613bf2565b60005b83811015613c7557815481890152600182019150602081019050613c56565b838801955050505b50505092915050565b6000613c918261333d565b613c9b8185613be7565b9350613cab818560208601613359565b80840191505092915050565b6000613cc38285613c07565b9150613ccf8284613c86565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613d11600583613be7565b9150613d1c82613cdb565b600582019050919050565b6000613d338285613c07565b9150613d3f8284613c86565b9150613d4a82613d04565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613db2602683613348565b9150613dbd82613d56565b604082019050919050565b60006020820190508181036000830152613de181613da5565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e742042697264600082015250565b6000613e1e602083613348565b9150613e2982613de8565b602082019050919050565b60006020820190508181036000830152613e4d81613e11565b9050919050565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613eb0602183613348565b9150613ebb82613e54565b604082019050919050565b60006020820190508181036000830152613edf81613ea3565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662042697264730000000000000000000000000000000000000000000000602082015250565b6000613f42602983613348565b9150613f4d82613ee6565b604082019050919050565b60006020820190508181036000830152613f7181613f35565b9050919050565b7f4e6f2066726565206d696e7473206c65667420666f7220746869732077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fd4602283613348565b9150613fdf82613f78565b604082019050919050565b6000602082019050818103600083015261400381613fc7565b9050919050565b7f4e6f2066726565206d696e7473206c6566740000000000000000000000000000600082015250565b6000614040601283613348565b915061404b8261400a565b602082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006140ac601f83613348565b91506140b782614076565b602082019050919050565b600060208201905081810360008301526140db8161409f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411c826133f8565b9150614127836133f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561415c5761415b6140e2565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061419d601b83613348565b91506141a882614167565b602082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141fa826141d3565b61420481856141de565b9350614214818560208601613359565b61421d8161338c565b840191505092915050565b600060808201905061423d600083018761348d565b61424a602083018661348d565b6142576040830185613523565b818103606083015261426981846141ef565b905095945050505050565b600081519050614283816132ae565b92915050565b60006020828403121561429f5761429e613278565b5b60006142ad84828501614274565b91505092915050565b60006142c1826133f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142f4576142f36140e2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614339826133f8565b9150614344836133f8565b925082614354576143536142ff565b5b828204905092915050565b600061436a826133f8565b9150614375836133f8565b925082821015614388576143876140e2565b5b828203905092915050565b600061439e826133f8565b91506143a9836133f8565b9250826143b9576143b86142ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006143fe826133f8565b9150614409836133f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614442576144416140e2565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006144a9602183613348565b91506144b48261444d565b604082019050919050565b600060208201905081810360008301526144d88161449c565b905091905056fea2646970667358221220de5751f22f5bc9b15cdd335a9e6f1cd6f3fa94f4d523c18f7b933d06a1ae509a64736f6c634300080a0033697066733a2f2f62616679626569667674756e70696c61766463676864737736706a773667706e6a766876767134357169757964337164676f696c327a65787872792f0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094c6f6f6e4269726473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024c42000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063ba5fbd5e116100ab578063dc33e6811161006f578063dc33e68114610823578063e985e9c514610860578063eb8d24441461089d578063f2fde38b146108c8578063ff46973e146108f15761023b565b8063ba5fbd5e1461074e578063bc5bac8214610779578063c87b56dd146107a4578063d3e86440146107e1578063db94b1ff1461080c5761023b565b8063900c71f5116100f2578063900c71f51461067f57806395d89b41146106a8578063a22cb465146106d3578063af752403146106fc578063b88d4fde146107255761023b565b806370a0823114610598578063715018a6146105d55780638b168d95146105ec5780638da5cb5b146106295780638e04f5c0146106545761023b565b806334918dfd116101bc5780636352211e116101805780636352211e146104b3578063684185f9146104f05780636c0360eb1461051b5780636d88b437146105465780636f8b44b01461056f5761023b565b806334918dfd1461040857806335ee0fd21461041f5780633ccfd60b1461044a57806342842e0e1461046157806355f804b31461048a5761023b565b8063174efd1d11610203578063174efd1d1461033757806318160ddd146103605780631f73bf7f1461038b578063205c2878146103b657806323b872dd146103df5761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e5578063105a5d641461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906132da565b61090d565b6040516102749190613322565b60405180910390f35b34801561028957600080fd5b506102926109ef565b60405161029f91906133d6565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca919061342e565b610a81565b6040516102dc919061349c565b60405180910390f35b3480156102f157600080fd5b5061030c600480360381019061030791906134e3565b610afd565b005b34801561031a57600080fd5b506103356004803603810190610330919061342e565b610c02565b005b34801561034357600080fd5b5061035e6004803603810190610359919061342e565b610c88565b005b34801561036c57600080fd5b50610375610d0e565b6040516103829190613532565b60405180910390f35b34801561039757600080fd5b506103a0610d25565b6040516103ad9190613532565b60405180910390f35b3480156103c257600080fd5b506103dd60048036038101906103d891906134e3565b610d2a565b005b3480156103eb57600080fd5b506104066004803603810190610401919061354d565b610e34565b005b34801561041457600080fd5b5061041d610e44565b005b34801561042b57600080fd5b50610434610eec565b6040516104419190613322565b60405180910390f35b34801561045657600080fd5b5061045f610eff565b005b34801561046d57600080fd5b506104886004803603810190610483919061354d565b610fca565b005b34801561049657600080fd5b506104b160048036038101906104ac91906136d5565b610fea565b005b3480156104bf57600080fd5b506104da60048036038101906104d5919061342e565b611080565b6040516104e7919061349c565b60405180910390f35b3480156104fc57600080fd5b50610505611096565b6040516105129190613532565b60405180910390f35b34801561052757600080fd5b5061053061109c565b60405161053d91906133d6565b60405180910390f35b34801561055257600080fd5b5061056d6004803603810190610568919061371e565b61112a565b005b34801561057b57600080fd5b506105966004803603810190610591919061342e565b6111f6565b005b3480156105a457600080fd5b506105bf60048036038101906105ba919061375e565b61127c565b6040516105cc9190613532565b60405180910390f35b3480156105e157600080fd5b506105ea61134c565b005b3480156105f857600080fd5b50610613600480360381019061060e919061375e565b6113d4565b6040516106209190613532565b60405180910390f35b34801561063557600080fd5b5061063e61141d565b60405161064b919061349c565b60405180910390f35b34801561066057600080fd5b50610669611447565b6040516106769190613532565b60405180910390f35b34801561068b57600080fd5b506106a660048036038101906106a1919061342e565b61144d565b005b3480156106b457600080fd5b506106bd611531565b6040516106ca91906133d6565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f591906137b7565b6115c3565b005b34801561070857600080fd5b50610723600480360381019061071e91906134e3565b61173b565b005b34801561073157600080fd5b5061074c60048036038101906107479190613898565b611823565b005b34801561075a57600080fd5b5061076361189b565b6040516107709190613532565b60405180910390f35b34801561078557600080fd5b5061078e6118a1565b60405161079b9190613532565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c6919061342e565b6118a7565b6040516107d891906133d6565b60405180910390f35b3480156107ed57600080fd5b506107f66119e9565b6040516108039190613532565b60405180910390f35b34801561081857600080fd5b506108216119ef565b005b34801561082f57600080fd5b5061084a6004803603810190610845919061375e565b611a97565b6040516108579190613532565b60405180910390f35b34801561086c57600080fd5b506108876004803603810190610882919061391b565b611aa9565b6040516108949190613322565b60405180910390f35b3480156108a957600080fd5b506108b2611b3d565b6040516108bf9190613322565b60405180910390f35b3480156108d457600080fd5b506108ef60048036038101906108ea919061375e565b611b50565b005b61090b6004803603810190610906919061342e565b611c48565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109d857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109e857506109e782612006565b5b9050919050565b6060600280546109fe9061398a565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2a9061398a565b8015610a775780601f10610a4c57610100808354040283529160200191610a77565b820191906000526020600020905b815481529060010190602001808311610a5a57829003601f168201915b5050505050905090565b6000610a8c82612070565b610ac2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b0882611080565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b70576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b8f6120be565b73ffffffffffffffffffffffffffffffffffffffff1614610bf257610bbb81610bb66120be565b611aa9565b610bf1576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610bfd8383836120c6565b505050565b610c0a6120be565b73ffffffffffffffffffffffffffffffffffffffff16610c2861141d565b73ffffffffffffffffffffffffffffffffffffffff1614610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613a08565b60405180910390fd5b80600c8190555050565b610c906120be565b73ffffffffffffffffffffffffffffffffffffffff16610cae61141d565b73ffffffffffffffffffffffffffffffffffffffff1614610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb90613a08565b60405180910390fd5b80600b8190555050565b6000610d18612178565b6001546000540303905090565b601481565b610d326120be565b73ffffffffffffffffffffffffffffffffffffffff16610d5061141d565b73ffffffffffffffffffffffffffffffffffffffff1614610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90613a08565b60405180910390fd5b47811115610de9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de090613a9a565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610e2f573d6000803e3d6000fd5b505050565b610e3f83838361217d565b505050565b610e4c6120be565b73ffffffffffffffffffffffffffffffffffffffff16610e6a61141d565b73ffffffffffffffffffffffffffffffffffffffff1614610ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb790613a08565b60405180910390fd5b601160009054906101000a900460ff1615601160006101000a81548160ff021916908315150217905550565b601160019054906101000a900460ff1681565b610f076120be565b73ffffffffffffffffffffffffffffffffffffffff16610f2561141d565b73ffffffffffffffffffffffffffffffffffffffff1614610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613a08565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610fc6573d6000803e3d6000fd5b5050565b610fe583838360405180602001604052806000815250611823565b505050565b610ff26120be565b73ffffffffffffffffffffffffffffffffffffffff1661101061141d565b73ffffffffffffffffffffffffffffffffffffffff1614611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d90613a08565b60405180910390fd5b80600a908051906020019061107c929190613188565b5050565b600061108b82612633565b600001519050919050565b600e5481565b600a80546110a99061398a565b80601f01602080910402602001604051908101604052809291908181526020018280546110d59061398a565b80156111225780601f106110f757610100808354040283529160200191611122565b820191906000526020600020905b81548152906001019060200180831161110557829003601f168201915b505050505081565b6111326120be565b73ffffffffffffffffffffffffffffffffffffffff1661115061141d565b73ffffffffffffffffffffffffffffffffffffffff16146111a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119d90613a08565b60405180910390fd5b6001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff02191690831515021790555081600c8190555080600d819055506000600e819055505050565b6111fe6120be565b73ffffffffffffffffffffffffffffffffffffffff1661121c61141d565b73ffffffffffffffffffffffffffffffffffffffff1614611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990613a08565b60405180910390fd5b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113546120be565b73ffffffffffffffffffffffffffffffffffffffff1661137261141d565b73ffffffffffffffffffffffffffffffffffffffff16146113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90613a08565b60405180910390fd5b6113d260006128be565b565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b6114556120be565b73ffffffffffffffffffffffffffffffffffffffff1661147361141d565b73ffffffffffffffffffffffffffffffffffffffff16146114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c090613a08565b60405180910390fd5b6002811415611502576001601160026101000a81548160ff021916908360018111156114f8576114f7613aba565b5b021790555061152e565b6000601160026101000a81548160ff0219169083600181111561152857611527613aba565b5b02179055505b50565b6060600380546115409061398a565b80601f016020809104026020016040519081016040528092919081815260200182805461156c9061398a565b80156115b95780601f1061158e576101008083540402835291602001916115b9565b820191906000526020600020905b81548152906001019060200180831161159c57829003601f168201915b5050505050905090565b6115cb6120be565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611630576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061163d6120be565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116ea6120be565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161172f9190613322565b60405180910390a35050565b6117436120be565b73ffffffffffffffffffffffffffffffffffffffff1661176161141d565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90613a08565b60405180910390fd5b6010546117d4826117c6610d0e565b61298490919063ffffffff16565b1115611815576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180c90613b5b565b60405180910390fd5b61181f82826129e2565b5050565b61182e84848461217d565b61184d8373ffffffffffffffffffffffffffffffffffffffff16612a00565b156118955761185e84848484612a23565b611894576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b600d5481565b60606118b282612070565b6118f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e890613bc7565b60405180910390fd5b60018081111561190457611903613aba565b5b601160029054906101000a900460ff16600181111561192657611925613aba565b5b141561198a576000600a805461193b9061398a565b9050116119575760405180602001604052806000815250611983565b600a61196283612b74565b604051602001611973929190613cb7565b6040516020818303038152906040525b90506119e4565b6000600a80546119999061398a565b9050116119b557604051806020016040528060008152506119e1565b600a6119c083612b74565b6040516020016119d1929190613d27565b6040516020818303038152906040525b90505b919050565b60105481565b6119f76120be565b73ffffffffffffffffffffffffffffffffffffffff16611a1561141d565b73ffffffffffffffffffffffffffffffffffffffff1614611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6290613a08565b60405180910390fd5b601160019054906101000a900460ff1615601160016101000a81548160ff021916908315150217905550565b6000611aa282612cd5565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601160009054906101000a900460ff1681565b611b586120be565b73ffffffffffffffffffffffffffffffffffffffff16611b7661141d565b73ffffffffffffffffffffffffffffffffffffffff1614611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc390613a08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3390613dc8565b60405180910390fd5b611c45816128be565b50565b601160009054906101000a900460ff16611c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8e90613e34565b60405180910390fd5b6014811115611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd290613ec6565b60405180910390fd5b601054611cf882611cea610d0e565b61298490919063ffffffff16565b1115611d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3090613f58565b60405180910390fd5b601160019054906101000a900460ff1615611ea75760003411611e4a57600c54611dab82600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298490919063ffffffff16565b1115611dec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de390613fea565b60405180910390fd5b600d54611e0482600e5461298490919063ffffffff16565b1115611e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3c90614056565b60405180910390fd5b611ea2565b34611e6082600b54612d3f90919063ffffffff16565b1115611ea1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e98906140c2565b60405180910390fd5b5b611eff565b34611ebd82600b54612d3f90919063ffffffff16565b1115611efe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef5906140c2565b60405180910390fd5b5b611f0933826129e2565b601160019054906101000a900460ff168015611f26575060003411155b1561200357611f7d81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461298490919063ffffffff16565b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611fd581600e5461298490919063ffffffff16565b600e81905550600d54600e5410612002576000601160016101000a81548160ff0219169083151502179055505b5b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161207b612178565b1115801561208a575060005482105b80156120b7575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061218882612633565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121f3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166122146120be565b73ffffffffffffffffffffffffffffffffffffffff16148061224357506122428561223d6120be565b611aa9565b5b8061228857506122516120be565b73ffffffffffffffffffffffffffffffffffffffff1661227084610a81565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806122c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612328576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123358585856001612dba565b612341600084876120c6565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125c15760005482146125c057878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461262c8585856001612dc0565b5050505050565b61263b61320e565b600082905080612649612178565b1161288757600054811015612886576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161288457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127685780925050506128b9565b5b60011561288357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461287e5780925050506128b9565b612769565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082846129939190614111565b9050838110156129d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129cf906141b3565b60405180910390fd5b8091505092915050565b6129fc828260405180602001604052806000815250612dc6565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a496120be565b8786866040518563ffffffff1660e01b8152600401612a6b9493929190614228565b6020604051808303816000875af1925050508015612aa757506040513d601f19601f82011682018060405250810190612aa49190614289565b60015b612b21573d8060008114612ad7576040519150601f19603f3d011682016040523d82523d6000602084013e612adc565b606091505b50600081511415612b19576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612bbc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cd0565b600082905060005b60008214612bee578080612bd7906142b6565b915050600a82612be7919061432e565b9150612bc4565b60008167ffffffffffffffff811115612c0a57612c096135aa565b5b6040519080825280601f01601f191660200182016040528015612c3c5781602001600182028036833780820191505090505b5090505b60008514612cc957600182612c55919061435f565b9150600a85612c649190614393565b6030612c709190614111565b60f81b818381518110612c8657612c856143c4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cc2919061432e565b9450612c40565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b600080831415612d525760009050612db4565b60008284612d6091906143f3565b9050828482612d6f919061432e565b14612daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da6906144bf565b60405180910390fd5b809150505b92915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612e33576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612e6e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612e7b6000858386612dba565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000848201905061303c8673ffffffffffffffffffffffffffffffffffffffff16612a00565b15613101575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130b16000878480600101955087612a23565b6130e7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106130425782600054146130fc57600080fd5b61316c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613102575b8160008190555050506131826000858386612dc0565b50505050565b8280546131949061398a565b90600052602060002090601f0160209004810192826131b657600085556131fd565b82601f106131cf57805160ff19168380011785556131fd565b828001600101855582156131fd579182015b828111156131fc5782518255916020019190600101906131e1565b5b50905061320a9190613251565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561326a576000816000905550600101613252565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132b781613282565b81146132c257600080fd5b50565b6000813590506132d4816132ae565b92915050565b6000602082840312156132f0576132ef613278565b5b60006132fe848285016132c5565b91505092915050565b60008115159050919050565b61331c81613307565b82525050565b60006020820190506133376000830184613313565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561337757808201518184015260208101905061335c565b83811115613386576000848401525b50505050565b6000601f19601f8301169050919050565b60006133a88261333d565b6133b28185613348565b93506133c2818560208601613359565b6133cb8161338c565b840191505092915050565b600060208201905081810360008301526133f0818461339d565b905092915050565b6000819050919050565b61340b816133f8565b811461341657600080fd5b50565b60008135905061342881613402565b92915050565b60006020828403121561344457613443613278565b5b600061345284828501613419565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134868261345b565b9050919050565b6134968161347b565b82525050565b60006020820190506134b1600083018461348d565b92915050565b6134c08161347b565b81146134cb57600080fd5b50565b6000813590506134dd816134b7565b92915050565b600080604083850312156134fa576134f9613278565b5b6000613508858286016134ce565b925050602061351985828601613419565b9150509250929050565b61352c816133f8565b82525050565b60006020820190506135476000830184613523565b92915050565b60008060006060848603121561356657613565613278565b5b6000613574868287016134ce565b9350506020613585868287016134ce565b925050604061359686828701613419565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6135e28261338c565b810181811067ffffffffffffffff82111715613601576136006135aa565b5b80604052505050565b600061361461326e565b905061362082826135d9565b919050565b600067ffffffffffffffff8211156136405761363f6135aa565b5b6136498261338c565b9050602081019050919050565b82818337600083830152505050565b600061367861367384613625565b61360a565b905082815260208101848484011115613694576136936135a5565b5b61369f848285613656565b509392505050565b600082601f8301126136bc576136bb6135a0565b5b81356136cc848260208601613665565b91505092915050565b6000602082840312156136eb576136ea613278565b5b600082013567ffffffffffffffff8111156137095761370861327d565b5b613715848285016136a7565b91505092915050565b6000806040838503121561373557613734613278565b5b600061374385828601613419565b925050602061375485828601613419565b9150509250929050565b60006020828403121561377457613773613278565b5b6000613782848285016134ce565b91505092915050565b61379481613307565b811461379f57600080fd5b50565b6000813590506137b18161378b565b92915050565b600080604083850312156137ce576137cd613278565b5b60006137dc858286016134ce565b92505060206137ed858286016137a2565b9150509250929050565b600067ffffffffffffffff821115613812576138116135aa565b5b61381b8261338c565b9050602081019050919050565b600061383b613836846137f7565b61360a565b905082815260208101848484011115613857576138566135a5565b5b613862848285613656565b509392505050565b600082601f83011261387f5761387e6135a0565b5b813561388f848260208601613828565b91505092915050565b600080600080608085870312156138b2576138b1613278565b5b60006138c0878288016134ce565b94505060206138d1878288016134ce565b93505060406138e287828801613419565b925050606085013567ffffffffffffffff8111156139035761390261327d565b5b61390f8782880161386a565b91505092959194509250565b6000806040838503121561393257613931613278565b5b6000613940858286016134ce565b9250506020613951858286016134ce565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806139a257607f821691505b602082108114156139b6576139b561395b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139f2602083613348565b91506139fd826139bc565b602082019050919050565b60006020820190508181036000830152613a21816139e5565b9050919050565b7f5265717565737420776f756c64206578636565642062616c616e6365206f662060008201527f7468697320636f6e747261637400000000000000000000000000000000000000602082015250565b6000613a84602d83613348565b9150613a8f82613a28565b604082019050919050565b60006020820190508181036000830152613ab381613a77565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f5265717565737420776f756c6420657863656564206d617820737570706c792060008201527f6f66204269726473000000000000000000000000000000000000000000000000602082015250565b6000613b45602883613348565b9150613b5082613ae9565b604082019050919050565b60006020820190508181036000830152613b7481613b38565b9050919050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b6000613bb1601583613348565b9150613bbc82613b7b565b602082019050919050565b60006020820190508181036000830152613be081613ba4565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c148161398a565b613c1e8186613be7565b94506001821660008114613c395760018114613c4a57613c7d565b60ff19831686528186019350613c7d565b613c5385613bf2565b60005b83811015613c7557815481890152600182019150602081019050613c56565b838801955050505b50505092915050565b6000613c918261333d565b613c9b8185613be7565b9350613cab818560208601613359565b80840191505092915050565b6000613cc38285613c07565b9150613ccf8284613c86565b91508190509392505050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000613d11600583613be7565b9150613d1c82613cdb565b600582019050919050565b6000613d338285613c07565b9150613d3f8284613c86565b9150613d4a82613d04565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613db2602683613348565b9150613dbd82613d56565b604082019050919050565b60006020820190508181036000830152613de181613da5565b9050919050565b7f53616c65206d7573742062652061637469766520746f206d696e742042697264600082015250565b6000613e1e602083613348565b9150613e2982613de8565b602082019050919050565b60006020820190508181036000830152613e4d81613e11565b9050919050565b7f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613eb0602183613348565b9150613ebb82613e54565b604082019050919050565b60006020820190508181036000830152613edf81613ea3565b9050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662042697264730000000000000000000000000000000000000000000000602082015250565b6000613f42602983613348565b9150613f4d82613ee6565b604082019050919050565b60006020820190508181036000830152613f7181613f35565b9050919050565b7f4e6f2066726565206d696e7473206c65667420666f7220746869732077616c6c60008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000613fd4602283613348565b9150613fdf82613f78565b604082019050919050565b6000602082019050818103600083015261400381613fc7565b9050919050565b7f4e6f2066726565206d696e7473206c6566740000000000000000000000000000600082015250565b6000614040601283613348565b915061404b8261400a565b602082019050919050565b6000602082019050818103600083015261406f81614033565b9050919050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b60006140ac601f83613348565b91506140b782614076565b602082019050919050565b600060208201905081810360008301526140db8161409f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061411c826133f8565b9150614127836133f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561415c5761415b6140e2565b5b828201905092915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061419d601b83613348565b91506141a882614167565b602082019050919050565b600060208201905081810360008301526141cc81614190565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006141fa826141d3565b61420481856141de565b9350614214818560208601613359565b61421d8161338c565b840191505092915050565b600060808201905061423d600083018761348d565b61424a602083018661348d565b6142576040830185613523565b818103606083015261426981846141ef565b905095945050505050565b600081519050614283816132ae565b92915050565b60006020828403121561429f5761429e613278565b5b60006142ad84828501614274565b91505092915050565b60006142c1826133f8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142f4576142f36140e2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614339826133f8565b9150614344836133f8565b925082614354576143536142ff565b5b828204905092915050565b600061436a826133f8565b9150614375836133f8565b925082821015614388576143876140e2565b5b828203905092915050565b600061439e826133f8565b91506143a9836133f8565b9250826143b9576143b86142ff565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006143fe826133f8565b9150614409836133f8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614442576144416140e2565b5b828202905092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b60006144a9602183613348565b91506144b48261444d565b604082019050919050565b600060208201905081810360008301526144d88161449c565b905091905056fea2646970667358221220de5751f22f5bc9b15cdd335a9e6f1cd6f3fa94f4d523c18f7b933d06a1ae509a64736f6c634300080a0033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000094c6f6f6e4269726473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024c42000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): LoonBirds
Arg [1] : symbol (string): LB

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


Deployed Bytecode Sourcemap

70828:5133:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44639:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47754:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49258:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48820:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74589:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;74334:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43879:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71093:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71851:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50123:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72441:89;;;;;;;;;;;;;:::i;:::-;;71428:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71702:140;;;;;;;;;;;;;:::i;:::-;;50364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72331:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47562:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71229:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70927:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72647:296;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75858:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45008:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12543:103;;;;;;;;;;;;;:::i;:::-;;74445:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11892:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71029:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75386:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47923:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49534:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72072:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50620:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71143:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71190:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74744:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71346:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72538:101;;;;;;;;;;;;;:::i;:::-;;75736:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49892:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71387:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12801:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72951:1375;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44639:305;44741:4;44793:25;44778:40;;;:11;:40;;;;:105;;;;44850:33;44835:48;;;:11;:48;;;;44778:105;:158;;;;44900:36;44924:11;44900:23;:36::i;:::-;44778:158;44758:178;;44639:305;;;:::o;47754:100::-;47808:13;47841:5;47834:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47754:100;:::o;49258:204::-;49326:7;49351:16;49359:7;49351;:16::i;:::-;49346:64;;49376:34;;;;;;;;;;;;;;49346:64;49430:15;:24;49446:7;49430:24;;;;;;;;;;;;;;;;;;;;;49423:31;;49258:204;;;:::o;48820:372::-;48893:13;48909:24;48925:7;48909:15;:24::i;:::-;48893:40;;48954:5;48948:11;;:2;:11;;;48944:48;;;48968:24;;;;;;;;;;;;;;48944:48;49025:5;49009:21;;:12;:10;:12::i;:::-;:21;;;49005:139;;49036:37;49053:5;49060:12;:10;:12::i;:::-;49036:16;:37::i;:::-;49032:112;;49097:35;;;;;;;;;;;;;;49032:112;49005:139;49156:28;49165:2;49169:7;49178:5;49156:8;:28::i;:::-;48882:310;48820:372;;:::o;74589:147::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74706:22:::1;74682:21;:46;;;;74589:147:::0;:::o;74334:103::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;74417:12:::1;74405:9;:24;;;;74334:103:::0;:::o;43879:312::-;43932:7;44157:15;:13;:15::i;:::-;44142:12;;44126:13;;:28;:46;44119:53;;43879:312;:::o;71093:41::-;71132:2;71093:41;:::o;71851:212::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71945:21:::1;71935:6;:31;;71927:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;72035:2;72027:20;;:28;72048:6;72027:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71851:212:::0;;:::o;50123:170::-;50257:28;50267:4;50273:2;50277:7;50257:9;:28::i;:::-;50123:170;;;:::o;72441:89::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72510:12:::1;;;;;;;;;;;72509:13;72494:12;;:28;;;;;;;;;;;;;;;;;;72441:89::o:0;71428:36::-;;;;;;;;;;;;;:::o;71702:140::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71750:12:::1;71765:21;71750:36;;71805:10;71797:28;;:37;71826:7;71797:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;71739:103;71702:140::o:0;50364:185::-;50502:39;50519:4;50525:2;50529:7;50502:39;;;;;;;;;;;;:16;:39::i;:::-;50364:185;;;:::o;72331:98::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72413:8:::1;72403:7;:18;;;;;;;;;;;;:::i;:::-;;72331:98:::0;:::o;47562:125::-;47626:7;47653:21;47666:7;47653:12;:21::i;:::-;:26;;;47646:33;;47562:125;;;:::o;71229:38::-;;;;:::o;70927:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;72647:296::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72765:4:::1;72750:12;;:19;;;;;;;;;;;;;;;;;;72799:4;72780:16;;:23;;;;;;;;;;;;;;;;;;72838:22;72814:21;:46;;;;72885:12;72871:11;:26;;;;72934:1;72908:23;:27;;;;72647:296:::0;;:::o;75858:100::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75940:10:::1;75928:9;:22;;;;75858:100:::0;:::o;45008:206::-;45072:7;45113:1;45096:19;;:5;:19;;;45092:60;;;45124:28;;;;;;;;;;;;;;45092:60;45178:12;:19;45191:5;45178:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;45170:36;;45163:43;;45008:206;;;:::o;12543:103::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12608:30:::1;12635:1;12608:18;:30::i;:::-;12543:103::o:0;74445:133::-;74506:7;74533:32;:37;74566:3;74533:37;;;;;;;;;;;;;;;;74526:44;;74445:133;;;:::o;11892:87::-;11938:7;11965:6;;;;;;;;;;;11958:13;;11892:87;:::o;71029:44::-;;;;:::o;75386:223::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;75467:1:::1;75459:4;:9;75455:147;;;75500:21;75485:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;75455:147;;;75569:21;75554:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;75455:147;75386:223:::0;:::o;47923:104::-;47979:13;48012:7;48005:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47923:104;:::o;49534:287::-;49645:12;:10;:12::i;:::-;49633:24;;:8;:24;;;49629:54;;;49666:17;;;;;;;;;;;;;;49629:54;49741:8;49696:18;:32;49715:12;:10;:12::i;:::-;49696:32;;;;;;;;;;;;;;;:42;49729:8;49696:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;49794:8;49765:48;;49780:12;:10;:12::i;:::-;49765:48;;;49804:8;49765:48;;;;;;:::i;:::-;;;;;;;;49534:287;;:::o;72072:238::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72208:9:::1;;72171:33;72189:14;72171:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;72163:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;72273:29;72283:2;72287:14;72273:9;:29::i;:::-;72072:238:::0;;:::o;50620:370::-;50787:28;50797:4;50803:2;50807:7;50787:9;:28::i;:::-;50830:15;:2;:13;;;:15::i;:::-;50826:157;;;50851:56;50882:4;50888:2;50892:7;50901:5;50851:30;:56::i;:::-;50847:136;;50931:40;;;;;;;;;;;;;;50847:136;50826:157;50620:370;;;;:::o;71143:38::-;;;;:::o;71190:26::-;;;;:::o;74744:634::-;74810:13;74850:17;74858:8;74850:7;:17::i;:::-;74842:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;74924:21;74908:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;74904:467;;;74991:1;74973:7;74967:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;75049:7;75073:26;75090:8;75073:16;:26::i;:::-;75016:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;74967:165;74960:172;;;;74904:467;75194:1;75176:7;75170:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;75252:7;75276:26;75293:8;75276:16;:26::i;:::-;75219:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75170:189;75163:196;;74744:634;;;;:::o;71346:32::-;;;;:::o;72538:101::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72615:16:::1;;;;;;;;;;;72614:17;72595:16;;:36;;;;;;;;;;;;;;;;;;72538:101::o:0;75736:113::-;75794:7;75821:20;75835:5;75821:13;:20::i;:::-;75814:27;;75736:113;;;:::o;49892:164::-;49989:4;50013:18;:25;50032:5;50013:25;;;;;;;;;;;;;;;:35;50039:8;50013:35;;;;;;;;;;;;;;;;;;;;;;;;;50006:42;;49892:164;;;;:::o;71387:32::-;;;;;;;;;;;;;:::o;12801:201::-;12123:12;:10;:12::i;:::-;12112:23;;:7;:5;:7::i;:::-;:23;;;12104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12910:1:::1;12890:22;;:8;:22;;;;12882:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12966:28;12985:8;12966:18;:28::i;:::-;12801:201:::0;:::o;72951:1375::-;73024:12;;;;;;;;;;;73016:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;71132:2;73092:14;:33;;73084:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;73219:9;;73182:33;73200:14;73182:13;:11;:13::i;:::-;:17;;:33;;;;:::i;:::-;:46;;73174:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;73288:16;;;;;;;;;;;73285:587;;;73336:1;73323:9;:14;73320:423;;73433:21;;73365:64;73414:14;73365:32;:44;73398:10;73365:44;;;;;;;;;;;;;;;;:48;;:64;;;;:::i;:::-;:89;;73357:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;73567:11;;73520:43;73548:14;73520:23;;:27;;:43;;;;:::i;:::-;:58;;73512:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;73320:423;;;73682:9;73649:29;73663:14;73649:9;;:13;;:29;;;;:::i;:::-;:42;;73641:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;73320:423;73285:587;;;73815:9;73782:29;73796:14;73782:9;;:13;;:29;;;;:::i;:::-;:42;;73774:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;73285:587;73892:37;73902:10;73914:14;73892:9;:37::i;:::-;73945:16;;;;;;;;;;;:34;;;;;73978:1;73965:9;:14;;73945:34;73942:377;;;74042:66;74092:14;74042:32;:44;74075:10;74042:44;;;;;;;;;;;;;;;;:48;;:66;;;;:::i;:::-;73995:32;:44;74028:10;73995:44;;;;;;;;;;;;;;;:113;;;;74149:43;74177:14;74149:23;;:27;;:43;;;;:::i;:::-;74123:23;:69;;;;74237:11;;74210:23;;:38;74207:101;;74287:5;74268:16;;:24;;;;;;;;;;;;;;;;;;74207:101;73942:377;72951:1375;:::o;10750:157::-;10835:4;10874:25;10859:40;;;:11;:40;;;;10852:47;;10750:157;;;:::o;51245:174::-;51302:4;51345:7;51326:15;:13;:15::i;:::-;:26;;:53;;;;;51366:13;;51356:7;:23;51326:53;:85;;;;;51384:11;:20;51396:7;51384:20;;;;;;;;;;;:27;;;;;;;;;;;;51383:28;51326:85;51319:92;;51245:174;;;:::o;726:98::-;779:7;806:10;799:17;;726:98;:::o;60467:196::-;60609:2;60582:15;:24;60598:7;60582:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;60647:7;60643:2;60627:28;;60636:5;60627:28;;;;;;;;;;;;60467:196;;;:::o;43653:92::-;43709:7;43653:92;:::o;55415:2130::-;55530:35;55568:21;55581:7;55568:12;:21::i;:::-;55530:59;;55628:4;55606:26;;:13;:18;;;:26;;;55602:67;;55641:28;;;;;;;;;;;;;;55602:67;55682:22;55724:4;55708:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;55745:36;55762:4;55768:12;:10;:12::i;:::-;55745:16;:36::i;:::-;55708:73;:126;;;;55822:12;:10;:12::i;:::-;55798:36;;:20;55810:7;55798:11;:20::i;:::-;:36;;;55708:126;55682:153;;55853:17;55848:66;;55879:35;;;;;;;;;;;;;;55848:66;55943:1;55929:16;;:2;:16;;;55925:52;;;55954:23;;;;;;;;;;;;;;55925:52;55990:43;56012:4;56018:2;56022:7;56031:1;55990:21;:43::i;:::-;56098:35;56115:1;56119:7;56128:4;56098:8;:35::i;:::-;56459:1;56429:12;:18;56442:4;56429:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56503:1;56475:12;:16;56488:2;56475:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56521:31;56555:11;:20;56567:7;56555:20;;;;;;;;;;;56521:54;;56606:2;56590:8;:13;;;:18;;;;;;;;;;;;;;;;;;56656:15;56623:8;:23;;;:49;;;;;;;;;;;;;;;;;;56924:19;56956:1;56946:7;:11;56924:33;;56972:31;57006:11;:24;57018:11;57006:24;;;;;;;;;;;56972:58;;57074:1;57049:27;;:8;:13;;;;;;;;;;;;:27;;;57045:384;;;57259:13;;57244:11;:28;57240:174;;57313:4;57297:8;:13;;;:20;;;;;;;;;;;;;;;;;;57366:13;:28;;;57340:8;:23;;;:54;;;;;;;;;;;;;;;;;;57240:174;57045:384;56404:1036;;;57476:7;57472:2;57457:27;;57466:4;57457:27;;;;;;;;;;;;57495:42;57516:4;57522:2;57526:7;57535:1;57495:20;:42::i;:::-;55519:2026;;55415:2130;;;:::o;46389:1111::-;46451:21;;:::i;:::-;46485:12;46500:7;46485:22;;46568:4;46549:15;:13;:15::i;:::-;:23;46545:888;;46585:13;;46578:4;:20;46574:859;;;46619:31;46653:11;:17;46665:4;46653:17;;;;;;;;;;;46619:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46694:9;:16;;;46689:729;;46765:1;46739:28;;:9;:14;;;:28;;;46735:101;;46803:9;46796:16;;;;;;46735:101;47138:261;47145:4;47138:261;;;47178:6;;;;;;;;47223:11;:17;47235:4;47223:17;;;;;;;;;;;47211:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47297:1;47271:28;;:9;:14;;;:28;;;47267:109;;47339:9;47332:16;;;;;;47267:109;47138:261;;;46689:729;46600:833;46574:859;46545:888;47461:31;;;;;;;;;;;;;;46389:1111;;;;:::o;13162:191::-;13236:16;13255:6;;;;;;;;;;;13236:25;;13281:8;13272:6;;:17;;;;;;;;;;;;;;;;;;13336:8;13305:40;;13326:8;13305:40;;;;;;;;;;;;13225:128;13162:191;:::o;66157:179::-;66215:7;66235:9;66251:1;66247;:5;;;;:::i;:::-;66235:17;;66276:1;66271;:6;;66263:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;66327:1;66320:8;;;66157:179;;;;:::o;51503:104::-;51572:27;51582:2;51586:8;51572:27;;;;;;;;;;;;:9;:27::i;:::-;51503:104;;:::o;17179:326::-;17239:4;17496:1;17474:7;:19;;;:23;17467:30;;17179:326;;;:::o;61155:667::-;61318:4;61355:2;61339:36;;;61376:12;:10;:12::i;:::-;61390:4;61396:7;61405:5;61339:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;61335:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61590:1;61573:6;:13;:18;61569:235;;;61619:40;;;;;;;;;;;;;;61569:235;61762:6;61756:13;61747:6;61743:2;61739:15;61732:38;61335:480;61468:45;;;61458:55;;;:6;:55;;;;61451:62;;;61155:667;;;;;;:::o;24733:723::-;24789:13;25019:1;25010:5;:10;25006:53;;;25037:10;;;;;;;;;;;;;;;;;;;;;25006:53;25069:12;25084:5;25069:20;;25100:14;25125:78;25140:1;25132:4;:9;25125:78;;25158:8;;;;;:::i;:::-;;;;25189:2;25181:10;;;;;:::i;:::-;;;25125:78;;;25213:19;25245:6;25235:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25213:39;;25263:154;25279:1;25270:5;:10;25263:154;;25307:1;25297:11;;;;;:::i;:::-;;;25374:2;25366:5;:10;;;;:::i;:::-;25353:2;:24;;;;:::i;:::-;25340:39;;25323:6;25330;25323:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;25403:2;25394:11;;;;;:::i;:::-;;;25263:154;;;25441:6;25427:21;;;;;24733:723;;;;:::o;45296:137::-;45357:7;45392:12;:19;45405:5;45392:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;45384:41;;45377:48;;45296:137;;;:::o;67036:220::-;67094:7;67123:1;67118;:6;67114:20;;;67133:1;67126:8;;;;67114:20;67145:9;67161:1;67157;:5;;;;:::i;:::-;67145:17;;67190:1;67185;67181;:5;;;;:::i;:::-;:10;67173:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;67247:1;67240:8;;;67036:220;;;;;:::o;62470:159::-;;;;;:::o;63288:158::-;;;;;:::o;51980:1749::-;52103:20;52126:13;;52103:36;;52168:1;52154:16;;:2;:16;;;52150:48;;;52179:19;;;;;;;;;;;;;;52150:48;52225:1;52213:8;:13;52209:44;;;52235:18;;;;;;;;;;;;;;52209:44;52266:61;52296:1;52300:2;52304:12;52318:8;52266:21;:61::i;:::-;52639:8;52604:12;:16;52617:2;52604:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52703:8;52663:12;:16;52676:2;52663:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52762:2;52729:11;:25;52741:12;52729:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;52829:15;52779:11;:25;52791:12;52779:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;52862:20;52885:12;52862:35;;52912:11;52941:8;52926:12;:23;52912:37;;52970:15;:2;:13;;;:15::i;:::-;52966:631;;;53006:313;53062:12;53058:2;53037:38;;53054:1;53037:38;;;;;;;;;;;;53103:69;53142:1;53146:2;53150:14;;;;;;53166:5;53103:30;:69::i;:::-;53098:174;;53208:40;;;;;;;;;;;;;;53098:174;53314:3;53299:12;:18;53006:313;;53400:12;53383:13;;:29;53379:43;;53414:8;;;53379:43;52966:631;;;53463:119;53519:14;;;;;;53515:2;53494:40;;53511:1;53494:40;;;;;;;;;;;;53577:3;53562:12;:18;53463:119;;52966:631;53627:12;53611:13;:28;;;;52579:1072;;53661:60;53690:1;53694:2;53698:12;53712:8;53661:20;:60::i;:::-;52092:1637;51980:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:474::-;8604:6;8612;8661:2;8649:9;8640:7;8636:23;8632:32;8629:119;;;8667:79;;:::i;:::-;8629:119;8787:1;8812:53;8857:7;8848:6;8837:9;8833:22;8812:53;:::i;:::-;8802:63;;8758:117;8914:2;8940:53;8985:7;8976:6;8965:9;8961:22;8940:53;:::i;:::-;8930:63;;8885:118;8536:474;;;;;:::o;9016:329::-;9075:6;9124:2;9112:9;9103:7;9099:23;9095:32;9092:119;;;9130:79;;:::i;:::-;9092:119;9250:1;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9221:117;9016:329;;;;:::o;9351:116::-;9421:21;9436:5;9421:21;:::i;:::-;9414:5;9411:32;9401:60;;9457:1;9454;9447:12;9401:60;9351:116;:::o;9473:133::-;9516:5;9554:6;9541:20;9532:29;;9570:30;9594:5;9570:30;:::i;:::-;9473:133;;;;:::o;9612:468::-;9677:6;9685;9734:2;9722:9;9713:7;9709:23;9705:32;9702:119;;;9740:79;;:::i;:::-;9702:119;9860:1;9885:53;9930:7;9921:6;9910:9;9906:22;9885:53;:::i;:::-;9875:63;;9831:117;9987:2;10013:50;10055:7;10046:6;10035:9;10031:22;10013:50;:::i;:::-;10003:60;;9958:115;9612:468;;;;;:::o;10086:307::-;10147:4;10237:18;10229:6;10226:30;10223:56;;;10259:18;;:::i;:::-;10223:56;10297:29;10319:6;10297:29;:::i;:::-;10289:37;;10381:4;10375;10371:15;10363:23;;10086:307;;;:::o;10399:410::-;10476:5;10501:65;10517:48;10558:6;10517:48;:::i;:::-;10501:65;:::i;:::-;10492:74;;10589:6;10582:5;10575:21;10627:4;10620:5;10616:16;10665:3;10656:6;10651:3;10647:16;10644:25;10641:112;;;10672:79;;:::i;:::-;10641:112;10762:41;10796:6;10791:3;10786;10762:41;:::i;:::-;10482:327;10399:410;;;;;:::o;10828:338::-;10883:5;10932:3;10925:4;10917:6;10913:17;10909:27;10899:122;;10940:79;;:::i;:::-;10899:122;11057:6;11044:20;11082:78;11156:3;11148:6;11141:4;11133:6;11129:17;11082:78;:::i;:::-;11073:87;;10889:277;10828:338;;;;:::o;11172:943::-;11267:6;11275;11283;11291;11340:3;11328:9;11319:7;11315:23;11311:33;11308:120;;;11347:79;;:::i;:::-;11308:120;11467:1;11492:53;11537:7;11528:6;11517:9;11513:22;11492:53;:::i;:::-;11482:63;;11438:117;11594:2;11620:53;11665:7;11656:6;11645:9;11641:22;11620:53;:::i;:::-;11610:63;;11565:118;11722:2;11748:53;11793:7;11784:6;11773:9;11769:22;11748:53;:::i;:::-;11738:63;;11693:118;11878:2;11867:9;11863:18;11850:32;11909:18;11901:6;11898:30;11895:117;;;11931:79;;:::i;:::-;11895:117;12036:62;12090:7;12081:6;12070:9;12066:22;12036:62;:::i;:::-;12026:72;;11821:287;11172:943;;;;;;;:::o;12121:474::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:180::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12787:320;12831:6;12868:1;12862:4;12858:12;12848:22;;12915:1;12909:4;12905:12;12936:18;12926:81;;12992:4;12984:6;12980:17;12970:27;;12926:81;13054:2;13046:6;13043:14;13023:18;13020:38;13017:84;;;13073:18;;:::i;:::-;13017:84;12838:269;12787:320;;;:::o;13113:182::-;13253:34;13249:1;13241:6;13237:14;13230:58;13113:182;:::o;13301:366::-;13443:3;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13540:93;13629:3;13540:93;:::i;:::-;13658:2;13653:3;13649:12;13642:19;;13301:366;;;:::o;13673:419::-;13839:4;13877:2;13866:9;13862:18;13854:26;;13926:9;13920:4;13916:20;13912:1;13901:9;13897:17;13890:47;13954:131;14080:4;13954:131;:::i;:::-;13946:139;;13673:419;;;:::o;14098:232::-;14238:34;14234:1;14226:6;14222:14;14215:58;14307:15;14302:2;14294:6;14290:15;14283:40;14098:232;:::o;14336:366::-;14478:3;14499:67;14563:2;14558:3;14499:67;:::i;:::-;14492:74;;14575:93;14664:3;14575:93;:::i;:::-;14693:2;14688:3;14684:12;14677:19;;14336:366;;;:::o;14708:419::-;14874:4;14912:2;14901:9;14897:18;14889:26;;14961:9;14955:4;14951:20;14947:1;14936:9;14932:17;14925:47;14989:131;15115:4;14989:131;:::i;:::-;14981:139;;14708:419;;;:::o;15133:180::-;15181:77;15178:1;15171:88;15278:4;15275:1;15268:15;15302:4;15299:1;15292:15;15319:227;15459:34;15455:1;15447:6;15443:14;15436:58;15528:10;15523:2;15515:6;15511:15;15504:35;15319:227;:::o;15552:366::-;15694:3;15715:67;15779:2;15774:3;15715:67;:::i;:::-;15708:74;;15791:93;15880:3;15791:93;:::i;:::-;15909:2;15904:3;15900:12;15893:19;;15552:366;;;:::o;15924:419::-;16090:4;16128:2;16117:9;16113:18;16105:26;;16177:9;16171:4;16167:20;16163:1;16152:9;16148:17;16141:47;16205:131;16331:4;16205:131;:::i;:::-;16197:139;;15924:419;;;:::o;16349:171::-;16489:23;16485:1;16477:6;16473:14;16466:47;16349:171;:::o;16526:366::-;16668:3;16689:67;16753:2;16748:3;16689:67;:::i;:::-;16682:74;;16765:93;16854:3;16765:93;:::i;:::-;16883:2;16878:3;16874:12;16867:19;;16526:366;;;:::o;16898:419::-;17064:4;17102:2;17091:9;17087:18;17079:26;;17151:9;17145:4;17141:20;17137:1;17126:9;17122:17;17115:47;17179:131;17305:4;17179:131;:::i;:::-;17171:139;;16898:419;;;:::o;17323:148::-;17425:11;17462:3;17447:18;;17323:148;;;;:::o;17477:141::-;17526:4;17549:3;17541:11;;17572:3;17569:1;17562:14;17606:4;17603:1;17593:18;17585:26;;17477:141;;;:::o;17648:845::-;17751:3;17788:5;17782:12;17817:36;17843:9;17817:36;:::i;:::-;17869:89;17951:6;17946:3;17869:89;:::i;:::-;17862:96;;17989:1;17978:9;17974:17;18005:1;18000:137;;;;18151:1;18146:341;;;;17967:520;;18000:137;18084:4;18080:9;18069;18065:25;18060:3;18053:38;18120:6;18115:3;18111:16;18104:23;;18000:137;;18146:341;18213:38;18245:5;18213:38;:::i;:::-;18273:1;18287:154;18301:6;18298:1;18295:13;18287:154;;;18375:7;18369:14;18365:1;18360:3;18356:11;18349:35;18425:1;18416:7;18412:15;18401:26;;18323:4;18320:1;18316:12;18311:17;;18287:154;;;18470:6;18465:3;18461:16;18454:23;;18153:334;;17967:520;;17755:738;;17648:845;;;;:::o;18499:377::-;18605:3;18633:39;18666:5;18633:39;:::i;:::-;18688:89;18770:6;18765:3;18688:89;:::i;:::-;18681:96;;18786:52;18831:6;18826:3;18819:4;18812:5;18808:16;18786:52;:::i;:::-;18863:6;18858:3;18854:16;18847:23;;18609:267;18499:377;;;;:::o;18882:429::-;19059:3;19081:92;19169:3;19160:6;19081:92;:::i;:::-;19074:99;;19190:95;19281:3;19272:6;19190:95;:::i;:::-;19183:102;;19302:3;19295:10;;18882:429;;;;;:::o;19317:155::-;19457:7;19453:1;19445:6;19441:14;19434:31;19317:155;:::o;19478:400::-;19638:3;19659:84;19741:1;19736:3;19659:84;:::i;:::-;19652:91;;19752:93;19841:3;19752:93;:::i;:::-;19870:1;19865:3;19861:11;19854:18;;19478:400;;;:::o;19884:695::-;20162:3;20184:92;20272:3;20263:6;20184:92;:::i;:::-;20177:99;;20293:95;20384:3;20375:6;20293:95;:::i;:::-;20286:102;;20405:148;20549:3;20405:148;:::i;:::-;20398:155;;20570:3;20563:10;;19884:695;;;;;:::o;20585:225::-;20725:34;20721:1;20713:6;20709:14;20702:58;20794:8;20789:2;20781:6;20777:15;20770:33;20585:225;:::o;20816:366::-;20958:3;20979:67;21043:2;21038:3;20979:67;:::i;:::-;20972:74;;21055:93;21144:3;21055:93;:::i;:::-;21173:2;21168:3;21164:12;21157:19;;20816:366;;;:::o;21188:419::-;21354:4;21392:2;21381:9;21377:18;21369:26;;21441:9;21435:4;21431:20;21427:1;21416:9;21412:17;21405:47;21469:131;21595:4;21469:131;:::i;:::-;21461:139;;21188:419;;;:::o;21613:182::-;21753:34;21749:1;21741:6;21737:14;21730:58;21613:182;:::o;21801:366::-;21943:3;21964:67;22028:2;22023:3;21964:67;:::i;:::-;21957:74;;22040:93;22129:3;22040:93;:::i;:::-;22158:2;22153:3;22149:12;22142:19;;21801:366;;;:::o;22173:419::-;22339:4;22377:2;22366:9;22362:18;22354:26;;22426:9;22420:4;22416:20;22412:1;22401:9;22397:17;22390:47;22454:131;22580:4;22454:131;:::i;:::-;22446:139;;22173:419;;;:::o;22598:220::-;22738:34;22734:1;22726:6;22722:14;22715:58;22807:3;22802:2;22794:6;22790:15;22783:28;22598:220;:::o;22824:366::-;22966:3;22987:67;23051:2;23046:3;22987:67;:::i;:::-;22980:74;;23063:93;23152:3;23063:93;:::i;:::-;23181:2;23176:3;23172:12;23165:19;;22824:366;;;:::o;23196:419::-;23362:4;23400:2;23389:9;23385:18;23377:26;;23449:9;23443:4;23439:20;23435:1;23424:9;23420:17;23413:47;23477:131;23603:4;23477:131;:::i;:::-;23469:139;;23196:419;;;:::o;23621:228::-;23761:34;23757:1;23749:6;23745:14;23738:58;23830:11;23825:2;23817:6;23813:15;23806:36;23621:228;:::o;23855:366::-;23997:3;24018:67;24082:2;24077:3;24018:67;:::i;:::-;24011:74;;24094:93;24183:3;24094:93;:::i;:::-;24212:2;24207:3;24203:12;24196:19;;23855:366;;;:::o;24227:419::-;24393:4;24431:2;24420:9;24416:18;24408:26;;24480:9;24474:4;24470:20;24466:1;24455:9;24451:17;24444:47;24508:131;24634:4;24508:131;:::i;:::-;24500:139;;24227:419;;;:::o;24652:221::-;24792:34;24788:1;24780:6;24776:14;24769:58;24861:4;24856:2;24848:6;24844:15;24837:29;24652:221;:::o;24879:366::-;25021:3;25042:67;25106:2;25101:3;25042:67;:::i;:::-;25035:74;;25118:93;25207:3;25118:93;:::i;:::-;25236:2;25231:3;25227:12;25220:19;;24879:366;;;:::o;25251:419::-;25417:4;25455:2;25444:9;25440:18;25432:26;;25504:9;25498:4;25494:20;25490:1;25479:9;25475:17;25468:47;25532:131;25658:4;25532:131;:::i;:::-;25524:139;;25251:419;;;:::o;25676:168::-;25816:20;25812:1;25804:6;25800:14;25793:44;25676:168;:::o;25850:366::-;25992:3;26013:67;26077:2;26072:3;26013:67;:::i;:::-;26006:74;;26089:93;26178:3;26089:93;:::i;:::-;26207:2;26202:3;26198:12;26191:19;;25850:366;;;:::o;26222:419::-;26388:4;26426:2;26415:9;26411:18;26403:26;;26475:9;26469:4;26465:20;26461:1;26450:9;26446:17;26439:47;26503:131;26629:4;26503:131;:::i;:::-;26495:139;;26222:419;;;:::o;26647:181::-;26787:33;26783:1;26775:6;26771:14;26764:57;26647:181;:::o;26834:366::-;26976:3;26997:67;27061:2;27056:3;26997:67;:::i;:::-;26990:74;;27073:93;27162:3;27073:93;:::i;:::-;27191:2;27186:3;27182:12;27175:19;;26834:366;;;:::o;27206:419::-;27372:4;27410:2;27399:9;27395:18;27387:26;;27459:9;27453:4;27449:20;27445:1;27434:9;27430:17;27423:47;27487:131;27613:4;27487:131;:::i;:::-;27479:139;;27206:419;;;:::o;27631:180::-;27679:77;27676:1;27669:88;27776:4;27773:1;27766:15;27800:4;27797:1;27790:15;27817:305;27857:3;27876:20;27894:1;27876:20;:::i;:::-;27871:25;;27910:20;27928:1;27910:20;:::i;:::-;27905:25;;28064:1;27996:66;27992:74;27989:1;27986:81;27983:107;;;28070:18;;:::i;:::-;27983:107;28114:1;28111;28107:9;28100:16;;27817:305;;;;:::o;28128:177::-;28268:29;28264:1;28256:6;28252:14;28245:53;28128:177;:::o;28311:366::-;28453:3;28474:67;28538:2;28533:3;28474:67;:::i;:::-;28467:74;;28550:93;28639:3;28550:93;:::i;:::-;28668:2;28663:3;28659:12;28652:19;;28311:366;;;:::o;28683:419::-;28849:4;28887:2;28876:9;28872:18;28864:26;;28936:9;28930:4;28926:20;28922:1;28911:9;28907:17;28900:47;28964:131;29090:4;28964:131;:::i;:::-;28956:139;;28683:419;;;:::o;29108:98::-;29159:6;29193:5;29187:12;29177:22;;29108:98;;;:::o;29212:168::-;29295:11;29329:6;29324:3;29317:19;29369:4;29364:3;29360:14;29345:29;;29212:168;;;;:::o;29386:360::-;29472:3;29500:38;29532:5;29500:38;:::i;:::-;29554:70;29617:6;29612:3;29554:70;:::i;:::-;29547:77;;29633:52;29678:6;29673:3;29666:4;29659:5;29655:16;29633:52;:::i;:::-;29710:29;29732:6;29710:29;:::i;:::-;29705:3;29701:39;29694:46;;29476:270;29386:360;;;;:::o;29752:640::-;29947:4;29985:3;29974:9;29970:19;29962:27;;29999:71;30067:1;30056:9;30052:17;30043:6;29999:71;:::i;:::-;30080:72;30148:2;30137:9;30133:18;30124:6;30080:72;:::i;:::-;30162;30230:2;30219:9;30215:18;30206:6;30162:72;:::i;:::-;30281:9;30275:4;30271:20;30266:2;30255:9;30251:18;30244:48;30309:76;30380:4;30371:6;30309:76;:::i;:::-;30301:84;;29752:640;;;;;;;:::o;30398:141::-;30454:5;30485:6;30479:13;30470:22;;30501:32;30527:5;30501:32;:::i;:::-;30398:141;;;;:::o;30545:349::-;30614:6;30663:2;30651:9;30642:7;30638:23;30634:32;30631:119;;;30669:79;;:::i;:::-;30631:119;30789:1;30814:63;30869:7;30860:6;30849:9;30845:22;30814:63;:::i;:::-;30804:73;;30760:127;30545:349;;;;:::o;30900:233::-;30939:3;30962:24;30980:5;30962:24;:::i;:::-;30953:33;;31008:66;31001:5;30998:77;30995:103;;;31078:18;;:::i;:::-;30995:103;31125:1;31118:5;31114:13;31107:20;;30900:233;;;:::o;31139:180::-;31187:77;31184:1;31177:88;31284:4;31281:1;31274:15;31308:4;31305:1;31298:15;31325:185;31365:1;31382:20;31400:1;31382:20;:::i;:::-;31377:25;;31416:20;31434:1;31416:20;:::i;:::-;31411:25;;31455:1;31445:35;;31460:18;;:::i;:::-;31445:35;31502:1;31499;31495:9;31490:14;;31325:185;;;;:::o;31516:191::-;31556:4;31576:20;31594:1;31576:20;:::i;:::-;31571:25;;31610:20;31628:1;31610:20;:::i;:::-;31605:25;;31649:1;31646;31643:8;31640:34;;;31654:18;;:::i;:::-;31640:34;31699:1;31696;31692:9;31684:17;;31516:191;;;;:::o;31713:176::-;31745:1;31762:20;31780:1;31762:20;:::i;:::-;31757:25;;31796:20;31814:1;31796:20;:::i;:::-;31791:25;;31835:1;31825:35;;31840:18;;:::i;:::-;31825:35;31881:1;31878;31874:9;31869:14;;31713:176;;;;:::o;31895:180::-;31943:77;31940:1;31933:88;32040:4;32037:1;32030:15;32064:4;32061:1;32054:15;32081:348;32121:7;32144:20;32162:1;32144:20;:::i;:::-;32139:25;;32178:20;32196:1;32178:20;:::i;:::-;32173:25;;32366:1;32298:66;32294:74;32291:1;32288:81;32283:1;32276:9;32269:17;32265:105;32262:131;;;32373:18;;:::i;:::-;32262:131;32421:1;32418;32414:9;32403:20;;32081:348;;;;:::o;32435:220::-;32575:34;32571:1;32563:6;32559:14;32552:58;32644:3;32639:2;32631:6;32627:15;32620:28;32435:220;:::o;32661:366::-;32803:3;32824:67;32888:2;32883:3;32824:67;:::i;:::-;32817:74;;32900:93;32989:3;32900:93;:::i;:::-;33018:2;33013:3;33009:12;33002:19;;32661:366;;;:::o;33033:419::-;33199:4;33237:2;33226:9;33222:18;33214:26;;33286:9;33280:4;33276:20;33272:1;33261:9;33257:17;33250:47;33314:131;33440:4;33314:131;:::i;:::-;33306:139;;33033:419;;;:::o

Swarm Source

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