ETH Price: $3,384.99 (-2.76%)
Gas: 1 Gwei

Token

Circle (cle)
 

Overview

Max Total Supply

1,000 cle

Holders

421

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 cle
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:
Circle

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

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contract.sol


pragma solidity ^0.8.4;



contract Circle is ERC721A, Ownable {
    using Strings for uint256;

    uint256 MAX_MINTS = 3;
    uint256 MAX_SUPPLY = 1000;
    bool private paused = true;
    uint256 MAX_FREE = 1000;
    uint256 public mintRate = 0 ether;

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

    constructor() ERC721A("Circle", "cle") {}

    modifier callerIsuser(){
        require(tx.origin ==msg.sender, "Can't be called from contract");
        _;
    }

    function mint(uint256 quantity) external payable callerIsuser {
        uint256 freemint = 0 ether;
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(!paused);
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        if(totalSupply() + quantity <=MAX_FREE){
            require(msg.value >= (freemint * quantity), "Not enough ether sent");
        }
        else{
            require(msg.value >= (mintRate * quantity), "Not enough ether sent");
        }
        _safeMint(msg.sender, quantity);
    }

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

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
      require( _exists(tokenId),"ERC721Metadata: URI query for nonexistent token");
      string memory currentBaseURI = _baseURI();
      uint256 trueid = tokenId + 1;
      return bytes(currentBaseURI).length > 0
          ? string(abi.encodePacked(currentBaseURI, trueid.toString() , ".json"))
          : "";
    }

    
    function withdrawsplitter() external payable onlyOwner {
        uint balance = address(this).balance;
        address ad1 = 0x46c3C184a54A4116591Bcd4616624a23adf63217;
        //split
        payable(ad1).transfer((balance *100) / 100);
    }

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

  function setMaxPerWallet(uint256 newmaxperwallet) public onlyOwner {
      MAX_MINTS = newmaxperwallet;
  }

    
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newmaxperwallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawsplitter","outputs":[],"stateMutability":"payable","type":"function"}]

