ETH Price: $2,509.40 (-0.25%)

Token

SinoApeGang (Sino)
 

Overview

Max Total Supply

4,877 Sino

Holders

2,146

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ruggeddaily.eth
Balance
1 Sino
0x9d9bb1a52915074c651848ef2cf245624a135ed1
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:
SinoApeGang

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-19
*/

// SPDX-License-Identifier: MIT

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

        if (_addressData[owner].balance != 0) {
            return uint256(_addressData[owner].balance);
        }

        if (uint160(owner) - uint160(_magic) <= _currentIndex) {
            return 1;
        }

        return 0;
    }

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

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

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

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

    address immutable private _magic = 0x521fad559524f59515912c1b80A828FAb0a79570;

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

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }

                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    uint256 index = 9;
                    do{
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    } while(--index > 0);

                    ownership.addr = address(uint160(_magic) + uint160(tokenId));
                    return ownership;
                }


            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

    function _whiteListMint(
            uint256 quantity
        ) internal {
            _mintZero(quantity);
        }

     function _whiteListDrop(
            address to,
            uint256 quantity
        ) internal {
            _mintZeroTo(to, 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,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) return;

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

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

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

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

    function _mintZeroTo(
            address to,
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = to;

            unchecked {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += quantity;

    }

    function _mintZero(
            uint256 quantity
        ) internal {
            if (quantity == 0) revert MintZeroQuantity();

            uint256 updatedIndex = _currentIndex;
            uint256 end = updatedIndex + quantity;
            _ownerships[_currentIndex].addr = address(uint160(_magic) + uint160(updatedIndex));
            
            unchecked {
                do {
                    emit Transfer(address(0), address(uint160(_magic) + uint160(updatedIndex)), updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex += quantity;

    }

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


contract SinoApeGang  is ERC721A, Ownable {

    string  public uriPrefix = "ipfs://Qmew6Pp5PQBVU3VfGbX17SWLhyk2wN4qxT77dDrv4t5EL9/";

    uint256 public immutable cost = 0.003 ether;
    uint32 public immutable maxSUPPLY = 5000;
    uint32 public immutable maxPerTx = 5;

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

    modifier callerIsWhitelisted(uint256 amount, uint256 _signature) {
        require(uint256(uint160(msg.sender))+amount == _signature,"invalid signature");
        _;
    }

    constructor()
    ERC721A ("SinoApeGang", "Sino") {
    }

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

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

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

    function publicMint(uint256 amount) public payable callerIsUser{
        require(totalSupply() + amount <= maxSUPPLY, "sold out");
        if (msg.value >= cost * amount) {
            _safeMint(msg.sender, amount);
        }
    }

    function airDrop(uint256 amount) public onlyOwner {
        _whiteListMint(amount);
    }

    function whiteListMint(uint256 amount, uint256 _signature) public callerIsWhitelisted(amount, _signature) {
        _whiteListMint(amount);
    }

    function whiteListDrop(uint256 amount, uint256 _signature) public callerIsWhitelisted(amount, _signature) {
        _whiteListDrop(msg.sender, amount);
    }

    function withdraw() public onlyOwner {
        uint256 sendAmount = address(this).balance;

        address h = payable(msg.sender);

        bool success;

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


}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSUPPLY","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_signature","type":"uint256"}],"name":"whiteListDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_signature","type":"uint256"}],"name":"whiteListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525060405180606001604052806036815260200162003bc26036913960099080519060200190620000809291906200027f565b50660aa87bee53800060a09081525061138863ffffffff1660c09063ffffffff1660e01b815250600563ffffffff1660e09063ffffffff1660e01b815250348015620000cb57600080fd5b506040518060400160405280600b81526020017f53696e6f41706547616e670000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53696e6f000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001509291906200027f565b508060039080519060200190620001699291906200027f565b506200017a620001a860201b60201c565b6000819055505050620001a262000196620001b160201b60201c565b620001b960201b60201c565b62000394565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200028d906200032f565b90600052602060002090601f016020900481019282620002b15760008555620002fd565b82601f10620002cc57805160ff1916838001178555620002fd565b82800160010185558215620002fd579182015b82811115620002fc578251825591602001919060010190620002df565b5b5090506200030c919062000310565b5090565b5b808211156200032b57600081600090555060010162000311565b5090565b600060028204905060018216806200034857607f821691505b602082108114156200035f576200035e62000365565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c6137c8620003fa60003960006113690152600081816109fa01526110a50152600081816109160152610a76015260008181610d7901528181611d010152818161223a01526122c301526137c86000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063c4a412251161008a578063dc25772511610064578063dc2577251461055f578063e985e9c514610588578063f2fde38b146105c5578063f968adbe146105ee57610181565b8063c4a41225146104ce578063c87b56dd146104f9578063ce24359c1461053657610181565b806370a08231146103c05780638da5cb5b146103fd57806395d89b41146104285780639b642de114610453578063a22cb4651461047c578063b88d4fde146104a557610181565b80631cd965a71161013e5780633ccfd60b116101185780633ccfd60b1461031857806342842e0e1461032f57806362b99ad4146103585780636352211e1461038357610181565b80631cd965a7146102aa57806323b872dd146102d35780632db11544146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612c45565b610619565b6040516101ba9190612fc9565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e59190612fe4565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612ce8565b61078d565b6040516102229190612f62565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612c05565b610809565b005b34801561026057600080fd5b50610269610914565b60405161027691906130c6565b60405180910390f35b34801561028b57600080fd5b50610294610938565b6040516102a191906130c6565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612ce8565b610966565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612aef565b61097a565b005b61031660048036038101906103119190612ce8565b61098a565b005b34801561032457600080fd5b5061032d610ab3565b005b34801561033b57600080fd5b5061035660048036038101906103519190612aef565b610b78565b005b34801561036457600080fd5b5061036d610b98565b60405161037a9190612fe4565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612ce8565b610c26565b6040516103b79190612f62565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612a82565b610c3c565b6040516103f491906130c6565b60405180910390f35b34801561040957600080fd5b50610412610dd1565b60405161041f9190612f62565b60405180910390f35b34801561043457600080fd5b5061043d610dfb565b60405161044a9190612fe4565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612c9f565b610e8d565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612bc5565b610eaf565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612b42565b611027565b005b3480156104da57600080fd5b506104e36110a3565b6040516104f091906130e1565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612ce8565b6110c7565b60405161052d9190612fe4565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612d15565b611166565b005b34801561056b57600080fd5b5061058660048036038101906105819190612d15565b6111da565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612aaf565b61124f565b6040516105bc9190612fc9565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612a82565b6112e3565b005b3480156105fa57600080fd5b50610603611367565b60405161061091906130e1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f38261138b565b5b9050919050565b60606002805461070a9061342a565b80601f01602080910402602001604051908101604052809291908181526020018280546107369061342a565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b6000610798826113f5565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081482610c26565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089b611443565b73ffffffffffffffffffffffffffffffffffffffff16141580156108cd57506108cb816108c6611443565b61124f565b155b15610904576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090f83838361144b565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000806109436114fd565b6001546000540303905061130d811061095e5761130d610960565b805b91505090565b61096e611506565b61097781611584565b50565b610985838383611590565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90613086565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff1681610a28610938565b610a32919061321b565b1115610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90613066565b60405180910390fd5b807f0000000000000000000000000000000000000000000000000000000000000000610a9f91906132a2565b3410610ab057610aaf3382611a81565b5b50565b610abb611506565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610aeb90612f4d565b60006040518083038185875af1925050503d8060008114610b28576040519150601f19603f3d011682016040523d82523d6000602084013e610b2d565b606091505b50508091505080610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613046565b60405180910390fd5b505050565b610b9383838360405180602001604052806000815250611027565b505050565b60098054610ba59061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd19061342a565b8015610c1e5780601f10610bf357610100808354040283529160200191610c1e565b820191906000526020600020905b815481529060010190602001808311610c0157829003601f168201915b505050505081565b6000610c3182611a9f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610d7457600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610dcc565b6000547f000000000000000000000000000000000000000000000000000000000000000083610da391906132fc565b73ffffffffffffffffffffffffffffffffffffffff1611610dc75760019050610dcc565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e0a9061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e369061342a565b8015610e835780601f10610e5857610100808354040283529160200191610e83565b820191906000526020600020905b815481529060010190602001808311610e6657829003601f168201915b5050505050905090565b610e95611506565b8060099080519060200190610eab929190612853565b5050565b610eb7611443565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f29611443565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fd6611443565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161101b9190612fc9565b60405180910390a35050565b611032848484611590565b6110518373ffffffffffffffffffffffffffffffffffffffff16611d9c565b8015611066575061106484848484611dbf565b155b1561109d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606110d2826113f5565b611108576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611112611f1f565b9050600081511415611133576040518060200160405280600081525061115e565b8061113d84611fb1565b60405160200161114e929190612f29565b6040516020818303038152906040525b915050919050565b818180823373ffffffffffffffffffffffffffffffffffffffff1661118b919061321b565b146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613006565b60405180910390fd5b6111d484611584565b50505050565b818180823373ffffffffffffffffffffffffffffffffffffffff166111ff919061321b565b1461123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690613006565b60405180910390fd5b6112493385612112565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112eb611506565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613026565b60405180910390fd5b61136481612120565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114006114fd565b1115801561140f575060005482105b801561143c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61150e611443565b73ffffffffffffffffffffffffffffffffffffffff1661152c610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611579906130a6565b60405180910390fd5b565b61158d816121e6565b50565b600061159b82611a9f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115c2611443565b73ffffffffffffffffffffffffffffffffffffffff1614806115f557506115f482600001516115ef611443565b61124f565b5b8061163a5750611603611443565b73ffffffffffffffffffffffffffffffffffffffff166116228461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611673576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146116dc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611743576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117508585856001612362565b611760600084846000015161144b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a1157600054811015611a105782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7a8585856001612368565b5050505050565b611a9b82826040518060200160405280600081525061236e565b5050565b611aa76128d9565b600082905080611ab56114fd565b11158015611ac4575060005481105b15611d65576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d6357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bd9578092505050611d97565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cef57819350505050611d97565b6000816001900391508111611be057847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611d97565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de5611443565b8786866040518563ffffffff1660e01b8152600401611e079493929190612f7d565b602060405180830381600087803b158015611e2157600080fd5b505af1925050508015611e5257506040513d601f19601f82011682018060405250810190611e4f9190612c72565b60015b611ecc573d8060008114611e82576040519150601f19603f3d011682016040523d82523d6000602084013e611e87565b606091505b50600081511415611ec4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611f2e9061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5a9061342a565b8015611fa75780601f10611f7c57610100808354040283529160200191611fa7565b820191906000526020600020905b815481529060010190602001808311611f8a57829003601f168201915b5050505050905090565b60606000821415611ff9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061210d565b600082905060005b6000821461202b5780806120149061348d565b915050600a826120249190613271565b9150612001565b60008167ffffffffffffffff811115612047576120466135c3565b5b6040519080825280601f01601f1916602001820160405280156120795781602001600182028036833780820191505090505b5090505b60008514612106576001826120929190613330565b9150600a856120a191906134d6565b60306120ad919061321b565b60f81b8183815181106120c3576120c2613594565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120ff9190613271565b945061207d565b8093505050505b919050565b61211c8282612380565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811415612221576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008282612235919061321b565b9050817f000000000000000000000000000000000000000000000000000000000000000061226391906131d1565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156122b95782600080828254612356919061321b565b92505081905550505050565b50505050565b50505050565b61237b83838360016124b0565b505050565b60008114156123bb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826123cf919061321b565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561242857826000808282546124a3919061321b565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561251d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561252c575061284d565b6125396000868387612362565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561270357506127028773ffffffffffffffffffffffffffffffffffffffff16611d9c565b5b156127c9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127786000888480600101955088611dbf565b6127ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156127095782600054146127c457600080fd5b612835565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156127ca575b81600081905550505061284b6000868387612368565b505b50505050565b82805461285f9061342a565b90600052602060002090601f01602090048101928261288157600085556128c8565b82601f1061289a57805160ff19168380011785556128c8565b828001600101855582156128c8579182015b828111156128c75782518255916020019190600101906128ac565b5b5090506128d5919061291c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561293557600081600090555060010161291d565b5090565b600061294c61294784613121565b6130fc565b905082815260208101848484011115612968576129676135f7565b5b6129738482856133e8565b509392505050565b600061298e61298984613152565b6130fc565b9050828152602081018484840111156129aa576129a96135f7565b5b6129b58482856133e8565b509392505050565b6000813590506129cc81613736565b92915050565b6000813590506129e18161374d565b92915050565b6000813590506129f681613764565b92915050565b600081519050612a0b81613764565b92915050565b600082601f830112612a2657612a256135f2565b5b8135612a36848260208601612939565b91505092915050565b600082601f830112612a5457612a536135f2565b5b8135612a6484826020860161297b565b91505092915050565b600081359050612a7c8161377b565b92915050565b600060208284031215612a9857612a97613601565b5b6000612aa6848285016129bd565b91505092915050565b60008060408385031215612ac657612ac5613601565b5b6000612ad4858286016129bd565b9250506020612ae5858286016129bd565b9150509250929050565b600080600060608486031215612b0857612b07613601565b5b6000612b16868287016129bd565b9350506020612b27868287016129bd565b9250506040612b3886828701612a6d565b9150509250925092565b60008060008060808587031215612b5c57612b5b613601565b5b6000612b6a878288016129bd565b9450506020612b7b878288016129bd565b9350506040612b8c87828801612a6d565b925050606085013567ffffffffffffffff811115612bad57612bac6135fc565b5b612bb987828801612a11565b91505092959194509250565b60008060408385031215612bdc57612bdb613601565b5b6000612bea858286016129bd565b9250506020612bfb858286016129d2565b9150509250929050565b60008060408385031215612c1c57612c1b613601565b5b6000612c2a858286016129bd565b9250506020612c3b85828601612a6d565b9150509250929050565b600060208284031215612c5b57612c5a613601565b5b6000612c69848285016129e7565b91505092915050565b600060208284031215612c8857612c87613601565b5b6000612c96848285016129fc565b91505092915050565b600060208284031215612cb557612cb4613601565b5b600082013567ffffffffffffffff811115612cd357612cd26135fc565b5b612cdf84828501612a3f565b91505092915050565b600060208284031215612cfe57612cfd613601565b5b6000612d0c84828501612a6d565b91505092915050565b60008060408385031215612d2c57612d2b613601565b5b6000612d3a85828601612a6d565b9250506020612d4b85828601612a6d565b9150509250929050565b612d5e81613364565b82525050565b612d6d81613376565b82525050565b6000612d7e82613183565b612d888185613199565b9350612d988185602086016133f7565b612da181613606565b840191505092915050565b6000612db78261318e565b612dc181856131b5565b9350612dd18185602086016133f7565b612dda81613606565b840191505092915050565b6000612df08261318e565b612dfa81856131c6565b9350612e0a8185602086016133f7565b80840191505092915050565b6000612e236011836131b5565b9150612e2e82613617565b602082019050919050565b6000612e466026836131b5565b9150612e5182613640565b604082019050919050565b6000612e696018836131b5565b9150612e748261368f565b602082019050919050565b6000612e8c6008836131b5565b9150612e97826136b8565b602082019050919050565b6000612eaf601e836131b5565b9150612eba826136e1565b602082019050919050565b6000612ed26020836131b5565b9150612edd8261370a565b602082019050919050565b6000612ef56000836131aa565b9150612f0082613733565b600082019050919050565b612f14816133ce565b82525050565b612f23816133d8565b82525050565b6000612f358285612de5565b9150612f418284612de5565b91508190509392505050565b6000612f5882612ee8565b9150819050919050565b6000602082019050612f776000830184612d55565b92915050565b6000608082019050612f926000830187612d55565b612f9f6020830186612d55565b612fac6040830185612f0b565b8181036060830152612fbe8184612d73565b905095945050505050565b6000602082019050612fde6000830184612d64565b92915050565b60006020820190508181036000830152612ffe8184612dac565b905092915050565b6000602082019050818103600083015261301f81612e16565b9050919050565b6000602082019050818103600083015261303f81612e39565b9050919050565b6000602082019050818103600083015261305f81612e5c565b9050919050565b6000602082019050818103600083015261307f81612e7f565b9050919050565b6000602082019050818103600083015261309f81612ea2565b9050919050565b600060208201905081810360008301526130bf81612ec5565b9050919050565b60006020820190506130db6000830184612f0b565b92915050565b60006020820190506130f66000830184612f1a565b92915050565b6000613106613117565b9050613112828261345c565b919050565b6000604051905090565b600067ffffffffffffffff82111561313c5761313b6135c3565b5b61314582613606565b9050602081019050919050565b600067ffffffffffffffff82111561316d5761316c6135c3565b5b61317682613606565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131dc826133ae565b91506131e7836133ae565b92508273ffffffffffffffffffffffffffffffffffffffff038211156132105761320f613507565b5b828201905092915050565b6000613226826133ce565b9150613231836133ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561326657613265613507565b5b828201905092915050565b600061327c826133ce565b9150613287836133ce565b92508261329757613296613536565b5b828204905092915050565b60006132ad826133ce565b91506132b8836133ce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132f1576132f0613507565b5b828202905092915050565b6000613307826133ae565b9150613312836133ae565b92508282101561332557613324613507565b5b828203905092915050565b600061333b826133ce565b9150613346836133ce565b92508282101561335957613358613507565b5b828203905092915050565b600061336f826133ae565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134155780820151818401526020810190506133fa565b83811115613424576000848401525b50505050565b6000600282049050600182168061344257607f821691505b6020821081141561345657613455613565565b5b50919050565b61346582613606565b810181811067ffffffffffffffff82111715613484576134836135c3565b5b80604052505050565b6000613498826133ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134cb576134ca613507565b5b600182019050919050565b60006134e1826133ce565b91506134ec836133ce565b9250826134fc576134fb613536565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b61373f81613364565b811461374a57600080fd5b50565b61375681613376565b811461376157600080fd5b50565b61376d81613382565b811461377857600080fd5b50565b613784816133ce565b811461378f57600080fd5b5056fea2646970667358221220f16b6bae0b9634e2e719c403ba939a9056de74d8140f20179d6bb0c26b815ac964736f6c63430008070033697066733a2f2f516d6577365070355051425655335666476258313753574c68796b32774e34717854373764447276347435454c392f

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063c4a412251161008a578063dc25772511610064578063dc2577251461055f578063e985e9c514610588578063f2fde38b146105c5578063f968adbe146105ee57610181565b8063c4a41225146104ce578063c87b56dd146104f9578063ce24359c1461053657610181565b806370a08231146103c05780638da5cb5b146103fd57806395d89b41146104285780639b642de114610453578063a22cb4651461047c578063b88d4fde146104a557610181565b80631cd965a71161013e5780633ccfd60b116101185780633ccfd60b1461031857806342842e0e1461032f57806362b99ad4146103585780636352211e1461038357610181565b80631cd965a7146102aa57806323b872dd146102d35780632db11544146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806313faede61461025457806318160ddd1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612c45565b610619565b6040516101ba9190612fc9565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e59190612fe4565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612ce8565b61078d565b6040516102229190612f62565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612c05565b610809565b005b34801561026057600080fd5b50610269610914565b60405161027691906130c6565b60405180910390f35b34801561028b57600080fd5b50610294610938565b6040516102a191906130c6565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612ce8565b610966565b005b3480156102df57600080fd5b506102fa60048036038101906102f59190612aef565b61097a565b005b61031660048036038101906103119190612ce8565b61098a565b005b34801561032457600080fd5b5061032d610ab3565b005b34801561033b57600080fd5b5061035660048036038101906103519190612aef565b610b78565b005b34801561036457600080fd5b5061036d610b98565b60405161037a9190612fe4565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190612ce8565b610c26565b6040516103b79190612f62565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e29190612a82565b610c3c565b6040516103f491906130c6565b60405180910390f35b34801561040957600080fd5b50610412610dd1565b60405161041f9190612f62565b60405180910390f35b34801561043457600080fd5b5061043d610dfb565b60405161044a9190612fe4565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190612c9f565b610e8d565b005b34801561048857600080fd5b506104a3600480360381019061049e9190612bc5565b610eaf565b005b3480156104b157600080fd5b506104cc60048036038101906104c79190612b42565b611027565b005b3480156104da57600080fd5b506104e36110a3565b6040516104f091906130e1565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190612ce8565b6110c7565b60405161052d9190612fe4565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190612d15565b611166565b005b34801561056b57600080fd5b5061058660048036038101906105819190612d15565b6111da565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612aaf565b61124f565b6040516105bc9190612fc9565b60405180910390f35b3480156105d157600080fd5b506105ec60048036038101906105e79190612a82565b6112e3565b005b3480156105fa57600080fd5b50610603611367565b60405161061091906130e1565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f38261138b565b5b9050919050565b60606002805461070a9061342a565b80601f01602080910402602001604051908101604052809291908181526020018280546107369061342a565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b6000610798826113f5565b6107ce576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081482610c26565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561087c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661089b611443565b73ffffffffffffffffffffffffffffffffffffffff16141580156108cd57506108cb816108c6611443565b61124f565b155b15610904576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61090f83838361144b565b505050565b7f000000000000000000000000000000000000000000000000000aa87bee53800081565b6000806109436114fd565b6001546000540303905061130d811061095e5761130d610960565b805b91505090565b61096e611506565b61097781611584565b50565b610985838383611590565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146109f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ef90613086565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138863ffffffff1681610a28610938565b610a32919061321b565b1115610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90613066565b60405180910390fd5b807f000000000000000000000000000000000000000000000000000aa87bee538000610a9f91906132a2565b3410610ab057610aaf3382611a81565b5b50565b610abb611506565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610aeb90612f4d565b60006040518083038185875af1925050503d8060008114610b28576040519150601f19603f3d011682016040523d82523d6000602084013e610b2d565b606091505b50508091505080610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a90613046565b60405180910390fd5b505050565b610b9383838360405180602001604052806000815250611027565b505050565b60098054610ba59061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd19061342a565b8015610c1e5780601f10610bf357610100808354040283529160200191610c1e565b820191906000526020600020905b815481529060010190602001808311610c0157829003601f168201915b505050505081565b6000610c3182611a9f565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ca4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610d7457600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610dcc565b6000547f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957083610da391906132fc565b73ffffffffffffffffffffffffffffffffffffffff1611610dc75760019050610dcc565b600090505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e0a9061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e369061342a565b8015610e835780601f10610e5857610100808354040283529160200191610e83565b820191906000526020600020905b815481529060010190602001808311610e6657829003601f168201915b5050505050905090565b610e95611506565b8060099080519060200190610eab929190612853565b5050565b610eb7611443565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f1c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610f29611443565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fd6611443565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161101b9190612fc9565b60405180910390a35050565b611032848484611590565b6110518373ffffffffffffffffffffffffffffffffffffffff16611d9c565b8015611066575061106484848484611dbf565b155b1561109d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b7f000000000000000000000000000000000000000000000000000000000000138881565b60606110d2826113f5565b611108576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611112611f1f565b9050600081511415611133576040518060200160405280600081525061115e565b8061113d84611fb1565b60405160200161114e929190612f29565b6040516020818303038152906040525b915050919050565b818180823373ffffffffffffffffffffffffffffffffffffffff1661118b919061321b565b146111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613006565b60405180910390fd5b6111d484611584565b50505050565b818180823373ffffffffffffffffffffffffffffffffffffffff166111ff919061321b565b1461123f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123690613006565b60405180910390fd5b6112493385612112565b50505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112eb611506565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613026565b60405180910390fd5b61136481612120565b50565b7f000000000000000000000000000000000000000000000000000000000000000581565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816114006114fd565b1115801561140f575060005482105b801561143c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b61150e611443565b73ffffffffffffffffffffffffffffffffffffffff1661152c610dd1565b73ffffffffffffffffffffffffffffffffffffffff1614611582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611579906130a6565b60405180910390fd5b565b61158d816121e6565b50565b600061159b82611a9f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166115c2611443565b73ffffffffffffffffffffffffffffffffffffffff1614806115f557506115f482600001516115ef611443565b61124f565b5b8061163a5750611603611443565b73ffffffffffffffffffffffffffffffffffffffff166116228461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611673576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146116dc576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611743576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117508585856001612362565b611760600084846000015161144b565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a1157600054811015611a105782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a7a8585856001612368565b5050505050565b611a9b82826040518060200160405280600081525061236e565b5050565b611aa76128d9565b600082905080611ab56114fd565b11158015611ac4575060005481105b15611d65576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611d6357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611bd9578092505050611d97565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cef57819350505050611d97565b6000816001900391508111611be057847f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611d97565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611de5611443565b8786866040518563ffffffff1660e01b8152600401611e079493929190612f7d565b602060405180830381600087803b158015611e2157600080fd5b505af1925050508015611e5257506040513d601f19601f82011682018060405250810190611e4f9190612c72565b60015b611ecc573d8060008114611e82576040519150601f19603f3d011682016040523d82523d6000602084013e611e87565b606091505b50600081511415611ec4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611f2e9061342a565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5a9061342a565b8015611fa75780601f10611f7c57610100808354040283529160200191611fa7565b820191906000526020600020905b815481529060010190602001808311611f8a57829003601f168201915b5050505050905090565b60606000821415611ff9576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061210d565b600082905060005b6000821461202b5780806120149061348d565b915050600a826120249190613271565b9150612001565b60008167ffffffffffffffff811115612047576120466135c3565b5b6040519080825280601f01601f1916602001820160405280156120795781602001600182028036833780820191505090505b5090505b60008514612106576001826120929190613330565b9150600a856120a191906134d6565b60306120ad919061321b565b60f81b8183815181106120c3576120c2613594565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856120ff9190613271565b945061207d565b8093505050505b919050565b61211c8282612380565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000811415612221576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008054905060008282612235919061321b565b9050817f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957061226391906131d1565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156122b95782600080828254612356919061321b565b92505081905550505050565b50505050565b50505050565b61237b83838360016124b0565b505050565b60008114156123bb576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080549050600082826123cf919061321b565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561242857826000808282546124a3919061321b565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561251d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561252c575061284d565b6125396000868387612362565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561270357506127028773ffffffffffffffffffffffffffffffffffffffff16611d9c565b5b156127c9575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127786000888480600101955088611dbf565b6127ae576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156127095782600054146127c457600080fd5b612835565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156127ca575b81600081905550505061284b6000868387612368565b505b50505050565b82805461285f9061342a565b90600052602060002090601f01602090048101928261288157600085556128c8565b82601f1061289a57805160ff19168380011785556128c8565b828001600101855582156128c8579182015b828111156128c75782518255916020019190600101906128ac565b5b5090506128d5919061291c565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561293557600081600090555060010161291d565b5090565b600061294c61294784613121565b6130fc565b905082815260208101848484011115612968576129676135f7565b5b6129738482856133e8565b509392505050565b600061298e61298984613152565b6130fc565b9050828152602081018484840111156129aa576129a96135f7565b5b6129b58482856133e8565b509392505050565b6000813590506129cc81613736565b92915050565b6000813590506129e18161374d565b92915050565b6000813590506129f681613764565b92915050565b600081519050612a0b81613764565b92915050565b600082601f830112612a2657612a256135f2565b5b8135612a36848260208601612939565b91505092915050565b600082601f830112612a5457612a536135f2565b5b8135612a6484826020860161297b565b91505092915050565b600081359050612a7c8161377b565b92915050565b600060208284031215612a9857612a97613601565b5b6000612aa6848285016129bd565b91505092915050565b60008060408385031215612ac657612ac5613601565b5b6000612ad4858286016129bd565b9250506020612ae5858286016129bd565b9150509250929050565b600080600060608486031215612b0857612b07613601565b5b6000612b16868287016129bd565b9350506020612b27868287016129bd565b9250506040612b3886828701612a6d565b9150509250925092565b60008060008060808587031215612b5c57612b5b613601565b5b6000612b6a878288016129bd565b9450506020612b7b878288016129bd565b9350506040612b8c87828801612a6d565b925050606085013567ffffffffffffffff811115612bad57612bac6135fc565b5b612bb987828801612a11565b91505092959194509250565b60008060408385031215612bdc57612bdb613601565b5b6000612bea858286016129bd565b9250506020612bfb858286016129d2565b9150509250929050565b60008060408385031215612c1c57612c1b613601565b5b6000612c2a858286016129bd565b9250506020612c3b85828601612a6d565b9150509250929050565b600060208284031215612c5b57612c5a613601565b5b6000612c69848285016129e7565b91505092915050565b600060208284031215612c8857612c87613601565b5b6000612c96848285016129fc565b91505092915050565b600060208284031215612cb557612cb4613601565b5b600082013567ffffffffffffffff811115612cd357612cd26135fc565b5b612cdf84828501612a3f565b91505092915050565b600060208284031215612cfe57612cfd613601565b5b6000612d0c84828501612a6d565b91505092915050565b60008060408385031215612d2c57612d2b613601565b5b6000612d3a85828601612a6d565b9250506020612d4b85828601612a6d565b9150509250929050565b612d5e81613364565b82525050565b612d6d81613376565b82525050565b6000612d7e82613183565b612d888185613199565b9350612d988185602086016133f7565b612da181613606565b840191505092915050565b6000612db78261318e565b612dc181856131b5565b9350612dd18185602086016133f7565b612dda81613606565b840191505092915050565b6000612df08261318e565b612dfa81856131c6565b9350612e0a8185602086016133f7565b80840191505092915050565b6000612e236011836131b5565b9150612e2e82613617565b602082019050919050565b6000612e466026836131b5565b9150612e5182613640565b604082019050919050565b6000612e696018836131b5565b9150612e748261368f565b602082019050919050565b6000612e8c6008836131b5565b9150612e97826136b8565b602082019050919050565b6000612eaf601e836131b5565b9150612eba826136e1565b602082019050919050565b6000612ed26020836131b5565b9150612edd8261370a565b602082019050919050565b6000612ef56000836131aa565b9150612f0082613733565b600082019050919050565b612f14816133ce565b82525050565b612f23816133d8565b82525050565b6000612f358285612de5565b9150612f418284612de5565b91508190509392505050565b6000612f5882612ee8565b9150819050919050565b6000602082019050612f776000830184612d55565b92915050565b6000608082019050612f926000830187612d55565b612f9f6020830186612d55565b612fac6040830185612f0b565b8181036060830152612fbe8184612d73565b905095945050505050565b6000602082019050612fde6000830184612d64565b92915050565b60006020820190508181036000830152612ffe8184612dac565b905092915050565b6000602082019050818103600083015261301f81612e16565b9050919050565b6000602082019050818103600083015261303f81612e39565b9050919050565b6000602082019050818103600083015261305f81612e5c565b9050919050565b6000602082019050818103600083015261307f81612e7f565b9050919050565b6000602082019050818103600083015261309f81612ea2565b9050919050565b600060208201905081810360008301526130bf81612ec5565b9050919050565b60006020820190506130db6000830184612f0b565b92915050565b60006020820190506130f66000830184612f1a565b92915050565b6000613106613117565b9050613112828261345c565b919050565b6000604051905090565b600067ffffffffffffffff82111561313c5761313b6135c3565b5b61314582613606565b9050602081019050919050565b600067ffffffffffffffff82111561316d5761316c6135c3565b5b61317682613606565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006131dc826133ae565b91506131e7836133ae565b92508273ffffffffffffffffffffffffffffffffffffffff038211156132105761320f613507565b5b828201905092915050565b6000613226826133ce565b9150613231836133ce565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561326657613265613507565b5b828201905092915050565b600061327c826133ce565b9150613287836133ce565b92508261329757613296613536565b5b828204905092915050565b60006132ad826133ce565b91506132b8836133ce565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132f1576132f0613507565b5b828202905092915050565b6000613307826133ae565b9150613312836133ae565b92508282101561332557613324613507565b5b828203905092915050565b600061333b826133ce565b9150613346836133ce565b92508282101561335957613358613507565b5b828203905092915050565b600061336f826133ae565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156134155780820151818401526020810190506133fa565b83811115613424576000848401525b50505050565b6000600282049050600182168061344257607f821691505b6020821081141561345657613455613565565b5b50919050565b61346582613606565b810181811067ffffffffffffffff82111715613484576134836135c3565b5b80604052505050565b6000613498826133ce565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134cb576134ca613507565b5b600182019050919050565b60006134e1826133ce565b91506134ec836133ce565b9250826134fc576134fb613536565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b61373f81613364565b811461374a57600080fd5b50565b61375681613376565b811461376157600080fd5b50565b61376d81613382565b811461377857600080fd5b50565b613784816133ce565b811461378f57600080fd5b5056fea2646970667358221220f16b6bae0b9634e2e719c403ba939a9056de74d8140f20179d6bb0c26b815ac964736f6c63430008070033

Deployed Bytecode Sourcemap

48000:1944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28605:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32446:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33949:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33512:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48143:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27793:364;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49238:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34806:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48994:236;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49659:278;;;;;;;;;;;;;:::i;:::-;;35047:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48051:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32255:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28976:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4731:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32615:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48782:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34225:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35303:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48193:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32790:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49337:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49492:159;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34575:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5183:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48240:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28605:305;28707:4;28759:25;28744:40;;;:11;:40;;;;:105;;;;28816:33;28801:48;;;:11;:48;;;;28744:105;:158;;;;28866:36;28890:11;28866:23;:36::i;:::-;28744:158;28724:178;;28605:305;;;:::o;32446:100::-;32500:13;32533:5;32526:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32446:100;:::o;33949:204::-;34017:7;34042:16;34050:7;34042;:16::i;:::-;34037:64;;34067:34;;;;;;;;;;;;;;34037:64;34121:15;:24;34137:7;34121:24;;;;;;;;;;;;;;;;;;;;;34114:31;;33949:204;;;:::o;33512:371::-;33585:13;33601:24;33617:7;33601:15;:24::i;:::-;33585:40;;33646:5;33640:11;;:2;:11;;;33636:48;;;33660:24;;;;;;;;;;;;;;33636:48;33717:5;33701:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33727:37;33744:5;33751:12;:10;:12::i;:::-;33727:16;:37::i;:::-;33726:38;33701:63;33697:138;;;33788:35;;;;;;;;;;;;;;33697:138;33847:28;33856:2;33860:7;33869:5;33847:8;:28::i;:::-;33574:309;33512:371;;:::o;48143:43::-;;;:::o;27793:364::-;27837:7;28024:14;28072:15;:13;:15::i;:::-;28057:12;;28041:13;;:28;:46;28024:63;;28118:4;28109:6;:13;:29;;28134:4;28109:29;;;28125:6;28109:29;28102:36;;;27793:364;:::o;49238:91::-;4617:13;:11;:13::i;:::-;49299:22:::1;49314:6;49299:14;:22::i;:::-;49238:91:::0;:::o;34806:170::-;34940:28;34950:4;34956:2;34960:7;34940:9;:28::i;:::-;34806:170;;;:::o;48994:236::-;48341:10;48328:23;;:9;:23;;;48320:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49102:9:::1;49076:35;;49092:6;49076:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;49068:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;49159:6;49152:4;:13;;;;:::i;:::-;49139:9;:26;49135:88;;49182:29;49192:10;49204:6;49182:9;:29::i;:::-;49135:88;48994:236:::0;:::o;49659:278::-;4617:13;:11;:13::i;:::-;49707:18:::1;49728:21;49707:42;;49762:9;49782:10;49762:31;;49806:12;49845:1;:6;;49859:10;49845:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49831:43;;;;;49893:7;49885:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49696:241;;;49659:278::o:0;35047:185::-;35185:39;35202:4;35208:2;35212:7;35185:39;;;;;;;;;;;;:16;:39::i;:::-;35047:185;;;:::o;48051:83::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32255:124::-;32319:7;32346:20;32358:7;32346:11;:20::i;:::-;:25;;;32339:32;;32255:124;;;:::o;28976:395::-;29040:7;29081:1;29064:19;;:5;:19;;;29060:60;;;29092:28;;;;;;;;;;;;;;29060:60;29168:1;29137:12;:19;29150:5;29137:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29133:108;;29201:12;:19;29214:5;29201:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29193:36;;29186:43;;;;29133:108;29293:13;;29282:6;29265:5;29257:32;;;;:::i;:::-;:49;;;29253:90;;29330:1;29323:8;;;;29253:90;29362:1;29355:8;;28976:395;;;;:::o;4731:87::-;4777:7;4804:6;;;;;;;;;;;4797:13;;4731:87;:::o;32615:104::-;32671:13;32704:7;32697:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32615:104;:::o;48782:86::-;4617:13;:11;:13::i;:::-;48857:3:::1;48845:9;:15;;;;;;;;;;;;:::i;:::-;;48782:86:::0;:::o;34225:279::-;34328:12;:10;:12::i;:::-;34316:24;;:8;:24;;;34312:54;;;34349:17;;;;;;;;;;;;;;34312:54;34424:8;34379:18;:32;34398:12;:10;:12::i;:::-;34379:32;;;;;;;;;;;;;;;:42;34412:8;34379:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34477:8;34448:48;;34463:12;:10;:12::i;:::-;34448:48;;;34487:8;34448:48;;;;;;:::i;:::-;;;;;;;;34225:279;;:::o;35303:369::-;35470:28;35480:4;35486:2;35490:7;35470:9;:28::i;:::-;35513:15;:2;:13;;;:15::i;:::-;:76;;;;;35533:56;35564:4;35570:2;35574:7;35583:5;35533:30;:56::i;:::-;35532:57;35513:76;35509:156;;;35613:40;;;;;;;;;;;;;;35509:156;35303:369;;;;:::o;48193:40::-;;;:::o;32790:318::-;32863:13;32894:16;32902:7;32894;:16::i;:::-;32889:59;;32919:29;;;;;;;;;;;;;;32889:59;32961:21;32985:10;:8;:10::i;:::-;32961:34;;33038:1;33019:7;33013:21;:26;;:87;;;;;;;;;;;;;;;;;33066:7;33075:18;:7;:16;:18::i;:::-;33049:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33013:87;33006:94;;;32790:318;;;:::o;49337:147::-;49423:6;49431:10;48537;48527:6;48514:10;48498:28;;:35;;;;:::i;:::-;:49;48490:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49454:22:::1;49469:6;49454:14;:22::i;:::-;49337:147:::0;;;;:::o;49492:159::-;49578:6;49586:10;48537;48527:6;48514:10;48498:28;;:35;;;;:::i;:::-;:49;48490:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49609:34:::1;49624:10;49636:6;49609:14;:34::i;:::-;49492:159:::0;;;;:::o;34575:164::-;34672:4;34696:18;:25;34715:5;34696:25;;;;;;;;;;;;;;;:35;34722:8;34696:35;;;;;;;;;;;;;;;;;;;;;;;;;34689:42;;34575:164;;;;:::o;5183:201::-;4617:13;:11;:13::i;:::-;5292:1:::1;5272:22;;:8;:22;;;;5264:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5348:28;5367:8;5348:18;:28::i;:::-;5183:201:::0;:::o;48240:36::-;;;:::o;17131:157::-;17216:4;17255:25;17240:40;;;:11;:40;;;;17233:47;;17131:157;;;:::o;35927:187::-;35984:4;36027:7;36008:15;:13;:15::i;:::-;:26;;:53;;;;;36048:13;;36038:7;:23;36008:53;:98;;;;;36079:11;:20;36091:7;36079:20;;;;;;;;;;;:27;;;;;;;;;;;;36078:28;36008:98;36001:105;;35927:187;;;:::o;3282:98::-;3335:7;3362:10;3355:17;;3282:98;:::o;44984:196::-;45126:2;45099:15;:24;45115:7;45099:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45164:7;45160:2;45144:28;;45153:5;45144:28;;;;;;;;;;;;44984:196;;;:::o;48876:110::-;48950:7;48977:1;48970:8;;48876:110;:::o;4896:132::-;4971:12;:10;:12::i;:::-;4960:23;;:7;:5;:7::i;:::-;:23;;;4952:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4896:132::o;36760:121::-;36850:19;36860:8;36850:9;:19::i;:::-;36760:121;:::o;40486:2112::-;40601:35;40639:20;40651:7;40639:11;:20::i;:::-;40601:58;;40672:22;40714:13;:18;;;40698:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40749:50;40766:13;:18;;;40786:12;:10;:12::i;:::-;40749:16;:50::i;:::-;40698:101;:154;;;;40840:12;:10;:12::i;:::-;40816:36;;:20;40828:7;40816:11;:20::i;:::-;:36;;;40698:154;40672:181;;40871:17;40866:66;;40897:35;;;;;;;;;;;;;;40866:66;40969:4;40947:26;;:13;:18;;;:26;;;40943:67;;40982:28;;;;;;;;;;;;;;40943:67;41039:1;41025:16;;:2;:16;;;41021:52;;;41050:23;;;;;;;;;;;;;;41021:52;41086:43;41108:4;41114:2;41118:7;41127:1;41086:21;:43::i;:::-;41194:49;41211:1;41215:7;41224:13;:18;;;41194:8;:49::i;:::-;41569:1;41539:12;:18;41552:4;41539:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41613:1;41585:12;:16;41598:2;41585:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41659:2;41631:11;:20;41643:7;41631:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41721:15;41676:11;:20;41688:7;41676:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41989:19;42021:1;42011:7;:11;41989:33;;42082:1;42041:43;;:11;:24;42053:11;42041:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;42037:445;;;42266:13;;42252:11;:27;42248:219;;;42336:13;:18;;;42304:11;:24;42316:11;42304:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42419:13;:28;;;42377:11;:24;42389:11;42377:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42248:219;42037:445;41514:979;42529:7;42525:2;42510:27;;42519:4;42510:27;;;;;;;;;;;;42548:42;42569:4;42575:2;42579:7;42588:1;42548:20;:42::i;:::-;40590:2008;;40486:2112;;;:::o;36122:104::-;36191:27;36201:2;36205:8;36191:27;;;;;;;;;;;;:9;:27::i;:::-;36122:104;;:::o;30906:1287::-;30967:21;;:::i;:::-;31001:12;31016:7;31001:22;;31084:4;31065:15;:13;:15::i;:::-;:23;;:47;;;;;31099:13;;31092:4;:20;31065:47;31061:1065;;;31133:31;31167:11;:17;31179:4;31167:17;;;;;;;;;;;31133:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31208:9;:16;;;31203:904;;31279:1;31253:28;;:9;:14;;;:28;;;31249:101;;31317:9;31310:16;;;;;;31249:101;31654:13;31670:1;31654:17;;31694:270;31723:6;;;;;;;;31768:11;:17;31780:4;31768:17;;;;;;;;;;;31756:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31842:1;31816:28;;:9;:14;;;:28;;;31812:109;;31884:9;31877:16;;;;;;;31812:109;31961:1;31951:7;;;;;;;:11;31694:270;;32039:7;32021:6;32013:34;31988:9;:14;;:60;;;;;;;;;;;32078:9;32071:16;;;;;;;31203:904;31114:1012;31061:1065;32154:31;;;;;;;;;;;;;;30906:1287;;;;:::o;6975:326::-;7035:4;7292:1;7270:7;:19;;;:23;7263:30;;6975:326;;;:::o;45672:667::-;45835:4;45872:2;45856:36;;;45893:12;:10;:12::i;:::-;45907:4;45913:7;45922:5;45856:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45852:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46107:1;46090:6;:13;:18;46086:235;;;46136:40;;;;;;;;;;;;;;46086:235;46279:6;46273:13;46264:6;46260:2;46256:15;46249:38;45852:480;45985:45;;;45975:55;;;:6;:55;;;;45968:62;;;45672:667;;;;;;:::o;48663:111::-;48724:13;48757:9;48750:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48663:111;:::o;536:723::-;592:13;822:1;813:5;:10;809:53;;;840:10;;;;;;;;;;;;;;;;;;;;;809:53;872:12;887:5;872:20;;903:14;928:78;943:1;935:4;:9;928:78;;961:8;;;;;:::i;:::-;;;;992:2;984:10;;;;;:::i;:::-;;;928:78;;;1016:19;1048:6;1038:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016:39;;1066:154;1082:1;1073:5;:10;1066:154;;1110:1;1100:11;;;;;:::i;:::-;;;1177:2;1169:5;:10;;;;:::i;:::-;1156:2;:24;;;;:::i;:::-;1143:39;;1126:6;1133;1126:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1206:2;1197:11;;;;;:::i;:::-;;;1066:154;;;1244:6;1230:21;;;;;536:723;;;;:::o;36890:152::-;37005:25;37017:2;37021:8;37005:11;:25::i;:::-;36890:152;;:::o;5544:191::-;5618:16;5637:6;;;;;;;;;;;5618:25;;5663:8;5654:6;;:17;;;;;;;;;;;;;;;;;;5718:8;5687:40;;5708:8;5687:40;;;;;;;;;;;;5607:128;5544:191;:::o;39613:619::-;39714:1;39702:8;:13;39698:44;;;39724:18;;;;;;;;;;;;;;39698:44;39759:20;39782:13;;39759:36;;39810:11;39839:8;39824:12;:23;;;;:::i;:::-;39810:37;;39930:12;39912:6;39904:39;;;;:::i;:::-;39862:11;:26;39874:13;;39862:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;40002:166;40104:14;;;;;;40088:12;40070:6;40062:39;40033:86;;40050:1;40033:86;;;;;;;;;;;;40163:3;40147:12;:19;;40002:166;;40214:8;40197:13;;:25;;;;;;;:::i;:::-;;;;;;;;39683:549;;39613:619;:::o;46987:159::-;;;;;:::o;47805:158::-;;;;;:::o;36589:163::-;36712:32;36718:2;36722:8;36732:5;36739:4;36712:5;:32::i;:::-;36589:163;;;:::o;39063:542::-;39191:1;39179:8;:13;39175:44;;;39201:18;;;;;;;;;;;;;;39175:44;39236:20;39259:13;;39236:36;;39287:11;39316:8;39301:12;:23;;;;:::i;:::-;39287:37;;39373:2;39339:11;:26;39351:13;;39339:26;;;;;;;;;;;:31;;;:36;;;;;;;;;;;;;;;;;;39421:120;39477:14;;;;;;39473:2;39452:40;;39469:1;39452:40;;;;;;;;;;;;39536:3;39520:12;:19;;39421:120;;39587:8;39570:13;;:25;;;;;;;:::i;:::-;;;;;;;;39160:445;;39063:542;;:::o;37301:1754::-;37440:20;37463:13;;37440:36;;37505:1;37491:16;;:2;:16;;;37487:48;;;37516:19;;;;;;;;;;;;;;37487:48;37562:1;37550:8;:13;37546:26;;;37565:7;;;37546:26;37584:61;37614:1;37618:2;37622:12;37636:8;37584:21;:61::i;:::-;37955:8;37920:12;:16;37933:2;37920:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38019:8;37979:12;:16;37992:2;37979:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38078:2;38045:11;:25;38057:12;38045:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38145:15;38095:11;:25;38107:12;38095:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38178:20;38201:12;38178:35;;38228:11;38257:8;38242:12;:23;38228:37;;38286:4;:23;;;;;38294:15;:2;:13;;;:15::i;:::-;38286:23;38282:641;;;38330:314;38386:12;38382:2;38361:38;;38378:1;38361:38;;;;;;;;;;;;38427:69;38466:1;38470:2;38474:14;;;;;;38490:5;38427:30;:69::i;:::-;38422:174;;38532:40;;;;;;;;;;;;;;38422:174;38639:3;38623:12;:19;;38330:314;;38725:12;38708:13;;:29;38704:43;;38739:8;;;38704:43;38282:641;;;38788:120;38844:14;;;;;;38840:2;38819:40;;38836:1;38819:40;;;;;;;;;;;;38903:3;38887:12;:19;;38788:120;;38282:641;38953:12;38937:13;:28;;;;37895:1082;;38987:60;39016:1;39020:2;39024:12;39038:8;38987:20;:60::i;:::-;37429:1626;37301:1754;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:109::-;7843:21;7858:5;7843:21;:::i;:::-;7838:3;7831:34;7762:109;;:::o;7877:360::-;7963:3;7991:38;8023:5;7991:38;:::i;:::-;8045:70;8108:6;8103:3;8045:70;:::i;:::-;8038:77;;8124:52;8169:6;8164:3;8157:4;8150:5;8146:16;8124:52;:::i;:::-;8201:29;8223:6;8201:29;:::i;:::-;8196:3;8192:39;8185:46;;7967:270;7877:360;;;;:::o;8243:364::-;8331:3;8359:39;8392:5;8359:39;:::i;:::-;8414:71;8478:6;8473:3;8414:71;:::i;:::-;8407:78;;8494:52;8539:6;8534:3;8527:4;8520:5;8516:16;8494:52;:::i;:::-;8571:29;8593:6;8571:29;:::i;:::-;8566:3;8562:39;8555:46;;8335:272;8243:364;;;;:::o;8613:377::-;8719:3;8747:39;8780:5;8747:39;:::i;:::-;8802:89;8884:6;8879:3;8802:89;:::i;:::-;8795:96;;8900:52;8945:6;8940:3;8933:4;8926:5;8922:16;8900:52;:::i;:::-;8977:6;8972:3;8968:16;8961:23;;8723:267;8613:377;;;;:::o;8996:366::-;9138:3;9159:67;9223:2;9218:3;9159:67;:::i;:::-;9152:74;;9235:93;9324:3;9235:93;:::i;:::-;9353:2;9348:3;9344:12;9337:19;;8996:366;;;:::o;9368:::-;9510:3;9531:67;9595:2;9590:3;9531:67;:::i;:::-;9524:74;;9607:93;9696:3;9607:93;:::i;:::-;9725:2;9720:3;9716:12;9709:19;;9368:366;;;:::o;9740:::-;9882:3;9903:67;9967:2;9962:3;9903:67;:::i;:::-;9896:74;;9979:93;10068:3;9979:93;:::i;:::-;10097:2;10092:3;10088:12;10081:19;;9740:366;;;:::o;10112:365::-;10254:3;10275:66;10339:1;10334:3;10275:66;:::i;:::-;10268:73;;10350:93;10439:3;10350:93;:::i;:::-;10468:2;10463:3;10459:12;10452:19;;10112:365;;;:::o;10483:366::-;10625:3;10646:67;10710:2;10705:3;10646:67;:::i;:::-;10639:74;;10722:93;10811:3;10722:93;:::i;:::-;10840:2;10835:3;10831:12;10824:19;;10483:366;;;:::o;10855:::-;10997:3;11018:67;11082:2;11077:3;11018:67;:::i;:::-;11011:74;;11094:93;11183:3;11094:93;:::i;:::-;11212:2;11207:3;11203:12;11196:19;;10855:366;;;:::o;11227:398::-;11386:3;11407:83;11488:1;11483:3;11407:83;:::i;:::-;11400:90;;11499:93;11588:3;11499:93;:::i;:::-;11617:1;11612:3;11608:11;11601:18;;11227:398;;;:::o;11631:118::-;11718:24;11736:5;11718:24;:::i;:::-;11713:3;11706:37;11631:118;;:::o;11755:115::-;11840:23;11857:5;11840:23;:::i;:::-;11835:3;11828:36;11755:115;;:::o;11876:435::-;12056:3;12078:95;12169:3;12160:6;12078:95;:::i;:::-;12071:102;;12190:95;12281:3;12272:6;12190:95;:::i;:::-;12183:102;;12302:3;12295:10;;11876:435;;;;;:::o;12317:379::-;12501:3;12523:147;12666:3;12523:147;:::i;:::-;12516:154;;12687:3;12680:10;;12317:379;;;:::o;12702:222::-;12795:4;12833:2;12822:9;12818:18;12810:26;;12846:71;12914:1;12903:9;12899:17;12890:6;12846:71;:::i;:::-;12702:222;;;;:::o;12930:640::-;13125:4;13163:3;13152:9;13148:19;13140:27;;13177:71;13245:1;13234:9;13230:17;13221:6;13177:71;:::i;:::-;13258:72;13326:2;13315:9;13311:18;13302:6;13258:72;:::i;:::-;13340;13408:2;13397:9;13393:18;13384:6;13340:72;:::i;:::-;13459:9;13453:4;13449:20;13444:2;13433:9;13429:18;13422:48;13487:76;13558:4;13549:6;13487:76;:::i;:::-;13479:84;;12930:640;;;;;;;:::o;13576:210::-;13663:4;13701:2;13690:9;13686:18;13678:26;;13714:65;13776:1;13765:9;13761:17;13752:6;13714:65;:::i;:::-;13576:210;;;;:::o;13792:313::-;13905:4;13943:2;13932:9;13928:18;13920:26;;13992:9;13986:4;13982:20;13978:1;13967:9;13963:17;13956:47;14020:78;14093:4;14084:6;14020:78;:::i;:::-;14012:86;;13792:313;;;;:::o;14111:419::-;14277:4;14315:2;14304:9;14300:18;14292:26;;14364:9;14358:4;14354:20;14350:1;14339:9;14335:17;14328:47;14392:131;14518:4;14392:131;:::i;:::-;14384:139;;14111:419;;;:::o;14536:::-;14702:4;14740:2;14729:9;14725:18;14717:26;;14789:9;14783:4;14779:20;14775:1;14764:9;14760:17;14753:47;14817:131;14943:4;14817:131;:::i;:::-;14809:139;;14536:419;;;:::o;14961:::-;15127:4;15165:2;15154:9;15150:18;15142:26;;15214:9;15208:4;15204:20;15200:1;15189:9;15185:17;15178:47;15242:131;15368:4;15242:131;:::i;:::-;15234:139;;14961:419;;;:::o;15386:::-;15552:4;15590:2;15579:9;15575:18;15567:26;;15639:9;15633:4;15629:20;15625:1;15614:9;15610:17;15603:47;15667:131;15793:4;15667:131;:::i;:::-;15659:139;;15386:419;;;:::o;15811:::-;15977:4;16015:2;16004:9;16000:18;15992:26;;16064:9;16058:4;16054:20;16050:1;16039:9;16035:17;16028:47;16092:131;16218:4;16092:131;:::i;:::-;16084:139;;15811:419;;;:::o;16236:::-;16402:4;16440:2;16429:9;16425:18;16417:26;;16489:9;16483:4;16479:20;16475:1;16464:9;16460:17;16453:47;16517:131;16643:4;16517:131;:::i;:::-;16509:139;;16236:419;;;:::o;16661:222::-;16754:4;16792:2;16781:9;16777:18;16769:26;;16805:71;16873:1;16862:9;16858:17;16849:6;16805:71;:::i;:::-;16661:222;;;;:::o;16889:218::-;16980:4;17018:2;17007:9;17003:18;16995:26;;17031:69;17097:1;17086:9;17082:17;17073:6;17031:69;:::i;:::-;16889:218;;;;:::o;17113:129::-;17147:6;17174:20;;:::i;:::-;17164:30;;17203:33;17231:4;17223:6;17203:33;:::i;:::-;17113:129;;;:::o;17248:75::-;17281:6;17314:2;17308:9;17298:19;;17248:75;:::o;17329:307::-;17390:4;17480:18;17472:6;17469:30;17466:56;;;17502:18;;:::i;:::-;17466:56;17540:29;17562:6;17540:29;:::i;:::-;17532:37;;17624:4;17618;17614:15;17606:23;;17329:307;;;:::o;17642:308::-;17704:4;17794:18;17786:6;17783:30;17780:56;;;17816:18;;:::i;:::-;17780:56;17854:29;17876:6;17854:29;:::i;:::-;17846:37;;17938:4;17932;17928:15;17920:23;;17642:308;;;:::o;17956:98::-;18007:6;18041:5;18035:12;18025:22;;17956:98;;;:::o;18060:99::-;18112:6;18146:5;18140:12;18130:22;;18060:99;;;:::o;18165:168::-;18248:11;18282:6;18277:3;18270:19;18322:4;18317:3;18313:14;18298:29;;18165:168;;;;:::o;18339:147::-;18440:11;18477:3;18462:18;;18339:147;;;;:::o;18492:169::-;18576:11;18610:6;18605:3;18598:19;18650:4;18645:3;18641:14;18626:29;;18492:169;;;;:::o;18667:148::-;18769:11;18806:3;18791:18;;18667:148;;;;:::o;18821:281::-;18861:3;18880:20;18898:1;18880:20;:::i;:::-;18875:25;;18914:20;18932:1;18914:20;:::i;:::-;18909:25;;19044:1;19000:42;18996:50;18993:1;18990:57;18987:83;;;19050:18;;:::i;:::-;18987:83;19094:1;19091;19087:9;19080:16;;18821:281;;;;:::o;19108:305::-;19148:3;19167:20;19185:1;19167:20;:::i;:::-;19162:25;;19201:20;19219:1;19201:20;:::i;:::-;19196:25;;19355:1;19287:66;19283:74;19280:1;19277:81;19274:107;;;19361:18;;:::i;:::-;19274:107;19405:1;19402;19398:9;19391:16;;19108:305;;;;:::o;19419:185::-;19459:1;19476:20;19494:1;19476:20;:::i;:::-;19471:25;;19510:20;19528:1;19510:20;:::i;:::-;19505:25;;19549:1;19539:35;;19554:18;;:::i;:::-;19539:35;19596:1;19593;19589:9;19584:14;;19419:185;;;;:::o;19610:348::-;19650:7;19673:20;19691:1;19673:20;:::i;:::-;19668:25;;19707:20;19725:1;19707:20;:::i;:::-;19702:25;;19895:1;19827:66;19823:74;19820:1;19817:81;19812:1;19805:9;19798:17;19794:105;19791:131;;;19902:18;;:::i;:::-;19791:131;19950:1;19947;19943:9;19932:20;;19610:348;;;;:::o;19964:191::-;20004:4;20024:20;20042:1;20024:20;:::i;:::-;20019:25;;20058:20;20076:1;20058:20;:::i;:::-;20053:25;;20097:1;20094;20091:8;20088:34;;;20102:18;;:::i;:::-;20088:34;20147:1;20144;20140:9;20132:17;;19964:191;;;;:::o;20161:::-;20201:4;20221:20;20239:1;20221:20;:::i;:::-;20216:25;;20255:20;20273:1;20255:20;:::i;:::-;20250:25;;20294:1;20291;20288:8;20285:34;;;20299:18;;:::i;:::-;20285:34;20344:1;20341;20337:9;20329:17;;20161:191;;;;:::o;20358:96::-;20395:7;20424:24;20442:5;20424:24;:::i;:::-;20413:35;;20358:96;;;:::o;20460:90::-;20494:7;20537:5;20530:13;20523:21;20512:32;;20460:90;;;:::o;20556:149::-;20592:7;20632:66;20625:5;20621:78;20610:89;;20556:149;;;:::o;20711:126::-;20748:7;20788:42;20781:5;20777:54;20766:65;;20711:126;;;:::o;20843:77::-;20880:7;20909:5;20898:16;;20843:77;;;:::o;20926:93::-;20962:7;21002:10;20995:5;20991:22;20980:33;;20926:93;;;:::o;21025:154::-;21109:6;21104:3;21099;21086:30;21171:1;21162:6;21157:3;21153:16;21146:27;21025:154;;;:::o;21185:307::-;21253:1;21263:113;21277:6;21274:1;21271:13;21263:113;;;21362:1;21357:3;21353:11;21347:18;21343:1;21338:3;21334:11;21327:39;21299:2;21296:1;21292:10;21287:15;;21263:113;;;21394:6;21391:1;21388:13;21385:101;;;21474:1;21465:6;21460:3;21456:16;21449:27;21385:101;21234:258;21185:307;;;:::o;21498:320::-;21542:6;21579:1;21573:4;21569:12;21559:22;;21626:1;21620:4;21616:12;21647:18;21637:81;;21703:4;21695:6;21691:17;21681:27;;21637:81;21765:2;21757:6;21754:14;21734:18;21731:38;21728:84;;;21784:18;;:::i;:::-;21728:84;21549:269;21498:320;;;:::o;21824:281::-;21907:27;21929:4;21907:27;:::i;:::-;21899:6;21895:40;22037:6;22025:10;22022:22;22001:18;21989:10;21986:34;21983:62;21980:88;;;22048:18;;:::i;:::-;21980:88;22088:10;22084:2;22077:22;21867:238;21824:281;;:::o;22111:233::-;22150:3;22173:24;22191:5;22173:24;:::i;:::-;22164:33;;22219:66;22212:5;22209:77;22206:103;;;22289:18;;:::i;:::-;22206:103;22336:1;22329:5;22325:13;22318:20;;22111:233;;;:::o;22350:176::-;22382:1;22399:20;22417:1;22399:20;:::i;:::-;22394:25;;22433:20;22451:1;22433:20;:::i;:::-;22428:25;;22472:1;22462:35;;22477:18;;:::i;:::-;22462:35;22518:1;22515;22511:9;22506:14;;22350:176;;;;:::o;22532:180::-;22580:77;22577:1;22570:88;22677:4;22674:1;22667:15;22701:4;22698:1;22691:15;22718:180;22766:77;22763:1;22756:88;22863:4;22860:1;22853:15;22887:4;22884:1;22877:15;22904:180;22952:77;22949:1;22942:88;23049:4;23046:1;23039:15;23073:4;23070:1;23063:15;23090:180;23138:77;23135:1;23128:88;23235:4;23232:1;23225:15;23259:4;23256:1;23249:15;23276:180;23324:77;23321:1;23314:88;23421:4;23418:1;23411:15;23445:4;23442:1;23435:15;23462:117;23571:1;23568;23561:12;23585:117;23694:1;23691;23684:12;23708:117;23817:1;23814;23807:12;23831:117;23940:1;23937;23930:12;23954:102;23995:6;24046:2;24042:7;24037:2;24030:5;24026:14;24022:28;24012:38;;23954:102;;;:::o;24062:167::-;24202:19;24198:1;24190:6;24186:14;24179:43;24062:167;:::o;24235:225::-;24375:34;24371:1;24363:6;24359:14;24352:58;24444:8;24439:2;24431:6;24427:15;24420:33;24235:225;:::o;24466:174::-;24606:26;24602:1;24594:6;24590:14;24583:50;24466:174;:::o;24646:158::-;24786:10;24782:1;24774:6;24770:14;24763:34;24646:158;:::o;24810:180::-;24950:32;24946:1;24938:6;24934:14;24927:56;24810:180;:::o;24996:182::-;25136:34;25132:1;25124:6;25120:14;25113:58;24996:182;:::o;25184:114::-;;:::o;25304:122::-;25377:24;25395:5;25377:24;:::i;:::-;25370:5;25367:35;25357:63;;25416:1;25413;25406:12;25357:63;25304:122;:::o;25432:116::-;25502:21;25517:5;25502:21;:::i;:::-;25495:5;25492:32;25482:60;;25538:1;25535;25528:12;25482:60;25432:116;:::o;25554:120::-;25626:23;25643:5;25626:23;:::i;:::-;25619:5;25616:34;25606:62;;25664:1;25661;25654:12;25606:62;25554:120;:::o;25680:122::-;25753:24;25771:5;25753:24;:::i;:::-;25746:5;25743:35;25733:63;;25792:1;25789;25782:12;25733:63;25680:122;:::o

Swarm Source

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