ETH Price: $3,389.32 (-2.63%)
Gas: 1 Gwei

Token

FlowersOnChain (FOC)
 

Overview

Max Total Supply

1,332 FOC

Holders

430

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FOC
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
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:
FlowersOnChain

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-10
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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 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);
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _addressData[owner].aux = aux;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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


pragma solidity ^0.8.0;



contract FlowersOnChain is ERC721A, Ownable {
    string  public uriPrefix;
    uint256 public immutable batchMintCost = 0.0108 ether;
    uint32 public immutable MAX_SUPPLY = 3333;
    uint32 public immutable batchMintAmount = 5;

    mapping(address => bool) public freeMintMapping;

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    constructor()
    ERC721A ("FlowersOnChain", "FOC") {
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return uriPrefix;
    }

    function setUriPrefix(string memory uri) public onlyOwner {
        uriPrefix = uri;
    }

    function _startTokenId() internal view virtual override(ERC721A) returns (uint256) {
        return 0;
    }

    function freeMint() public payable callerIsUser{
        require(totalSupply() + 1 <= MAX_SUPPLY,"sold out");
        require(!freeMintMapping[msg.sender],"invalid");

        freeMintMapping[msg.sender] = true;
        _safeMint(msg.sender, 1);
    }

    function batchMint() public payable callerIsUser{
        require(totalSupply() + batchMintAmount <= MAX_SUPPLY,"sold out");
        require(msg.value >= batchMintCost,"insufficient");
        _safeMint(msg.sender, batchMintAmount);
    }
    
    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

        (success, ) = h.call{value: sendAmount}("");
        require(success, "Transaction Unsuccessful");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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_SUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"batchMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"batchMintAmount","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"batchMintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintMapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUriPrefix","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405266265e8af3930000608090815250610d0563ffffffff1660a09063ffffffff1660e01b815250600563ffffffff1660c09063ffffffff1660e01b8152503480156200004e57600080fd5b506040518060400160405280600e81526020017f466c6f776572734f6e436861696e0000000000000000000000000000000000008152506040518060400160405280600381526020017f464f4300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d3929190620001fe565b508060039080519060200190620000ec929190620001fe565b50620000fd6200012b60201b60201c565b600081905550505062000125620001196200013060201b60201c565b6200013860201b60201c565b62000313565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020c90620002ae565b90600052602060002090601f0160209004810192826200023057600085556200027c565b82601f106200024b57805160ff19168380011785556200027c565b828001600101855582156200027c579182015b828111156200027b5782518255916020019190600101906200025e565b5b5090506200028b91906200028f565b5090565b5b80821115620002aa57600081600090555060010162000290565b5090565b60006002820490506001821680620002c757607f821691505b60208210811415620002de57620002dd620002e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a05160e01c60c05160e01c6134926200036c60003960008181610a37015281816111e901526112ca01526000818161092e01528181610ac901526111c2015260008181611130015261126301526134926000f3fe6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063d2a241f611610064578063d2a241f61461054f578063e3424c931461057a578063e985e9c514610584578063f2fde38b146105c157610181565b8063a22cb465146104c0578063b88d4fde146104e9578063c87b56dd1461051257610181565b80636352211e146103b057806370a08231146103ed578063715018a61461042a5780637ec4a659146104415780638da5cb5b1461046a57806395d89b411461049557610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e146103275780635b43c913146103505780635b70ea9f1461037b57806362b99ad41461038557610181565b806323b872dd146102bc57806332cb6b0c146102e55780633ccfd60b1461031057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806319fae2ba1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906129bb565b6105ea565b6040516101ba9190612d22565b60405180910390f35b3480156101cf57600080fd5b506101d86106cc565b6040516101e59190612d3d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612a5e565b61075e565b6040516102229190612cbb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061297b565b6107da565b005b34801561026057600080fd5b506102696108e5565b6040516102769190612e3f565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a191906127f8565b6108fc565b6040516102b39190612d22565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190612865565b61091c565b005b3480156102f157600080fd5b506102fa61092c565b6040516103079190612e5a565b60405180910390f35b34801561031c57600080fd5b50610325610950565b005b34801561033357600080fd5b5061034e60048036038101906103499190612865565b610a15565b005b34801561035c57600080fd5b50610365610a35565b6040516103729190612e5a565b60405180910390f35b610383610a59565b005b34801561039157600080fd5b5061039a610c35565b6040516103a79190612d3d565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612a5e565b610cc3565b6040516103e49190612cbb565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f91906127f8565b610cd9565b6040516104219190612e3f565b60405180910390f35b34801561043657600080fd5b5061043f610da9565b005b34801561044d57600080fd5b5061046860048036038101906104639190612a15565b610dbd565b005b34801561047657600080fd5b5061047f610ddf565b60405161048c9190612cbb565b60405180910390f35b3480156104a157600080fd5b506104aa610e09565b6040516104b79190612d3d565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061293b565b610e9b565b005b3480156104f557600080fd5b50610510600480360381019061050b91906128b8565b611013565b005b34801561051e57600080fd5b5061053960048036038101906105349190612a5e565b61108f565b6040516105469190612d3d565b60405180910390f35b34801561055b57600080fd5b5061056461112e565b6040516105719190612e3f565b60405180910390f35b610582611152565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612825565b6112f6565b6040516105b89190612d22565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e391906127f8565b61138a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c557506106c48261140e565b5b9050919050565b6060600280546106db906130cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610707906130cb565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b600061076982611478565b61079f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e582610cc3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561084d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086c6114c6565b73ffffffffffffffffffffffffffffffffffffffff161415801561089e575061089c816108976114c6565b6112f6565b155b156108d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108e08383836114ce565b505050565b60006108ef611580565b6001546000540303905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b610927838383611585565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b610958611a76565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff168360405161098890612ca6565b60006040518083038185875af1925050503d80600081146109c5576040519150601f19603f3d011682016040523d82523d6000602084013e6109ca565b606091505b50508091505080610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790612d9f565b60405180910390fd5b505050565b610a3083838360405180602001604052806000815250611013565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90612ddf565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff166001610af86108e5565b610b029190612f4a565b1115610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90612dbf565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790612e1f565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610c33336001611af4565b565b60098054610c42906130cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6e906130cb565b8015610cbb5780601f10610c9057610100808354040283529160200191610cbb565b820191906000526020600020905b815481529060010190602001808311610c9e57829003601f168201915b505050505081565b6000610cce82611b12565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d41576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610db1611a76565b610dbb6000611da1565b565b610dc5611a76565b8060099080519060200190610ddb9291906125c9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e18906130cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e44906130cb565b8015610e915780601f10610e6657610100808354040283529160200191610e91565b820191906000526020600020905b815481529060010190602001808311610e7457829003601f168201915b5050505050905090565b610ea36114c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f08576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f156114c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fc26114c6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110079190612d22565b60405180910390a35050565b61101e848484611585565b61103d8373ffffffffffffffffffffffffffffffffffffffff16611e67565b8015611052575061105084848484611e8a565b155b15611089576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061109a82611478565b6110d0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110da611fea565b90506000815114156110fb5760405180602001604052806000815250611126565b806111058461207c565b604051602001611116929190612c82565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790612ddf565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff167f000000000000000000000000000000000000000000000000000000000000000063ffffffff166112166108e5565b6112209190612f4a565b1115611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612dbf565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000003410156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90612d5f565b60405180910390fd5b6112f4337f000000000000000000000000000000000000000000000000000000000000000063ffffffff16611af4565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611392611a76565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990612d7f565b60405180910390fd5b61140b81611da1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611483611580565b11158015611492575060005482105b80156114bf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061159082611b12565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115b76114c6565b73ffffffffffffffffffffffffffffffffffffffff1614806115ea57506115e982600001516115e46114c6565b6112f6565b5b8061162f57506115f86114c6565b73ffffffffffffffffffffffffffffffffffffffff166116178461075e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611668576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146116d1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611738576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61174585858560016121dd565b61175560008484600001516114ce565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a0657600054811015611a055782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a6f85858560016121e3565b5050505050565b611a7e6114c6565b73ffffffffffffffffffffffffffffffffffffffff16611a9c610ddf565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990612dff565b60405180910390fd5b565b611b0e8282604051806020016040528060008152506121e9565b5050565b611b1a61264f565b600082905080611b28611580565b11158015611b37575060005481105b15611d6a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d6857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c4c578092505050611d9c565b5b600115611d6757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d62578092505050611d9c565b611c4d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb06114c6565b8786866040518563ffffffff1660e01b8152600401611ed29493929190612cd6565b602060405180830381600087803b158015611eec57600080fd5b505af1925050508015611f1d57506040513d601f19601f82011682018060405250810190611f1a91906129e8565b60015b611f97573d8060008114611f4d576040519150601f19603f3d011682016040523d82523d6000602084013e611f52565b606091505b50600081511415611f8f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611ff9906130cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612025906130cb565b80156120725780601f1061204757610100808354040283529160200191612072565b820191906000526020600020905b81548152906001019060200180831161205557829003601f168201915b5050505050905090565b606060008214156120c4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121d8565b600082905060005b600082146120f65780806120df9061312e565b915050600a826120ef9190612fa0565b91506120cc565b60008167ffffffffffffffff81111561211257612111613264565b5b6040519080825280601f01601f1916602001820160405280156121445781602001600182028036833780820191505090505b5090505b600085146121d15760018261215d9190612fd1565b9150600a8561216c9190613177565b60306121789190612f4a565b60f81b81838151811061218e5761218d613235565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ca9190612fa0565b9450612148565b8093505050505b919050565b50505050565b50505050565b6121f683838360016121fb565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612268576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156122a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b060008683876121dd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561247a57506124798773ffffffffffffffffffffffffffffffffffffffff16611e67565b5b15612540575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124ef6000888480600101955088611e8a565b612525576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561248057826000541461253b57600080fd5b6125ac565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612541575b8160008190555050506125c260008683876121e3565b5050505050565b8280546125d5906130cb565b90600052602060002090601f0160209004810192826125f7576000855561263e565b82601f1061261057805160ff191683800117855561263e565b8280016001018555821561263e579182015b8281111561263d578251825591602001919060010190612622565b5b50905061264b9190612692565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156126ab576000816000905550600101612693565b5090565b60006126c26126bd84612e9a565b612e75565b9050828152602081018484840111156126de576126dd613298565b5b6126e9848285613089565b509392505050565b60006127046126ff84612ecb565b612e75565b9050828152602081018484840111156127205761271f613298565b5b61272b848285613089565b509392505050565b60008135905061274281613400565b92915050565b60008135905061275781613417565b92915050565b60008135905061276c8161342e565b92915050565b6000815190506127818161342e565b92915050565b600082601f83011261279c5761279b613293565b5b81356127ac8482602086016126af565b91505092915050565b600082601f8301126127ca576127c9613293565b5b81356127da8482602086016126f1565b91505092915050565b6000813590506127f281613445565b92915050565b60006020828403121561280e5761280d6132a2565b5b600061281c84828501612733565b91505092915050565b6000806040838503121561283c5761283b6132a2565b5b600061284a85828601612733565b925050602061285b85828601612733565b9150509250929050565b60008060006060848603121561287e5761287d6132a2565b5b600061288c86828701612733565b935050602061289d86828701612733565b92505060406128ae868287016127e3565b9150509250925092565b600080600080608085870312156128d2576128d16132a2565b5b60006128e087828801612733565b94505060206128f187828801612733565b9350506040612902878288016127e3565b925050606085013567ffffffffffffffff8111156129235761292261329d565b5b61292f87828801612787565b91505092959194509250565b60008060408385031215612952576129516132a2565b5b600061296085828601612733565b925050602061297185828601612748565b9150509250929050565b60008060408385031215612992576129916132a2565b5b60006129a085828601612733565b92505060206129b1858286016127e3565b9150509250929050565b6000602082840312156129d1576129d06132a2565b5b60006129df8482850161275d565b91505092915050565b6000602082840312156129fe576129fd6132a2565b5b6000612a0c84828501612772565b91505092915050565b600060208284031215612a2b57612a2a6132a2565b5b600082013567ffffffffffffffff811115612a4957612a4861329d565b5b612a55848285016127b5565b91505092915050565b600060208284031215612a7457612a736132a2565b5b6000612a82848285016127e3565b91505092915050565b612a9481613005565b82525050565b612aa381613017565b82525050565b6000612ab482612efc565b612abe8185612f12565b9350612ace818560208601613098565b612ad7816132a7565b840191505092915050565b6000612aed82612f07565b612af78185612f2e565b9350612b07818560208601613098565b612b10816132a7565b840191505092915050565b6000612b2682612f07565b612b308185612f3f565b9350612b40818560208601613098565b80840191505092915050565b6000612b59600c83612f2e565b9150612b64826132b8565b602082019050919050565b6000612b7c602683612f2e565b9150612b87826132e1565b604082019050919050565b6000612b9f601883612f2e565b9150612baa82613330565b602082019050919050565b6000612bc2600883612f2e565b9150612bcd82613359565b602082019050919050565b6000612be5601e83612f2e565b9150612bf082613382565b602082019050919050565b6000612c08602083612f2e565b9150612c13826133ab565b602082019050919050565b6000612c2b600083612f23565b9150612c36826133d4565b600082019050919050565b6000612c4e600783612f2e565b9150612c59826133d7565b602082019050919050565b612c6d8161306f565b82525050565b612c7c81613079565b82525050565b6000612c8e8285612b1b565b9150612c9a8284612b1b565b91508190509392505050565b6000612cb182612c1e565b9150819050919050565b6000602082019050612cd06000830184612a8b565b92915050565b6000608082019050612ceb6000830187612a8b565b612cf86020830186612a8b565b612d056040830185612c64565b8181036060830152612d178184612aa9565b905095945050505050565b6000602082019050612d376000830184612a9a565b92915050565b60006020820190508181036000830152612d578184612ae2565b905092915050565b60006020820190508181036000830152612d7881612b4c565b9050919050565b60006020820190508181036000830152612d9881612b6f565b9050919050565b60006020820190508181036000830152612db881612b92565b9050919050565b60006020820190508181036000830152612dd881612bb5565b9050919050565b60006020820190508181036000830152612df881612bd8565b9050919050565b60006020820190508181036000830152612e1881612bfb565b9050919050565b60006020820190508181036000830152612e3881612c41565b9050919050565b6000602082019050612e546000830184612c64565b92915050565b6000602082019050612e6f6000830184612c73565b92915050565b6000612e7f612e90565b9050612e8b82826130fd565b919050565b6000604051905090565b600067ffffffffffffffff821115612eb557612eb4613264565b5b612ebe826132a7565b9050602081019050919050565b600067ffffffffffffffff821115612ee657612ee5613264565b5b612eef826132a7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f558261306f565b9150612f608361306f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9557612f946131a8565b5b828201905092915050565b6000612fab8261306f565b9150612fb68361306f565b925082612fc657612fc56131d7565b5b828204905092915050565b6000612fdc8261306f565b9150612fe78361306f565b925082821015612ffa57612ff96131a8565b5b828203905092915050565b60006130108261304f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156130b657808201518184015260208101905061309b565b838111156130c5576000848401525b50505050565b600060028204905060018216806130e357607f821691505b602082108114156130f7576130f6613206565b5b50919050565b613106826132a7565b810181811067ffffffffffffffff8211171561312557613124613264565b5b80604052505050565b60006131398261306f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561316c5761316b6131a8565b5b600182019050919050565b60006131828261306f565b915061318d8361306f565b92508261319d5761319c6131d7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f696e76616c696400000000000000000000000000000000000000000000000000600082015250565b61340981613005565b811461341457600080fd5b50565b61342081613017565b811461342b57600080fd5b50565b61343781613023565b811461344257600080fd5b50565b61344e8161306f565b811461345957600080fd5b5056fea26469706673582212207903e1a90dda8ec1e9b4ed5012ccae2c32496c279bae15371c58179aae064a3d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636352211e116100d1578063a22cb4651161008a578063d2a241f611610064578063d2a241f61461054f578063e3424c931461057a578063e985e9c514610584578063f2fde38b146105c157610181565b8063a22cb465146104c0578063b88d4fde146104e9578063c87b56dd1461051257610181565b80636352211e146103b057806370a08231146103ed578063715018a61461042a5780637ec4a659146104415780638da5cb5b1461046a57806395d89b411461049557610181565b806323b872dd1161013e57806342842e0e1161011857806342842e0e146103275780635b43c913146103505780635b70ea9f1461037b57806362b99ad41461038557610181565b806323b872dd146102bc57806332cb6b0c146102e55780633ccfd60b1461031057610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806319fae2ba1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a891906129bb565b6105ea565b6040516101ba9190612d22565b60405180910390f35b3480156101cf57600080fd5b506101d86106cc565b6040516101e59190612d3d565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612a5e565b61075e565b6040516102229190612cbb565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d919061297b565b6107da565b005b34801561026057600080fd5b506102696108e5565b6040516102769190612e3f565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a191906127f8565b6108fc565b6040516102b39190612d22565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190612865565b61091c565b005b3480156102f157600080fd5b506102fa61092c565b6040516103079190612e5a565b60405180910390f35b34801561031c57600080fd5b50610325610950565b005b34801561033357600080fd5b5061034e60048036038101906103499190612865565b610a15565b005b34801561035c57600080fd5b50610365610a35565b6040516103729190612e5a565b60405180910390f35b610383610a59565b005b34801561039157600080fd5b5061039a610c35565b6040516103a79190612d3d565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190612a5e565b610cc3565b6040516103e49190612cbb565b60405180910390f35b3480156103f957600080fd5b50610414600480360381019061040f91906127f8565b610cd9565b6040516104219190612e3f565b60405180910390f35b34801561043657600080fd5b5061043f610da9565b005b34801561044d57600080fd5b5061046860048036038101906104639190612a15565b610dbd565b005b34801561047657600080fd5b5061047f610ddf565b60405161048c9190612cbb565b60405180910390f35b3480156104a157600080fd5b506104aa610e09565b6040516104b79190612d3d565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e2919061293b565b610e9b565b005b3480156104f557600080fd5b50610510600480360381019061050b91906128b8565b611013565b005b34801561051e57600080fd5b5061053960048036038101906105349190612a5e565b61108f565b6040516105469190612d3d565b60405180910390f35b34801561055b57600080fd5b5061056461112e565b6040516105719190612e3f565b60405180910390f35b610582611152565b005b34801561059057600080fd5b506105ab60048036038101906105a69190612825565b6112f6565b6040516105b89190612d22565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e391906127f8565b61138a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c557506106c48261140e565b5b9050919050565b6060600280546106db906130cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610707906130cb565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b600061076982611478565b61079f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e582610cc3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561084d576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661086c6114c6565b73ffffffffffffffffffffffffffffffffffffffff161415801561089e575061089c816108976114c6565b6112f6565b155b156108d5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6108e08383836114ce565b505050565b60006108ef611580565b6001546000540303905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b610927838383611585565b505050565b7f0000000000000000000000000000000000000000000000000000000000000d0581565b610958611a76565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff168360405161098890612ca6565b60006040518083038185875af1925050503d80600081146109c5576040519150601f19603f3d011682016040523d82523d6000602084013e6109ca565b606091505b50508091505080610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790612d9f565b60405180910390fd5b505050565b610a3083838360405180602001604052806000815250611013565b505050565b7f000000000000000000000000000000000000000000000000000000000000000581565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90612ddf565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d0563ffffffff166001610af86108e5565b610b029190612f4a565b1115610b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3a90612dbf565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc790612e1f565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610c33336001611af4565b565b60098054610c42906130cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6e906130cb565b8015610cbb5780601f10610c9057610100808354040283529160200191610cbb565b820191906000526020600020905b815481529060010190602001808311610c9e57829003601f168201915b505050505081565b6000610cce82611b12565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d41576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610db1611a76565b610dbb6000611da1565b565b610dc5611a76565b8060099080519060200190610ddb9291906125c9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e18906130cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610e44906130cb565b8015610e915780601f10610e6657610100808354040283529160200191610e91565b820191906000526020600020905b815481529060010190602001808311610e7457829003601f168201915b5050505050905090565b610ea36114c6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f08576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f156114c6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fc26114c6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110079190612d22565b60405180910390a35050565b61101e848484611585565b61103d8373ffffffffffffffffffffffffffffffffffffffff16611e67565b8015611052575061105084848484611e8a565b155b15611089576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061109a82611478565b6110d0576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006110da611fea565b90506000815114156110fb5760405180602001604052806000815250611126565b806111058461207c565b604051602001611116929190612c82565b6040516020818303038152906040525b915050919050565b7f00000000000000000000000000000000000000000000000000265e8af393000081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790612ddf565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000d0563ffffffff167f000000000000000000000000000000000000000000000000000000000000000563ffffffff166112166108e5565b6112209190612f4a565b1115611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890612dbf565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000265e8af39300003410156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb90612d5f565b60405180910390fd5b6112f4337f000000000000000000000000000000000000000000000000000000000000000563ffffffff16611af4565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611392611a76565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611402576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f990612d7f565b60405180910390fd5b61140b81611da1565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611483611580565b11158015611492575060005482105b80156114bf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061159082611b12565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115b76114c6565b73ffffffffffffffffffffffffffffffffffffffff1614806115ea57506115e982600001516115e46114c6565b6112f6565b5b8061162f57506115f86114c6565b73ffffffffffffffffffffffffffffffffffffffff166116178461075e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611668576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146116d1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611738576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61174585858560016121dd565b61175560008484600001516114ce565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a0657600054811015611a055782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a6f85858560016121e3565b5050505050565b611a7e6114c6565b73ffffffffffffffffffffffffffffffffffffffff16611a9c610ddf565b73ffffffffffffffffffffffffffffffffffffffff1614611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990612dff565b60405180910390fd5b565b611b0e8282604051806020016040528060008152506121e9565b5050565b611b1a61264f565b600082905080611b28611580565b11158015611b37575060005481105b15611d6a576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d6857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c4c578092505050611d9c565b5b600115611d6757818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d62578092505050611d9c565b611c4d565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611eb06114c6565b8786866040518563ffffffff1660e01b8152600401611ed29493929190612cd6565b602060405180830381600087803b158015611eec57600080fd5b505af1925050508015611f1d57506040513d601f19601f82011682018060405250810190611f1a91906129e8565b60015b611f97573d8060008114611f4d576040519150601f19603f3d011682016040523d82523d6000602084013e611f52565b606091505b50600081511415611f8f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611ff9906130cb565b80601f0160208091040260200160405190810160405280929190818152602001828054612025906130cb565b80156120725780601f1061204757610100808354040283529160200191612072565b820191906000526020600020905b81548152906001019060200180831161205557829003601f168201915b5050505050905090565b606060008214156120c4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121d8565b600082905060005b600082146120f65780806120df9061312e565b915050600a826120ef9190612fa0565b91506120cc565b60008167ffffffffffffffff81111561211257612111613264565b5b6040519080825280601f01601f1916602001820160405280156121445781602001600182028036833780820191505090505b5090505b600085146121d15760018261215d9190612fd1565b9150600a8561216c9190613177565b60306121789190612f4a565b60f81b81838151811061218e5761218d613235565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121ca9190612fa0565b9450612148565b8093505050505b919050565b50505050565b50505050565b6121f683838360016121fb565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612268576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008414156122a3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122b060008683876121dd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561247a57506124798773ffffffffffffffffffffffffffffffffffffffff16611e67565b5b15612540575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124ef6000888480600101955088611e8a565b612525576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561248057826000541461253b57600080fd5b6125ac565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612541575b8160008190555050506125c260008683876121e3565b5050505050565b8280546125d5906130cb565b90600052602060002090601f0160209004810192826125f7576000855561263e565b82601f1061261057805160ff191683800117855561263e565b8280016001018555821561263e579182015b8281111561263d578251825591602001919060010190612622565b5b50905061264b9190612692565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156126ab576000816000905550600101612693565b5090565b60006126c26126bd84612e9a565b612e75565b9050828152602081018484840111156126de576126dd613298565b5b6126e9848285613089565b509392505050565b60006127046126ff84612ecb565b612e75565b9050828152602081018484840111156127205761271f613298565b5b61272b848285613089565b509392505050565b60008135905061274281613400565b92915050565b60008135905061275781613417565b92915050565b60008135905061276c8161342e565b92915050565b6000815190506127818161342e565b92915050565b600082601f83011261279c5761279b613293565b5b81356127ac8482602086016126af565b91505092915050565b600082601f8301126127ca576127c9613293565b5b81356127da8482602086016126f1565b91505092915050565b6000813590506127f281613445565b92915050565b60006020828403121561280e5761280d6132a2565b5b600061281c84828501612733565b91505092915050565b6000806040838503121561283c5761283b6132a2565b5b600061284a85828601612733565b925050602061285b85828601612733565b9150509250929050565b60008060006060848603121561287e5761287d6132a2565b5b600061288c86828701612733565b935050602061289d86828701612733565b92505060406128ae868287016127e3565b9150509250925092565b600080600080608085870312156128d2576128d16132a2565b5b60006128e087828801612733565b94505060206128f187828801612733565b9350506040612902878288016127e3565b925050606085013567ffffffffffffffff8111156129235761292261329d565b5b61292f87828801612787565b91505092959194509250565b60008060408385031215612952576129516132a2565b5b600061296085828601612733565b925050602061297185828601612748565b9150509250929050565b60008060408385031215612992576129916132a2565b5b60006129a085828601612733565b92505060206129b1858286016127e3565b9150509250929050565b6000602082840312156129d1576129d06132a2565b5b60006129df8482850161275d565b91505092915050565b6000602082840312156129fe576129fd6132a2565b5b6000612a0c84828501612772565b91505092915050565b600060208284031215612a2b57612a2a6132a2565b5b600082013567ffffffffffffffff811115612a4957612a4861329d565b5b612a55848285016127b5565b91505092915050565b600060208284031215612a7457612a736132a2565b5b6000612a82848285016127e3565b91505092915050565b612a9481613005565b82525050565b612aa381613017565b82525050565b6000612ab482612efc565b612abe8185612f12565b9350612ace818560208601613098565b612ad7816132a7565b840191505092915050565b6000612aed82612f07565b612af78185612f2e565b9350612b07818560208601613098565b612b10816132a7565b840191505092915050565b6000612b2682612f07565b612b308185612f3f565b9350612b40818560208601613098565b80840191505092915050565b6000612b59600c83612f2e565b9150612b64826132b8565b602082019050919050565b6000612b7c602683612f2e565b9150612b87826132e1565b604082019050919050565b6000612b9f601883612f2e565b9150612baa82613330565b602082019050919050565b6000612bc2600883612f2e565b9150612bcd82613359565b602082019050919050565b6000612be5601e83612f2e565b9150612bf082613382565b602082019050919050565b6000612c08602083612f2e565b9150612c13826133ab565b602082019050919050565b6000612c2b600083612f23565b9150612c36826133d4565b600082019050919050565b6000612c4e600783612f2e565b9150612c59826133d7565b602082019050919050565b612c6d8161306f565b82525050565b612c7c81613079565b82525050565b6000612c8e8285612b1b565b9150612c9a8284612b1b565b91508190509392505050565b6000612cb182612c1e565b9150819050919050565b6000602082019050612cd06000830184612a8b565b92915050565b6000608082019050612ceb6000830187612a8b565b612cf86020830186612a8b565b612d056040830185612c64565b8181036060830152612d178184612aa9565b905095945050505050565b6000602082019050612d376000830184612a9a565b92915050565b60006020820190508181036000830152612d578184612ae2565b905092915050565b60006020820190508181036000830152612d7881612b4c565b9050919050565b60006020820190508181036000830152612d9881612b6f565b9050919050565b60006020820190508181036000830152612db881612b92565b9050919050565b60006020820190508181036000830152612dd881612bb5565b9050919050565b60006020820190508181036000830152612df881612bd8565b9050919050565b60006020820190508181036000830152612e1881612bfb565b9050919050565b60006020820190508181036000830152612e3881612c41565b9050919050565b6000602082019050612e546000830184612c64565b92915050565b6000602082019050612e6f6000830184612c73565b92915050565b6000612e7f612e90565b9050612e8b82826130fd565b919050565b6000604051905090565b600067ffffffffffffffff821115612eb557612eb4613264565b5b612ebe826132a7565b9050602081019050919050565b600067ffffffffffffffff821115612ee657612ee5613264565b5b612eef826132a7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f558261306f565b9150612f608361306f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f9557612f946131a8565b5b828201905092915050565b6000612fab8261306f565b9150612fb68361306f565b925082612fc657612fc56131d7565b5b828204905092915050565b6000612fdc8261306f565b9150612fe78361306f565b925082821015612ffa57612ff96131a8565b5b828203905092915050565b60006130108261304f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156130b657808201518184015260208101905061309b565b838111156130c5576000848401525b50505050565b600060028204905060018216806130e357607f821691505b602082108114156130f7576130f6613206565b5b50919050565b613106826132a7565b810181811067ffffffffffffffff8211171561312557613124613264565b5b80604052505050565b60006131398261306f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561316c5761316b6131a8565b5b600182019050919050565b60006131828261306f565b915061318d8361306f565b92508261319d5761319c6131d7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f696e76616c696400000000000000000000000000000000000000000000000000600082015250565b61340981613005565b811461341457600080fd5b50565b61342081613017565b811461342b57600080fd5b50565b61343781613023565b811461344257600080fd5b50565b61344e8161306f565b811461345957600080fd5b5056fea26469706673582212207903e1a90dda8ec1e9b4ed5012ccae2c32496c279bae15371c58179aae064a3d64736f6c63430008070033

Deployed Bytecode Sourcemap

46416:1633:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28892:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32277:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33780:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33343:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28141:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46658:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34637:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46558:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47768:278;;;;;;;;;;;;;:::i;:::-;;34878:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46606:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47249:257;;;:::i;:::-;;46467:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32086:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29261:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;47031:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32446:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34056:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35134:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32621:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46498:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47514:242;;;:::i;:::-;;34406:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28892:305;28994:4;29046:25;29031:40;;;:11;:40;;;;:105;;;;29103:33;29088:48;;;:11;:48;;;;29031:105;:158;;;;29153:36;29177:11;29153:23;:36::i;:::-;29031:158;29011:178;;28892:305;;;:::o;32277:100::-;32331:13;32364:5;32357:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32277:100;:::o;33780:204::-;33848:7;33873:16;33881:7;33873;:16::i;:::-;33868:64;;33898:34;;;;;;;;;;;;;;33868:64;33952:15;:24;33968:7;33952:24;;;;;;;;;;;;;;;;;;;;;33945:31;;33780:204;;;:::o;33343:371::-;33416:13;33432:24;33448:7;33432:15;:24::i;:::-;33416:40;;33477:5;33471:11;;:2;:11;;;33467:48;;;33491:24;;;;;;;;;;;;;;33467:48;33548:5;33532:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33558:37;33575:5;33582:12;:10;:12::i;:::-;33558:16;:37::i;:::-;33557:38;33532:63;33528:138;;;33619:35;;;;;;;;;;;;;;33528:138;33678:28;33687:2;33691:7;33700:5;33678:8;:28::i;:::-;33405:309;33343:371;;:::o;28141:303::-;28185:7;28410:15;:13;:15::i;:::-;28395:12;;28379:13;;:28;:46;28372:53;;28141:303;:::o;46658:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;34637:170::-;34771:28;34781:4;34787:2;34791:7;34771:9;:28::i;:::-;34637:170;;;:::o;46558:41::-;;;:::o;47768:278::-;4511:13;:11;:13::i;:::-;47816:18:::1;47837:21;47816:42;;47871:9;47891:10;47871:31;;47915:12;47954:1;:6;;47968:10;47954:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47940:43;;;;;48002:7;47994:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;47805:241;;;47768:278::o:0;34878:185::-;35016:39;35033:4;35039:2;35043:7;35016:39;;;;;;;;;;;;:16;:39::i;:::-;34878:185;;;:::o;46606:43::-;;;:::o;47249:257::-;46770:10;46757:23;;:9;:23;;;46749:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47336:10:::1;47315:31;;47331:1;47315:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;47307:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;47378:15;:27;47394:10;47378:27;;;;;;;;;;;;;;;;;;;;;;;;;47377:28;47369:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;47459:4;47429:15;:27;47445:10;47429:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;47474:24;47484:10;47496:1;47474:9;:24::i;:::-;47249:257::o:0;46467:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32086:124::-;32150:7;32177:20;32189:7;32177:11;:20::i;:::-;:25;;;32170:32;;32086:124;;;:::o;29261:206::-;29325:7;29366:1;29349:19;;:5;:19;;;29345:60;;;29377:28;;;;;;;;;;;;;;29345:60;29431:12;:19;29444:5;29431:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29423:36;;29416:43;;29261:206;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;47031:92::-;4511:13;:11;:13::i;:::-;47112:3:::1;47100:9;:15;;;;;;;;;;;;:::i;:::-;;47031:92:::0;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;32446:104::-;32502:13;32535:7;32528:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32446:104;:::o;34056:279::-;34159:12;:10;:12::i;:::-;34147:24;;:8;:24;;;34143:54;;;34180:17;;;;;;;;;;;;;;34143:54;34255:8;34210:18;:32;34229:12;:10;:12::i;:::-;34210:32;;;;;;;;;;;;;;;:42;34243:8;34210:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34308:8;34279:48;;34294:12;:10;:12::i;:::-;34279:48;;;34318:8;34279:48;;;;;;:::i;:::-;;;;;;;;34056:279;;:::o;35134:369::-;35301:28;35311:4;35317:2;35321:7;35301:9;:28::i;:::-;35344:15;:2;:13;;;:15::i;:::-;:76;;;;;35364:56;35395:4;35401:2;35405:7;35414:5;35364:30;:56::i;:::-;35363:57;35344:76;35340:156;;;35444:40;;;;;;;;;;;;;;35340:156;35134:369;;;;:::o;32621:318::-;32694:13;32725:16;32733:7;32725;:16::i;:::-;32720:59;;32750:29;;;;;;;;;;;;;;32720:59;32792:21;32816:10;:8;:10::i;:::-;32792:34;;32869:1;32850:7;32844:21;:26;;:87;;;;;;;;;;;;;;;;;32897:7;32906:18;:7;:16;:18::i;:::-;32880:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32844:87;32837:94;;;32621:318;;;:::o;46498:53::-;;;:::o;47514:242::-;46770:10;46757:23;;:9;:23;;;46749:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47616:10:::1;47581:45;;47597:15;47581:31;;:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:45;;47573:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;47670:13;47657:9;:26;;47649:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;47710:38;47720:10;47732:15;47710:38;;:9;:38::i;:::-;47514:242::o:0;34406:164::-;34503:4;34527:18;:25;34546:5;34527:25;;;;;;;;;;;;;;;:35;34553:8;34527:35;;;;;;;;;;;;;;;;;;;;;;;;;34520:42;;34406:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;17479:157::-;17564:4;17603:25;17588:40;;;:11;:40;;;;17581:47;;17479:157;;;:::o;35758:187::-;35815:4;35858:7;35839:15;:13;:15::i;:::-;:26;;:53;;;;;35879:13;;35869:7;:23;35839:53;:98;;;;;35910:11;:20;35922:7;35910:20;;;;;;;;;;;:27;;;;;;;;;;;;35909:28;35839:98;35832:105;;35758:187;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;43369:196::-;43511:2;43484:15;:24;43500:7;43484:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;43549:7;43545:2;43529:28;;43538:5;43529:28;;;;;;;;;;;;43369:196;;;:::o;47131:110::-;47205:7;47131:110;:::o;38871:2112::-;38986:35;39024:20;39036:7;39024:11;:20::i;:::-;38986:58;;39057:22;39099:13;:18;;;39083:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;39134:50;39151:13;:18;;;39171:12;:10;:12::i;:::-;39134:16;:50::i;:::-;39083:101;:154;;;;39225:12;:10;:12::i;:::-;39201:36;;:20;39213:7;39201:11;:20::i;:::-;:36;;;39083:154;39057:181;;39256:17;39251:66;;39282:35;;;;;;;;;;;;;;39251:66;39354:4;39332:26;;:13;:18;;;:26;;;39328:67;;39367:28;;;;;;;;;;;;;;39328:67;39424:1;39410:16;;:2;:16;;;39406:52;;;39435:23;;;;;;;;;;;;;;39406:52;39471:43;39493:4;39499:2;39503:7;39512:1;39471:21;:43::i;:::-;39579:49;39596:1;39600:7;39609:13;:18;;;39579:8;:49::i;:::-;39954:1;39924:12;:18;39937:4;39924:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39998:1;39970:12;:16;39983:2;39970:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40044:2;40016:11;:20;40028:7;40016:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;40106:15;40061:11;:20;40073:7;40061:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;40374:19;40406:1;40396:7;:11;40374:33;;40467:1;40426:43;;:11;:24;40438:11;40426:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;40422:445;;;40651:13;;40637:11;:27;40633:219;;;40721:13;:18;;;40689:11;:24;40701:11;40689:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;40804:13;:28;;;40762:11;:24;40774:11;40762:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;40633:219;40422:445;39899:979;40914:7;40910:2;40895:27;;40904:4;40895:27;;;;;;;;;;;;40933:42;40954:4;40960:2;40964:7;40973:1;40933:20;:42::i;:::-;38975:2008;;38871:2112;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;35953:104::-;36022:27;36032:2;36036:8;36022:27;;;;;;;;;;;;:9;:27::i;:::-;35953:104;;:::o;30916:1108::-;30977:21;;:::i;:::-;31011:12;31026:7;31011:22;;31094:4;31075:15;:13;:15::i;:::-;:23;;:47;;;;;31109:13;;31102:4;:20;31075:47;31071:886;;;31143:31;31177:11;:17;31189:4;31177:17;;;;;;;;;;;31143:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31218:9;:16;;;31213:729;;31289:1;31263:28;;:9;:14;;;:28;;;31259:101;;31327:9;31320:16;;;;;;31259:101;31662:261;31669:4;31662:261;;;31702:6;;;;;;;;31747:11;:17;31759:4;31747:17;;;;;;;;;;;31735:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31821:1;31795:28;;:9;:14;;;:28;;;31791:109;;31863:9;31856:16;;;;;;31791:109;31662:261;;;31213:729;31124:833;31071:886;31985:31;;;;;;;;;;;;;;30916:1108;;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;7323:326::-;7383:4;7640:1;7618:7;:19;;;:23;7611:30;;7323:326;;;:::o;44057:667::-;44220:4;44257:2;44241:36;;;44278:12;:10;:12::i;:::-;44292:4;44298:7;44307:5;44241:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44237:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44492:1;44475:6;:13;:18;44471:235;;;44521:40;;;;;;;;;;;;;;44471:235;44664:6;44658:13;44649:6;44645:2;44641:15;44634:38;44237:480;44370:45;;;44360:55;;;:6;:55;;;;44353:62;;;44057:667;;;;;;:::o;46912:111::-;46973:13;47006:9;46999:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46912:111;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;45372:159::-;;;;;:::o;46190:158::-;;;;;:::o;36420:163::-;36543:32;36549:2;36553:8;36563:5;36570:4;36543:5;:32::i;:::-;36420:163;;;:::o;36842:1775::-;36981:20;37004:13;;36981:36;;37046:1;37032:16;;:2;:16;;;37028:48;;;37057:19;;;;;;;;;;;;;;37028:48;37103:1;37091:8;:13;37087:44;;;37113:18;;;;;;;;;;;;;;37087:44;37144:61;37174:1;37178:2;37182:12;37196:8;37144:21;:61::i;:::-;37517:8;37482:12;:16;37495:2;37482:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37581:8;37541:12;:16;37554:2;37541:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37640:2;37607:11;:25;37619:12;37607:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37707:15;37657:11;:25;37669:12;37657:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37740:20;37763:12;37740:35;;37790:11;37819:8;37804:12;:23;37790:37;;37848:4;:23;;;;;37856:15;:2;:13;;;:15::i;:::-;37848:23;37844:641;;;37892:314;37948:12;37944:2;37923:38;;37940:1;37923:38;;;;;;;;;;;;37989:69;38028:1;38032:2;38036:14;;;;;;38052:5;37989:30;:69::i;:::-;37984:174;;38094:40;;;;;;;;;;;;;;37984:174;38201:3;38185:12;:19;;37892:314;;38287:12;38270:13;;:29;38266:43;;38301:8;;;38266:43;37844:641;;;38350:120;38406:14;;;;;;38402:2;38381:40;;38398:1;38381:40;;;;;;;;;;;;38465:3;38449:12;:19;;38350:120;;37844:641;38515:12;38499:13;:28;;;;37457:1082;;38549:60;38578:1;38582:2;38586:12;38600:8;38549:20;:60::i;:::-;36970:1647;36842:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:::-;9030:3;9051:67;9115:2;9110:3;9051:67;:::i;:::-;9044:74;;9127:93;9216:3;9127:93;:::i;:::-;9245:2;9240:3;9236:12;9229:19;;8888:366;;;:::o;9260:::-;9402:3;9423:67;9487:2;9482:3;9423:67;:::i;:::-;9416:74;;9499:93;9588:3;9499:93;:::i;:::-;9617:2;9612:3;9608:12;9601:19;;9260:366;;;:::o;9632:365::-;9774:3;9795:66;9859:1;9854:3;9795:66;:::i;:::-;9788:73;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9632:365;;;:::o;10003:366::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:398::-;10906:3;10927:83;11008:1;11003:3;10927:83;:::i;:::-;10920:90;;11019:93;11108:3;11019:93;:::i;:::-;11137:1;11132:3;11128:11;11121:18;;10747:398;;;:::o;11151:365::-;11293:3;11314:66;11378:1;11373:3;11314:66;:::i;:::-;11307:73;;11389:93;11478:3;11389:93;:::i;:::-;11507:2;11502:3;11498:12;11491:19;;11151:365;;;:::o;11522:118::-;11609:24;11627:5;11609:24;:::i;:::-;11604:3;11597:37;11522:118;;:::o;11646:115::-;11731:23;11748:5;11731:23;:::i;:::-;11726:3;11719:36;11646:115;;:::o;11767:435::-;11947:3;11969:95;12060:3;12051:6;11969:95;:::i;:::-;11962:102;;12081:95;12172:3;12163:6;12081:95;:::i;:::-;12074:102;;12193:3;12186:10;;11767:435;;;;;:::o;12208:379::-;12392:3;12414:147;12557:3;12414:147;:::i;:::-;12407:154;;12578:3;12571:10;;12208:379;;;:::o;12593:222::-;12686:4;12724:2;12713:9;12709:18;12701:26;;12737:71;12805:1;12794:9;12790:17;12781:6;12737:71;:::i;:::-;12593:222;;;;:::o;12821:640::-;13016:4;13054:3;13043:9;13039:19;13031:27;;13068:71;13136:1;13125:9;13121:17;13112:6;13068:71;:::i;:::-;13149:72;13217:2;13206:9;13202:18;13193:6;13149:72;:::i;:::-;13231;13299:2;13288:9;13284:18;13275:6;13231:72;:::i;:::-;13350:9;13344:4;13340:20;13335:2;13324:9;13320:18;13313:48;13378:76;13449:4;13440:6;13378:76;:::i;:::-;13370:84;;12821:640;;;;;;;:::o;13467:210::-;13554:4;13592:2;13581:9;13577:18;13569:26;;13605:65;13667:1;13656:9;13652:17;13643:6;13605:65;:::i;:::-;13467:210;;;;:::o;13683:313::-;13796:4;13834:2;13823:9;13819:18;13811:26;;13883:9;13877:4;13873:20;13869:1;13858:9;13854:17;13847:47;13911:78;13984:4;13975:6;13911:78;:::i;:::-;13903:86;;13683:313;;;;:::o;14002:419::-;14168:4;14206:2;14195:9;14191:18;14183:26;;14255:9;14249:4;14245:20;14241:1;14230:9;14226:17;14219:47;14283:131;14409:4;14283:131;:::i;:::-;14275:139;;14002:419;;;:::o;14427:::-;14593:4;14631:2;14620:9;14616:18;14608:26;;14680:9;14674:4;14670:20;14666:1;14655:9;14651:17;14644:47;14708:131;14834:4;14708:131;:::i;:::-;14700:139;;14427:419;;;:::o;14852:::-;15018:4;15056:2;15045:9;15041:18;15033:26;;15105:9;15099:4;15095:20;15091:1;15080:9;15076:17;15069:47;15133:131;15259:4;15133:131;:::i;:::-;15125:139;;14852:419;;;:::o;15277:::-;15443:4;15481:2;15470:9;15466:18;15458:26;;15530:9;15524:4;15520:20;15516:1;15505:9;15501:17;15494:47;15558:131;15684:4;15558:131;:::i;:::-;15550:139;;15277:419;;;:::o;15702:::-;15868:4;15906:2;15895:9;15891:18;15883:26;;15955:9;15949:4;15945:20;15941:1;15930:9;15926:17;15919:47;15983:131;16109:4;15983:131;:::i;:::-;15975:139;;15702:419;;;:::o;16127:::-;16293:4;16331:2;16320:9;16316:18;16308:26;;16380:9;16374:4;16370:20;16366:1;16355:9;16351:17;16344:47;16408:131;16534:4;16408:131;:::i;:::-;16400:139;;16127:419;;;:::o;16552:::-;16718:4;16756:2;16745:9;16741:18;16733:26;;16805:9;16799:4;16795:20;16791:1;16780:9;16776:17;16769:47;16833:131;16959:4;16833:131;:::i;:::-;16825:139;;16552:419;;;:::o;16977:222::-;17070:4;17108:2;17097:9;17093:18;17085:26;;17121:71;17189:1;17178:9;17174:17;17165:6;17121:71;:::i;:::-;16977:222;;;;:::o;17205:218::-;17296:4;17334:2;17323:9;17319:18;17311:26;;17347:69;17413:1;17402:9;17398:17;17389:6;17347:69;:::i;:::-;17205:218;;;;:::o;17429:129::-;17463:6;17490:20;;:::i;:::-;17480:30;;17519:33;17547:4;17539:6;17519:33;:::i;:::-;17429:129;;;:::o;17564:75::-;17597:6;17630:2;17624:9;17614:19;;17564:75;:::o;17645:307::-;17706:4;17796:18;17788:6;17785:30;17782:56;;;17818:18;;:::i;:::-;17782:56;17856:29;17878:6;17856:29;:::i;:::-;17848:37;;17940:4;17934;17930:15;17922:23;;17645:307;;;:::o;17958:308::-;18020:4;18110:18;18102:6;18099:30;18096:56;;;18132:18;;:::i;:::-;18096:56;18170:29;18192:6;18170:29;:::i;:::-;18162:37;;18254:4;18248;18244:15;18236:23;;17958:308;;;:::o;18272:98::-;18323:6;18357:5;18351:12;18341:22;;18272:98;;;:::o;18376:99::-;18428:6;18462:5;18456:12;18446:22;;18376:99;;;:::o;18481:168::-;18564:11;18598:6;18593:3;18586:19;18638:4;18633:3;18629:14;18614:29;;18481:168;;;;:::o;18655:147::-;18756:11;18793:3;18778:18;;18655:147;;;;:::o;18808:169::-;18892:11;18926:6;18921:3;18914:19;18966:4;18961:3;18957:14;18942:29;;18808:169;;;;:::o;18983:148::-;19085:11;19122:3;19107:18;;18983:148;;;;:::o;19137:305::-;19177:3;19196:20;19214:1;19196:20;:::i;:::-;19191:25;;19230:20;19248:1;19230:20;:::i;:::-;19225:25;;19384:1;19316:66;19312:74;19309:1;19306:81;19303:107;;;19390:18;;:::i;:::-;19303:107;19434:1;19431;19427:9;19420:16;;19137:305;;;;:::o;19448:185::-;19488:1;19505:20;19523:1;19505:20;:::i;:::-;19500:25;;19539:20;19557:1;19539:20;:::i;:::-;19534:25;;19578:1;19568:35;;19583:18;;:::i;:::-;19568:35;19625:1;19622;19618:9;19613:14;;19448:185;;;;:::o;19639:191::-;19679:4;19699:20;19717:1;19699:20;:::i;:::-;19694:25;;19733:20;19751:1;19733:20;:::i;:::-;19728:25;;19772:1;19769;19766:8;19763:34;;;19777:18;;:::i;:::-;19763:34;19822:1;19819;19815:9;19807:17;;19639:191;;;;:::o;19836:96::-;19873:7;19902:24;19920:5;19902:24;:::i;:::-;19891:35;;19836:96;;;:::o;19938:90::-;19972:7;20015:5;20008:13;20001:21;19990:32;;19938:90;;;:::o;20034:149::-;20070:7;20110:66;20103:5;20099:78;20088:89;;20034:149;;;:::o;20189:126::-;20226:7;20266:42;20259:5;20255:54;20244:65;;20189:126;;;:::o;20321:77::-;20358:7;20387:5;20376:16;;20321:77;;;:::o;20404:93::-;20440:7;20480:10;20473:5;20469:22;20458:33;;20404:93;;;:::o;20503:154::-;20587:6;20582:3;20577;20564:30;20649:1;20640:6;20635:3;20631:16;20624:27;20503:154;;;:::o;20663:307::-;20731:1;20741:113;20755:6;20752:1;20749:13;20741:113;;;20840:1;20835:3;20831:11;20825:18;20821:1;20816:3;20812:11;20805:39;20777:2;20774:1;20770:10;20765:15;;20741:113;;;20872:6;20869:1;20866:13;20863:101;;;20952:1;20943:6;20938:3;20934:16;20927:27;20863:101;20712:258;20663:307;;;:::o;20976:320::-;21020:6;21057:1;21051:4;21047:12;21037:22;;21104:1;21098:4;21094:12;21125:18;21115:81;;21181:4;21173:6;21169:17;21159:27;;21115:81;21243:2;21235:6;21232:14;21212:18;21209:38;21206:84;;;21262:18;;:::i;:::-;21206:84;21027:269;20976:320;;;:::o;21302:281::-;21385:27;21407:4;21385:27;:::i;:::-;21377:6;21373:40;21515:6;21503:10;21500:22;21479:18;21467:10;21464:34;21461:62;21458:88;;;21526:18;;:::i;:::-;21458:88;21566:10;21562:2;21555:22;21345:238;21302:281;;:::o;21589:233::-;21628:3;21651:24;21669:5;21651:24;:::i;:::-;21642:33;;21697:66;21690:5;21687:77;21684:103;;;21767:18;;:::i;:::-;21684:103;21814:1;21807:5;21803:13;21796:20;;21589:233;;;:::o;21828:176::-;21860:1;21877:20;21895:1;21877:20;:::i;:::-;21872:25;;21911:20;21929:1;21911:20;:::i;:::-;21906:25;;21950:1;21940:35;;21955:18;;:::i;:::-;21940:35;21996:1;21993;21989:9;21984:14;;21828:176;;;;:::o;22010:180::-;22058:77;22055:1;22048:88;22155:4;22152:1;22145:15;22179:4;22176:1;22169:15;22196:180;22244:77;22241:1;22234:88;22341:4;22338:1;22331:15;22365:4;22362:1;22355:15;22382:180;22430:77;22427:1;22420:88;22527:4;22524:1;22517:15;22551:4;22548:1;22541:15;22568:180;22616:77;22613:1;22606:88;22713:4;22710:1;22703:15;22737:4;22734:1;22727:15;22754:180;22802:77;22799:1;22792:88;22899:4;22896:1;22889:15;22923:4;22920:1;22913:15;22940:117;23049:1;23046;23039:12;23063:117;23172:1;23169;23162:12;23186:117;23295:1;23292;23285:12;23309:117;23418:1;23415;23408:12;23432:102;23473:6;23524:2;23520:7;23515:2;23508:5;23504:14;23500:28;23490:38;;23432:102;;;:::o;23540:162::-;23680:14;23676:1;23668:6;23664:14;23657:38;23540:162;:::o;23708:225::-;23848:34;23844:1;23836:6;23832:14;23825:58;23917:8;23912:2;23904:6;23900:15;23893:33;23708:225;:::o;23939:174::-;24079:26;24075:1;24067:6;24063:14;24056:50;23939:174;:::o;24119:158::-;24259:10;24255:1;24247:6;24243:14;24236:34;24119:158;:::o;24283:180::-;24423:32;24419:1;24411:6;24407:14;24400:56;24283:180;:::o;24469:182::-;24609:34;24605:1;24597:6;24593:14;24586:58;24469:182;:::o;24657:114::-;;:::o;24777:157::-;24917:9;24913:1;24905:6;24901:14;24894:33;24777:157;:::o;24940:122::-;25013:24;25031:5;25013:24;:::i;:::-;25006:5;25003:35;24993:63;;25052:1;25049;25042:12;24993:63;24940:122;:::o;25068:116::-;25138:21;25153:5;25138:21;:::i;:::-;25131:5;25128:32;25118:60;;25174:1;25171;25164:12;25118:60;25068:116;:::o;25190:120::-;25262:23;25279:5;25262:23;:::i;:::-;25255:5;25252:34;25242:62;;25300:1;25297;25290:12;25242:62;25190:120;:::o;25316:122::-;25389:24;25407:5;25389:24;:::i;:::-;25382:5;25379:35;25369:63;;25428:1;25425;25418:12;25369:63;25316:122;:::o

Swarm Source

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