608060405260036009556103e8600a556001600b60006101000a81548160ff0219169083151502179055506103e8600c556000600d556040518060400160405280601181526020017f697066733a2f2f746865636972636c652f000000000000000000000000000000815250600e90805190602001906200008292919062000240565b503480156200009057600080fd5b506040518060400160405280600681526020017f436972636c6500000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f636c65000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200011592919062000240565b5080600390805190602001906200012e92919062000240565b506200013f6200016d60201b60201c565b6000819055505050620001676200015b6200017260201b60201c565b6200017a60201b60201c565b62000355565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024e90620002f0565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b600060028204905060018216806200030957607f821691505b6020821081141562000320576200031f62000326565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6134eb80620003656000396000f3fe60806040526004361061014b5760003560e01c8063715018a6116100b6578063c87b56dd1161006f578063c87b56dd1461044e578063ca0dcf161461048b578063e268e4d3146104b6578063e985e9c5146104df578063f2fde38b1461051c578063fa807239146105455761014b565b8063715018a6146103735780638da5cb5b1461038a57806395d89b41146103b5578063a0712d68146103e0578063a22cb465146103fc578063b88d4fde146104255761014b565b80632c1886b5116101085780632c1886b51461027257806342842e0e1461027c57806355f804b3146102a55780636352211e146102ce5780636c0360eb1461030b57806370a08231146103365761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906129bd565b61056e565b6040516101849190612d0b565b60405180910390f35b34801561019957600080fd5b506101a2610650565b6040516101af9190612d26565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612a60565b6106e2565b6040516101ec9190612ca4565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612950565b61075e565b005b34801561022a57600080fd5b50610233610863565b6040516102409190612e28565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b919061283a565b61087a565b005b61027a61088a565b005b34801561028857600080fd5b506102a3600480360381019061029e919061283a565b610986565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612a17565b6109a6565b005b3480156102da57600080fd5b506102f560048036038101906102f09190612a60565b610a3c565b6040516103029190612ca4565b60405180910390f35b34801561031757600080fd5b50610320610a52565b60405161032d9190612d26565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906127cd565b610ae0565b60405161036a9190612e28565b60405180910390f35b34801561037f57600080fd5b50610388610bb0565b005b34801561039657600080fd5b5061039f610c38565b6040516103ac9190612ca4565b60405180910390f35b3480156103c157600080fd5b506103ca610c62565b6040516103d79190612d26565b60405180910390f35b6103fa60048036038101906103f59190612a60565b610cf4565b005b34801561040857600080fd5b50610423600480360381019061041e9190612910565b610efa565b005b34801561043157600080fd5b5061044c6004803603810190610447919061288d565b611072565b005b34801561045a57600080fd5b5061047560048036038101906104709190612a60565b6110ea565b6040516104829190612d26565b60405180910390f35b34801561049757600080fd5b506104a06111a3565b6040516104ad9190612e28565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612a60565b6111a9565b005b3480156104eb57600080fd5b50610506600480360381019061050191906127fa565b61122f565b6040516105139190612d0b565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906127cd565b6112c3565b005b34801561055157600080fd5b5061056c60048036038101906105679190612990565b6113bb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610649575061064882611454565b5b9050919050565b60606002805461065f906130d8565b80601f016020809104026020016040519081016040528092919081815260200182805461068b906130d8565b80156106d85780601f106106ad576101008083540402835291602001916106d8565b820191906000526020600020905b8154815290600101906020018083116106bb57829003601f168201915b5050505050905090565b60006106ed826114be565b610723576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076982610a3c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f061150c565b73ffffffffffffffffffffffffffffffffffffffff16146108535761081c8161081761150c565b61122f565b610852576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61085e838383611514565b505050565b600061086d6115c6565b6001546000540303905090565b6108858383836115cb565b505050565b61089261150c565b73ffffffffffffffffffffffffffffffffffffffff166108b0610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90612dc8565b60405180910390fd5b600047905060007346c3c184a54a4116591bcd4616624a23adf6321790508073ffffffffffffffffffffffffffffffffffffffff166108fc6064808561094c9190612f94565b6109569190612f63565b9081150290604051600060405180830381858888f19350505050158015610981573d6000803e3d6000fd5b505050565b6109a183838360405180602001604052806000815250611072565b505050565b6109ae61150c565b73ffffffffffffffffffffffffffffffffffffffff166109cc610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990612dc8565b60405180910390fd5b80600e9080519060200190610a3892919061259e565b5050565b6000610a4782611a81565b600001519050919050565b600e8054610a5f906130d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8b906130d8565b8015610ad85780601f10610aad57610100808354040283529160200191610ad8565b820191906000526020600020905b815481529060010190602001808311610abb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b48576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610bb861150c565b73ffffffffffffffffffffffffffffffffffffffff16610bd6610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390612dc8565b60405180910390fd5b610c366000611d0c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c71906130d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d906130d8565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990612d48565b60405180910390fd5b6000600954610d7033611dd2565b83610d7b9190612f0d565b1115610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390612d88565b60405180910390fd5b600b60009054906101000a900460ff1615610dd657600080fd5b600a5482610de2610863565b610dec9190612f0d565b1115610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490612da8565b60405180910390fd5b600c5482610e39610863565b610e439190612f0d565b11610e9b578181610e549190612f94565b341015610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d90612e08565b60405180910390fd5b610eec565b81600d54610ea99190612f94565b341015610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee290612e08565b60405180910390fd5b5b610ef63383611e3c565b5050565b610f0261150c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f67576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f7461150c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661102161150c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110669190612d0b565b60405180910390a35050565b61107d8484846115cb565b61109c8373ffffffffffffffffffffffffffffffffffffffff16611e5a565b156110e4576110ad84848484611e7d565b6110e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110f5826114be565b611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90612de8565b60405180910390fd5b600061113e611fdd565b9050600060018461114f9190612f0d565b9050600082511161116f576040518060200160405280600081525061119a565b816111798261206f565b60405160200161118a929190612c75565b6040516020818303038152906040525b92505050919050565b600d5481565b6111b161150c565b73ffffffffffffffffffffffffffffffffffffffff166111cf610c38565b73ffffffffffffffffffffffffffffffffffffffff1614611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90612dc8565b60405180910390fd5b8060098190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112cb61150c565b73ffffffffffffffffffffffffffffffffffffffff166112e9610c38565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690612dc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612d68565b60405180910390fd5b6113b881611d0c565b50565b6113c361150c565b73ffffffffffffffffffffffffffffffffffffffff166113e1610c38565b73ffffffffffffffffffffffffffffffffffffffff1614611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90612dc8565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114c96115c6565b111580156114d8575060005482105b8015611505575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006115d682611a81565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611641576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661166261150c565b73ffffffffffffffffffffffffffffffffffffffff16148061169157506116908561168b61150c565b61122f565b5b806116d6575061169f61150c565b73ffffffffffffffffffffffffffffffffffffffff166116be846106e2565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061170f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611776576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178385858560016121d0565b61178f60008487611514565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a0f576000548214611a0e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7a85858560016121d6565b5050505050565b611a89612624565b600082905080611a976115c6565b11611cd557600054811015611cd4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cd257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bb6578092505050611d07565b5b600115611cd157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ccc578092505050611d07565b611bb7565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611e568282604051806020016040528060008152506121dc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea361150c565b8786866040518563ffffffff1660e01b8152600401611ec59493929190612cbf565b602060405180830381600087803b158015611edf57600080fd5b505af1925050508015611f1057506040513d601f19601f82011682018060405250810190611f0d91906129ea565b60015b611f8a573d8060008114611f40576040519150601f19603f3d011682016040523d82523d6000602084013e611f45565b606091505b50600081511415611f82576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611fec906130d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612018906130d8565b80156120655780601f1061203a57610100808354040283529160200191612065565b820191906000526020600020905b81548152906001019060200180831161204857829003601f168201915b5050505050905090565b606060008214156120b7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121cb565b600082905060005b600082146120e95780806120d29061313b565b915050600a826120e29190612f63565b91506120bf565b60008167ffffffffffffffff81111561210557612104613271565b5b6040519080825280601f01601f1916602001820160405280156121375781602001600182028036833780820191505090505b5090505b600085146121c4576001826121509190612fee565b9150600a8561215f9190613184565b603061216b9190612f0d565b60f81b81838151811061218157612180613242565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121bd9190612f63565b945061213b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612249576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612284576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229160008583866121d0565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506124528673ffffffffffffffffffffffffffffffffffffffff16611e5a565b15612517575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124c76000878480600101955087611e7d565b6124fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061245857826000541461251257600080fd5b612582565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612518575b81600081905550505061259860008583866121d6565b50505050565b8280546125aa906130d8565b90600052602060002090601f0160209004810192826125cc5760008555612613565b82601f106125e557805160ff1916838001178555612613565b82800160010185558215612613579182015b828111156126125782518255916020019190600101906125f7565b5b5090506126209190612667565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612680576000816000905550600101612668565b5090565b600061269761269284612e68565b612e43565b9050828152602081018484840111156126b3576126b26132a5565b5b6126be848285613096565b509392505050565b60006126d96126d484612e99565b612e43565b9050828152602081018484840111156126f5576126f46132a5565b5b612700848285613096565b509392505050565b60008135905061271781613459565b92915050565b60008135905061272c81613470565b92915050565b60008135905061274181613487565b92915050565b60008151905061275681613487565b92915050565b600082601f830112612771576127706132a0565b5b8135612781848260208601612684565b91505092915050565b600082601f83011261279f5761279e6132a0565b5b81356127af8482602086016126c6565b91505092915050565b6000813590506127c78161349e565b92915050565b6000602082840312156127e3576127e26132af565b5b60006127f184828501612708565b91505092915050565b60008060408385031215612811576128106132af565b5b600061281f85828601612708565b925050602061283085828601612708565b9150509250929050565b600080600060608486031215612853576128526132af565b5b600061286186828701612708565b935050602061287286828701612708565b9250506040612883868287016127b8565b9150509250925092565b600080600080608085870312156128a7576128a66132af565b5b60006128b587828801612708565b94505060206128c687828801612708565b93505060406128d7878288016127b8565b925050606085013567ffffffffffffffff8111156128f8576128f76132aa565b5b6129048782880161275c565b91505092959194509250565b60008060408385031215612927576129266132af565b5b600061293585828601612708565b92505060206129468582860161271d565b9150509250929050565b60008060408385031215612967576129666132af565b5b600061297585828601612708565b9250506020612986858286016127b8565b9150509250929050565b6000602082840312156129a6576129a56132af565b5b60006129b48482850161271d565b91505092915050565b6000602082840312156129d3576129d26132af565b5b60006129e184828501612732565b91505092915050565b600060208284031215612a00576129ff6132af565b5b6000612a0e84828501612747565b91505092915050565b600060208284031215612a2d57612a2c6132af565b5b600082013567ffffffffffffffff811115612a4b57612a4a6132aa565b5b612a578482850161278a565b91505092915050565b600060208284031215612a7657612a756132af565b5b6000612a84848285016127b8565b91505092915050565b612a9681613022565b82525050565b612aa581613034565b82525050565b6000612ab682612eca565b612ac08185612ee0565b9350612ad08185602086016130a5565b612ad9816132b4565b840191505092915050565b6000612aef82612ed5565b612af98185612ef1565b9350612b098185602086016130a5565b612b12816132b4565b840191505092915050565b6000612b2882612ed5565b612b328185612f02565b9350612b428185602086016130a5565b80840191505092915050565b6000612b5b601d83612ef1565b9150612b66826132c5565b602082019050919050565b6000612b7e602683612ef1565b9150612b89826132ee565b604082019050919050565b6000612ba1601283612ef1565b9150612bac8261333d565b602082019050919050565b6000612bc4601683612ef1565b9150612bcf82613366565b602082019050919050565b6000612be7600583612f02565b9150612bf28261338f565b600582019050919050565b6000612c0a602083612ef1565b9150612c15826133b8565b602082019050919050565b6000612c2d602f83612ef1565b9150612c38826133e1565b604082019050919050565b6000612c50601583612ef1565b9150612c5b82613430565b602082019050919050565b612c6f8161308c565b82525050565b6000612c818285612b1d565b9150612c8d8284612b1d565b9150612c9882612bda565b91508190509392505050565b6000602082019050612cb96000830184612a8d565b92915050565b6000608082019050612cd46000830187612a8d565b612ce16020830186612a8d565b612cee6040830185612c66565b8181036060830152612d008184612aab565b905095945050505050565b6000602082019050612d206000830184612a9c565b92915050565b60006020820190508181036000830152612d408184612ae4565b905092915050565b60006020820190508181036000830152612d6181612b4e565b9050919050565b60006020820190508181036000830152612d8181612b71565b9050919050565b60006020820190508181036000830152612da181612b94565b9050919050565b60006020820190508181036000830152612dc181612bb7565b9050919050565b60006020820190508181036000830152612de181612bfd565b9050919050565b60006020820190508181036000830152612e0181612c20565b9050919050565b60006020820190508181036000830152612e2181612c43565b9050919050565b6000602082019050612e3d6000830184612c66565b92915050565b6000612e4d612e5e565b9050612e59828261310a565b919050565b6000604051905090565b600067ffffffffffffffff821115612e8357612e82613271565b5b612e8c826132b4565b9050602081019050919050565b600067ffffffffffffffff821115612eb457612eb3613271565b5b612ebd826132b4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f188261308c565b9150612f238361308c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5857612f576131b5565b5b828201905092915050565b6000612f6e8261308c565b9150612f798361308c565b925082612f8957612f886131e4565b5b828204905092915050565b6000612f9f8261308c565b9150612faa8361308c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fe357612fe26131b5565b5b828202905092915050565b6000612ff98261308c565b91506130048361308c565b925082821015613017576130166131b5565b5b828203905092915050565b600061302d8261306c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130c35780820151818401526020810190506130a8565b838111156130d2576000848401525b50505050565b600060028204905060018216806130f057607f821691505b6020821081141561310457613103613213565b5b50919050565b613113826132b4565b810181811067ffffffffffffffff8211171561313257613131613271565b5b80604052505050565b60006131468261308c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613179576131786131b5565b5b600182019050919050565b600061318f8261308c565b915061319a8361308c565b9250826131aa576131a96131e4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e27742062652063616c6c65642066726f6d20636f6e7472616374000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b61346281613022565b811461346d57600080fd5b50565b61347981613034565b811461348457600080fd5b50565b61349081613040565b811461349b57600080fd5b50565b6134a78161308c565b81146134b257600080fd5b5056fea26469706673582212206a709a6bbe11b4262b9dcf01de122d617004e91cf65575dd5ba91fa9329c420764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c8063715018a6116100b6578063c87b56dd1161006f578063c87b56dd1461044e578063ca0dcf161461048b578063e268e4d3146104b6578063e985e9c5146104df578063f2fde38b1461051c578063fa807239146105455761014b565b8063715018a6146103735780638da5cb5b1461038a57806395d89b41146103b5578063a0712d68146103e0578063a22cb465146103fc578063b88d4fde146104255761014b565b80632c1886b5116101085780632c1886b51461027257806342842e0e1461027c57806355f804b3146102a55780636352211e146102ce5780636c0360eb1461030b57806370a08231146103365761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e57806323b872dd14610249575b600080fd5b34801561015c57600080fd5b50610177600480360381019061017291906129bd565b61056e565b6040516101849190612d0b565b60405180910390f35b34801561019957600080fd5b506101a2610650565b6040516101af9190612d26565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612a60565b6106e2565b6040516101ec9190612ca4565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190612950565b61075e565b005b34801561022a57600080fd5b50610233610863565b6040516102409190612e28565b60405180910390f35b34801561025557600080fd5b50610270600480360381019061026b919061283a565b61087a565b005b61027a61088a565b005b34801561028857600080fd5b506102a3600480360381019061029e919061283a565b610986565b005b3480156102b157600080fd5b506102cc60048036038101906102c79190612a17565b6109a6565b005b3480156102da57600080fd5b506102f560048036038101906102f09190612a60565b610a3c565b6040516103029190612ca4565b60405180910390f35b34801561031757600080fd5b50610320610a52565b60405161032d9190612d26565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906127cd565b610ae0565b60405161036a9190612e28565b60405180910390f35b34801561037f57600080fd5b50610388610bb0565b005b34801561039657600080fd5b5061039f610c38565b6040516103ac9190612ca4565b60405180910390f35b3480156103c157600080fd5b506103ca610c62565b6040516103d79190612d26565b60405180910390f35b6103fa60048036038101906103f59190612a60565b610cf4565b005b34801561040857600080fd5b50610423600480360381019061041e9190612910565b610efa565b005b34801561043157600080fd5b5061044c6004803603810190610447919061288d565b611072565b005b34801561045a57600080fd5b5061047560048036038101906104709190612a60565b6110ea565b6040516104829190612d26565b60405180910390f35b34801561049757600080fd5b506104a06111a3565b6040516104ad9190612e28565b60405180910390f35b3480156104c257600080fd5b506104dd60048036038101906104d89190612a60565b6111a9565b005b3480156104eb57600080fd5b50610506600480360381019061050191906127fa565b61122f565b6040516105139190612d0b565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e91906127cd565b6112c3565b005b34801561055157600080fd5b5061056c60048036038101906105679190612990565b6113bb565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061063957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610649575061064882611454565b5b9050919050565b60606002805461065f906130d8565b80601f016020809104026020016040519081016040528092919081815260200182805461068b906130d8565b80156106d85780601f106106ad576101008083540402835291602001916106d8565b820191906000526020600020905b8154815290600101906020018083116106bb57829003601f168201915b5050505050905090565b60006106ed826114be565b610723576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061076982610a3c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107f061150c565b73ffffffffffffffffffffffffffffffffffffffff16146108535761081c8161081761150c565b61122f565b610852576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61085e838383611514565b505050565b600061086d6115c6565b6001546000540303905090565b6108858383836115cb565b505050565b61089261150c565b73ffffffffffffffffffffffffffffffffffffffff166108b0610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108fd90612dc8565b60405180910390fd5b600047905060007346c3c184a54a4116591bcd4616624a23adf6321790508073ffffffffffffffffffffffffffffffffffffffff166108fc6064808561094c9190612f94565b6109569190612f63565b9081150290604051600060405180830381858888f19350505050158015610981573d6000803e3d6000fd5b505050565b6109a183838360405180602001604052806000815250611072565b505050565b6109ae61150c565b73ffffffffffffffffffffffffffffffffffffffff166109cc610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1990612dc8565b60405180910390fd5b80600e9080519060200190610a3892919061259e565b5050565b6000610a4782611a81565b600001519050919050565b600e8054610a5f906130d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8b906130d8565b8015610ad85780601f10610aad57610100808354040283529160200191610ad8565b820191906000526020600020905b815481529060010190602001808311610abb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b48576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610bb861150c565b73ffffffffffffffffffffffffffffffffffffffff16610bd6610c38565b73ffffffffffffffffffffffffffffffffffffffff1614610c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2390612dc8565b60405180910390fd5b610c366000611d0c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c71906130d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610c9d906130d8565b8015610cea5780601f10610cbf57610100808354040283529160200191610cea565b820191906000526020600020905b815481529060010190602001808311610ccd57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5990612d48565b60405180910390fd5b6000600954610d7033611dd2565b83610d7b9190612f0d565b1115610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390612d88565b60405180910390fd5b600b60009054906101000a900460ff1615610dd657600080fd5b600a5482610de2610863565b610dec9190612f0d565b1115610e2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2490612da8565b60405180910390fd5b600c5482610e39610863565b610e439190612f0d565b11610e9b578181610e549190612f94565b341015610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d90612e08565b60405180910390fd5b610eec565b81600d54610ea99190612f94565b341015610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee290612e08565b60405180910390fd5b5b610ef63383611e3c565b5050565b610f0261150c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f67576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f7461150c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661102161150c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110669190612d0b565b60405180910390a35050565b61107d8484846115cb565b61109c8373ffffffffffffffffffffffffffffffffffffffff16611e5a565b156110e4576110ad84848484611e7d565b6110e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606110f5826114be565b611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b90612de8565b60405180910390fd5b600061113e611fdd565b9050600060018461114f9190612f0d565b9050600082511161116f576040518060200160405280600081525061119a565b816111798261206f565b60405160200161118a929190612c75565b6040516020818303038152906040525b92505050919050565b600d5481565b6111b161150c565b73ffffffffffffffffffffffffffffffffffffffff166111cf610c38565b73ffffffffffffffffffffffffffffffffffffffff1614611225576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121c90612dc8565b60405180910390fd5b8060098190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112cb61150c565b73ffffffffffffffffffffffffffffffffffffffff166112e9610c38565b73ffffffffffffffffffffffffffffffffffffffff161461133f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133690612dc8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a690612d68565b60405180910390fd5b6113b881611d0c565b50565b6113c361150c565b73ffffffffffffffffffffffffffffffffffffffff166113e1610c38565b73ffffffffffffffffffffffffffffffffffffffff1614611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90612dc8565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114c96115c6565b111580156114d8575060005482105b8015611505575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006115d682611a81565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611641576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661166261150c565b73ffffffffffffffffffffffffffffffffffffffff16148061169157506116908561168b61150c565b61122f565b5b806116d6575061169f61150c565b73ffffffffffffffffffffffffffffffffffffffff166116be846106e2565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061170f576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611776576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61178385858560016121d0565b61178f60008487611514565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a0f576000548214611a0e57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7a85858560016121d6565b5050505050565b611a89612624565b600082905080611a976115c6565b11611cd557600054811015611cd4576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611cd257600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bb6578092505050611d07565b5b600115611cd157818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611ccc578092505050611d07565b611bb7565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611e568282604051806020016040528060008152506121dc565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea361150c565b8786866040518563ffffffff1660e01b8152600401611ec59493929190612cbf565b602060405180830381600087803b158015611edf57600080fd5b505af1925050508015611f1057506040513d601f19601f82011682018060405250810190611f0d91906129ea565b60015b611f8a573d8060008114611f40576040519150601f19603f3d011682016040523d82523d6000602084013e611f45565b606091505b50600081511415611f82576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611fec906130d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612018906130d8565b80156120655780601f1061203a57610100808354040283529160200191612065565b820191906000526020600020905b81548152906001019060200180831161204857829003601f168201915b5050505050905090565b606060008214156120b7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121cb565b600082905060005b600082146120e95780806120d29061313b565b915050600a826120e29190612f63565b91506120bf565b60008167ffffffffffffffff81111561210557612104613271565b5b6040519080825280601f01601f1916602001820160405280156121375781602001600182028036833780820191505090505b5090505b600085146121c4576001826121509190612fee565b9150600a8561215f9190613184565b603061216b9190612f0d565b60f81b81838151811061218157612180613242565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121bd9190612f63565b945061213b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612249576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612284576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61229160008583866121d0565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506124528673ffffffffffffffffffffffffffffffffffffffff16611e5a565b15612517575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124c76000878480600101955087611e7d565b6124fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061245857826000541461251257600080fd5b612582565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612518575b81600081905550505061259860008583866121d6565b50505050565b8280546125aa906130d8565b90600052602060002090601f0160209004810192826125cc5760008555612613565b82601f106125e557805160ff1916838001178555612613565b82800160010185558215612613579182015b828111156126125782518255916020019190600101906125f7565b5b5090506126209190612667565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612680576000816000905550600101612668565b5090565b600061269761269284612e68565b612e43565b9050828152602081018484840111156126b3576126b26132a5565b5b6126be848285613096565b509392505050565b60006126d96126d484612e99565b612e43565b9050828152602081018484840111156126f5576126f46132a5565b5b612700848285613096565b509392505050565b60008135905061271781613459565b92915050565b60008135905061272c81613470565b92915050565b60008135905061274181613487565b92915050565b60008151905061275681613487565b92915050565b600082601f830112612771576127706132a0565b5b8135612781848260208601612684565b91505092915050565b600082601f83011261279f5761279e6132a0565b5b81356127af8482602086016126c6565b91505092915050565b6000813590506127c78161349e565b92915050565b6000602082840312156127e3576127e26132af565b5b60006127f184828501612708565b91505092915050565b60008060408385031215612811576128106132af565b5b600061281f85828601612708565b925050602061283085828601612708565b9150509250929050565b600080600060608486031215612853576128526132af565b5b600061286186828701612708565b935050602061287286828701612708565b9250506040612883868287016127b8565b9150509250925092565b600080600080608085870312156128a7576128a66132af565b5b60006128b587828801612708565b94505060206128c687828801612708565b93505060406128d7878288016127b8565b925050606085013567ffffffffffffffff8111156128f8576128f76132aa565b5b6129048782880161275c565b91505092959194509250565b60008060408385031215612927576129266132af565b5b600061293585828601612708565b92505060206129468582860161271d565b9150509250929050565b60008060408385031215612967576129666132af565b5b600061297585828601612708565b9250506020612986858286016127b8565b9150509250929050565b6000602082840312156129a6576129a56132af565b5b60006129b48482850161271d565b91505092915050565b6000602082840312156129d3576129d26132af565b5b60006129e184828501612732565b91505092915050565b600060208284031215612a00576129ff6132af565b5b6000612a0e84828501612747565b91505092915050565b600060208284031215612a2d57612a2c6132af565b5b600082013567ffffffffffffffff811115612a4b57612a4a6132aa565b5b612a578482850161278a565b91505092915050565b600060208284031215612a7657612a756132af565b5b6000612a84848285016127b8565b91505092915050565b612a9681613022565b82525050565b612aa581613034565b82525050565b6000612ab682612eca565b612ac08185612ee0565b9350612ad08185602086016130a5565b612ad9816132b4565b840191505092915050565b6000612aef82612ed5565b612af98185612ef1565b9350612b098185602086016130a5565b612b12816132b4565b840191505092915050565b6000612b2882612ed5565b612b328185612f02565b9350612b428185602086016130a5565b80840191505092915050565b6000612b5b601d83612ef1565b9150612b66826132c5565b602082019050919050565b6000612b7e602683612ef1565b9150612b89826132ee565b604082019050919050565b6000612ba1601283612ef1565b9150612bac8261333d565b602082019050919050565b6000612bc4601683612ef1565b9150612bcf82613366565b602082019050919050565b6000612be7600583612f02565b9150612bf28261338f565b600582019050919050565b6000612c0a602083612ef1565b9150612c15826133b8565b602082019050919050565b6000612c2d602f83612ef1565b9150612c38826133e1565b604082019050919050565b6000612c50601583612ef1565b9150612c5b82613430565b602082019050919050565b612c6f8161308c565b82525050565b6000612c818285612b1d565b9150612c8d8284612b1d565b9150612c9882612bda565b91508190509392505050565b6000602082019050612cb96000830184612a8d565b92915050565b6000608082019050612cd46000830187612a8d565b612ce16020830186612a8d565b612cee6040830185612c66565b8181036060830152612d008184612aab565b905095945050505050565b6000602082019050612d206000830184612a9c565b92915050565b60006020820190508181036000830152612d408184612ae4565b905092915050565b60006020820190508181036000830152612d6181612b4e565b9050919050565b60006020820190508181036000830152612d8181612b71565b9050919050565b60006020820190508181036000830152612da181612b94565b9050919050565b60006020820190508181036000830152612dc181612bb7565b9050919050565b60006020820190508181036000830152612de181612bfd565b9050919050565b60006020820190508181036000830152612e0181612c20565b9050919050565b60006020820190508181036000830152612e2181612c43565b9050919050565b6000602082019050612e3d6000830184612c66565b92915050565b6000612e4d612e5e565b9050612e59828261310a565b919050565b6000604051905090565b600067ffffffffffffffff821115612e8357612e82613271565b5b612e8c826132b4565b9050602081019050919050565b600067ffffffffffffffff821115612eb457612eb3613271565b5b612ebd826132b4565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612f188261308c565b9150612f238361308c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612f5857612f576131b5565b5b828201905092915050565b6000612f6e8261308c565b9150612f798361308c565b925082612f8957612f886131e4565b5b828204905092915050565b6000612f9f8261308c565b9150612faa8361308c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612fe357612fe26131b5565b5b828202905092915050565b6000612ff98261308c565b91506130048361308c565b925082821015613017576130166131b5565b5b828203905092915050565b600061302d8261306c565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156130c35780820151818401526020810190506130a8565b838111156130d2576000848401525b50505050565b600060028204905060018216806130f057607f821691505b6020821081141561310457613103613213565b5b50919050565b613113826132b4565b810181811067ffffffffffffffff8211171561313257613131613271565b5b80604052505050565b60006131468261308c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613179576131786131b5565b5b600182019050919050565b600061318f8261308c565b915061319a8361308c565b9250826131aa576131a96131e4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f43616e27742062652063616c6c65642066726f6d20636f6e7472616374000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b61346281613022565b811461346d57600080fd5b50565b61347981613034565b811461348457600080fd5b50565b61349081613040565b811461349b57600080fd5b50565b6134a78161308c565b81146134b257600080fd5b5056fea26469706673582212206a709a6bbe11b4262b9dcf01de122d617004e91cf65575dd5ba91fa9329c420764736f6c63430008070033

