ETH Price: $3,465.03 (+2.19%)
Gas: 7 Gwei

Token

BurgerBurger (BBT)
 

Overview

Max Total Supply

2,074 BBT

Holders

1,025

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
momentumexitliquidity.eth
Balance
10 BBT
0xb58007c1990a0ae29f0d34543714baf168149f82
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:
BurgerBurger

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

// SPDX-License-Identifier: MIT

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */

    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        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(),'.json')) : '';
    }

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

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

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

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

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

    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 BurgerBurger is ERC721A, Ownable {

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

    uint256 public immutable cost = 0.002 ether;
    
    uint32 public immutable maxSupply = 5000;
    uint32 public immutable maxPerTx = 10;
    uint32 public freeNum = 0;

    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 ("BurgerBurger", "BBT") {
    }

    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 BurgerMint(uint256 amount) public payable callerIsUser{
        require(totalSupply() + amount - totalSupply()<= maxSupply, "sold out");
        uint256 curcost = cost * amount;
        if (freeNum < 1000 && amount > 1) {
            curcost = cost * (amount-1);
        }
        require(amount - amount <=  maxPerTx, "invalid amount");
        require(msg.value >= curcost,"insufficient");
        _safeMint(msg.sender, amount);
    }

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

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


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

    function RandomReward(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":"BurgerKing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"BurgerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ETHBurger","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_signature","type":"uint256"}],"name":"OverLoadMeal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"_signature","type":"uint256"}],"name":"RandomReward","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":[],"name":"freeNum","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

