ETH Price: $3,117.54 (+1.53%)
Gas: 5 Gwei

Token

SBE_Bikes (SBE)
 

Overview

Max Total Supply

154 SBE

Holders

57

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
stusssy78.eth
Balance
1 SBE
0xa01db4332d4b646b75842b9a094f4187fb38958b
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:
SBE_Bikes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Counters.sol


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/Bikes.sol



// Edited by Cindy Horn - Extended ERC721A
// 4/15/22 - Created a Presale

// Amended by HashLips

pragma solidity >=0.7.0 <0.9.0;





contract SBE_Bikes is Ownable, ERC721A {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string private uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.022 ether;
  uint256 public maxSupply = 1111;
  uint256 public maxMintAmountPerTx = 10;

  bool public paused = false;
  bool public revealed = true;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri) ERC721A(_name, _symbol) {
    uriPrefix = _initBaseURI;
    setHiddenMetadataUri(_initNotRevealedUri);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  modifier callerIsUser() {
     require(tx.origin == msg.sender, 'The caller is another contract.');
     _;
  }
  
  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) callerIsUser {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _safeMint(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function mintPresale(uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(msg.sender, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      if ( _exists( currentTokenId ) ) {
        address currentTokenOwner = ownerOf(currentTokenId);

        if (currentTokenOwner == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;

          ownedTokenIndex++;
        }
      }
      currentTokenId++;
    }

    return ownedTokenIds;
  }
    
  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, Strings.toString(_tokenId), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

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

  function getUriPrefix() public view onlyOwner returns (string memory) {
    return uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function withdraw() public onlyOwner {
    // This will transfer the remaining contract balance to the owner.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000354565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000354565b50664e28e2290f0000600d55610457600e55600a600f556000601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff021916908315150217905550348015620000d357600080fd5b506040516200443c3803806200443c8339818101604052810190620000f9919062000482565b83836200011b6200010f6200019960201b60201c565b620001a160201b60201c565b81600390805190602001906200013392919062000354565b5080600490805190602001906200014c92919062000354565b506200015d6200026560201b60201c565b600181905550505081600a90805190602001906200017d92919062000354565b506200018f816200026e60201b60201c565b5050505062000777565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b6200027e6200029a60201b60201c565b80600c90805190602001906200029692919062000354565b5050565b620002aa6200019960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d06200032b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000329576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003209062000597565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000362906200065f565b90600052602060002090601f016020900481019282620003865760008555620003d2565b82601f10620003a157805160ff1916838001178555620003d2565b82800160010185558215620003d2579182015b82811115620003d1578251825591602001919060010190620003b4565b5b509050620003e19190620003e5565b5090565b5b8082111562000400576000816000905550600101620003e6565b5090565b60006200041b6200041584620005e2565b620005b9565b9050828152602081018484840111156200043a57620004396200072e565b5b6200044784828562000629565b509392505050565b600082601f83011262000467576200046662000729565b5b81516200047984826020860162000404565b91505092915050565b600080600080608085870312156200049f576200049e62000738565b5b600085015167ffffffffffffffff811115620004c057620004bf62000733565b5b620004ce878288016200044f565b945050602085015167ffffffffffffffff811115620004f257620004f162000733565b5b62000500878288016200044f565b935050604085015167ffffffffffffffff81111562000524576200052362000733565b5b62000532878288016200044f565b925050606085015167ffffffffffffffff81111562000556576200055562000733565b5b62000564878288016200044f565b91505092959194509250565b60006200057f60208362000618565b91506200058c826200074e565b602082019050919050565b60006020820190508181036000830152620005b28162000570565b9050919050565b6000620005c5620005d8565b9050620005d3828262000695565b919050565b6000604051905090565b600067ffffffffffffffff8211156200060057620005ff620006fa565b5b6200060b826200073d565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006495780820151818401526020810190506200062c565b8381111562000659576000848401525b50505050565b600060028204905060018216806200067857607f821691505b602082108114156200068f576200068e620006cb565b5b50919050565b620006a0826200073d565b810181811067ffffffffffffffff82111715620006c257620006c1620006fa565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613cb580620007876000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063ae7c5f76116100ab578063e0a808531161006f578063e0a80853146107d2578063e985e9c5146107fb578063efbd73f414610838578063f2fde38b14610861578063f759867a1461088a57610225565b8063ae7c5f76146106ed578063b071401b14610718578063b88d4fde14610741578063c87b56dd1461076a578063d5abeb01146107a757610225565b806394354fd0116100f257806394354fd01461062757806395d89b4114610652578063a0712d681461067d578063a22cb46514610699578063a45ba8e7146106c257610225565b806370a082311461057f578063715018a6146105bc5780637ec4a659146105d35780638da5cb5b146105fc57610225565b80633ccfd60b116101b1578063518302271161017557806351830227146104985780635503a0e8146104c35780635c975abb146104ee5780636352211e146105195780636f8b44b01461055657610225565b80633ccfd60b146103c957806342842e0e146103e0578063438b63001461040957806344a0d68a146104465780634fdd43cb1461046f57610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806316c38b3c1461034c57806318160ddd1461037557806323b872dd146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612f6b565b6108b3565b60405161025e9190613459565b60405180910390f35b34801561027357600080fd5b5061027c610995565b6040516102899190613474565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061300e565b610a27565b6040516102c691906133d0565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612efe565b610aa3565b005b34801561030457600080fd5b5061030d610bae565b60405161031a9190613596565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612fc5565b610bb4565b005b34801561035857600080fd5b50610373600480360381019061036e9190612f3e565b610bd6565b005b34801561038157600080fd5b5061038a610bfb565b6040516103979190613596565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612de8565b610c12565b005b3480156103d557600080fd5b506103de610c22565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612de8565b610caa565b005b34801561041557600080fd5b50610430600480360381019061042b9190612d7b565b610cca565b60405161043d9190613437565b60405180910390f35b34801561045257600080fd5b5061046d6004803603810190610468919061300e565b610de4565b005b34801561047b57600080fd5b5061049660048036038101906104919190612fc5565b610df6565b005b3480156104a457600080fd5b506104ad610e18565b6040516104ba9190613459565b60405180910390f35b3480156104cf57600080fd5b506104d8610e2b565b6040516104e59190613474565b60405180910390f35b3480156104fa57600080fd5b50610503610eb9565b6040516105109190613459565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b919061300e565b610ecc565b60405161054d91906133d0565b60405180910390f35b34801561056257600080fd5b5061057d6004803603810190610578919061300e565b610ee2565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612d7b565b610ef4565b6040516105b39190613596565b60405180910390f35b3480156105c857600080fd5b506105d1610fc4565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612fc5565b610fd8565b005b34801561060857600080fd5b50610611610ffa565b60405161061e91906133d0565b60405180910390f35b34801561063357600080fd5b5061063c611023565b6040516106499190613596565b60405180910390f35b34801561065e57600080fd5b50610667611029565b6040516106749190613474565b60405180910390f35b6106976004803603810190610692919061300e565b6110bb565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190612ebe565b611280565b005b3480156106ce57600080fd5b506106d76113f8565b6040516106e49190613474565b60405180910390f35b3480156106f957600080fd5b50610702611486565b60405161070f9190613474565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a919061300e565b611520565b005b34801561074d57600080fd5b5061076860048036038101906107639190612e3b565b611532565b005b34801561077657600080fd5b50610791600480360381019061078c919061300e565b6115ae565b60405161079e9190613474565b60405180910390f35b3480156107b357600080fd5b506107bc611707565b6040516107c99190613596565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612f3e565b61170d565b005b34801561080757600080fd5b50610822600480360381019061081d9190612da8565b611732565b60405161082f9190613459565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a919061303b565b6117c6565b005b34801561086d57600080fd5b5061088860048036038101906108839190612d7b565b611886565b005b34801561089657600080fd5b506108b160048036038101906108ac919061300e565b61190a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098e575061098d826119c9565b5b9050919050565b6060600380546109a49061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546109d09061389f565b8015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a3282611a33565b610a68576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aae82610ecc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b35611a81565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b675750610b6581610b60611a81565b611732565b155b15610b9e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba9838383611a89565b505050565b600d5481565b610bbc611b3b565b80600b9080519060200190610bd2929190612b4c565b5050565b610bde611b3b565b80601060006101000a81548160ff02191690831515021790555050565b6000610c05611bb9565b6002546001540303905090565b610c1d838383611bc2565b505050565b610c2a611b3b565b6000610c34610ffa565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c57906133bb565b60006040518083038185875af1925050503d8060008114610c94576040519150601f19603f3d011682016040523d82523d6000602084013e610c99565b606091505b5050905080610ca757600080fd5b50565b610cc583838360405180602001604052806000815250611532565b505050565b60606000610cd783610ef4565b905060008167ffffffffffffffff811115610cf557610cf4613a38565b5b604051908082528060200260200182016040528015610d235781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d405750600e548211155b15610dd857610d4e82611a33565b15610dc5576000610d5e83610ecc565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc35782848381518110610da857610da7613a09565b5b6020026020010181815250508180610dbf90613902565b9250505b505b8180610dd090613902565b925050610d2f565b82945050505050919050565b610dec611b3b565b80600d8190555050565b610dfe611b3b565b80600c9080519060200190610e14929190612b4c565b5050565b601060019054906101000a900460ff1681565b600b8054610e389061389f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e649061389f565b8015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6000610ed782612078565b600001519050919050565b610eea611b3b565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcc611b3b565b610fd66000612307565b565b610fe0611b3b565b80600a9080519060200190610ff6929190612b4c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600480546110389061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546110649061389f565b80156110b15780601f10611086576101008083540402835291602001916110b1565b820191906000526020600020905b81548152906001019060200180831161109457829003601f168201915b5050505050905090565b806000811180156110ce5750600f548111155b61110d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611104906134d6565b60405180910390fd5b600e5481611119610bfb565b61112391906136d4565b1115611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90613556565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613496565b60405180910390fd5b601060009054906101000a900460ff1615611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613516565b60405180910390fd5b81600d54611230919061375b565b341015611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990613576565b60405180910390fd5b61127c33836123cb565b5050565b611288611a81565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ed576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006112fa611a81565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a7611a81565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ec9190613459565b60405180910390a35050565b600c80546114059061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546114319061389f565b801561147e5780601f106114535761010080835404028352916020019161147e565b820191906000526020600020905b81548152906001019060200180831161146157829003601f168201915b505050505081565b6060611490611b3b565b600a805461149d9061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546114c99061389f565b80156115165780601f106114eb57610100808354040283529160200191611516565b820191906000526020600020905b8154815290600101906020018083116114f957829003601f168201915b5050505050905090565b611528611b3b565b80600f8190555050565b61153d848484611bc2565b61155c8373ffffffffffffffffffffffffffffffffffffffff166123e9565b8015611571575061156f8484848461240c565b155b156115a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606115b982611a33565b6115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90613536565b60405180910390fd5b60001515601060019054906101000a900460ff16151514156116a657600c80546116219061389f565b80601f016020809104026020016040519081016040528092919081815260200182805461164d9061389f565b801561169a5780601f1061166f5761010080835404028352916020019161169a565b820191906000526020600020905b81548152906001019060200180831161167d57829003601f168201915b50505050509050611702565b60006116b061256c565b905060008151116116d057604051806020016040528060008152506116fe565b806116da846125fe565b600b6040516020016116ee9392919061338a565b6040516020818303038152906040525b9150505b919050565b600e5481565b611715611b3b565b80601060016101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156117d95750600f548111155b611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906134d6565b60405180910390fd5b600e5481611824610bfb565b61182e91906136d4565b111561186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613556565b60405180910390fd5b611877611b3b565b61188182846123cb565b505050565b61188e611b3b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f5906134b6565b60405180910390fd5b61190781612307565b50565b8060008111801561191d5750600f548111155b61195c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611953906134d6565b60405180910390fd5b600e5481611968610bfb565b61197291906136d4565b11156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613556565b60405180910390fd5b6119bb611b3b565b6119c533836123cb565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a3e611bb9565b11158015611a4d575060015482105b8015611a7a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611b43611a81565b73ffffffffffffffffffffffffffffffffffffffff16611b61610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae906134f6565b60405180910390fd5b565b60006001905090565b6000611bcd82612078565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c59611a81565b73ffffffffffffffffffffffffffffffffffffffff161480611c885750611c8785611c82611a81565b611732565b5b80611ccd5750611c96611a81565b73ffffffffffffffffffffffffffffffffffffffff16611cb584610a27565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d06576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d6d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d7a858585600161275f565b611d8660008487611a89565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561200657600154821461200557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120718585856001612765565b5050505050565b612080612bd2565b60008290508061208e611bb9565b1115801561209d575060015481105b156122d0576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122ce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b2578092505050612302565b5b6001156122cd57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c8578092505050612302565b6121b3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123e582826040518060200160405280600081525061276b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612432611a81565b8786866040518563ffffffff1660e01b815260040161245494939291906133eb565b602060405180830381600087803b15801561246e57600080fd5b505af192505050801561249f57506040513d601f19601f8201168201806040525081019061249c9190612f98565b60015b612519573d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b50600081511415612511576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461257b9061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546125a79061389f565b80156125f45780601f106125c9576101008083540402835291602001916125f4565b820191906000526020600020905b8154815290600101906020018083116125d757829003601f168201915b5050505050905090565b60606000821415612646576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061275a565b600082905060005b6000821461267857808061266190613902565b915050600a82612671919061372a565b915061264e565b60008167ffffffffffffffff81111561269457612693613a38565b5b6040519080825280601f01601f1916602001820160405280156126c65781602001600182028036833780820191505090505b5090505b60008514612753576001826126df91906137b5565b9150600a856126ee919061394b565b60306126fa91906136d4565b60f81b8183815181106127105761270f613a09565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274c919061372a565b94506126ca565b8093505050505b919050565b50505050565b50505050565b612778838383600161277d565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127eb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612826576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612833600086838761275f565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129fd57506129fc8773ffffffffffffffffffffffffffffffffffffffff166123e9565b5b15612ac3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a72600088848060010195508861240c565b612aa8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a03578260015414612abe57600080fd5b612b2f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ac4575b816001819055505050612b456000868387612765565b5050505050565b828054612b589061389f565b90600052602060002090601f016020900481019282612b7a5760008555612bc1565b82601f10612b9357805160ff1916838001178555612bc1565b82800160010185558215612bc1579182015b82811115612bc0578251825591602001919060010190612ba5565b5b509050612bce9190612c15565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c2e576000816000905550600101612c16565b5090565b6000612c45612c40846135d6565b6135b1565b905082815260208101848484011115612c6157612c60613a6c565b5b612c6c84828561385d565b509392505050565b6000612c87612c8284613607565b6135b1565b905082815260208101848484011115612ca357612ca2613a6c565b5b612cae84828561385d565b509392505050565b600081359050612cc581613c23565b92915050565b600081359050612cda81613c3a565b92915050565b600081359050612cef81613c51565b92915050565b600081519050612d0481613c51565b92915050565b600082601f830112612d1f57612d1e613a67565b5b8135612d2f848260208601612c32565b91505092915050565b600082601f830112612d4d57612d4c613a67565b5b8135612d5d848260208601612c74565b91505092915050565b600081359050612d7581613c68565b92915050565b600060208284031215612d9157612d90613a76565b5b6000612d9f84828501612cb6565b91505092915050565b60008060408385031215612dbf57612dbe613a76565b5b6000612dcd85828601612cb6565b9250506020612dde85828601612cb6565b9150509250929050565b600080600060608486031215612e0157612e00613a76565b5b6000612e0f86828701612cb6565b9350506020612e2086828701612cb6565b9250506040612e3186828701612d66565b9150509250925092565b60008060008060808587031215612e5557612e54613a76565b5b6000612e6387828801612cb6565b9450506020612e7487828801612cb6565b9350506040612e8587828801612d66565b925050606085013567ffffffffffffffff811115612ea657612ea5613a71565b5b612eb287828801612d0a565b91505092959194509250565b60008060408385031215612ed557612ed4613a76565b5b6000612ee385828601612cb6565b9250506020612ef485828601612ccb565b9150509250929050565b60008060408385031215612f1557612f14613a76565b5b6000612f2385828601612cb6565b9250506020612f3485828601612d66565b9150509250929050565b600060208284031215612f5457612f53613a76565b5b6000612f6284828501612ccb565b91505092915050565b600060208284031215612f8157612f80613a76565b5b6000612f8f84828501612ce0565b91505092915050565b600060208284031215612fae57612fad613a76565b5b6000612fbc84828501612cf5565b91505092915050565b600060208284031215612fdb57612fda613a76565b5b600082013567ffffffffffffffff811115612ff957612ff8613a71565b5b61300584828501612d38565b91505092915050565b60006020828403121561302457613023613a76565b5b600061303284828501612d66565b91505092915050565b6000806040838503121561305257613051613a76565b5b600061306085828601612d66565b925050602061307185828601612cb6565b9150509250929050565b6000613087838361336c565b60208301905092915050565b61309c816137e9565b82525050565b60006130ad8261365d565b6130b7818561368b565b93506130c283613638565b8060005b838110156130f35781516130da888261307b565b97506130e58361367e565b9250506001810190506130c6565b5085935050505092915050565b613109816137fb565b82525050565b600061311a82613668565b613124818561369c565b935061313481856020860161386c565b61313d81613a7b565b840191505092915050565b600061315382613673565b61315d81856136b8565b935061316d81856020860161386c565b61317681613a7b565b840191505092915050565b600061318c82613673565b61319681856136c9565b93506131a681856020860161386c565b80840191505092915050565b600081546131bf8161389f565b6131c981866136c9565b945060018216600081146131e457600181146131f557613228565b60ff19831686528186019350613228565b6131fe85613648565b60005b8381101561322057815481890152600182019150602081019050613201565b838801955050505b50505092915050565b600061323e601f836136b8565b915061324982613a8c565b602082019050919050565b60006132616026836136b8565b915061326c82613ab5565b604082019050919050565b60006132846014836136b8565b915061328f82613b04565b602082019050919050565b60006132a76020836136b8565b91506132b282613b2d565b602082019050919050565b60006132ca6017836136b8565b91506132d582613b56565b602082019050919050565b60006132ed602f836136b8565b91506132f882613b7f565b604082019050919050565b60006133106000836136ad565b915061331b82613bce565b600082019050919050565b60006133336014836136b8565b915061333e82613bd1565b602082019050919050565b60006133566013836136b8565b915061336182613bfa565b602082019050919050565b61337581613853565b82525050565b61338481613853565b82525050565b60006133968286613181565b91506133a28285613181565b91506133ae82846131b2565b9150819050949350505050565b60006133c682613303565b9150819050919050565b60006020820190506133e56000830184613093565b92915050565b60006080820190506134006000830187613093565b61340d6020830186613093565b61341a604083018561337b565b818103606083015261342c818461310f565b905095945050505050565b6000602082019050818103600083015261345181846130a2565b905092915050565b600060208201905061346e6000830184613100565b92915050565b6000602082019050818103600083015261348e8184613148565b905092915050565b600060208201905081810360008301526134af81613231565b9050919050565b600060208201905081810360008301526134cf81613254565b9050919050565b600060208201905081810360008301526134ef81613277565b9050919050565b6000602082019050818103600083015261350f8161329a565b9050919050565b6000602082019050818103600083015261352f816132bd565b9050919050565b6000602082019050818103600083015261354f816132e0565b9050919050565b6000602082019050818103600083015261356f81613326565b9050919050565b6000602082019050818103600083015261358f81613349565b9050919050565b60006020820190506135ab600083018461337b565b92915050565b60006135bb6135cc565b90506135c782826138d1565b919050565b6000604051905090565b600067ffffffffffffffff8211156135f1576135f0613a38565b5b6135fa82613a7b565b9050602081019050919050565b600067ffffffffffffffff82111561362257613621613a38565b5b61362b82613a7b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136df82613853565b91506136ea83613853565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371f5761371e61397c565b5b828201905092915050565b600061373582613853565b915061374083613853565b9250826137505761374f6139ab565b5b828204905092915050565b600061376682613853565b915061377183613853565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137aa576137a961397c565b5b828202905092915050565b60006137c082613853565b91506137cb83613853565b9250828210156137de576137dd61397c565b5b828203905092915050565b60006137f482613833565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561388a57808201518184015260208101905061386f565b83811115613899576000848401525b50505050565b600060028204905060018216806138b757607f821691505b602082108114156138cb576138ca6139da565b5b50919050565b6138da82613a7b565b810181811067ffffffffffffffff821117156138f9576138f8613a38565b5b80604052505050565b600061390d82613853565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139405761393f61397c565b5b600182019050919050565b600061395682613853565b915061396183613853565b925082613971576139706139ab565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613c2c816137e9565b8114613c3757600080fd5b50565b613c43816137fb565b8114613c4e57600080fd5b50565b613c5a81613807565b8114613c6557600080fd5b50565b613c7181613853565b8114613c7c57600080fd5b5056fea264697066735822122098519fd60f019455dc8d2a2487af5be239b8ca9c46a22a2c5603717c4042ce9f64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000095342455f42696b65730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353424500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52714e766268316f53396f3779677461527157456f5667714b795133423751556b315273473664483159796b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063ae7c5f76116100ab578063e0a808531161006f578063e0a80853146107d2578063e985e9c5146107fb578063efbd73f414610838578063f2fde38b14610861578063f759867a1461088a57610225565b8063ae7c5f76146106ed578063b071401b14610718578063b88d4fde14610741578063c87b56dd1461076a578063d5abeb01146107a757610225565b806394354fd0116100f257806394354fd01461062757806395d89b4114610652578063a0712d681461067d578063a22cb46514610699578063a45ba8e7146106c257610225565b806370a082311461057f578063715018a6146105bc5780637ec4a659146105d35780638da5cb5b146105fc57610225565b80633ccfd60b116101b1578063518302271161017557806351830227146104985780635503a0e8146104c35780635c975abb146104ee5780636352211e146105195780636f8b44b01461055657610225565b80633ccfd60b146103c957806342842e0e146103e0578063438b63001461040957806344a0d68a146104465780634fdd43cb1461046f57610225565b806313faede6116101f857806313faede6146102f857806316ba10e01461032357806316c38b3c1461034c57806318160ddd1461037557806323b872dd146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612f6b565b6108b3565b60405161025e9190613459565b60405180910390f35b34801561027357600080fd5b5061027c610995565b6040516102899190613474565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b4919061300e565b610a27565b6040516102c691906133d0565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190612efe565b610aa3565b005b34801561030457600080fd5b5061030d610bae565b60405161031a9190613596565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190612fc5565b610bb4565b005b34801561035857600080fd5b50610373600480360381019061036e9190612f3e565b610bd6565b005b34801561038157600080fd5b5061038a610bfb565b6040516103979190613596565b60405180910390f35b3480156103ac57600080fd5b506103c760048036038101906103c29190612de8565b610c12565b005b3480156103d557600080fd5b506103de610c22565b005b3480156103ec57600080fd5b5061040760048036038101906104029190612de8565b610caa565b005b34801561041557600080fd5b50610430600480360381019061042b9190612d7b565b610cca565b60405161043d9190613437565b60405180910390f35b34801561045257600080fd5b5061046d6004803603810190610468919061300e565b610de4565b005b34801561047b57600080fd5b5061049660048036038101906104919190612fc5565b610df6565b005b3480156104a457600080fd5b506104ad610e18565b6040516104ba9190613459565b60405180910390f35b3480156104cf57600080fd5b506104d8610e2b565b6040516104e59190613474565b60405180910390f35b3480156104fa57600080fd5b50610503610eb9565b6040516105109190613459565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b919061300e565b610ecc565b60405161054d91906133d0565b60405180910390f35b34801561056257600080fd5b5061057d6004803603810190610578919061300e565b610ee2565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612d7b565b610ef4565b6040516105b39190613596565b60405180910390f35b3480156105c857600080fd5b506105d1610fc4565b005b3480156105df57600080fd5b506105fa60048036038101906105f59190612fc5565b610fd8565b005b34801561060857600080fd5b50610611610ffa565b60405161061e91906133d0565b60405180910390f35b34801561063357600080fd5b5061063c611023565b6040516106499190613596565b60405180910390f35b34801561065e57600080fd5b50610667611029565b6040516106749190613474565b60405180910390f35b6106976004803603810190610692919061300e565b6110bb565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190612ebe565b611280565b005b3480156106ce57600080fd5b506106d76113f8565b6040516106e49190613474565b60405180910390f35b3480156106f957600080fd5b50610702611486565b60405161070f9190613474565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a919061300e565b611520565b005b34801561074d57600080fd5b5061076860048036038101906107639190612e3b565b611532565b005b34801561077657600080fd5b50610791600480360381019061078c919061300e565b6115ae565b60405161079e9190613474565b60405180910390f35b3480156107b357600080fd5b506107bc611707565b6040516107c99190613596565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612f3e565b61170d565b005b34801561080757600080fd5b50610822600480360381019061081d9190612da8565b611732565b60405161082f9190613459565b60405180910390f35b34801561084457600080fd5b5061085f600480360381019061085a919061303b565b6117c6565b005b34801561086d57600080fd5b5061088860048036038101906108839190612d7b565b611886565b005b34801561089657600080fd5b506108b160048036038101906108ac919061300e565b61190a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061097e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061098e575061098d826119c9565b5b9050919050565b6060600380546109a49061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546109d09061389f565b8015610a1d5780601f106109f257610100808354040283529160200191610a1d565b820191906000526020600020905b815481529060010190602001808311610a0057829003601f168201915b5050505050905090565b6000610a3282611a33565b610a68576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aae82610ecc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b16576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b35611a81565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b675750610b6581610b60611a81565b611732565b155b15610b9e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ba9838383611a89565b505050565b600d5481565b610bbc611b3b565b80600b9080519060200190610bd2929190612b4c565b5050565b610bde611b3b565b80601060006101000a81548160ff02191690831515021790555050565b6000610c05611bb9565b6002546001540303905090565b610c1d838383611bc2565b505050565b610c2a611b3b565b6000610c34610ffa565b73ffffffffffffffffffffffffffffffffffffffff1647604051610c57906133bb565b60006040518083038185875af1925050503d8060008114610c94576040519150601f19603f3d011682016040523d82523d6000602084013e610c99565b606091505b5050905080610ca757600080fd5b50565b610cc583838360405180602001604052806000815250611532565b505050565b60606000610cd783610ef4565b905060008167ffffffffffffffff811115610cf557610cf4613a38565b5b604051908082528060200260200182016040528015610d235781602001602082028036833780820191505090505b50905060006001905060005b8381108015610d405750600e548211155b15610dd857610d4e82611a33565b15610dc5576000610d5e83610ecc565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dc35782848381518110610da857610da7613a09565b5b6020026020010181815250508180610dbf90613902565b9250505b505b8180610dd090613902565b925050610d2f565b82945050505050919050565b610dec611b3b565b80600d8190555050565b610dfe611b3b565b80600c9080519060200190610e14929190612b4c565b5050565b601060019054906101000a900460ff1681565b600b8054610e389061389f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e649061389f565b8015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b505050505081565b601060009054906101000a900460ff1681565b6000610ed782612078565b600001519050919050565b610eea611b3b565b80600e8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610fcc611b3b565b610fd66000612307565b565b610fe0611b3b565b80600a9080519060200190610ff6929190612b4c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600480546110389061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546110649061389f565b80156110b15780601f10611086576101008083540402835291602001916110b1565b820191906000526020600020905b81548152906001019060200180831161109457829003601f168201915b5050505050905090565b806000811180156110ce5750600f548111155b61110d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611104906134d6565b60405180910390fd5b600e5481611119610bfb565b61112391906136d4565b1115611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b90613556565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613496565b60405180910390fd5b601060009054906101000a900460ff1615611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613516565b60405180910390fd5b81600d54611230919061375b565b341015611272576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126990613576565b60405180910390fd5b61127c33836123cb565b5050565b611288611a81565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ed576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006112fa611a81565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113a7611a81565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ec9190613459565b60405180910390a35050565b600c80546114059061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546114319061389f565b801561147e5780601f106114535761010080835404028352916020019161147e565b820191906000526020600020905b81548152906001019060200180831161146157829003601f168201915b505050505081565b6060611490611b3b565b600a805461149d9061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546114c99061389f565b80156115165780601f106114eb57610100808354040283529160200191611516565b820191906000526020600020905b8154815290600101906020018083116114f957829003601f168201915b5050505050905090565b611528611b3b565b80600f8190555050565b61153d848484611bc2565b61155c8373ffffffffffffffffffffffffffffffffffffffff166123e9565b8015611571575061156f8484848461240c565b155b156115a8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606115b982611a33565b6115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90613536565b60405180910390fd5b60001515601060019054906101000a900460ff16151514156116a657600c80546116219061389f565b80601f016020809104026020016040519081016040528092919081815260200182805461164d9061389f565b801561169a5780601f1061166f5761010080835404028352916020019161169a565b820191906000526020600020905b81548152906001019060200180831161167d57829003601f168201915b50505050509050611702565b60006116b061256c565b905060008151116116d057604051806020016040528060008152506116fe565b806116da846125fe565b600b6040516020016116ee9392919061338a565b6040516020818303038152906040525b9150505b919050565b600e5481565b611715611b3b565b80601060016101000a81548160ff02191690831515021790555050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156117d95750600f548111155b611818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180f906134d6565b60405180910390fd5b600e5481611824610bfb565b61182e91906136d4565b111561186f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186690613556565b60405180910390fd5b611877611b3b565b61188182846123cb565b505050565b61188e611b3b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f5906134b6565b60405180910390fd5b61190781612307565b50565b8060008111801561191d5750600f548111155b61195c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611953906134d6565b60405180910390fd5b600e5481611968610bfb565b61197291906136d4565b11156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa90613556565b60405180910390fd5b6119bb611b3b565b6119c533836123cb565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611a3e611bb9565b11158015611a4d575060015482105b8015611a7a575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b611b43611a81565b73ffffffffffffffffffffffffffffffffffffffff16611b61610ffa565b73ffffffffffffffffffffffffffffffffffffffff1614611bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bae906134f6565b60405180910390fd5b565b60006001905090565b6000611bcd82612078565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611c38576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611c59611a81565b73ffffffffffffffffffffffffffffffffffffffff161480611c885750611c8785611c82611a81565b611732565b5b80611ccd5750611c96611a81565b73ffffffffffffffffffffffffffffffffffffffff16611cb584610a27565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d06576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d6d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611d7a858585600161275f565b611d8660008487611a89565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561200657600154821461200557878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120718585856001612765565b5050505050565b612080612bd2565b60008290508061208e611bb9565b1115801561209d575060015481105b156122d0576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122ce57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b2578092505050612302565b5b6001156122cd57818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122c8578092505050612302565b6121b3565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123e582826040518060200160405280600081525061276b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612432611a81565b8786866040518563ffffffff1660e01b815260040161245494939291906133eb565b602060405180830381600087803b15801561246e57600080fd5b505af192505050801561249f57506040513d601f19601f8201168201806040525081019061249c9190612f98565b60015b612519573d80600081146124cf576040519150601f19603f3d011682016040523d82523d6000602084013e6124d4565b606091505b50600081511415612511576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461257b9061389f565b80601f01602080910402602001604051908101604052809291908181526020018280546125a79061389f565b80156125f45780601f106125c9576101008083540402835291602001916125f4565b820191906000526020600020905b8154815290600101906020018083116125d757829003601f168201915b5050505050905090565b60606000821415612646576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061275a565b600082905060005b6000821461267857808061266190613902565b915050600a82612671919061372a565b915061264e565b60008167ffffffffffffffff81111561269457612693613a38565b5b6040519080825280601f01601f1916602001820160405280156126c65781602001600182028036833780820191505090505b5090505b60008514612753576001826126df91906137b5565b9150600a856126ee919061394b565b60306126fa91906136d4565b60f81b8183815181106127105761270f613a09565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274c919061372a565b94506126ca565b8093505050505b919050565b50505050565b50505050565b612778838383600161277d565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156127eb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612826576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612833600086838761275f565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156129fd57506129fc8773ffffffffffffffffffffffffffffffffffffffff166123e9565b5b15612ac3575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a72600088848060010195508861240c565b612aa8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612a03578260015414612abe57600080fd5b612b2f565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612ac4575b816001819055505050612b456000868387612765565b5050505050565b828054612b589061389f565b90600052602060002090601f016020900481019282612b7a5760008555612bc1565b82601f10612b9357805160ff1916838001178555612bc1565b82800160010185558215612bc1579182015b82811115612bc0578251825591602001919060010190612ba5565b5b509050612bce9190612c15565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612c2e576000816000905550600101612c16565b5090565b6000612c45612c40846135d6565b6135b1565b905082815260208101848484011115612c6157612c60613a6c565b5b612c6c84828561385d565b509392505050565b6000612c87612c8284613607565b6135b1565b905082815260208101848484011115612ca357612ca2613a6c565b5b612cae84828561385d565b509392505050565b600081359050612cc581613c23565b92915050565b600081359050612cda81613c3a565b92915050565b600081359050612cef81613c51565b92915050565b600081519050612d0481613c51565b92915050565b600082601f830112612d1f57612d1e613a67565b5b8135612d2f848260208601612c32565b91505092915050565b600082601f830112612d4d57612d4c613a67565b5b8135612d5d848260208601612c74565b91505092915050565b600081359050612d7581613c68565b92915050565b600060208284031215612d9157612d90613a76565b5b6000612d9f84828501612cb6565b91505092915050565b60008060408385031215612dbf57612dbe613a76565b5b6000612dcd85828601612cb6565b9250506020612dde85828601612cb6565b9150509250929050565b600080600060608486031215612e0157612e00613a76565b5b6000612e0f86828701612cb6565b9350506020612e2086828701612cb6565b9250506040612e3186828701612d66565b9150509250925092565b60008060008060808587031215612e5557612e54613a76565b5b6000612e6387828801612cb6565b9450506020612e7487828801612cb6565b9350506040612e8587828801612d66565b925050606085013567ffffffffffffffff811115612ea657612ea5613a71565b5b612eb287828801612d0a565b91505092959194509250565b60008060408385031215612ed557612ed4613a76565b5b6000612ee385828601612cb6565b9250506020612ef485828601612ccb565b9150509250929050565b60008060408385031215612f1557612f14613a76565b5b6000612f2385828601612cb6565b9250506020612f3485828601612d66565b9150509250929050565b600060208284031215612f5457612f53613a76565b5b6000612f6284828501612ccb565b91505092915050565b600060208284031215612f8157612f80613a76565b5b6000612f8f84828501612ce0565b91505092915050565b600060208284031215612fae57612fad613a76565b5b6000612fbc84828501612cf5565b91505092915050565b600060208284031215612fdb57612fda613a76565b5b600082013567ffffffffffffffff811115612ff957612ff8613a71565b5b61300584828501612d38565b91505092915050565b60006020828403121561302457613023613a76565b5b600061303284828501612d66565b91505092915050565b6000806040838503121561305257613051613a76565b5b600061306085828601612d66565b925050602061307185828601612cb6565b9150509250929050565b6000613087838361336c565b60208301905092915050565b61309c816137e9565b82525050565b60006130ad8261365d565b6130b7818561368b565b93506130c283613638565b8060005b838110156130f35781516130da888261307b565b97506130e58361367e565b9250506001810190506130c6565b5085935050505092915050565b613109816137fb565b82525050565b600061311a82613668565b613124818561369c565b935061313481856020860161386c565b61313d81613a7b565b840191505092915050565b600061315382613673565b61315d81856136b8565b935061316d81856020860161386c565b61317681613a7b565b840191505092915050565b600061318c82613673565b61319681856136c9565b93506131a681856020860161386c565b80840191505092915050565b600081546131bf8161389f565b6131c981866136c9565b945060018216600081146131e457600181146131f557613228565b60ff19831686528186019350613228565b6131fe85613648565b60005b8381101561322057815481890152600182019150602081019050613201565b838801955050505b50505092915050565b600061323e601f836136b8565b915061324982613a8c565b602082019050919050565b60006132616026836136b8565b915061326c82613ab5565b604082019050919050565b60006132846014836136b8565b915061328f82613b04565b602082019050919050565b60006132a76020836136b8565b91506132b282613b2d565b602082019050919050565b60006132ca6017836136b8565b91506132d582613b56565b602082019050919050565b60006132ed602f836136b8565b91506132f882613b7f565b604082019050919050565b60006133106000836136ad565b915061331b82613bce565b600082019050919050565b60006133336014836136b8565b915061333e82613bd1565b602082019050919050565b60006133566013836136b8565b915061336182613bfa565b602082019050919050565b61337581613853565b82525050565b61338481613853565b82525050565b60006133968286613181565b91506133a28285613181565b91506133ae82846131b2565b9150819050949350505050565b60006133c682613303565b9150819050919050565b60006020820190506133e56000830184613093565b92915050565b60006080820190506134006000830187613093565b61340d6020830186613093565b61341a604083018561337b565b818103606083015261342c818461310f565b905095945050505050565b6000602082019050818103600083015261345181846130a2565b905092915050565b600060208201905061346e6000830184613100565b92915050565b6000602082019050818103600083015261348e8184613148565b905092915050565b600060208201905081810360008301526134af81613231565b9050919050565b600060208201905081810360008301526134cf81613254565b9050919050565b600060208201905081810360008301526134ef81613277565b9050919050565b6000602082019050818103600083015261350f8161329a565b9050919050565b6000602082019050818103600083015261352f816132bd565b9050919050565b6000602082019050818103600083015261354f816132e0565b9050919050565b6000602082019050818103600083015261356f81613326565b9050919050565b6000602082019050818103600083015261358f81613349565b9050919050565b60006020820190506135ab600083018461337b565b92915050565b60006135bb6135cc565b90506135c782826138d1565b919050565b6000604051905090565b600067ffffffffffffffff8211156135f1576135f0613a38565b5b6135fa82613a7b565b9050602081019050919050565b600067ffffffffffffffff82111561362257613621613a38565b5b61362b82613a7b565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136df82613853565b91506136ea83613853565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561371f5761371e61397c565b5b828201905092915050565b600061373582613853565b915061374083613853565b9250826137505761374f6139ab565b5b828204905092915050565b600061376682613853565b915061377183613853565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137aa576137a961397c565b5b828202905092915050565b60006137c082613853565b91506137cb83613853565b9250828210156137de576137dd61397c565b5b828203905092915050565b60006137f482613833565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561388a57808201518184015260208101905061386f565b83811115613899576000848401525b50505050565b600060028204905060018216806138b757607f821691505b602082108114156138cb576138ca6139da565b5b50919050565b6138da82613a7b565b810181811067ffffffffffffffff821117156138f9576138f8613a38565b5b80604052505050565b600061390d82613853565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156139405761393f61397c565b5b600182019050919050565b600061395682613853565b915061396183613853565b925082613971576139706139ab565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163742e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b613c2c816137e9565b8114613c3757600080fd5b50565b613c43816137fb565b8114613c4e57600080fd5b50565b613c5a81613807565b8114613c6557600080fd5b50565b613c7181613853565b8114613c7c57600080fd5b5056fea264697066735822122098519fd60f019455dc8d2a2487af5be239b8ca9c46a22a2c5603717c4042ce9f64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000095342455f42696b65730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000353424500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d52714e766268316f53396f3779677461527157456f5667714b795133423751556b315273473664483159796b2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): SBE_Bikes
Arg [1] : _symbol (string): SBE
Arg [2] : _initBaseURI (string): ipfs://QmRqNvbh1oS9o7ygtaRqWEoVgqKyQ3B7QUk1RsG6dH1Yyk/
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 5342455f42696b65730000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5342450000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d52714e766268316f53396f3779677461527157456f5667
Arg [10] : 714b795133423751556b315273473664483159796b2f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47018:4463:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29090:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32203:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33706:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33269:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47284:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50614:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50720:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28339:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34571:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50803:462;;;;;;;;;;;;;:::i;:::-;;34812:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48651:694;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49949:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50265:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47434:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47206:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47403:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32011:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50029:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29459:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6771:103;;;;;;;;;;;;;:::i;:::-;;50403:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6123:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47358:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32372:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48082:260;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33982:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47244:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50509:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50129:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35068:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49355:501;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47322:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49862:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34340:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48350:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7029:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48511:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29090:305;29192:4;29244:25;29229:40;;;:11;:40;;;;:105;;;;29301:33;29286:48;;;:11;:48;;;;29229:105;:158;;;;29351:36;29375:11;29351:23;:36::i;:::-;29229:158;29209:178;;29090:305;;;:::o;32203:100::-;32257:13;32290:5;32283:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32203:100;:::o;33706:204::-;33774:7;33799:16;33807:7;33799;:16::i;:::-;33794:64;;33824:34;;;;;;;;;;;;;;33794:64;33878:15;:24;33894:7;33878:24;;;;;;;;;;;;;;;;;;;;;33871:31;;33706:204;;;:::o;33269:371::-;33342:13;33358:24;33374:7;33358:15;:24::i;:::-;33342:40;;33403:5;33397:11;;:2;:11;;;33393:48;;;33417:24;;;;;;;;;;;;;;33393:48;33474:5;33458:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;33484:37;33501:5;33508:12;:10;:12::i;:::-;33484:16;:37::i;:::-;33483:38;33458:63;33454:138;;;33545:35;;;;;;;;;;;;;;33454:138;33604:28;33613:2;33617:7;33626:5;33604:8;:28::i;:::-;33331:309;33269:371;;:::o;47284:33::-;;;;:::o;50614:100::-;6009:13;:11;:13::i;:::-;50698:10:::1;50686:9;:22;;;;;;;;;;;;:::i;:::-;;50614:100:::0;:::o;50720:77::-;6009:13;:11;:13::i;:::-;50785:6:::1;50776;;:15;;;;;;;;;;;;;;;;;;50720:77:::0;:::o;28339:303::-;28383:7;28608:15;:13;:15::i;:::-;28593:12;;28577:13;;:28;:46;28570:53;;28339:303;:::o;34571:170::-;34705:28;34715:4;34721:2;34725:7;34705:9;:28::i;:::-;34571:170;;;:::o;50803:462::-;6009:13;:11;:13::i;:::-;51087:7:::1;51108;:5;:7::i;:::-;51100:21;;51129;51100:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51086:69;;;51170:2;51162:11;;;::::0;::::1;;50840:425;50803:462::o:0;34812:185::-;34950:39;34967:4;34973:2;34977:7;34950:39;;;;;;;;;;;;:16;:39::i;:::-;34812:185;;;:::o;48651:694::-;48726:16;48754:23;48780:17;48790:6;48780:9;:17::i;:::-;48754:43;;48804:30;48851:15;48837:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48804:63;;48874:22;48899:1;48874:26;;48907:23;48943:368;48968:15;48950;:33;:64;;;;;49005:9;;48987:14;:27;;48950:64;48943:368;;;49030:25;49039:14;49030:7;:25::i;:::-;49025:254;;;49069:25;49097:23;49105:14;49097:7;:23::i;:::-;49069:51;;49158:6;49137:27;;:17;:27;;;49133:137;;;49212:14;49179:13;49193:15;49179:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;49241:17;;;;;:::i;:::-;;;;49133:137;49058:221;49025:254;49287:16;;;;;:::i;:::-;;;;48943:368;;;49326:13;49319:20;;;;;;48651:694;;;:::o;49949:74::-;6009:13;:11;:13::i;:::-;50012:5:::1;50005:4;:12;;;;49949:74:::0;:::o;50265:132::-;6009:13;:11;:13::i;:::-;50373:18:::1;50353:17;:38;;;;;;;;;;;;:::i;:::-;;50265:132:::0;:::o;47434:27::-;;;;;;;;;;;;;:::o;47206:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47403:26::-;;;;;;;;;;;;;:::o;32011:125::-;32075:7;32102:21;32115:7;32102:12;:21::i;:::-;:26;;;32095:33;;32011:125;;;:::o;50029:94::-;6009:13;:11;:13::i;:::-;50107:10:::1;50095:9;:22;;;;50029:94:::0;:::o;29459:206::-;29523:7;29564:1;29547:19;;:5;:19;;;29543:60;;;29575:28;;;;;;;;;;;;;;29543:60;29629:12;:19;29642:5;29629:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;29621:36;;29614:43;;29459:206;;;:::o;6771:103::-;6009:13;:11;:13::i;:::-;6836:30:::1;6863:1;6836:18;:30::i;:::-;6771:103::o:0;50403:100::-;6009:13;:11;:13::i;:::-;50487:10:::1;50475:9;:22;;;;;;;;;;;;:::i;:::-;;50403:100:::0;:::o;6123:87::-;6169:7;6196:6;;;;;;;;;;;6189:13;;6123:87;:::o;47358:38::-;;;;:::o;32372:104::-;32428:13;32461:7;32454:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32372:104;:::o;48082:260::-;48147:11;47797:1;47783:11;:15;:52;;;;;47817:18;;47802:11;:33;;47783:52;47775:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;47906:9;;47891:11;47875:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47867:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48013:10:::1;48000:23;;:9;:23;;;47992:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;48189:6:::2;;;;;;;;;;;48188:7;48180:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48258:11;48251:4;;:18;;;;:::i;:::-;48238:9;:31;;48230:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48302:34;48312:10;48324:11;48302:9;:34::i;:::-;48082:260:::0;;:::o;33982:287::-;34093:12;:10;:12::i;:::-;34081:24;;:8;:24;;;34077:54;;;34114:17;;;;;;;;;;;;;;34077:54;34189:8;34144:18;:32;34163:12;:10;:12::i;:::-;34144:32;;;;;;;;;;;;;;;:42;34177:8;34144:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34242:8;34213:48;;34228:12;:10;:12::i;:::-;34213:48;;;34252:8;34213:48;;;;;;:::i;:::-;;;;;;;;33982:287;;:::o;47244:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50509:99::-;50564:13;6009;:11;:13::i;:::-;50593:9:::1;50586:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50509:99:::0;:::o;50129:130::-;6009:13;:11;:13::i;:::-;50234:19:::1;50213:18;:40;;;;50129:130:::0;:::o;35068:369::-;35235:28;35245:4;35251:2;35255:7;35235:9;:28::i;:::-;35278:15;:2;:13;;;:15::i;:::-;:76;;;;;35298:56;35329:4;35335:2;35339:7;35348:5;35298:30;:56::i;:::-;35297:57;35278:76;35274:156;;;35378:40;;;;;;;;;;;;;;35274:156;35068:369;;;;:::o;49355:501::-;49454:13;49495:17;49503:8;49495:7;:17::i;:::-;49479:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;49602:5;49590:17;;:8;;;;;;;;;;;:17;;;49586:64;;;49625:17;49618:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49586:64;49658:28;49689:10;:8;:10::i;:::-;49658:41;;49744:1;49719:14;49713:28;:32;:137;;;;;;;;;;;;;;;;;49781:14;49797:26;49814:8;49797:16;:26::i;:::-;49825:9;49764:71;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49713:137;49706:144;;;49355:501;;;;:::o;47322:31::-;;;;:::o;49862:81::-;6009:13;:11;:13::i;:::-;49931:6:::1;49920:8;;:17;;;;;;;;;;;;;;;;;;49862:81:::0;:::o;34340:164::-;34437:4;34461:18;:25;34480:5;34461:25;;;;;;;;;;;;;;;:35;34487:8;34461:35;;;;;;;;;;;;;;;;;;;;;;;;;34454:42;;34340:164;;;;:::o;48350:155::-;48436:11;47797:1;47783:11;:15;:52;;;;;47817:18;;47802:11;:33;;47783:52;47775:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;47906:9;;47891:11;47875:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47867:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6009:13:::1;:11;:13::i;:::-;48466:33:::2;48476:9;48487:11;48466:9;:33::i;:::-;48350:155:::0;;;:::o;7029:201::-;6009:13;:11;:13::i;:::-;7138:1:::1;7118:22;;:8;:22;;;;7110:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7194:28;7213:8;7194:18;:28::i;:::-;7029:201:::0;:::o;48511:134::-;48575:11;47797:1;47783:11;:15;:52;;;;;47817:18;;47802:11;:33;;47783:52;47775:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;47906:9;;47891:11;47875:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;47867:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6009:13:::1;:11;:13::i;:::-;48605:34:::2;48615:10;48627:11;48605:9;:34::i;:::-;48511:134:::0;;:::o;18977:157::-;19062:4;19101:25;19086:40;;;:11;:40;;;;19079:47;;18977:157;;;:::o;35692:174::-;35749:4;35792:7;35773:15;:13;:15::i;:::-;:26;;:53;;;;;35813:13;;35803:7;:23;35773:53;:85;;;;;35831:11;:20;35843:7;35831:20;;;;;;;;;;;:27;;;;;;;;;;;;35830:28;35773:85;35766:92;;35692:174;;;:::o;4674:98::-;4727:7;4754:10;4747:17;;4674:98;:::o;43849:196::-;43991:2;43964:15;:24;43980:7;43964:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44029:7;44025:2;44009:28;;44018:5;44009:28;;;;;;;;;;;;43849:196;;;:::o;6288:132::-;6363:12;:10;:12::i;:::-;6352:23;;:7;:5;:7::i;:::-;:23;;;6344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6288:132::o;51381:95::-;51446:7;51469:1;51462:8;;51381:95;:::o;38792:2130::-;38907:35;38945:21;38958:7;38945:12;:21::i;:::-;38907:59;;39005:4;38983:26;;:13;:18;;;:26;;;38979:67;;39018:28;;;;;;;;;;;;;;38979:67;39059:22;39101:4;39085:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39122:36;39139:4;39145:12;:10;:12::i;:::-;39122:16;:36::i;:::-;39085:73;:126;;;;39199:12;:10;:12::i;:::-;39175:36;;:20;39187:7;39175:11;:20::i;:::-;:36;;;39085:126;39059:153;;39230:17;39225:66;;39256:35;;;;;;;;;;;;;;39225:66;39320:1;39306:16;;:2;:16;;;39302:52;;;39331:23;;;;;;;;;;;;;;39302:52;39367:43;39389:4;39395:2;39399:7;39408:1;39367:21;:43::i;:::-;39475:35;39492:1;39496:7;39505:4;39475:8;:35::i;:::-;39836:1;39806:12;:18;39819:4;39806:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39880:1;39852:12;:16;39865:2;39852:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39898:31;39932:11;:20;39944:7;39932:20;;;;;;;;;;;39898:54;;39983:2;39967:8;:13;;;:18;;;;;;;;;;;;;;;;;;40033:15;40000:8;:23;;;:49;;;;;;;;;;;;;;;;;;40301:19;40333:1;40323:7;:11;40301:33;;40349:31;40383:11;:24;40395:11;40383:24;;;;;;;;;;;40349:58;;40451:1;40426:27;;:8;:13;;;;;;;;;;;;:27;;;40422:384;;;40636:13;;40621:11;:28;40617:174;;40690:4;40674:8;:13;;;:20;;;;;;;;;;;;;;;;;;40743:13;:28;;;40717:8;:23;;;:54;;;;;;;;;;;;;;;;;;40617:174;40422:384;39781:1036;;;40853:7;40849:2;40834:27;;40843:4;40834:27;;;;;;;;;;;;40872:42;40893:4;40899:2;40903:7;40912:1;40872:20;:42::i;:::-;38896:2026;;38792:2130;;;:::o;30840:1109::-;30902:21;;:::i;:::-;30936:12;30951:7;30936:22;;31019:4;31000:15;:13;:15::i;:::-;:23;;:47;;;;;31034:13;;31027:4;:20;31000:47;30996:886;;;31068:31;31102:11;:17;31114:4;31102:17;;;;;;;;;;;31068:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31143:9;:16;;;31138:729;;31214:1;31188:28;;:9;:14;;;:28;;;31184:101;;31252:9;31245:16;;;;;;31184:101;31587:261;31594:4;31587:261;;;31627:6;;;;;;;;31672:11;:17;31684:4;31672:17;;;;;;;;;;;31660:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31746:1;31720:28;;:9;:14;;;:28;;;31716:109;;31788:9;31781:16;;;;;;31716:109;31587:261;;;31138:729;31049:833;30996:886;31910:31;;;;;;;;;;;;;;30840:1109;;;;:::o;7390:191::-;7464:16;7483:6;;;;;;;;;;;7464:25;;7509:8;7500:6;;:17;;;;;;;;;;;;;;;;;;7564:8;7533:40;;7554:8;7533:40;;;;;;;;;;;;7453:128;7390:191;:::o;35874:104::-;35943:27;35953:2;35957:8;35943:27;;;;;;;;;;;;:9;:27::i;:::-;35874:104;;:::o;8821:326::-;8881:4;9138:1;9116:7;:19;;;:23;9109:30;;8821:326;;;:::o;44537:667::-;44700:4;44737:2;44721:36;;;44758:12;:10;:12::i;:::-;44772:4;44778:7;44787:5;44721:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44717:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44972:1;44955:6;:13;:18;44951:235;;;45001:40;;;;;;;;;;;;;;44951:235;45144:6;45138:13;45129:6;45125:2;45121:15;45114:38;44717:480;44850:45;;;44840:55;;;:6;:55;;;;44833:62;;;44537:667;;;;;;:::o;51271:104::-;51331:13;51360:9;51353:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51271:104;:::o;1928:723::-;1984:13;2214:1;2205:5;:10;2201:53;;;2232:10;;;;;;;;;;;;;;;;;;;;;2201:53;2264:12;2279:5;2264:20;;2295:14;2320:78;2335:1;2327:4;:9;2320:78;;2353:8;;;;;:::i;:::-;;;;2384:2;2376:10;;;;;:::i;:::-;;;2320:78;;;2408:19;2440:6;2430:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:39;;2458:154;2474:1;2465:5;:10;2458:154;;2502:1;2492:11;;;;;:::i;:::-;;;2569:2;2561:5;:10;;;;:::i;:::-;2548:2;:24;;;;:::i;:::-;2535:39;;2518:6;2525;2518:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2598:2;2589:11;;;;;:::i;:::-;;;2458:154;;;2636:6;2622:21;;;;;1928:723;;;;:::o;45852:159::-;;;;;:::o;46670:158::-;;;;;:::o;36341:163::-;36464:32;36470:2;36474:8;36484:5;36491:4;36464:5;:32::i;:::-;36341:163;;;:::o;36763:1775::-;36902:20;36925:13;;36902:36;;36967:1;36953:16;;:2;:16;;;36949:48;;;36978:19;;;;;;;;;;;;;;36949:48;37024:1;37012:8;:13;37008:44;;;37034:18;;;;;;;;;;;;;;37008:44;37065:61;37095:1;37099:2;37103:12;37117:8;37065:21;:61::i;:::-;37438:8;37403:12;:16;37416:2;37403:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37502:8;37462:12;:16;37475:2;37462:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37561:2;37528:11;:25;37540:12;37528:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;37628:15;37578:11;:25;37590:12;37578:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;37661:20;37684:12;37661:35;;37711:11;37740:8;37725:12;:23;37711:37;;37769:4;:23;;;;;37777:15;:2;:13;;;:15::i;:::-;37769:23;37765:641;;;37813:314;37869:12;37865:2;37844:38;;37861:1;37844:38;;;;;;;;;;;;37910:69;37949:1;37953:2;37957:14;;;;;;37973:5;37910:30;:69::i;:::-;37905:174;;38015:40;;;;;;;;;;;;;;37905:174;38122:3;38106:12;:19;;37813:314;;38208:12;38191:13;;:29;38187:43;;38222:8;;;38187:43;37765:641;;;38271:120;38327:14;;;;;;38323:2;38302:40;;38319:1;38302:40;;;;;;;;;;;;38386:3;38370:12;:19;;38271:120;;37765:641;38436:12;38420:13;:28;;;;37378:1082;;38470:60;38499:1;38503:2;38507:12;38521:8;38470:20;:60::i;:::-;36891:1647;36763:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:179::-;8036:10;8057:46;8099:3;8091:6;8057:46;:::i;:::-;8135:4;8130:3;8126:14;8112:28;;7967:179;;;;:::o;8152:118::-;8239:24;8257:5;8239:24;:::i;:::-;8234:3;8227:37;8152:118;;:::o;8306:732::-;8425:3;8454:54;8502:5;8454:54;:::i;:::-;8524:86;8603:6;8598:3;8524:86;:::i;:::-;8517:93;;8634:56;8684:5;8634:56;:::i;:::-;8713:7;8744:1;8729:284;8754:6;8751:1;8748:13;8729:284;;;8830:6;8824:13;8857:63;8916:3;8901:13;8857:63;:::i;:::-;8850:70;;8943:60;8996:6;8943:60;:::i;:::-;8933:70;;8789:224;8776:1;8773;8769:9;8764:14;;8729:284;;;8733:14;9029:3;9022:10;;8430:608;;;8306:732;;;;:::o;9044:109::-;9125:21;9140:5;9125:21;:::i;:::-;9120:3;9113:34;9044:109;;:::o;9159:360::-;9245:3;9273:38;9305:5;9273:38;:::i;:::-;9327:70;9390:6;9385:3;9327:70;:::i;:::-;9320:77;;9406:52;9451:6;9446:3;9439:4;9432:5;9428:16;9406:52;:::i;:::-;9483:29;9505:6;9483:29;:::i;:::-;9478:3;9474:39;9467:46;;9249:270;9159:360;;;;:::o;9525:364::-;9613:3;9641:39;9674:5;9641:39;:::i;:::-;9696:71;9760:6;9755:3;9696:71;:::i;:::-;9689:78;;9776:52;9821:6;9816:3;9809:4;9802:5;9798:16;9776:52;:::i;:::-;9853:29;9875:6;9853:29;:::i;:::-;9848:3;9844:39;9837:46;;9617:272;9525:364;;;;:::o;9895:377::-;10001:3;10029:39;10062:5;10029:39;:::i;:::-;10084:89;10166:6;10161:3;10084:89;:::i;:::-;10077:96;;10182:52;10227:6;10222:3;10215:4;10208:5;10204:16;10182:52;:::i;:::-;10259:6;10254:3;10250:16;10243:23;;10005:267;9895:377;;;;:::o;10302:845::-;10405:3;10442:5;10436:12;10471:36;10497:9;10471:36;:::i;:::-;10523:89;10605:6;10600:3;10523:89;:::i;:::-;10516:96;;10643:1;10632:9;10628:17;10659:1;10654:137;;;;10805:1;10800:341;;;;10621:520;;10654:137;10738:4;10734:9;10723;10719:25;10714:3;10707:38;10774:6;10769:3;10765:16;10758:23;;10654:137;;10800:341;10867:38;10899:5;10867:38;:::i;:::-;10927:1;10941:154;10955:6;10952:1;10949:13;10941:154;;;11029:7;11023:14;11019:1;11014:3;11010:11;11003:35;11079:1;11070:7;11066:15;11055:26;;10977:4;10974:1;10970:12;10965:17;;10941:154;;;11124:6;11119:3;11115:16;11108:23;;10807:334;;10621:520;;10409:738;;10302:845;;;;:::o;11153:366::-;11295:3;11316:67;11380:2;11375:3;11316:67;:::i;:::-;11309:74;;11392:93;11481:3;11392:93;:::i;:::-;11510:2;11505:3;11501:12;11494:19;;11153:366;;;:::o;11525:::-;11667:3;11688:67;11752:2;11747:3;11688:67;:::i;:::-;11681:74;;11764:93;11853:3;11764:93;:::i;:::-;11882:2;11877:3;11873:12;11866:19;;11525:366;;;:::o;11897:::-;12039:3;12060:67;12124:2;12119:3;12060:67;:::i;:::-;12053:74;;12136:93;12225:3;12136:93;:::i;:::-;12254:2;12249:3;12245:12;12238:19;;11897:366;;;:::o;12269:::-;12411:3;12432:67;12496:2;12491:3;12432:67;:::i;:::-;12425:74;;12508:93;12597:3;12508:93;:::i;:::-;12626:2;12621:3;12617:12;12610:19;;12269:366;;;:::o;12641:::-;12783:3;12804:67;12868:2;12863:3;12804:67;:::i;:::-;12797:74;;12880:93;12969:3;12880:93;:::i;:::-;12998:2;12993:3;12989:12;12982:19;;12641:366;;;:::o;13013:::-;13155:3;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13252:93;13341:3;13252:93;:::i;:::-;13370:2;13365:3;13361:12;13354:19;;13013:366;;;:::o;13385:398::-;13544:3;13565:83;13646:1;13641:3;13565:83;:::i;:::-;13558:90;;13657:93;13746:3;13657:93;:::i;:::-;13775:1;13770:3;13766:11;13759:18;;13385:398;;;:::o;13789:366::-;13931:3;13952:67;14016:2;14011:3;13952:67;:::i;:::-;13945:74;;14028:93;14117:3;14028:93;:::i;:::-;14146:2;14141:3;14137:12;14130:19;;13789:366;;;:::o;14161:::-;14303:3;14324:67;14388:2;14383:3;14324:67;:::i;:::-;14317:74;;14400:93;14489:3;14400:93;:::i;:::-;14518:2;14513:3;14509:12;14502:19;;14161:366;;;:::o;14533:108::-;14610:24;14628:5;14610:24;:::i;:::-;14605:3;14598:37;14533:108;;:::o;14647:118::-;14734:24;14752:5;14734:24;:::i;:::-;14729:3;14722:37;14647:118;;:::o;14771:589::-;14996:3;15018:95;15109:3;15100:6;15018:95;:::i;:::-;15011:102;;15130:95;15221:3;15212:6;15130:95;:::i;:::-;15123:102;;15242:92;15330:3;15321:6;15242:92;:::i;:::-;15235:99;;15351:3;15344:10;;14771:589;;;;;;:::o;15366:379::-;15550:3;15572:147;15715:3;15572:147;:::i;:::-;15565:154;;15736:3;15729:10;;15366:379;;;:::o;15751:222::-;15844:4;15882:2;15871:9;15867:18;15859:26;;15895:71;15963:1;15952:9;15948:17;15939:6;15895:71;:::i;:::-;15751:222;;;;:::o;15979:640::-;16174:4;16212:3;16201:9;16197:19;16189:27;;16226:71;16294:1;16283:9;16279:17;16270:6;16226:71;:::i;:::-;16307:72;16375:2;16364:9;16360:18;16351:6;16307:72;:::i;:::-;16389;16457:2;16446:9;16442:18;16433:6;16389:72;:::i;:::-;16508:9;16502:4;16498:20;16493:2;16482:9;16478:18;16471:48;16536:76;16607:4;16598:6;16536:76;:::i;:::-;16528:84;;15979:640;;;;;;;:::o;16625:373::-;16768:4;16806:2;16795:9;16791:18;16783:26;;16855:9;16849:4;16845:20;16841:1;16830:9;16826:17;16819:47;16883:108;16986:4;16977:6;16883:108;:::i;:::-;16875:116;;16625:373;;;;:::o;17004:210::-;17091:4;17129:2;17118:9;17114:18;17106:26;;17142:65;17204:1;17193:9;17189:17;17180:6;17142:65;:::i;:::-;17004:210;;;;:::o;17220:313::-;17333:4;17371:2;17360:9;17356:18;17348:26;;17420:9;17414:4;17410:20;17406:1;17395:9;17391:17;17384:47;17448:78;17521:4;17512:6;17448:78;:::i;:::-;17440:86;;17220:313;;;;:::o;17539:419::-;17705:4;17743:2;17732:9;17728:18;17720:26;;17792:9;17786:4;17782:20;17778:1;17767:9;17763:17;17756:47;17820:131;17946:4;17820:131;:::i;:::-;17812:139;;17539:419;;;:::o;17964:::-;18130:4;18168:2;18157:9;18153:18;18145:26;;18217:9;18211:4;18207:20;18203:1;18192:9;18188:17;18181:47;18245:131;18371:4;18245:131;:::i;:::-;18237:139;;17964:419;;;:::o;18389:::-;18555:4;18593:2;18582:9;18578:18;18570:26;;18642:9;18636:4;18632:20;18628:1;18617:9;18613:17;18606:47;18670:131;18796:4;18670:131;:::i;:::-;18662:139;;18389:419;;;:::o;18814:::-;18980:4;19018:2;19007:9;19003:18;18995:26;;19067:9;19061:4;19057:20;19053:1;19042:9;19038:17;19031:47;19095:131;19221:4;19095:131;:::i;:::-;19087:139;;18814:419;;;:::o;19239:::-;19405:4;19443:2;19432:9;19428:18;19420:26;;19492:9;19486:4;19482:20;19478:1;19467:9;19463:17;19456:47;19520:131;19646:4;19520:131;:::i;:::-;19512:139;;19239:419;;;:::o;19664:::-;19830:4;19868:2;19857:9;19853:18;19845:26;;19917:9;19911:4;19907:20;19903:1;19892:9;19888:17;19881:47;19945:131;20071:4;19945:131;:::i;:::-;19937:139;;19664:419;;;:::o;20089:::-;20255:4;20293:2;20282:9;20278:18;20270:26;;20342:9;20336:4;20332:20;20328:1;20317:9;20313:17;20306:47;20370:131;20496:4;20370:131;:::i;:::-;20362:139;;20089:419;;;:::o;20514:::-;20680:4;20718:2;20707:9;20703:18;20695:26;;20767:9;20761:4;20757:20;20753:1;20742:9;20738:17;20731:47;20795:131;20921:4;20795:131;:::i;:::-;20787:139;;20514:419;;;:::o;20939:222::-;21032:4;21070:2;21059:9;21055:18;21047:26;;21083:71;21151:1;21140:9;21136:17;21127:6;21083:71;:::i;:::-;20939:222;;;;:::o;21167:129::-;21201:6;21228:20;;:::i;:::-;21218:30;;21257:33;21285:4;21277:6;21257:33;:::i;:::-;21167:129;;;:::o;21302:75::-;21335:6;21368:2;21362:9;21352:19;;21302:75;:::o;21383:307::-;21444:4;21534:18;21526:6;21523:30;21520:56;;;21556:18;;:::i;:::-;21520:56;21594:29;21616:6;21594:29;:::i;:::-;21586:37;;21678:4;21672;21668:15;21660:23;;21383:307;;;:::o;21696:308::-;21758:4;21848:18;21840:6;21837:30;21834:56;;;21870:18;;:::i;:::-;21834:56;21908:29;21930:6;21908:29;:::i;:::-;21900:37;;21992:4;21986;21982:15;21974:23;;21696:308;;;:::o;22010:132::-;22077:4;22100:3;22092:11;;22130:4;22125:3;22121:14;22113:22;;22010:132;;;:::o;22148:141::-;22197:4;22220:3;22212:11;;22243:3;22240:1;22233:14;22277:4;22274:1;22264:18;22256:26;;22148:141;;;:::o;22295:114::-;22362:6;22396:5;22390:12;22380:22;;22295:114;;;:::o;22415:98::-;22466:6;22500:5;22494:12;22484:22;;22415:98;;;:::o;22519:99::-;22571:6;22605:5;22599:12;22589:22;;22519:99;;;:::o;22624:113::-;22694:4;22726;22721:3;22717:14;22709:22;;22624:113;;;:::o;22743:184::-;22842:11;22876:6;22871:3;22864:19;22916:4;22911:3;22907:14;22892:29;;22743:184;;;;:::o;22933:168::-;23016:11;23050:6;23045:3;23038:19;23090:4;23085:3;23081:14;23066:29;;22933:168;;;;:::o;23107:147::-;23208:11;23245:3;23230:18;;23107:147;;;;:::o;23260:169::-;23344:11;23378:6;23373:3;23366:19;23418:4;23413:3;23409:14;23394:29;;23260:169;;;;:::o;23435:148::-;23537:11;23574:3;23559:18;;23435:148;;;;:::o;23589:305::-;23629:3;23648:20;23666:1;23648:20;:::i;:::-;23643:25;;23682:20;23700:1;23682:20;:::i;:::-;23677:25;;23836:1;23768:66;23764:74;23761:1;23758:81;23755:107;;;23842:18;;:::i;:::-;23755:107;23886:1;23883;23879:9;23872:16;;23589:305;;;;:::o;23900:185::-;23940:1;23957:20;23975:1;23957:20;:::i;:::-;23952:25;;23991:20;24009:1;23991:20;:::i;:::-;23986:25;;24030:1;24020:35;;24035:18;;:::i;:::-;24020:35;24077:1;24074;24070:9;24065:14;;23900:185;;;;:::o;24091:348::-;24131:7;24154:20;24172:1;24154:20;:::i;:::-;24149:25;;24188:20;24206:1;24188:20;:::i;:::-;24183:25;;24376:1;24308:66;24304:74;24301:1;24298:81;24293:1;24286:9;24279:17;24275:105;24272:131;;;24383:18;;:::i;:::-;24272:131;24431:1;24428;24424:9;24413:20;;24091:348;;;;:::o;24445:191::-;24485:4;24505:20;24523:1;24505:20;:::i;:::-;24500:25;;24539:20;24557:1;24539:20;:::i;:::-;24534:25;;24578:1;24575;24572:8;24569:34;;;24583:18;;:::i;:::-;24569:34;24628:1;24625;24621:9;24613:17;;24445:191;;;;:::o;24642:96::-;24679:7;24708:24;24726:5;24708:24;:::i;:::-;24697:35;;24642:96;;;:::o;24744:90::-;24778:7;24821:5;24814:13;24807:21;24796:32;;24744:90;;;:::o;24840:149::-;24876:7;24916:66;24909:5;24905:78;24894:89;;24840:149;;;:::o;24995:126::-;25032:7;25072:42;25065:5;25061:54;25050:65;;24995:126;;;:::o;25127:77::-;25164:7;25193:5;25182:16;;25127:77;;;:::o;25210:154::-;25294:6;25289:3;25284;25271:30;25356:1;25347:6;25342:3;25338:16;25331:27;25210:154;;;:::o;25370:307::-;25438:1;25448:113;25462:6;25459:1;25456:13;25448:113;;;25547:1;25542:3;25538:11;25532:18;25528:1;25523:3;25519:11;25512:39;25484:2;25481:1;25477:10;25472:15;;25448:113;;;25579:6;25576:1;25573:13;25570:101;;;25659:1;25650:6;25645:3;25641:16;25634:27;25570:101;25419:258;25370:307;;;:::o;25683:320::-;25727:6;25764:1;25758:4;25754:12;25744:22;;25811:1;25805:4;25801:12;25832:18;25822:81;;25888:4;25880:6;25876:17;25866:27;;25822:81;25950:2;25942:6;25939:14;25919:18;25916:38;25913:84;;;25969:18;;:::i;:::-;25913:84;25734:269;25683:320;;;:::o;26009:281::-;26092:27;26114:4;26092:27;:::i;:::-;26084:6;26080:40;26222:6;26210:10;26207:22;26186:18;26174:10;26171:34;26168:62;26165:88;;;26233:18;;:::i;:::-;26165:88;26273:10;26269:2;26262:22;26052:238;26009:281;;:::o;26296:233::-;26335:3;26358:24;26376:5;26358:24;:::i;:::-;26349:33;;26404:66;26397:5;26394:77;26391:103;;;26474:18;;:::i;:::-;26391:103;26521:1;26514:5;26510:13;26503:20;;26296:233;;;:::o;26535:176::-;26567:1;26584:20;26602:1;26584:20;:::i;:::-;26579:25;;26618:20;26636:1;26618:20;:::i;:::-;26613:25;;26657:1;26647:35;;26662:18;;:::i;:::-;26647:35;26703:1;26700;26696:9;26691:14;;26535:176;;;;:::o;26717:180::-;26765:77;26762:1;26755:88;26862:4;26859:1;26852:15;26886:4;26883:1;26876:15;26903:180;26951:77;26948:1;26941:88;27048:4;27045:1;27038:15;27072:4;27069:1;27062:15;27089:180;27137:77;27134:1;27127:88;27234:4;27231:1;27224:15;27258:4;27255:1;27248:15;27275:180;27323:77;27320:1;27313:88;27420:4;27417:1;27410:15;27444:4;27441:1;27434:15;27461:180;27509:77;27506:1;27499:88;27606:4;27603:1;27596:15;27630:4;27627:1;27620:15;27647:117;27756:1;27753;27746:12;27770:117;27879:1;27876;27869:12;27893:117;28002:1;27999;27992:12;28016:117;28125:1;28122;28115:12;28139:102;28180:6;28231:2;28227:7;28222:2;28215:5;28211:14;28207:28;28197:38;;28139:102;;;:::o;28247:181::-;28387:33;28383:1;28375:6;28371:14;28364:57;28247:181;:::o;28434:225::-;28574:34;28570:1;28562:6;28558:14;28551:58;28643:8;28638:2;28630:6;28626:15;28619:33;28434:225;:::o;28665:170::-;28805:22;28801:1;28793:6;28789:14;28782:46;28665:170;:::o;28841:182::-;28981:34;28977:1;28969:6;28965:14;28958:58;28841:182;:::o;29029:173::-;29169:25;29165:1;29157:6;29153:14;29146:49;29029:173;:::o;29208:234::-;29348:34;29344:1;29336:6;29332:14;29325:58;29417:17;29412:2;29404:6;29400:15;29393:42;29208:234;:::o;29448:114::-;;:::o;29568:170::-;29708:22;29704:1;29696:6;29692:14;29685:46;29568:170;:::o;29744:169::-;29884:21;29880:1;29872:6;29868:14;29861:45;29744:169;:::o;29919:122::-;29992:24;30010:5;29992:24;:::i;:::-;29985:5;29982:35;29972:63;;30031:1;30028;30021:12;29972:63;29919:122;:::o;30047:116::-;30117:21;30132:5;30117:21;:::i;:::-;30110:5;30107:32;30097:60;;30153:1;30150;30143:12;30097:60;30047:116;:::o;30169:120::-;30241:23;30258:5;30241:23;:::i;:::-;30234:5;30231:34;30221:62;;30279:1;30276;30269:12;30221:62;30169:120;:::o;30295:122::-;30368:24;30386:5;30368:24;:::i;:::-;30361:5;30358:35;30348:63;;30407:1;30404;30397:12;30348:63;30295:122;:::o

Swarm Source

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