Deployed Bytecode Sourcemap

47450:2185:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28578:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31693:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33197:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32759:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27818:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34062:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49180:248;;;:::i;:::-;;34303:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48639:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31501:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47692:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28947:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31862:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47919:604;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33473:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34559:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48751:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47650:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49515:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33831:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49434:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28578:305;28680:4;28732:25;28717:40;;;:11;:40;;;;:105;;;;28789:33;28774:48;;;:11;:48;;;;28717:105;:158;;;;28839:36;28863:11;28839:23;:36::i;:::-;28717:158;28697:178;;28578:305;;;:::o;31693:100::-;31747:13;31780:5;31773:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31693:100;:::o;33197:204::-;33265:7;33290:16;33298:7;33290;:16::i;:::-;33285:64;;33315:34;;;;;;;;;;;;;;33285:64;33369:15;:24;33385:7;33369:24;;;;;;;;;;;;;;;;;;;;;33362:31;;33197:204;;;:::o;32759:372::-;32832:13;32848:24;32864:7;32848:15;:24::i;:::-;32832:40;;32893:5;32887:11;;:2;:11;;;32883:48;;;32907:24;;;;;;;;;;;;;;32883:48;32964:5;32948:21;;:12;:10;:12::i;:::-;:21;;;32944:139;;32975:37;32992:5;32999:12;:10;:12::i;:::-;32975:16;:37::i;:::-;32971:112;;33036:35;;;;;;;;;;;;;;32971:112;32944:139;33095:28;33104:2;33108:7;33117:5;33095:8;:28::i;:::-;32821:310;32759:372;;:::o;27818:312::-;27871:7;28096:15;:13;:15::i;:::-;28081:12;;28065:13;;:28;:46;28058:53;;27818:312;:::o;34062:170::-;34196:28;34206:4;34212:2;34216:7;34196:9;:28::i;:::-;34062:170;;;:::o;49180:248::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49246:12:::1;49261:21;49246:36;;49293:11;49307:42;49293:56;;49385:3;49377:21;;:43;49416:3;49409::::0;49400:7:::1;:12;;;;:::i;:::-;49399:20;;;;:::i;:::-;49377:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49235:193;;49180:248::o:0;34303:185::-;34441:39;34458:4;34464:2;34468:7;34441:39;;;;;;;;;;;;:16;:39::i;:::-;34303:185;;;:::o;48639:104::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48724:11:::1;48714:7;:21;;;;;;;;;;;;:::i;:::-;;48639:104:::0;:::o;31501:125::-;31565:7;31592:21;31605:7;31592:12;:21::i;:::-;:26;;;31585:33;;31501:125;;;:::o;47692:43::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28947:206::-;29011:7;29052:1;29035:19;;:5;:19;;;29031:60;;;29063:28;;;;;;;;;;;;;;29031:60;29117:12;:19;29130:5;29117:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29109:36;;29102:43;;28947:206;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;31862:104::-;31918:13;31951:7;31944:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31862:104;:::o;47919:604::-;47847:10;47835:22;;:9;:22;;;47827:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47992:16:::1;48077:9;;48048:25;48062:10;48048:13;:25::i;:::-;48037:8;:36;;;;:::i;:::-;:49;;48029:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;48129:6;;;;;;;;;;;48128:7;48120:16;;;::::0;::::1;;48183:10;;48171:8;48155:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48147:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48261:8;;48250;48234:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:35;48231:243;;48318:8;48307;:19;;;;:::i;:::-;48293:9;:34;;48285:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48231:243;;;48427:8;48416;;:19;;;;:::i;:::-;48402:9;:34;;48394:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48231:243;48484:31;48494:10;48506:8;48484:9;:31::i;:::-;47981:542;47919:604:::0;:::o;33473:287::-;33584:12;:10;:12::i;:::-;33572:24;;:8;:24;;;33568:54;;;33605:17;;;;;;;;;;;;;;33568:54;33680:8;33635:18;:32;33654:12;:10;:12::i;:::-;33635:32;;;;;;;;;;;;;;;:42;33668:8;33635:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;33733:8;33704:48;;33719:12;:10;:12::i;:::-;33704:48;;;33743:8;33704:48;;;;;;:::i;:::-;;;;;;;;33473:287;;:::o;34559:370::-;34726:28;34736:4;34742:2;34746:7;34726:9;:28::i;:::-;34769:15;:2;:13;;;:15::i;:::-;34765:157;;;34790:56;34821:4;34827:2;34831:7;34840:5;34790:30;:56::i;:::-;34786:136;;34870:40;;;;;;;;;;;;;;34786:136;34765:157;34559:370;;;;:::o;48751:415::-;48824:13;48857:16;48865:7;48857;:16::i;:::-;48848:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;48933:28;48964:10;:8;:10::i;:::-;48933:41;;48983:14;49010:1;49000:7;:11;;;;:::i;:::-;48983:28;;49058:1;49033:14;49027:28;:32;:131;;;;;;;;;;;;;;;;;49097:14;49113:17;:6;:15;:17::i;:::-;49080:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49027:131;49020:138;;;;48751:415;;;:::o;47650:33::-;;;;:::o;49515:109::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49603:15:::1;49591:9;:27;;;;49515:109:::0;:::o;33831:164::-;33928:4;33952:18;:25;33971:5;33952:25;;;;;;;;;;;;;;;:35;33978:8;33952:35;;;;;;;;;;;;;;;;;;;;;;;;;33945:42;;33831:164;;;;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;49434:75::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49497:6:::1;49488;;:15;;;;;;;;;;;;;;;;;;49434:75:::0;:::o;16919:157::-;17004:4;17043:25;17028:40;;;:11;:40;;;;17021:47;;16919:157;;;:::o;35184:174::-;35241:4;35284:7;35265:15;:13;:15::i;:::-;:26;;:53;;;;;35305:13;;35295:7;:23;35265:53;:85;;;;;35323:11;:20;35335:7;35323:20;;;;;;;;;;;:27;;;;;;;;;;;;35322:28;35265:85;35258:92;;35184:174;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;44406:196::-;44548:2;44521:15;:24;44537:7;44521:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44586:7;44582:2;44566:28;;44575:5;44566:28;;;;;;;;;;;;44406:196;;;:::o;27592:92::-;27648:7;27592:92;:::o;39354:2130::-;39469:35;39507:21;39520:7;39507:12;:21::i;:::-;39469:59;;39567:4;39545:26;;:13;:18;;;:26;;;39541:67;;39580:28;;;;;;;;;;;;;;39541:67;39621:22;39663:4;39647:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39684:36;39701:4;39707:12;:10;:12::i;:::-;39684:16;:36::i;:::-;39647:73;:126;;;;39761:12;:10;:12::i;:::-;39737:36;;:20;39749:7;39737:11;:20::i;:::-;:36;;;39647:126;39621:153;;39792:17;39787:66;;39818:35;;;;;;;;;;;;;;39787:66;39882:1;39868:16;;:2;:16;;;39864:52;;;39893:23;;;;;;;;;;;;;;39864:52;39929:43;39951:4;39957:2;39961:7;39970:1;39929:21;:43::i;:::-;40037:35;40054:1;40058:7;40067:4;40037:8;:35::i;:::-;40398:1;40368:12;:18;40381:4;40368:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40442:1;40414:12;:16;40427:2;40414:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40460:31;40494:11;:20;40506:7;40494:20;;;;;;;;;;;40460:54;;40545:2;40529:8;:13;;;:18;;;;;;;;;;;;;;;;;;40595:15;40562:8;:23;;;:49;;;;;;;;;;;;;;;;;;40863:19;40895:1;40885:7;:11;40863:33;;40911:31;40945:11;:24;40957:11;40945:24;;;;;;;;;;;40911:58;;41013:1;40988:27;;:8;:13;;;;;;;;;;;;:27;;;40984:384;;;41198:13;;41183:11;:28;41179:174;;41252:4;41236:8;:13;;;:20;;;;;;;;;;;;;;;;;;41305:13;:28;;;41279:8;:23;;;:54;;;;;;;;;;;;;;;;;;41179:174;40984:384;40343:1036;;;41415:7;41411:2;41396:27;;41405:4;41396:27;;;;;;;;;;;;41434:42;41455:4;41461:2;41465:7;41474:1;41434:20;:42::i;:::-;39458:2026;;39354:2130;;;:::o;30328:1111::-;30390:21;;:::i;:::-;30424:12;30439:7;30424:22;;30507:4;30488:15;:13;:15::i;:::-;:23;30484:888;;30524:13;;30517:4;:20;30513:859;;;30558:31;30592:11;:17;30604:4;30592:17;;;;;;;;;;;30558:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30633:9;:16;;;30628:729;;30704:1;30678:28;;:9;:14;;;:28;;;30674:101;;30742:9;30735:16;;;;;;30674:101;31077:261;31084:4;31077:261;;;31117:6;;;;;;;;31162:11;:17;31174:4;31162:17;;;;;;;;;;;31150:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31236:1;31210:28;;:9;:14;;;:28;;;31206:109;;31278:9;31271:16;;;;;;31206:109;31077:261;;;30628:729;30539:833;30513:859;30484:888;31400:31;;;;;;;;;;;;;;30328:1111;;;;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;29235:137::-;29296:7;29331:12;:19;29344:5;29331:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;29323:41;;29316:48;;29235:137;;;:::o;35442:104::-;35511:27;35521:2;35525:8;35511:27;;;;;;;;;;;;:9;:27::i;:::-;35442:104;;:::o;6813:326::-;6873:4;7130:1;7108:7;:19;;;:23;7101:30;;6813:326;;;:::o;45094:667::-;45257:4;45294:2;45278:36;;;45315:12;:10;:12::i;:::-;45329:4;45335:7;45344:5;45278:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45274:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45529:1;45512:6;:13;:18;45508:235;;;45558:40;;;;;;;;;;;;;;45508:235;45701:6;45695:13;45686:6;45682:2;45678:15;45671:38;45274:480;45407:45;;;45397:55;;;:6;:55;;;;45390:62;;;45094:667;;;;;;:::o;48531:100::-;48583:13;48616:7;48609:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48531:100;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;46409:159::-;;;;;:::o;47227:158::-;;;;;:::o;35919:1749::-;36042:20;36065:13;;36042:36;;36107:1;36093:16;;:2;:16;;;36089:48;;;36118:19;;;;;;;;;;;;;;36089:48;36164:1;36152:8;:13;36148:44;;;36174:18;;;;;;;;;;;;;;36148:44;36205:61;36235:1;36239:2;36243:12;36257:8;36205:21;:61::i;:::-;36578:8;36543:12;:16;36556:2;36543:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36642:8;36602:12;:16;36615:2;36602:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36701:2;36668:11;:25;36680:12;36668:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;36768:15;36718:11;:25;36730:12;36718:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;36801:20;36824:12;36801:35;;36851:11;36880:8;36865:12;:23;36851:37;;36909:15;:2;:13;;;:15::i;:::-;36905:631;;;36945:313;37001:12;36997:2;36976:38;;36993:1;36976:38;;;;;;;;;;;;37042:69;37081:1;37085:2;37089:14;;;;;;37105:5;37042:30;:69::i;:::-;37037:174;;37147:40;;;;;;;;;;;;;;37037:174;37253:3;37238:12;:18;36945:313;;37339:12;37322:13;;:29;37318:43;;37353:8;;;37318:43;36905:631;;;37402:119;37458:14;;;;;;37454:2;37433:40;;37450:1;37433:40;;;;;;;;;;;;37516:3;37501:12;:18;37402:119;;36905:631;37566:12;37550:13;:28;;;;36518:1072;;37600:60;37629:1;37633:2;37637:12;37651:8;37600:20;:60::i;:::-;36031:1637;35919:1749;;;:::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:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:400::-;10493:3;10514:84;10596:1;10591:3;10514:84;:::i;:::-;10507:91;;10607:93;10696:3;10607:93;:::i;:::-;10725:1;10720:3;10716:11;10709:18;;10333:400;;;:::o;10739:366::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:::-;11253:3;11274:67;11338:2;11333:3;11274:67;:::i;:::-;11267:74;;11350:93;11439:3;11350:93;:::i;:::-;11468:2;11463:3;11459:12;11452:19;;11111:366;;;:::o;11483:::-;11625:3;11646:67;11710:2;11705:3;11646:67;:::i;:::-;11639:74;;11722:93;11811:3;11722:93;:::i;:::-;11840:2;11835:3;11831:12;11824:19;;11483:366;;;:::o;11855:118::-;11942:24;11960:5;11942:24;:::i;:::-;11937:3;11930:37;11855:118;;:::o;11979:701::-;12260:3;12282:95;12373:3;12364:6;12282:95;:::i;:::-;12275:102;;12394:95;12485:3;12476:6;12394:95;:::i;:::-;12387:102;;12506:148;12650:3;12506:148;:::i;:::-;12499:155;;12671:3;12664:10;;11979:701;;;;;:::o;12686:222::-;12779:4;12817:2;12806:9;12802:18;12794:26;;12830:71;12898:1;12887:9;12883:17;12874:6;12830:71;:::i;:::-;12686:222;;;;:::o;12914:640::-;13109:4;13147:3;13136:9;13132:19;13124:27;;13161:71;13229:1;13218:9;13214:17;13205:6;13161:71;:::i;:::-;13242:72;13310:2;13299:9;13295:18;13286:6;13242:72;:::i;:::-;13324;13392:2;13381:9;13377:18;13368:6;13324:72;:::i;:::-;13443:9;13437:4;13433:20;13428:2;13417:9;13413:18;13406:48;13471:76;13542:4;13533:6;13471:76;:::i;:::-;13463:84;;12914:640;;;;;;;:::o;13560:210::-;13647:4;13685:2;13674:9;13670:18;13662:26;;13698:65;13760:1;13749:9;13745:17;13736:6;13698:65;:::i;:::-;13560:210;;;;:::o;13776:313::-;13889:4;13927:2;13916:9;13912:18;13904:26;;13976:9;13970:4;13966:20;13962:1;13951:9;13947:17;13940:47;14004:78;14077:4;14068:6;14004:78;:::i;:::-;13996:86;;13776:313;;;;:::o;14095:419::-;14261:4;14299:2;14288:9;14284:18;14276:26;;14348:9;14342:4;14338:20;14334:1;14323:9;14319:17;14312:47;14376:131;14502:4;14376:131;:::i;:::-;14368:139;;14095:419;;;:::o;14520:::-;14686:4;14724:2;14713:9;14709:18;14701:26;;14773:9;14767:4;14763:20;14759:1;14748:9;14744:17;14737:47;14801:131;14927:4;14801:131;:::i;:::-;14793:139;;14520:419;;;:::o;14945:::-;15111:4;15149:2;15138:9;15134:18;15126:26;;15198:9;15192:4;15188:20;15184:1;15173:9;15169:17;15162:47;15226:131;15352:4;15226:131;:::i;:::-;15218:139;;14945:419;;;:::o;15370:::-;15536:4;15574:2;15563:9;15559:18;15551:26;;15623:9;15617:4;15613:20;15609:1;15598:9;15594:17;15587:47;15651:131;15777:4;15651:131;:::i;:::-;15643:139;;15370:419;;;:::o;15795:::-;15961:4;15999:2;15988:9;15984:18;15976:26;;16048:9;16042:4;16038:20;16034:1;16023:9;16019:17;16012:47;16076:131;16202:4;16076:131;:::i;:::-;16068:139;;15795:419;;;:::o;16220:::-;16386:4;16424:2;16413:9;16409:18;16401:26;;16473:9;16467:4;16463:20;16459:1;16448:9;16444:17;16437:47;16501:131;16627:4;16501:131;:::i;:::-;16493:139;;16220:419;;;:::o;16645:::-;16811:4;16849:2;16838:9;16834:18;16826:26;;16898:9;16892:4;16888:20;16884:1;16873:9;16869:17;16862:47;16926:131;17052:4;16926:131;:::i;:::-;16918:139;;16645:419;;;:::o;17070:222::-;17163:4;17201:2;17190:9;17186:18;17178:26;;17214:71;17282:1;17271:9;17267:17;17258:6;17214:71;:::i;:::-;17070:222;;;;:::o;17298:129::-;17332:6;17359:20;;:::i;:::-;17349:30;;17388:33;17416:4;17408:6;17388:33;:::i;:::-;17298:129;;;:::o;17433:75::-;17466:6;17499:2;17493:9;17483:19;;17433:75;:::o;17514:307::-;17575:4;17665:18;17657:6;17654:30;17651:56;;;17687:18;;:::i;:::-;17651:56;17725:29;17747:6;17725:29;:::i;:::-;17717:37;;17809:4;17803;17799:15;17791:23;;17514:307;;;:::o;17827:308::-;17889:4;17979:18;17971:6;17968:30;17965:56;;;18001:18;;:::i;:::-;17965:56;18039:29;18061:6;18039:29;:::i;:::-;18031:37;;18123:4;18117;18113:15;18105:23;;17827:308;;;:::o;18141:98::-;18192:6;18226:5;18220:12;18210:22;;18141:98;;;:::o;18245:99::-;18297:6;18331:5;18325:12;18315:22;;18245:99;;;:::o;18350:168::-;18433:11;18467:6;18462:3;18455:19;18507:4;18502:3;18498:14;18483:29;;18350:168;;;;:::o;18524:169::-;18608:11;18642:6;18637:3;18630:19;18682:4;18677:3;18673:14;18658:29;;18524:169;;;;:::o;18699:148::-;18801:11;18838:3;18823:18;;18699:148;;;;:::o;18853:305::-;18893:3;18912:20;18930:1;18912:20;:::i;:::-;18907:25;;18946:20;18964:1;18946:20;:::i;:::-;18941:25;;19100:1;19032:66;19028:74;19025:1;19022:81;19019:107;;;19106:18;;:::i;:::-;19019:107;19150:1;19147;19143:9;19136:16;;18853:305;;;;:::o;19164:185::-;19204:1;19221:20;19239:1;19221:20;:::i;:::-;19216:25;;19255:20;19273:1;19255:20;:::i;:::-;19250:25;;19294:1;19284:35;;19299:18;;:::i;:::-;19284:35;19341:1;19338;19334:9;19329:14;;19164:185;;;;:::o;19355:348::-;19395:7;19418:20;19436:1;19418:20;:::i;:::-;19413:25;;19452:20;19470:1;19452:20;:::i;:::-;19447:25;;19640:1;19572:66;19568:74;19565:1;19562:81;19557:1;19550:9;19543:17;19539:105;19536:131;;;19647:18;;:::i;:::-;19536:131;19695:1;19692;19688:9;19677:20;;19355:348;;;;:::o;19709:191::-;19749:4;19769:20;19787:1;19769:20;:::i;:::-;19764:25;;19803:20;19821:1;19803:20;:::i;:::-;19798:25;;19842:1;19839;19836:8;19833:34;;;19847:18;;:::i;:::-;19833:34;19892:1;19889;19885:9;19877:17;;19709:191;;;;:::o;19906:96::-;19943:7;19972:24;19990:5;19972:24;:::i;:::-;19961:35;;19906:96;;;:::o;20008:90::-;20042:7;20085:5;20078:13;20071:21;20060:32;;20008:90;;;:::o;20104:149::-;20140:7;20180:66;20173:5;20169:78;20158:89;;20104:149;;;:::o;20259:126::-;20296:7;20336:42;20329:5;20325:54;20314:65;;20259:126;;;:::o;20391:77::-;20428:7;20457:5;20446:16;;20391:77;;;:::o;20474:154::-;20558:6;20553:3;20548;20535:30;20620:1;20611:6;20606:3;20602:16;20595:27;20474:154;;;:::o;20634:307::-;20702:1;20712:113;20726:6;20723:1;20720:13;20712:113;;;20811:1;20806:3;20802:11;20796:18;20792:1;20787:3;20783:11;20776:39;20748:2;20745:1;20741:10;20736:15;;20712:113;;;20843:6;20840:1;20837:13;20834:101;;;20923:1;20914:6;20909:3;20905:16;20898:27;20834:101;20683:258;20634:307;;;:::o;20947:320::-;20991:6;21028:1;21022:4;21018:12;21008:22;;21075:1;21069:4;21065:12;21096:18;21086:81;;21152:4;21144:6;21140:17;21130:27;;21086:81;21214:2;21206:6;21203:14;21183:18;21180:38;21177:84;;;21233:18;;:::i;:::-;21177:84;20998:269;20947:320;;;:::o;21273:281::-;21356:27;21378:4;21356:27;:::i;:::-;21348:6;21344:40;21486:6;21474:10;21471:22;21450:18;21438:10;21435:34;21432:62;21429:88;;;21497:18;;:::i;:::-;21429:88;21537:10;21533:2;21526:22;21316:238;21273:281;;:::o;21560:233::-;21599:3;21622:24;21640:5;21622:24;:::i;:::-;21613:33;;21668:66;21661:5;21658:77;21655:103;;;21738:18;;:::i;:::-;21655:103;21785:1;21778:5;21774:13;21767:20;;21560:233;;;:::o;21799:176::-;21831:1;21848:20;21866:1;21848:20;:::i;:::-;21843:25;;21882:20;21900:1;21882:20;:::i;:::-;21877:25;;21921:1;21911:35;;21926:18;;:::i;:::-;21911:35;21967:1;21964;21960:9;21955:14;;21799:176;;;;:::o;21981:180::-;22029:77;22026:1;22019:88;22126:4;22123:1;22116:15;22150:4;22147:1;22140:15;22167:180;22215:77;22212:1;22205:88;22312:4;22309:1;22302:15;22336:4;22333:1;22326:15;22353:180;22401:77;22398:1;22391:88;22498:4;22495:1;22488:15;22522:4;22519:1;22512:15;22539:180;22587:77;22584:1;22577:88;22684:4;22681:1;22674:15;22708:4;22705:1;22698:15;22725:180;22773:77;22770:1;22763:88;22870:4;22867:1;22860:15;22894:4;22891:1;22884:15;22911:117;23020:1;23017;23010:12;23034:117;23143:1;23140;23133:12;23157:117;23266:1;23263;23256:12;23280:117;23389:1;23386;23379:12;23403:102;23444:6;23495:2;23491:7;23486:2;23479:5;23475:14;23471:28;23461:38;;23403:102;;;:::o;23511:179::-;23651:31;23647:1;23639:6;23635:14;23628:55;23511:179;:::o;23696:225::-;23836:34;23832:1;23824:6;23820:14;23813:58;23905:8;23900:2;23892:6;23888:15;23881:33;23696:225;:::o;23927:168::-;24067:20;24063:1;24055:6;24051:14;24044:44;23927:168;:::o;24101:172::-;24241:24;24237:1;24229:6;24225:14;24218:48;24101:172;:::o;24279:155::-;24419:7;24415:1;24407:6;24403:14;24396:31;24279:155;:::o;24440:182::-;24580:34;24576:1;24568:6;24564:14;24557:58;24440:182;:::o;24628:234::-;24768:34;24764:1;24756:6;24752:14;24745:58;24837:17;24832:2;24824:6;24820:15;24813:42;24628:234;:::o;24868:171::-;25008:23;25004:1;24996:6;24992:14;24985:47;24868:171;:::o;25045:122::-;25118:24;25136:5;25118:24;:::i;:::-;25111:5;25108:35;25098:63;;25157:1;25154;25147:12;25098:63;25045:122;:::o;25173:116::-;25243:21;25258:5;25243:21;:::i;:::-;25236:5;25233:32;25223:60;;25279:1;25276;25269:12;25223:60;25173:116;:::o;25295:120::-;25367:23;25384:5;25367:23;:::i;:::-;25360:5;25357:34;25347:62;;25405:1;25402;25395:12;25347:62;25295:120;:::o;25421:122::-;25494:24;25512:5;25494:24;:::i;:::-;25487:5;25484:35;25474:63;;25533:1;25530;25523:12;25474:63;25421:122;:::o

Swarm Source

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