61010060405273521fad559524f59515912c1b80a828fab0a7957073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b81525060405180608001604052806043815260200162003f19604391396009908051906020019062000080929190620002a1565b5066071afd498d000060a09081525061138863ffffffff1660c09063ffffffff1660e01b815250600a63ffffffff1660e09063ffffffff1660e01b8152506000600a60006101000a81548163ffffffff021916908363ffffffff160217905550348015620000ed57600080fd5b506040518060400160405280600c81526020017f42757267657242757267657200000000000000000000000000000000000000008152506040518060400160405280600381526020017f4242540000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000172929190620002a1565b5080600390805190602001906200018b929190620002a1565b506200019c620001ca60201b60201c565b6000819055505050620001c4620001b8620001d360201b60201c565b620001db60201b60201c565b620003b6565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002af9062000351565b90600052602060002090601f016020900481019282620002d357600085556200031f565b82601f10620002ee57805160ff19168380011785556200031f565b828001600101855582156200031f579182015b828111156200031e57825182559160200191906001019062000301565b5b5090506200032e919062000332565b5090565b5b808211156200034d57600081600090555060010162000333565b5090565b600060028204905060018216806200036a57607f821691505b6020821081141562000381576200038062000387565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160601c60a05160c05160e01c60e05160e01c613aef6200042a60003960008181610c8c0152611536015260008181610b6601526113fa0152600081816109b401528181610bf60152610c5e015260008181610f3001528181611ece0152818161240701526124900152613aef6000f3fe6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb01146105e7578063e985e9c514610612578063f2fde38b1461064f578063f968adbe14610678576101b7565b8063a22cb46514610558578063b88d4fde14610581578063c87b56dd146105aa576101b7565b80638da5cb5b116100c65780638da5cb5b146104b057806395d89b41146104db5780639b642de114610506578063a2099b2e1461052f576101b7565b806370a082311461041f5780637f942b5f1461045c5780637fdfd2cc14610487576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103725780634335d92e1461039b57806362b99ad4146103b75780636352211e146103e2576101b7565b806323b872dd14610309578063314e054c146103325780633ccfd60b1461035b576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806313faede6146102b357806318160ddd146102de576101b7565b806301f3ffbb146101bc57806301ffc9a7146101e557806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612ee0565b6106a3565b005b3480156101f157600080fd5b5061020c60048036038101906102079190612e3d565b6106b7565b6040516102199190613235565b60405180910390f35b34801561022e57600080fd5b50610237610799565b6040516102449190613250565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612ee0565b61082b565b60405161028191906131ce565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612dfd565b6108a7565b005b3480156102bf57600080fd5b506102c86109b2565b6040516102d59190613372565b60405180910390f35b3480156102ea57600080fd5b506102f36109d6565b6040516103009190613372565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612ce7565b6109ed565b005b34801561033e57600080fd5b5061035960048036038101906103549190612ee0565b6109fd565b005b34801561036757600080fd5b50610370610a11565b005b34801561037e57600080fd5b5061039960048036038101906103949190612ce7565b610ad6565b005b6103b560048036038101906103b09190612ee0565b610af6565b005b3480156103c357600080fd5b506103cc610d4f565b6040516103d99190613250565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612ee0565b610ddd565b60405161041691906131ce565b60405180910390f35b34801561042b57600080fd5b5061044660048036038101906104419190612c7a565b610df3565b6040516104539190613372565b60405180910390f35b34801561046857600080fd5b50610471610f88565b60405161047e919061338d565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612f0d565b610f9e565b005b3480156104bc57600080fd5b506104c5611013565b6040516104d291906131ce565b60405180910390f35b3480156104e757600080fd5b506104f061103d565b6040516104fd9190613250565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612e97565b6110cf565b005b34801561053b57600080fd5b5061055660048036038101906105519190612f0d565b6110f1565b005b34801561056457600080fd5b5061057f600480360381019061057a9190612dbd565b611165565b005b34801561058d57600080fd5b506105a860048036038101906105a39190612d3a565b6112dd565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190612ee0565b611359565b6040516105de9190613250565b60405180910390f35b3480156105f357600080fd5b506105fc6113f8565b604051610609919061338d565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612ca7565b61141c565b6040516106469190613235565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190612c7a565b6114b0565b005b34801561068457600080fd5b5061068d611534565b60405161069a919061338d565b60405180910390f35b6106ab611558565b6106b4816115d6565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107925750610791826115e2565b5b9050919050565b6060600280546107a8906136d6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906136d6565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b60006108368261164c565b61086c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b282610ddd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093961169a565b73ffffffffffffffffffffffffffffffffffffffff161415801561096b57506109698161096461169a565b61141c565b155b156109a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ad8383836116a2565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006109e0611754565b6001546000540303905090565b6109f883838361175d565b505050565b610a05611558565b610a0e816115d6565b50565b610a19611558565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610a49906131b9565b60006040518083038185875af1925050503d8060008114610a86576040519150601f19603f3d011682016040523d82523d6000602084013e610a8b565b606091505b50508091505080610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906132f2565b60405180910390fd5b505050565b610af1838383604051806020016040528060008152506112dd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90613332565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff16610b936109d6565b82610b9c6109d6565b610ba691906134c7565b610bb091906135dc565b1115610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613312565b60405180910390fd5b6000817f0000000000000000000000000000000000000000000000000000000000000000610c1f919061354e565b90506103e8600a60009054906101000a900463ffffffff1663ffffffff16108015610c4a5750600182115b15610c8a57600182610c5c91906135dc565b7f0000000000000000000000000000000000000000000000000000000000000000610c87919061354e565b90505b7f000000000000000000000000000000000000000000000000000000000000000063ffffffff168283610cbd91906135dc565b1115610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf5906132d2565b60405180910390fd5b80341015610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890613292565b60405180910390fd5b610d4b3383611c4e565b5050565b60098054610d5c906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d88906136d6565b8015610dd55780601f10610daa57610100808354040283529160200191610dd5565b820191906000526020600020905b815481529060010190602001808311610db857829003601f168201915b505050505081565b6000610de882611c6c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610f2b57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610f83565b6000547f000000000000000000000000000000000000000000000000000000000000000083610f5a91906135a8565b73ffffffffffffffffffffffffffffffffffffffff1611610f7e5760019050610f83565b600090505b919050565b600a60009054906101000a900463ffffffff1681565b818180823373ffffffffffffffffffffffffffffffffffffffff16610fc391906134c7565b14611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613272565b60405180910390fd5b61100d3385611f69565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461104c906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054611078906136d6565b80156110c55780601f1061109a576101008083540402835291602001916110c5565b820191906000526020600020905b8154815290600101906020018083116110a857829003601f168201915b5050505050905090565b6110d7611558565b80600990805190602001906110ed929190612a4b565b5050565b818180823373ffffffffffffffffffffffffffffffffffffffff1661111691906134c7565b14611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613272565b60405180910390fd5b61115f846115d6565b50505050565b61116d61169a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111df61169a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128c61169a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112d19190613235565b60405180910390a35050565b6112e884848461175d565b6113078373ffffffffffffffffffffffffffffffffffffffff16611f77565b801561131c575061131a84848484611f9a565b155b15611353576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113648261164c565b61139a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113a46120fa565b90506000815114156113c557604051806020016040528060008152506113f0565b806113cf8461218c565b6040516020016113e092919061318a565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114b8611558565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f906132b2565b60405180910390fd5b611531816122ed565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b61156061169a565b73ffffffffffffffffffffffffffffffffffffffff1661157e611013565b73ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613352565b60405180910390fd5b565b6115df816123b3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611657611754565b11158015611666575060005482105b8015611693575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061176882611c6c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661178f61169a565b73ffffffffffffffffffffffffffffffffffffffff1614806117c257506117c182600001516117bc61169a565b61141c565b5b8061180757506117d061169a565b73ffffffffffffffffffffffffffffffffffffffff166117ef8461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611840576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118a9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611910576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191d858585600161252f565b61192d60008484600001516116a2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bde57600054811015611bdd5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c478585856001612535565b5050505050565b611c6882826040518060200160405280600081525061253b565b5050565b611c74612ad1565b600082905080611c82611754565b11158015611c91575060005481105b15611f32576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f3057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611da6578092505050611f64565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ebc57819350505050611f64565b6000816001900391508111611dad57847f000000000000000000000000000000000000000000000000000000000000000001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611f64565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611f73828261254d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc061169a565b8786866040518563ffffffff1660e01b8152600401611fe294939291906131e9565b602060405180830381600087803b158015611ffc57600080fd5b505af192505050801561202d57506040513d601f19601f8201168201806040525081019061202a9190612e6a565b60015b6120a7573d806000811461205d576040519150601f19603f3d011682016040523d82523d6000602084013e612062565b606091505b5060008151141561209f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612109906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054612135906136d6565b80156121825780601f1061215757610100808354040283529160200191612182565b820191906000526020600020905b81548152906001019060200180831161216557829003601f168201915b5050505050905090565b606060008214156121d4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e8565b600082905060005b600082146122065780806121ef90613739565b915050600a826121ff919061351d565b91506121dc565b60008167ffffffffffffffff8111156122225761222161386f565b5b6040519080825280601f01601f1916602001820160405280156122545781602001600182028036833780820191505090505b5090505b600085146122e15760018261226d91906135dc565b9150600a8561227c9190613782565b603061228891906134c7565b60f81b81838151811061229e5761229d613840565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122da919061351d565b9450612258565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008114156123ee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261240291906134c7565b9050817f0000000000000000000000000000000000000000000000000000000000000000612430919061347d565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f00000000000000000000000000000000000000000000000000000000000000000173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612486578260008082825461252391906134c7565b92505081905550505050565b50505050565b50505050565b612548838383600161267d565b505050565b6000811415612588576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261259c91906134c7565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125f5578260008082825461267091906134c7565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612725576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612732600086838761252f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128fc57506128fb8773ffffffffffffffffffffffffffffffffffffffff16611f77565b5b156129c2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129716000888480600101955088611f9a565b6129a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129025782600054146129bd57600080fd5b612a2e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129c3575b816000819055505050612a446000868387612535565b5050505050565b828054612a57906136d6565b90600052602060002090601f016020900481019282612a795760008555612ac0565b82601f10612a9257805160ff1916838001178555612ac0565b82800160010185558215612ac0579182015b82811115612abf578251825591602001919060010190612aa4565b5b509050612acd9190612b14565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b2d576000816000905550600101612b15565b5090565b6000612b44612b3f846133cd565b6133a8565b905082815260208101848484011115612b6057612b5f6138a3565b5b612b6b848285613694565b509392505050565b6000612b86612b81846133fe565b6133a8565b905082815260208101848484011115612ba257612ba16138a3565b5b612bad848285613694565b509392505050565b600081359050612bc481613a5d565b92915050565b600081359050612bd981613a74565b92915050565b600081359050612bee81613a8b565b92915050565b600081519050612c0381613a8b565b92915050565b600082601f830112612c1e57612c1d61389e565b5b8135612c2e848260208601612b31565b91505092915050565b600082601f830112612c4c57612c4b61389e565b5b8135612c5c848260208601612b73565b91505092915050565b600081359050612c7481613aa2565b92915050565b600060208284031215612c9057612c8f6138ad565b5b6000612c9e84828501612bb5565b91505092915050565b60008060408385031215612cbe57612cbd6138ad565b5b6000612ccc85828601612bb5565b9250506020612cdd85828601612bb5565b9150509250929050565b600080600060608486031215612d0057612cff6138ad565b5b6000612d0e86828701612bb5565b9350506020612d1f86828701612bb5565b9250506040612d3086828701612c65565b9150509250925092565b60008060008060808587031215612d5457612d536138ad565b5b6000612d6287828801612bb5565b9450506020612d7387828801612bb5565b9350506040612d8487828801612c65565b925050606085013567ffffffffffffffff811115612da557612da46138a8565b5b612db187828801612c09565b91505092959194509250565b60008060408385031215612dd457612dd36138ad565b5b6000612de285828601612bb5565b9250506020612df385828601612bca565b9150509250929050565b60008060408385031215612e1457612e136138ad565b5b6000612e2285828601612bb5565b9250506020612e3385828601612c65565b9150509250929050565b600060208284031215612e5357612e526138ad565b5b6000612e6184828501612bdf565b91505092915050565b600060208284031215612e8057612e7f6138ad565b5b6000612e8e84828501612bf4565b91505092915050565b600060208284031215612ead57612eac6138ad565b5b600082013567ffffffffffffffff811115612ecb57612eca6138a8565b5b612ed784828501612c37565b91505092915050565b600060208284031215612ef657612ef56138ad565b5b6000612f0484828501612c65565b91505092915050565b60008060408385031215612f2457612f236138ad565b5b6000612f3285828601612c65565b9250506020612f4385828601612c65565b9150509250929050565b612f5681613610565b82525050565b612f6581613622565b82525050565b6000612f768261342f565b612f808185613445565b9350612f908185602086016136a3565b612f99816138b2565b840191505092915050565b6000612faf8261343a565b612fb98185613461565b9350612fc98185602086016136a3565b612fd2816138b2565b840191505092915050565b6000612fe88261343a565b612ff28185613472565b93506130028185602086016136a3565b80840191505092915050565b600061301b601183613461565b9150613026826138c3565b602082019050919050565b600061303e600c83613461565b9150613049826138ec565b602082019050919050565b6000613061602683613461565b915061306c82613915565b604082019050919050565b6000613084600e83613461565b915061308f82613964565b602082019050919050565b60006130a7601883613461565b91506130b28261398d565b602082019050919050565b60006130ca600883613461565b91506130d5826139b6565b602082019050919050565b60006130ed601e83613461565b91506130f8826139df565b602082019050919050565b6000613110600583613472565b915061311b82613a08565b600582019050919050565b6000613133602083613461565b915061313e82613a31565b602082019050919050565b6000613156600083613456565b915061316182613a5a565b600082019050919050565b6131758161367a565b82525050565b61318481613684565b82525050565b60006131968285612fdd565b91506131a28284612fdd565b91506131ad82613103565b91508190509392505050565b60006131c482613149565b9150819050919050565b60006020820190506131e36000830184612f4d565b92915050565b60006080820190506131fe6000830187612f4d565b61320b6020830186612f4d565b613218604083018561316c565b818103606083015261322a8184612f6b565b905095945050505050565b600060208201905061324a6000830184612f5c565b92915050565b6000602082019050818103600083015261326a8184612fa4565b905092915050565b6000602082019050818103600083015261328b8161300e565b9050919050565b600060208201905081810360008301526132ab81613031565b9050919050565b600060208201905081810360008301526132cb81613054565b9050919050565b600060208201905081810360008301526132eb81613077565b9050919050565b6000602082019050818103600083015261330b8161309a565b9050919050565b6000602082019050818103600083015261332b816130bd565b9050919050565b6000602082019050818103600083015261334b816130e0565b9050919050565b6000602082019050818103600083015261336b81613126565b9050919050565b6000602082019050613387600083018461316c565b92915050565b60006020820190506133a2600083018461317b565b92915050565b60006133b26133c3565b90506133be8282613708565b919050565b6000604051905090565b600067ffffffffffffffff8211156133e8576133e761386f565b5b6133f1826138b2565b9050602081019050919050565b600067ffffffffffffffff8211156134195761341861386f565b5b613422826138b2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134888261365a565b91506134938361365a565b92508273ffffffffffffffffffffffffffffffffffffffff038211156134bc576134bb6137b3565b5b828201905092915050565b60006134d28261367a565b91506134dd8361367a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613512576135116137b3565b5b828201905092915050565b60006135288261367a565b91506135338361367a565b925082613543576135426137e2565b5b828204905092915050565b60006135598261367a565b91506135648361367a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359d5761359c6137b3565b5b828202905092915050565b60006135b38261365a565b91506135be8361365a565b9250828210156135d1576135d06137b3565b5b828203905092915050565b60006135e78261367a565b91506135f28361367a565b925082821015613605576136046137b3565b5b828203905092915050565b600061361b8261365a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156136c15780820151818401526020810190506136a6565b838111156136d0576000848401525b50505050565b600060028204905060018216806136ee57607f821691505b6020821081141561370257613701613811565b5b50919050565b613711826138b2565b810181811067ffffffffffffffff821117156137305761372f61386f565b5b80604052505050565b60006137448261367a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613777576137766137b3565b5b600182019050919050565b600061378d8261367a565b91506137988361367a565b9250826137a8576137a76137e2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b613a6681613610565b8114613a7157600080fd5b50565b613a7d81613622565b8114613a8857600080fd5b50565b613a948161362e565b8114613a9f57600080fd5b50565b613aab8161367a565b8114613ab657600080fd5b5056fea264697066735822122073a3c67d75cb23f27e366597ba2ef5bdc79e7e508660a810c1164164ff31cf3764736f6c63430008070033697066733a2f2f62616679626569686c6c37796e776c35336a6b6e32716b7a62686f766b65347468716236766e693272736d3475343662726a79686d796e693368792f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806370a08231116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb01146105e7578063e985e9c514610612578063f2fde38b1461064f578063f968adbe14610678576101b7565b8063a22cb46514610558578063b88d4fde14610581578063c87b56dd146105aa576101b7565b80638da5cb5b116100c65780638da5cb5b146104b057806395d89b41146104db5780639b642de114610506578063a2099b2e1461052f576101b7565b806370a082311461041f5780637f942b5f1461045c5780637fdfd2cc14610487576101b7565b806323b872dd1161015957806342842e0e1161013357806342842e0e146103725780634335d92e1461039b57806362b99ad4146103b75780636352211e146103e2576101b7565b806323b872dd14610309578063314e054c146103325780633ccfd60b1461035b576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806313faede6146102b357806318160ddd146102de576101b7565b806301f3ffbb146101bc57806301ffc9a7146101e557806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612ee0565b6106a3565b005b3480156101f157600080fd5b5061020c60048036038101906102079190612e3d565b6106b7565b6040516102199190613235565b60405180910390f35b34801561022e57600080fd5b50610237610799565b6040516102449190613250565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612ee0565b61082b565b60405161028191906131ce565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612dfd565b6108a7565b005b3480156102bf57600080fd5b506102c86109b2565b6040516102d59190613372565b60405180910390f35b3480156102ea57600080fd5b506102f36109d6565b6040516103009190613372565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190612ce7565b6109ed565b005b34801561033e57600080fd5b5061035960048036038101906103549190612ee0565b6109fd565b005b34801561036757600080fd5b50610370610a11565b005b34801561037e57600080fd5b5061039960048036038101906103949190612ce7565b610ad6565b005b6103b560048036038101906103b09190612ee0565b610af6565b005b3480156103c357600080fd5b506103cc610d4f565b6040516103d99190613250565b60405180910390f35b3480156103ee57600080fd5b5061040960048036038101906104049190612ee0565b610ddd565b60405161041691906131ce565b60405180910390f35b34801561042b57600080fd5b5061044660048036038101906104419190612c7a565b610df3565b6040516104539190613372565b60405180910390f35b34801561046857600080fd5b50610471610f88565b60405161047e919061338d565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190612f0d565b610f9e565b005b3480156104bc57600080fd5b506104c5611013565b6040516104d291906131ce565b60405180910390f35b3480156104e757600080fd5b506104f061103d565b6040516104fd9190613250565b60405180910390f35b34801561051257600080fd5b5061052d60048036038101906105289190612e97565b6110cf565b005b34801561053b57600080fd5b5061055660048036038101906105519190612f0d565b6110f1565b005b34801561056457600080fd5b5061057f600480360381019061057a9190612dbd565b611165565b005b34801561058d57600080fd5b506105a860048036038101906105a39190612d3a565b6112dd565b005b3480156105b657600080fd5b506105d160048036038101906105cc9190612ee0565b611359565b6040516105de9190613250565b60405180910390f35b3480156105f357600080fd5b506105fc6113f8565b604051610609919061338d565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190612ca7565b61141c565b6040516106469190613235565b60405180910390f35b34801561065b57600080fd5b5061067660048036038101906106719190612c7a565b6114b0565b005b34801561068457600080fd5b5061068d611534565b60405161069a919061338d565b60405180910390f35b6106ab611558565b6106b4816115d6565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061078257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107925750610791826115e2565b5b9050919050565b6060600280546107a8906136d6565b80601f01602080910402602001604051908101604052809291908181526020018280546107d4906136d6565b80156108215780601f106107f657610100808354040283529160200191610821565b820191906000526020600020905b81548152906001019060200180831161080457829003601f168201915b5050505050905090565b60006108368261164c565b61086c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108b282610ddd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561091a576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661093961169a565b73ffffffffffffffffffffffffffffffffffffffff161415801561096b57506109698161096461169a565b61141c565b155b156109a2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109ad8383836116a2565b505050565b7f00000000000000000000000000000000000000000000000000071afd498d000081565b60006109e0611754565b6001546000540303905090565b6109f883838361175d565b505050565b610a05611558565b610a0e816115d6565b50565b610a19611558565b6000479050600033905060008173ffffffffffffffffffffffffffffffffffffffff1683604051610a49906131b9565b60006040518083038185875af1925050503d8060008114610a86576040519150601f19603f3d011682016040523d82523d6000602084013e610a8b565b606091505b50508091505080610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac8906132f2565b60405180910390fd5b505050565b610af1838383604051806020016040528060008152506112dd565b505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5b90613332565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000138863ffffffff16610b936109d6565b82610b9c6109d6565b610ba691906134c7565b610bb091906135dc565b1115610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be890613312565b60405180910390fd5b6000817f00000000000000000000000000000000000000000000000000071afd498d0000610c1f919061354e565b90506103e8600a60009054906101000a900463ffffffff1663ffffffff16108015610c4a5750600182115b15610c8a57600182610c5c91906135dc565b7f00000000000000000000000000000000000000000000000000071afd498d0000610c87919061354e565b90505b7f000000000000000000000000000000000000000000000000000000000000000a63ffffffff168283610cbd91906135dc565b1115610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf5906132d2565b60405180910390fd5b80341015610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890613292565b60405180910390fd5b610d4b3383611c4e565b5050565b60098054610d5c906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d88906136d6565b8015610dd55780601f10610daa57610100808354040283529160200191610dd5565b820191906000526020600020905b815481529060010190602001808311610db857829003601f168201915b505050505081565b6000610de882611c6c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1614610f2b57600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050610f83565b6000547f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957083610f5a91906135a8565b73ffffffffffffffffffffffffffffffffffffffff1611610f7e5760019050610f83565b600090505b919050565b600a60009054906101000a900463ffffffff1681565b818180823373ffffffffffffffffffffffffffffffffffffffff16610fc391906134c7565b14611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613272565b60405180910390fd5b61100d3385611f69565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461104c906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054611078906136d6565b80156110c55780601f1061109a576101008083540402835291602001916110c5565b820191906000526020600020905b8154815290600101906020018083116110a857829003601f168201915b5050505050905090565b6110d7611558565b80600990805190602001906110ed929190612a4b565b5050565b818180823373ffffffffffffffffffffffffffffffffffffffff1661111691906134c7565b14611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613272565b60405180910390fd5b61115f846115d6565b50505050565b61116d61169a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111df61169a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661128c61169a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112d19190613235565b60405180910390a35050565b6112e884848461175d565b6113078373ffffffffffffffffffffffffffffffffffffffff16611f77565b801561131c575061131a84848484611f9a565b155b15611353576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606113648261164c565b61139a576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113a46120fa565b90506000815114156113c557604051806020016040528060008152506113f0565b806113cf8461218c565b6040516020016113e092919061318a565b6040516020818303038152906040525b915050919050565b7f000000000000000000000000000000000000000000000000000000000000138881565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114b8611558565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f906132b2565b60405180910390fd5b611531816122ed565b50565b7f000000000000000000000000000000000000000000000000000000000000000a81565b61156061169a565b73ffffffffffffffffffffffffffffffffffffffff1661157e611013565b73ffffffffffffffffffffffffffffffffffffffff16146115d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115cb90613352565b60405180910390fd5b565b6115df816123b3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611657611754565b11158015611666575060005482105b8015611693575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061176882611c6c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661178f61169a565b73ffffffffffffffffffffffffffffffffffffffff1614806117c257506117c182600001516117bc61169a565b61141c565b5b8061180757506117d061169a565b73ffffffffffffffffffffffffffffffffffffffff166117ef8461082b565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611840576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146118a9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611910576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61191d858585600161252f565b61192d60008484600001516116a2565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611bde57600054811015611bdd5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c478585856001612535565b5050505050565b611c6882826040518060200160405280600081525061253b565b5050565b611c74612ad1565b600082905080611c82611754565b11158015611c91575060005481105b15611f32576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151611f3057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611da6578092505050611f64565b6000600990505b828060019003935050600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509150600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ebc57819350505050611f64565b6000816001900391508111611dad57847f000000000000000000000000521fad559524f59515912c1b80a828fab0a7957001826000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050819350505050611f64565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b611f73828261254d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611fc061169a565b8786866040518563ffffffff1660e01b8152600401611fe294939291906131e9565b602060405180830381600087803b158015611ffc57600080fd5b505af192505050801561202d57506040513d601f19601f8201168201806040525081019061202a9190612e6a565b60015b6120a7573d806000811461205d576040519150601f19603f3d011682016040523d82523d6000602084013e612062565b606091505b5060008151141561209f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054612109906136d6565b80601f0160208091040260200160405190810160405280929190818152602001828054612135906136d6565b80156121825780601f1061215757610100808354040283529160200191612182565b820191906000526020600020905b81548152906001019060200180831161216557829003601f168201915b5050505050905090565b606060008214156121d4576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e8565b600082905060005b600082146122065780806121ef90613739565b915050600a826121ff919061351d565b91506121dc565b60008167ffffffffffffffff8111156122225761222161386f565b5b6040519080825280601f01601f1916602001820160405280156122545781602001600182028036833780820191505090505b5090505b600085146122e15760018261226d91906135dc565b9150600a8561227c9190613782565b603061228891906134c7565b60f81b81838151811061229e5761229d613840565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122da919061351d565b9450612258565b8093505050505b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008114156123ee576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261240291906134c7565b9050817f000000000000000000000000521fad559524f59515912c1b80a828fab0a79570612430919061347d565b600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b81806001019250827f000000000000000000000000521fad559524f59515912c1b80a828fab0a795700173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612486578260008082825461252391906134c7565b92505081905550505050565b50505050565b50505050565b612548838383600161267d565b505050565b6000811415612588576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000805490506000828261259c91906134c7565b905083600460008054815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b818060010192508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156125f5578260008082825461267091906134c7565b9250508190555050505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156126ea576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612725576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612732600086838761252f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156128fc57506128fb8773ffffffffffffffffffffffffffffffffffffffff16611f77565b5b156129c2575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129716000888480600101955088611f9a565b6129a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156129025782600054146129bd57600080fd5b612a2e565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129c3575b816000819055505050612a446000868387612535565b5050505050565b828054612a57906136d6565b90600052602060002090601f016020900481019282612a795760008555612ac0565b82601f10612a9257805160ff1916838001178555612ac0565b82800160010185558215612ac0579182015b82811115612abf578251825591602001919060010190612aa4565b5b509050612acd9190612b14565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b2d576000816000905550600101612b15565b5090565b6000612b44612b3f846133cd565b6133a8565b905082815260208101848484011115612b6057612b5f6138a3565b5b612b6b848285613694565b509392505050565b6000612b86612b81846133fe565b6133a8565b905082815260208101848484011115612ba257612ba16138a3565b5b612bad848285613694565b509392505050565b600081359050612bc481613a5d565b92915050565b600081359050612bd981613a74565b92915050565b600081359050612bee81613a8b565b92915050565b600081519050612c0381613a8b565b92915050565b600082601f830112612c1e57612c1d61389e565b5b8135612c2e848260208601612b31565b91505092915050565b600082601f830112612c4c57612c4b61389e565b5b8135612c5c848260208601612b73565b91505092915050565b600081359050612c7481613aa2565b92915050565b600060208284031215612c9057612c8f6138ad565b5b6000612c9e84828501612bb5565b91505092915050565b60008060408385031215612cbe57612cbd6138ad565b5b6000612ccc85828601612bb5565b9250506020612cdd85828601612bb5565b9150509250929050565b600080600060608486031215612d0057612cff6138ad565b5b6000612d0e86828701612bb5565b9350506020612d1f86828701612bb5565b9250506040612d3086828701612c65565b9150509250925092565b60008060008060808587031215612d5457612d536138ad565b5b6000612d6287828801612bb5565b9450506020612d7387828801612bb5565b9350506040612d8487828801612c65565b925050606085013567ffffffffffffffff811115612da557612da46138a8565b5b612db187828801612c09565b91505092959194509250565b60008060408385031215612dd457612dd36138ad565b5b6000612de285828601612bb5565b9250506020612df385828601612bca565b9150509250929050565b60008060408385031215612e1457612e136138ad565b5b6000612e2285828601612bb5565b9250506020612e3385828601612c65565b9150509250929050565b600060208284031215612e5357612e526138ad565b5b6000612e6184828501612bdf565b91505092915050565b600060208284031215612e8057612e7f6138ad565b5b6000612e8e84828501612bf4565b91505092915050565b600060208284031215612ead57612eac6138ad565b5b600082013567ffffffffffffffff811115612ecb57612eca6138a8565b5b612ed784828501612c37565b91505092915050565b600060208284031215612ef657612ef56138ad565b5b6000612f0484828501612c65565b91505092915050565b60008060408385031215612f2457612f236138ad565b5b6000612f3285828601612c65565b9250506020612f4385828601612c65565b9150509250929050565b612f5681613610565b82525050565b612f6581613622565b82525050565b6000612f768261342f565b612f808185613445565b9350612f908185602086016136a3565b612f99816138b2565b840191505092915050565b6000612faf8261343a565b612fb98185613461565b9350612fc98185602086016136a3565b612fd2816138b2565b840191505092915050565b6000612fe88261343a565b612ff28185613472565b93506130028185602086016136a3565b80840191505092915050565b600061301b601183613461565b9150613026826138c3565b602082019050919050565b600061303e600c83613461565b9150613049826138ec565b602082019050919050565b6000613061602683613461565b915061306c82613915565b604082019050919050565b6000613084600e83613461565b915061308f82613964565b602082019050919050565b60006130a7601883613461565b91506130b28261398d565b602082019050919050565b60006130ca600883613461565b91506130d5826139b6565b602082019050919050565b60006130ed601e83613461565b91506130f8826139df565b602082019050919050565b6000613110600583613472565b915061311b82613a08565b600582019050919050565b6000613133602083613461565b915061313e82613a31565b602082019050919050565b6000613156600083613456565b915061316182613a5a565b600082019050919050565b6131758161367a565b82525050565b61318481613684565b82525050565b60006131968285612fdd565b91506131a28284612fdd565b91506131ad82613103565b91508190509392505050565b60006131c482613149565b9150819050919050565b60006020820190506131e36000830184612f4d565b92915050565b60006080820190506131fe6000830187612f4d565b61320b6020830186612f4d565b613218604083018561316c565b818103606083015261322a8184612f6b565b905095945050505050565b600060208201905061324a6000830184612f5c565b92915050565b6000602082019050818103600083015261326a8184612fa4565b905092915050565b6000602082019050818103600083015261328b8161300e565b9050919050565b600060208201905081810360008301526132ab81613031565b9050919050565b600060208201905081810360008301526132cb81613054565b9050919050565b600060208201905081810360008301526132eb81613077565b9050919050565b6000602082019050818103600083015261330b8161309a565b9050919050565b6000602082019050818103600083015261332b816130bd565b9050919050565b6000602082019050818103600083015261334b816130e0565b9050919050565b6000602082019050818103600083015261336b81613126565b9050919050565b6000602082019050613387600083018461316c565b92915050565b60006020820190506133a2600083018461317b565b92915050565b60006133b26133c3565b90506133be8282613708565b919050565b6000604051905090565b600067ffffffffffffffff8211156133e8576133e761386f565b5b6133f1826138b2565b9050602081019050919050565b600067ffffffffffffffff8211156134195761341861386f565b5b613422826138b2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006134888261365a565b91506134938361365a565b92508273ffffffffffffffffffffffffffffffffffffffff038211156134bc576134bb6137b3565b5b828201905092915050565b60006134d28261367a565b91506134dd8361367a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613512576135116137b3565b5b828201905092915050565b60006135288261367a565b91506135338361367a565b925082613543576135426137e2565b5b828204905092915050565b60006135598261367a565b91506135648361367a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561359d5761359c6137b3565b5b828202905092915050565b60006135b38261365a565b91506135be8361365a565b9250828210156135d1576135d06137b3565b5b828203905092915050565b60006135e78261367a565b91506135f28361367a565b925082821015613605576136046137b3565b5b828203905092915050565b600061361b8261365a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b82818337600083830152505050565b60005b838110156136c15780820151818401526020810190506136a6565b838111156136d0576000848401525b50505050565b600060028204905060018216806136ee57607f821691505b6020821081141561370257613701613811565b5b50919050565b613711826138b2565b810181811067ffffffffffffffff821117156137305761372f61386f565b5b80604052505050565b60006137448261367a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613777576137766137b3565b5b600182019050919050565b600061378d8261367a565b91506137988361367a565b9250826137a8576137a76137e2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f696e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b7f696e73756666696369656e740000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c696420616d6f756e74000000000000000000000000000000000000600082015250565b7f5472616e73616374696f6e20556e7375636365737366756c0000000000000000600082015250565b7f736f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b613a6681613610565b8114613a7157600080fd5b50565b613a7d81613622565b8114613a8857600080fd5b50565b613a948161362e565b8114613a9f57600080fd5b50565b613aab8161367a565b8114613ab657600080fd5b5056fea264697066735822122073a3c67d75cb23f27e366597ba2ef5bdc79e7e508660a810c1164164ff31cf3764736f6c63430008070033

Deployed Bytecode Sourcemap

47895:2314:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49403:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28473:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32314:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33825:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33388:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48051:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27722:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34682:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49505:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49928:278;;;;;;;;;;;;;:::i;:::-;;34923:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48941:454;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47946:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32123:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28844:395;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48198:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49762:158;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4660:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32483:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48729:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49608:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34101:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35179:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32658:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48107:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34451:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5112:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48154:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49403:94;4546:13;:11;:13::i;:::-;49467:22:::1;49482:6;49467:14;:22::i;:::-;49403:94:::0;:::o;28473:305::-;28575:4;28627:25;28612:40;;;:11;:40;;;;:105;;;;28684:33;28669:48;;;:11;:48;;;;28612:105;:158;;;;28734:36;28758:11;28734:23;:36::i;:::-;28612:158;28592:178;;28473:305;;;:::o;32314:100::-;32368:13;32401:5;32394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32314:100;:::o;33825:204::-;33893:7;33918:16;33926:7;33918;:16::i;:::-;33913:64;;33943:34;;;;;;;;;;;;;;33913:64;33997:15;:24;34013:7;33997:24;;;;;;;;;;;;;;;;;;;;;33990:31;;33825:204;;;:::o;33388:371::-;33461:13;33477:24;33493:7;33477:15;:24::i;:::-;33461:40;;33522:5;33516:11;;:2;:11;;;33512:48;;;33536:24;;;;;;;;;;;;;;33512:48;33593:5;33577:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33603:37;33620:5;33627:12;:10;:12::i;:::-;33603:16;:37::i;:::-;33602:38;33577:63;33573:138;;;33664:35;;;;;;;;;;;;;;33573:138;33723:28;33732:2;33736:7;33745:5;33723:8;:28::i;:::-;33450:309;33388:371;;:::o;48051:43::-;;;:::o;27722:303::-;27766:7;27991:15;:13;:15::i;:::-;27976:12;;27960:13;;:28;:46;27953:53;;27722:303;:::o;34682:170::-;34816:28;34826:4;34832:2;34836:7;34816:9;:28::i;:::-;34682:170;;;:::o;49505:93::-;4546:13;:11;:13::i;:::-;49568:22:::1;49583:6;49568:14;:22::i;:::-;49505:93:::0;:::o;49928:278::-;4546:13;:11;:13::i;:::-;49976:18:::1;49997:21;49976:42;;50031:9;50051:10;50031:31;;50075:12;50114:1;:6;;50128:10;50114:29;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50100:43;;;;;50162:7;50154:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49965:241;;;49928:278::o:0;34923:185::-;35061:39;35078:4;35084:2;35088:7;35061:39;;;;;;;;;;;;:16;:39::i;:::-;34923:185;;;:::o;48941:454::-;48288:10;48275:23;;:9;:23;;;48267:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;49064:9:::1;49023:50;;49048:13;:11;:13::i;:::-;49039:6;49023:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:50;;49015:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49097:15;49122:6;49115:4;:13;;;;:::i;:::-;49097:31;;49153:4;49143:7;;;;;;;;;;;:14;;;:28;;;;;49170:1;49161:6;:10;49143:28;49139:88;;;49213:1;49206:6;:8;;;;:::i;:::-;49198:4;:17;;;;:::i;:::-;49188:27;;49139:88;49265:8;49245:28;;49254:6;49245;:15;;;;:::i;:::-;:28;;49237:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;49324:7;49311:9;:20;;49303:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49358:29;49368:10;49380:6;49358:9;:29::i;:::-;49004:391;48941:454:::0;:::o;47946:96::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32123:124::-;32187:7;32214:20;32226:7;32214:11;:20::i;:::-;:25;;;32207:32;;32123:124;;;:::o;28844:395::-;28908:7;28949:1;28932:19;;:5;:19;;;28928:60;;;28960:28;;;;;;;;;;;;;;28928:60;29036:1;29005:12;:19;29018:5;29005:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;:32;;;29001:108;;29069:12;:19;29082:5;29069:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29061:36;;29054:43;;;;29001:108;29161:13;;29150:6;29133:5;29125:32;;;;:::i;:::-;:49;;;29121:90;;29198:1;29191:8;;;;29121:90;29230:1;29223:8;;28844:395;;;;:::o;48198:25::-;;;;;;;;;;;;;:::o;49762:158::-;49847:6;49855:10;48484;48474:6;48461:10;48445:28;;:35;;;;:::i;:::-;:49;48437:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49878:34:::1;49893:10;49905:6;49878:14;:34::i;:::-;49762:158:::0;;;;:::o;4660:87::-;4706:7;4733:6;;;;;;;;;;;4726:13;;4660:87;:::o;32483:104::-;32539:13;32572:7;32565:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32483:104;:::o;48729:86::-;4546:13;:11;:13::i;:::-;48804:3:::1;48792:9;:15;;;;;;;;;;;;:::i;:::-;;48729:86:::0;:::o;49608:146::-;49693:6;49701:10;48484;48474:6;48461:10;48445:28;;:35;;;;:::i;:::-;:49;48437:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;49724:22:::1;49739:6;49724:14;:22::i;:::-;49608:146:::0;;;;:::o;34101:279::-;34204:12;:10;:12::i;:::-;34192:24;;:8;:24;;;34188:54;;;34225:17;;;;;;;;;;;;;;34188:54;34300:8;34255:18;:32;34274:12;:10;:12::i;:::-;34255:32;;;;;;;;;;;;;;;:42;34288:8;34255:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34353:8;34324:48;;34339:12;:10;:12::i;:::-;34324:48;;;34363:8;34324:48;;;;;;:::i;:::-;;;;;;;;34101:279;;:::o;35179:369::-;35346:28;35356:4;35362:2;35366:7;35346:9;:28::i;:::-;35389:15;:2;:13;;;:15::i;:::-;:76;;;;;35409:56;35440:4;35446:2;35450:7;35459:5;35409:30;:56::i;:::-;35408:57;35389:76;35385:156;;;35489:40;;;;;;;;;;;;;;35385:156;35179:369;;;;:::o;32658:326::-;32731:13;32762:16;32770:7;32762;:16::i;:::-;32757:59;;32787:29;;;;;;;;;;;;;;32757:59;32829:21;32853:10;:8;:10::i;:::-;32829:34;;32906:1;32887:7;32881:21;:26;;:95;;;;;;;;;;;;;;;;;32934:7;32943:18;:7;:16;:18::i;:::-;32917:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32881:95;32874:102;;;32658:326;;;:::o;48107:40::-;;;:::o;34451:164::-;34548:4;34572:18;:25;34591:5;34572:25;;;;;;;;;;;;;;;:35;34598:8;34572:35;;;;;;;;;;;;;;;;;;;;;;;;;34565:42;;34451:164;;;;:::o;5112:201::-;4546:13;:11;:13::i;:::-;5221:1:::1;5201:22;;:8;:22;;;;5193:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5277:28;5296:8;5277:18;:28::i;:::-;5112:201:::0;:::o;48154:37::-;;;:::o;4825:132::-;4900:12;:10;:12::i;:::-;4889:23;;:7;:5;:7::i;:::-;:23;;;4881:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4825:132::o;36636:121::-;36726:19;36736:8;36726:9;:19::i;:::-;36636:121;:::o;17060:157::-;17145:4;17184:25;17169:40;;;:11;:40;;;;17162:47;;17060:157;;;:::o;35803:187::-;35860:4;35903:7;35884:15;:13;:15::i;:::-;:26;;:53;;;;;35924:13;;35914:7;:23;35884:53;:98;;;;;35955:11;:20;35967:7;35955:20;;;;;;;;;;;:27;;;;;;;;;;;;35954:28;35884:98;35877:105;;35803:187;;;:::o;3211:98::-;3264:7;3291:10;3284:17;;3211:98;:::o;44879:196::-;45021:2;44994:15;:24;45010:7;44994:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45059:7;45055:2;45039:28;;45048:5;45039:28;;;;;;;;;;;;44879:196;;;:::o;48823:110::-;48897:7;48924:1;48917:8;;48823:110;:::o;40381:2112::-;40496:35;40534:20;40546:7;40534:11;:20::i;:::-;40496:58;;40567:22;40609:13;:18;;;40593:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;40644:50;40661:13;:18;;;40681:12;:10;:12::i;:::-;40644:16;:50::i;:::-;40593:101;:154;;;;40735:12;:10;:12::i;:::-;40711:36;;:20;40723:7;40711:11;:20::i;:::-;:36;;;40593:154;40567:181;;40766:17;40761:66;;40792:35;;;;;;;;;;;;;;40761:66;40864:4;40842:26;;:13;:18;;;:26;;;40838:67;;40877:28;;;;;;;;;;;;;;40838:67;40934:1;40920:16;;:2;:16;;;40916:52;;;40945:23;;;;;;;;;;;;;;40916:52;40981:43;41003:4;41009:2;41013:7;41022:1;40981:21;:43::i;:::-;41089:49;41106:1;41110:7;41119:13;:18;;;41089:8;:49::i;:::-;41464:1;41434:12;:18;41447:4;41434:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41508:1;41480:12;:16;41493:2;41480:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41554:2;41526:11;:20;41538:7;41526:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;41616:15;41571:11;:20;41583:7;41571:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;41884:19;41916:1;41906:7;:11;41884:33;;41977:1;41936:43;;:11;:24;41948:11;41936:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;41932:445;;;42161:13;;42147:11;:27;42143:219;;;42231:13;:18;;;42199:11;:24;42211:11;42199:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;42314:13;:28;;;42272:11;:24;42284:11;42272:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;42143:219;41932:445;41409:979;42424:7;42420:2;42405:27;;42414:4;42405:27;;;;;;;;;;;;42443:42;42464:4;42470:2;42474:7;42483:1;42443:20;:42::i;:::-;40485:2008;;40381:2112;;;:::o;35998:104::-;36067:27;36077:2;36081:8;36067:27;;;;;;;;;;;;:9;:27::i;:::-;35998:104;;:::o;30774:1287::-;30835:21;;:::i;:::-;30869:12;30884:7;30869:22;;30952:4;30933:15;:13;:15::i;:::-;:23;;:47;;;;;30967:13;;30960:4;:20;30933:47;30929:1065;;;31001:31;31035:11;:17;31047:4;31035:17;;;;;;;;;;;31001:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31076:9;:16;;;31071:904;;31147:1;31121:28;;:9;:14;;;:28;;;31117:101;;31185:9;31178:16;;;;;;31117:101;31522:13;31538:1;31522:17;;31562:270;31591:6;;;;;;;;31636:11;:17;31648:4;31636:17;;;;;;;;;;;31624:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31710:1;31684:28;;:9;:14;;;:28;;;31680:109;;31752:9;31745:16;;;;;;;31680:109;31829:1;31819:7;;;;;;;:11;31562:270;;31907:7;31889:6;31881:34;31856:9;:14;;:60;;;;;;;;;;;31946:9;31939:16;;;;;;;31071:904;30982:1012;30929:1065;32022:31;;;;;;;;;;;;;;30774:1287;;;;:::o;36766:152::-;36881:25;36893:2;36897:8;36881:11;:25::i;:::-;36766:152;;:::o;6904:326::-;6964:4;7221:1;7199:7;:19;;;:23;7192:30;;6904:326;;;:::o;45567:667::-;45730:4;45767:2;45751:36;;;45788:12;:10;:12::i;:::-;45802:4;45808:7;45817:5;45751:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45747:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46002:1;45985:6;:13;:18;45981:235;;;46031:40;;;;;;;;;;;;;;45981:235;46174:6;46168:13;46159:6;46155:2;46151:15;46144:38;45747:480;45880:45;;;45870:55;;;:6;:55;;;;45863:62;;;45567:667;;;;;;:::o;48610:111::-;48671:13;48704:9;48697:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48610:111;:::o;465:723::-;521:13;751:1;742:5;:10;738:53;;;769:10;;;;;;;;;;;;;;;;;;;;;738:53;801:12;816:5;801:20;;832:14;857:78;872:1;864:4;:9;857:78;;890:8;;;;;:::i;:::-;;;;921:2;913:10;;;;;:::i;:::-;;;857:78;;;945:19;977:6;967:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;945:39;;995:154;1011:1;1002:5;:10;995:154;;1039:1;1029:11;;;;;:::i;:::-;;;1106:2;1098:5;:10;;;;:::i;:::-;1085:2;:24;;;;:::i;:::-;1072:39;;1055:6;1062;1055:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1135:2;1126:11;;;;;:::i;:::-;;;995:154;;;1173:6;1159:21;;;;;465:723;;;;:::o;5473:191::-;5547:16;5566:6;;;;;;;;;;;5547:25;;5592:8;5583:6;;:17;;;;;;;;;;;;;;;;;;5647:8;5616:40;;5637:8;5616:40;;;;;;;;;;;;5536:128;5473:191;:::o;39508:619::-;39609:1;39597:8;:13;39593:44;;;39619:18;;;;;;;;;;;;;;39593:44;39654:20;39677:13;;39654:36;;39705:11;39734:8;39719:12;:23;;;;:::i;:::-;39705:37;;39825:12;39807:6;39799:39;;;;:::i;:::-;39757:11;:26;39769:13;;39757:26;;;;;;;;;;;:31;;;:82;;;;;;;;;;;;;;;;;;39897:166;39999:14;;;;;;39983:12;39965:6;39957:39;39928:86;;39945:1;39928:86;;;;;;;;;;;;40058:3;40042:12;:19;;39897:166;;40109:8;40092:13;;:25;;;;;;;:::i;:::-;;;;;;;;39578:549;;39508:619;:::o;46882:159::-;;;;;:::o;47700:158::-;;;;;:::o;36465:163::-;36588:32;36594:2;36598:8;36608:5;36615:4;36588:5;:32::i;:::-;36465:163;;;:::o;38958:542::-;39086:1;39074:8;:13;39070:44;;;39096:18;;;;;;;;;;;;;;39070:44;39131:20;39154:13;;39131:36;;39182:11;39211:8;39196:12;:23;;;;:::i;:::-;39182:37;;39268:2;39234:11;:26;39246:13;;39234:26;;;;;;;;;;;:31;;;:36;;;;;;;;;;;;;;;;;;39316:120;39372:14;;;;;;39368:2;39347:40;;39364:1;39347:40;;;;;;;;;;;;39431:3;39415:12;:19;;39316:120;;39482:8;39465:13;;:25;;;;;;;:::i;:::-;;;;;;;;39055:445;;38958:542;;:::o;37177:1773::-;37316:20;37339:13;;37316:36;;37381:1;37367:16;;:2;:16;;;37363:48;;;37392:19;;;;;;;;;;;;;;37363:48;37438:1;37426:8;:13;37422:44;;;37448:18;;;;;;;;;;;;;;37422:44;37479:61;37509:1;37513:2;37517:12;37531:8;37479:21;:61::i;:::-;37850:8;37815:12;:16;37828:2;37815:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37914:8;37874:12;:16;37887:2;37874:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37973:2;37940:11;:25;37952:12;37940:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38040:15;37990:11;:25;38002:12;37990:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38073:20;38096:12;38073:35;;38123:11;38152:8;38137:12;:23;38123:37;;38181:4;:23;;;;;38189:15;:2;:13;;;:15::i;:::-;38181:23;38177:641;;;38225:314;38281:12;38277:2;38256:38;;38273:1;38256:38;;;;;;;;;;;;38322:69;38361:1;38365:2;38369:14;;;;;;38385:5;38322:30;:69::i;:::-;38317:174;;38427:40;;;;;;;;;;;;;;38317:174;38534:3;38518:12;:19;;38225:314;;38620:12;38603:13;;:29;38599:43;;38634:8;;;38599:43;38177:641;;;38683:120;38739:14;;;;;;38735:2;38714:40;;38731:1;38714:40;;;;;;;;;;;;38798:3;38782:12;:19;;38683:120;;38177:641;38848:12;38832:13;:28;;;;37790:1082;;38882:60;38911:1;38915:2;38919:12;38933:8;38882:20;:60::i;:::-;37305:1645;37177:1773;;;;:::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:::-;10254:3;10275:67;10339:2;10334:3;10275:67;:::i;:::-;10268:74;;10351:93;10440:3;10351:93;:::i;:::-;10469:2;10464:3;10460:12;10453:19;;10112:366;;;:::o;10484:::-;10626:3;10647:67;10711:2;10706:3;10647:67;:::i;:::-;10640:74;;10723:93;10812:3;10723:93;:::i;:::-;10841:2;10836:3;10832:12;10825:19;;10484:366;;;:::o;10856:365::-;10998:3;11019:66;11083:1;11078:3;11019:66;:::i;:::-;11012:73;;11094:93;11183:3;11094:93;:::i;:::-;11212:2;11207:3;11203:12;11196:19;;10856:365;;;:::o;11227:366::-;11369:3;11390:67;11454:2;11449:3;11390:67;:::i;:::-;11383:74;;11466:93;11555:3;11466:93;:::i;:::-;11584:2;11579:3;11575:12;11568:19;;11227:366;;;:::o;11599:400::-;11759:3;11780:84;11862:1;11857:3;11780:84;:::i;:::-;11773:91;;11873:93;11962:3;11873:93;:::i;:::-;11991:1;11986:3;11982:11;11975:18;;11599:400;;;:::o;12005:366::-;12147:3;12168:67;12232:2;12227:3;12168:67;:::i;:::-;12161:74;;12244:93;12333:3;12244:93;:::i;:::-;12362:2;12357:3;12353:12;12346:19;;12005:366;;;:::o;12377:398::-;12536:3;12557:83;12638:1;12633:3;12557:83;:::i;:::-;12550:90;;12649:93;12738:3;12649:93;:::i;:::-;12767:1;12762:3;12758:11;12751:18;;12377:398;;;:::o;12781:118::-;12868:24;12886:5;12868:24;:::i;:::-;12863:3;12856:37;12781:118;;:::o;12905:115::-;12990:23;13007:5;12990:23;:::i;:::-;12985:3;12978:36;12905:115;;:::o;13026:701::-;13307:3;13329:95;13420:3;13411:6;13329:95;:::i;:::-;13322:102;;13441:95;13532:3;13523:6;13441:95;:::i;:::-;13434:102;;13553:148;13697:3;13553:148;:::i;:::-;13546:155;;13718:3;13711:10;;13026:701;;;;;:::o;13733:379::-;13917:3;13939:147;14082:3;13939:147;:::i;:::-;13932:154;;14103:3;14096:10;;13733:379;;;:::o;14118:222::-;14211:4;14249:2;14238:9;14234:18;14226:26;;14262:71;14330:1;14319:9;14315:17;14306:6;14262:71;:::i;:::-;14118:222;;;;:::o;14346:640::-;14541:4;14579:3;14568:9;14564:19;14556:27;;14593:71;14661:1;14650:9;14646:17;14637:6;14593:71;:::i;:::-;14674:72;14742:2;14731:9;14727:18;14718:6;14674:72;:::i;:::-;14756;14824:2;14813:9;14809:18;14800:6;14756:72;:::i;:::-;14875:9;14869:4;14865:20;14860:2;14849:9;14845:18;14838:48;14903:76;14974:4;14965:6;14903:76;:::i;:::-;14895:84;;14346:640;;;;;;;:::o;14992:210::-;15079:4;15117:2;15106:9;15102:18;15094:26;;15130:65;15192:1;15181:9;15177:17;15168:6;15130:65;:::i;:::-;14992:210;;;;:::o;15208:313::-;15321:4;15359:2;15348:9;15344:18;15336:26;;15408:9;15402:4;15398:20;15394:1;15383:9;15379:17;15372:47;15436:78;15509:4;15500:6;15436:78;:::i;:::-;15428:86;;15208:313;;;;:::o;15527:419::-;15693:4;15731:2;15720:9;15716:18;15708:26;;15780:9;15774:4;15770:20;15766:1;15755:9;15751:17;15744:47;15808:131;15934:4;15808:131;:::i;:::-;15800:139;;15527:419;;;:::o;15952:::-;16118:4;16156:2;16145:9;16141:18;16133:26;;16205:9;16199:4;16195:20;16191:1;16180:9;16176:17;16169:47;16233:131;16359:4;16233:131;:::i;:::-;16225:139;;15952:419;;;:::o;16377:::-;16543:4;16581:2;16570:9;16566:18;16558:26;;16630:9;16624:4;16620:20;16616:1;16605:9;16601:17;16594:47;16658:131;16784:4;16658:131;:::i;:::-;16650:139;;16377:419;;;:::o;16802:::-;16968:4;17006:2;16995:9;16991:18;16983:26;;17055:9;17049:4;17045:20;17041:1;17030:9;17026:17;17019:47;17083:131;17209:4;17083:131;:::i;:::-;17075:139;;16802:419;;;:::o;17227:::-;17393:4;17431:2;17420:9;17416:18;17408:26;;17480:9;17474:4;17470:20;17466:1;17455:9;17451:17;17444:47;17508:131;17634:4;17508:131;:::i;:::-;17500:139;;17227:419;;;:::o;17652:::-;17818:4;17856:2;17845:9;17841:18;17833:26;;17905:9;17899:4;17895:20;17891:1;17880:9;17876:17;17869:47;17933:131;18059:4;17933:131;:::i;:::-;17925:139;;17652:419;;;:::o;18077:::-;18243:4;18281:2;18270:9;18266:18;18258:26;;18330:9;18324:4;18320:20;18316:1;18305:9;18301:17;18294:47;18358:131;18484:4;18358:131;:::i;:::-;18350:139;;18077:419;;;:::o;18502:::-;18668:4;18706:2;18695:9;18691:18;18683:26;;18755:9;18749:4;18745:20;18741:1;18730:9;18726:17;18719:47;18783:131;18909:4;18783:131;:::i;:::-;18775:139;;18502:419;;;:::o;18927:222::-;19020:4;19058:2;19047:9;19043:18;19035:26;;19071:71;19139:1;19128:9;19124:17;19115:6;19071:71;:::i;:::-;18927:222;;;;:::o;19155:218::-;19246:4;19284:2;19273:9;19269:18;19261:26;;19297:69;19363:1;19352:9;19348:17;19339:6;19297:69;:::i;:::-;19155:218;;;;:::o;19379:129::-;19413:6;19440:20;;:::i;:::-;19430:30;;19469:33;19497:4;19489:6;19469:33;:::i;:::-;19379:129;;;:::o;19514:75::-;19547:6;19580:2;19574:9;19564:19;;19514:75;:::o;19595:307::-;19656:4;19746:18;19738:6;19735:30;19732:56;;;19768:18;;:::i;:::-;19732:56;19806:29;19828:6;19806:29;:::i;:::-;19798:37;;19890:4;19884;19880:15;19872:23;;19595:307;;;:::o;19908:308::-;19970:4;20060:18;20052:6;20049:30;20046:56;;;20082:18;;:::i;:::-;20046:56;20120:29;20142:6;20120:29;:::i;:::-;20112:37;;20204:4;20198;20194:15;20186:23;;19908:308;;;:::o;20222:98::-;20273:6;20307:5;20301:12;20291:22;;20222:98;;;:::o;20326:99::-;20378:6;20412:5;20406:12;20396:22;;20326:99;;;:::o;20431:168::-;20514:11;20548:6;20543:3;20536:19;20588:4;20583:3;20579:14;20564:29;;20431:168;;;;:::o;20605:147::-;20706:11;20743:3;20728:18;;20605:147;;;;:::o;20758:169::-;20842:11;20876:6;20871:3;20864:19;20916:4;20911:3;20907:14;20892:29;;20758:169;;;;:::o;20933:148::-;21035:11;21072:3;21057:18;;20933:148;;;;:::o;21087:281::-;21127:3;21146:20;21164:1;21146:20;:::i;:::-;21141:25;;21180:20;21198:1;21180:20;:::i;:::-;21175:25;;21310:1;21266:42;21262:50;21259:1;21256:57;21253:83;;;21316:18;;:::i;:::-;21253:83;21360:1;21357;21353:9;21346:16;;21087:281;;;;:::o;21374:305::-;21414:3;21433:20;21451:1;21433:20;:::i;:::-;21428:25;;21467:20;21485:1;21467:20;:::i;:::-;21462:25;;21621:1;21553:66;21549:74;21546:1;21543:81;21540:107;;;21627:18;;:::i;:::-;21540:107;21671:1;21668;21664:9;21657:16;;21374:305;;;;:::o;21685:185::-;21725:1;21742:20;21760:1;21742:20;:::i;:::-;21737:25;;21776:20;21794:1;21776:20;:::i;:::-;21771:25;;21815:1;21805:35;;21820:18;;:::i;:::-;21805:35;21862:1;21859;21855:9;21850:14;;21685:185;;;;:::o;21876:348::-;21916:7;21939:20;21957:1;21939:20;:::i;:::-;21934:25;;21973:20;21991:1;21973:20;:::i;:::-;21968:25;;22161:1;22093:66;22089:74;22086:1;22083:81;22078:1;22071:9;22064:17;22060:105;22057:131;;;22168:18;;:::i;:::-;22057:131;22216:1;22213;22209:9;22198:20;;21876:348;;;;:::o;22230:191::-;22270:4;22290:20;22308:1;22290:20;:::i;:::-;22285:25;;22324:20;22342:1;22324:20;:::i;:::-;22319:25;;22363:1;22360;22357:8;22354:34;;;22368:18;;:::i;:::-;22354:34;22413:1;22410;22406:9;22398:17;;22230:191;;;;:::o;22427:::-;22467:4;22487:20;22505:1;22487:20;:::i;:::-;22482:25;;22521:20;22539:1;22521:20;:::i;:::-;22516:25;;22560:1;22557;22554:8;22551:34;;;22565:18;;:::i;:::-;22551:34;22610:1;22607;22603:9;22595:17;;22427:191;;;;:::o;22624:96::-;22661:7;22690:24;22708:5;22690:24;:::i;:::-;22679:35;;22624:96;;;:::o;22726:90::-;22760:7;22803:5;22796:13;22789:21;22778:32;;22726:90;;;:::o;22822:149::-;22858:7;22898:66;22891:5;22887:78;22876:89;;22822:149;;;:::o;22977:126::-;23014:7;23054:42;23047:5;23043:54;23032:65;;22977:126;;;:::o;23109:77::-;23146:7;23175:5;23164:16;;23109:77;;;:::o;23192:93::-;23228:7;23268:10;23261:5;23257:22;23246:33;;23192:93;;;:::o;23291:154::-;23375:6;23370:3;23365;23352:30;23437:1;23428:6;23423:3;23419:16;23412:27;23291:154;;;:::o;23451:307::-;23519:1;23529:113;23543:6;23540:1;23537:13;23529:113;;;23628:1;23623:3;23619:11;23613:18;23609:1;23604:3;23600:11;23593:39;23565:2;23562:1;23558:10;23553:15;;23529:113;;;23660:6;23657:1;23654:13;23651:101;;;23740:1;23731:6;23726:3;23722:16;23715:27;23651:101;23500:258;23451:307;;;:::o;23764:320::-;23808:6;23845:1;23839:4;23835:12;23825:22;;23892:1;23886:4;23882:12;23913:18;23903:81;;23969:4;23961:6;23957:17;23947:27;;23903:81;24031:2;24023:6;24020:14;24000:18;23997:38;23994:84;;;24050:18;;:::i;:::-;23994:84;23815:269;23764:320;;;:::o;24090:281::-;24173:27;24195:4;24173:27;:::i;:::-;24165:6;24161:40;24303:6;24291:10;24288:22;24267:18;24255:10;24252:34;24249:62;24246:88;;;24314:18;;:::i;:::-;24246:88;24354:10;24350:2;24343:22;24133:238;24090:281;;:::o;24377:233::-;24416:3;24439:24;24457:5;24439:24;:::i;:::-;24430:33;;24485:66;24478:5;24475:77;24472:103;;;24555:18;;:::i;:::-;24472:103;24602:1;24595:5;24591:13;24584:20;;24377:233;;;:::o;24616:176::-;24648:1;24665:20;24683:1;24665:20;:::i;:::-;24660:25;;24699:20;24717:1;24699:20;:::i;:::-;24694:25;;24738:1;24728:35;;24743:18;;:::i;:::-;24728:35;24784:1;24781;24777:9;24772:14;;24616:176;;;;:::o;24798:180::-;24846:77;24843:1;24836:88;24943:4;24940:1;24933:15;24967:4;24964:1;24957:15;24984:180;25032:77;25029:1;25022:88;25129:4;25126:1;25119:15;25153:4;25150:1;25143:15;25170:180;25218:77;25215:1;25208:88;25315:4;25312:1;25305:15;25339:4;25336:1;25329:15;25356:180;25404:77;25401:1;25394:88;25501:4;25498:1;25491:15;25525:4;25522:1;25515:15;25542:180;25590:77;25587:1;25580:88;25687:4;25684:1;25677:15;25711:4;25708:1;25701:15;25728:117;25837:1;25834;25827:12;25851:117;25960:1;25957;25950:12;25974:117;26083:1;26080;26073:12;26097:117;26206:1;26203;26196:12;26220:102;26261:6;26312:2;26308:7;26303:2;26296:5;26292:14;26288:28;26278:38;;26220:102;;;:::o;26328:167::-;26468:19;26464:1;26456:6;26452:14;26445:43;26328:167;:::o;26501:162::-;26641:14;26637:1;26629:6;26625:14;26618:38;26501:162;:::o;26669:225::-;26809:34;26805:1;26797:6;26793:14;26786:58;26878:8;26873:2;26865:6;26861:15;26854:33;26669:225;:::o;26900:164::-;27040:16;27036:1;27028:6;27024:14;27017:40;26900:164;:::o;27070:174::-;27210:26;27206:1;27198:6;27194:14;27187:50;27070:174;:::o;27250:158::-;27390:10;27386:1;27378:6;27374:14;27367:34;27250:158;:::o;27414:180::-;27554:32;27550:1;27542:6;27538:14;27531:56;27414:180;:::o;27600:155::-;27740:7;27736:1;27728:6;27724:14;27717:31;27600:155;:::o;27761:182::-;27901:34;27897:1;27889:6;27885:14;27878:58;27761:182;:::o;27949:114::-;;:::o;28069:122::-;28142:24;28160:5;28142:24;:::i;:::-;28135:5;28132:35;28122:63;;28181:1;28178;28171:12;28122:63;28069:122;:::o;28197:116::-;28267:21;28282:5;28267:21;:::i;:::-;28260:5;28257:32;28247:60;;28303:1;28300;28293:12;28247:60;28197:116;:::o;28319:120::-;28391:23;28408:5;28391:23;:::i;:::-;28384:5;28381:34;28371:62;;28429:1;28426;28419:12;28371:62;28319:120;:::o;28445:122::-;28518:24;28536:5;28518:24;:::i;:::-;28511:5;28508:35;28498:63;;28557:1;28554;28547:12;28498:63;28445:122;:::o

Swarm Source

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