ETH Price: $3,488.79 (+2.04%)
Gas: 13 Gwei

Token

The OctoMob Family (OCTOMOB)
 

Overview

Max Total Supply

99 OCTOMOB

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wagmicrypto.eth
Balance
1 OCTOMOB
0x3c1c5dd60d1c28ca1adf907b08737ededf6d29fb
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:
the_octomob

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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.
     *dsadasdasdassa
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

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

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

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



pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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/utils/Strings.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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


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



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



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





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





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



pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


pragma solidity ^0.8.0;

contract the_octomob is ERC721Enumerable, Ownable {
    using Strings for uint256;
    uint256 public PRICE = 0 ether;
    uint256 public MAX_OCTOMOBS = 150;
    uint256 public numOctomobsMinted;
    string public baseTokenURI = "";
    address public constant payoutAddr = 0xee9Abb3A1D3D09D2E258862f69D52AEdb2623088; //Address of Payout
    bool public teamMintStarted = true;
    bool public pause = false;
    
    mapping(address => uint256) private _totalClaimed;

    event OctomobMint(address minter, uint256 amountOfoctomobs);
    
    constructor() ERC721("The OctoMob Family", "OCTOMOB") {}
    
    
    function toggleTeamMintStarted() external onlyOwner {
       teamMintStarted = !teamMintStarted;
    }
    
    
    
    function togglePause() external onlyOwner {
        pause = !pause;
    }
    
    function setbaseTokenURI(string memory baseURI) public onlyOwner returns (string memory) {
        baseTokenURI = baseURI;
        return baseTokenURI;
    }
    
    function setPrice(uint256 inPrice) public onlyOwner returns (uint256) {
        PRICE = inPrice;
        return PRICE;
    }
    
    function amountClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "Cannot add null address");

        return _totalClaimed[owner];
    }
    
    function teamMint(address _address, uint256 amountOfoctomobs) external payable onlyOwner{
        require(_address != address(0), "Cannot mint to null address");
        require(teamMintStarted, "Team minting not started.");
        require(totalSupply() < MAX_OCTOMOBS, "All team tokens minted.");
        require(totalSupply() + amountOfoctomobs <= MAX_OCTOMOBS, "Minting would exceed supply!");
        
        for (uint256 i = 0; i < amountOfoctomobs; i++) {
            uint256 tokenId = numOctomobsMinted + 1;

            numOctomobsMinted += 1;
            _totalClaimed[_address] += 1;
            _safeMint(_address, tokenId);
        }

        emit OctomobMint(_address, amountOfoctomobs);
    }

    function ownerMint(uint256 amountOfoctomobs) external payable onlyOwner{
        require(teamMintStarted, "Team minting not started.");
        require(totalSupply() < MAX_OCTOMOBS, "All team tokens minted.");
        require(totalSupply() + amountOfoctomobs <= MAX_OCTOMOBS, "Minting would exceed supply!");
        
        for (uint256 i = 0; i < amountOfoctomobs; i++) {
            uint256 tokenId = numOctomobsMinted + 1;

            numOctomobsMinted += 1;
            _totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, tokenId);
        }

        emit OctomobMint(msg.sender, amountOfoctomobs);
    }

    
    
    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _widthdraw(payoutAddr, balance);
    }
    
    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{ value: _amount }("");
        require(success, "Failed to widthdraw Ether");
    }
    
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return bytes(baseTokenURI).length > 0 ? string(abi.encodePacked(baseTokenURI, tokenId.toString(), ".json")) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amountOfoctomobs","type":"uint256"}],"name":"OctomobMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_OCTOMOBS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"amountClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numOctomobsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOfoctomobs","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payoutAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"inPrice","type":"uint256"}],"name":"setPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setbaseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"amountOfoctomobs","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamMintStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTeamMintStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600b8190556096600c5560a0604081905260808290526200002691600e91906200012b565b50600f805461ffff191660011790553480156200004257600080fd5b506040805180820182526012815271546865204f63746f4d6f622046616d696c7960701b60208083019182528351808501909452600784526627a1aa27a6a7a160c91b9084015281519192916200009c916000916200012b565b508051620000b29060019060208401906200012b565b505050620000cf620000c9620000d560201b60201c565b620000d9565b6200020e565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013990620001d1565b90600052602060002090601f0160209004810192826200015d5760008555620001a8565b82601f106200017857805160ff1916838001178555620001a8565b82800160010185558215620001a8579182015b82811115620001a85782518255916020019190600101906200018b565b50620001b6929150620001ba565b5090565b5b80821115620001b65760008155600101620001bb565b600181811c90821680620001e657607f821691505b602082108114156200020857634e487b7160e01b600052602260045260246000fd5b50919050565b612667806200021e6000396000f3fe6080604052600436106101f95760003560e01c80638456cb591161010d578063b6a298e5116100a0578063c87b56dd1161006f578063c87b56dd1461056b578063d547cfb71461058b578063e985e9c5146105a0578063f19e75d4146105e9578063f2fde38b146105fc57600080fd5b8063b6a298e51461050a578063b88d4fde14610520578063c04086e814610540578063c4ae31681461055657600080fd5b806391b7f5ed116100dc57806391b7f5ed146104a257806395d89b41146104c2578063a22cb465146104d7578063add5a4fa146104f757600080fd5b80638456cb591461043a578063853828b6146104595780638d859f3e1461046e5780638da5cb5b1461048457600080fd5b80632f745c59116101905780634f6ccce71161015f5780634f6ccce7146103b05780635a7dab1d146103d05780636352211e146103e557806370a0823114610405578063715018a61461042557600080fd5b80632f745c591461032857806336c4ff7a1461034857806337c0df0c1461037057806342842e0e1461039057600080fd5b806318160ddd116101cc57806318160ddd146102af5780631978f469146102ce57806323b872dd146102ee5780632b4403bb1461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461220d565b61061c565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610647565b60405161022a91906123e9565b34801561026157600080fd5b50610275610270366004612290565b6106d9565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a83660046121e3565b610773565b005b3480156102bb57600080fd5b506008545b60405190815260200161022a565b3480156102da57600080fd5b506102c06102e936600461209a565b610889565b3480156102fa57600080fd5b506102ad6103093660046120ef565b6108fd565b34801561031a57600080fd5b50600f5461021e9060ff1681565b34801561033457600080fd5b506102c06103433660046121e3565b61092e565b34801561035457600080fd5b5061027573ee9abb3a1d3d09d2e258862f69d52aedb262308881565b34801561037c57600080fd5b5061024861038b366004612247565b6109c4565b34801561039c57600080fd5b506102ad6103ab3660046120ef565b610a98565b3480156103bc57600080fd5b506102c06103cb366004612290565b610ab3565b3480156103dc57600080fd5b506102ad610b46565b3480156103f157600080fd5b50610275610400366004612290565b610b84565b34801561041157600080fd5b506102c061042036600461209a565b610bfb565b34801561043157600080fd5b506102ad610c82565b34801561044657600080fd5b50600f5461021e90610100900460ff1681565b34801561046557600080fd5b506102ad610cb8565b34801561047a57600080fd5b506102c0600b5481565b34801561049057600080fd5b50600a546001600160a01b0316610275565b3480156104ae57600080fd5b506102c06104bd366004612290565b610d47565b3480156104ce57600080fd5b50610248610d7d565b3480156104e357600080fd5b506102ad6104f23660046121a7565b610d8c565b6102ad6105053660046121e3565b610e51565b34801561051657600080fd5b506102c0600c5481565b34801561052c57600080fd5b506102ad61053b36600461212b565b61109a565b34801561054c57600080fd5b506102c0600d5481565b34801561056257600080fd5b506102ad6110d2565b34801561057757600080fd5b50610248610586366004612290565b611119565b34801561059757600080fd5b506102486111f4565b3480156105ac57600080fd5b5061021e6105bb3660046120bc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102ad6105f7366004612290565b611282565b34801561060857600080fd5b506102ad61061736600461209a565b611462565b60006001600160e01b0319821663780e9d6360e01b14806106415750610641826114fa565b92915050565b60606000805461065690612543565b80601f016020809104026020016040519081016040528092919081815260200182805461068290612543565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077e82610b84565b9050806001600160a01b0316836001600160a01b031614156107ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074e565b336001600160a01b0382161480610808575061080881336105bb565b61087a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074e565b610884838361154a565b505050565b60006001600160a01b0382166108e15760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161074e565b506001600160a01b031660009081526010602052604090205490565b61090733826115b8565b6109235760405162461bcd60e51b815260040161074e90612483565b6108848383836116af565b600061093983610bfb565b821061099b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546060906001600160a01b031633146109f15760405162461bcd60e51b815260040161074e9061244e565b8151610a0490600e906020850190611f74565b50600e8054610a1290612543565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90612543565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b505050505090505b919050565b6108848383836040518060200160405280600081525061109a565b6000610abe60085490565b8210610b215760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074e565b60088281548110610b3457610b346125ef565b90600052602060002001549050919050565b600a546001600160a01b03163314610b705760405162461bcd60e51b815260040161074e9061244e565b600f805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806106415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074e565b60006001600160a01b038216610c665760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cac5760405162461bcd60e51b815260040161074e9061244e565b610cb6600061185a565b565b600a546001600160a01b03163314610ce25760405162461bcd60e51b815260040161074e9061244e565b4780610d265760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b604482015260640161074e565b610d4473ee9abb3a1d3d09d2e258862f69d52aedb2623088826118ac565b50565b600a546000906001600160a01b03163314610d745760405162461bcd60e51b815260040161074e9061244e565b50600b81905590565b60606001805461065690612543565b6001600160a01b038216331415610de55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610e7b5760405162461bcd60e51b815260040161074e9061244e565b6001600160a01b038216610ed15760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e7420746f206e756c6c20616464726573730000000000604482015260640161074e565b600f5460ff16610f1f5760405162461bcd60e51b81526020600482015260196024820152782a32b0b69036b4b73a34b733903737ba1039ba30b93a32b21760391b604482015260640161074e565b600c5460085410610f6c5760405162461bcd60e51b815260206004820152601760248201527620b636103a32b0b6903a37b5b2b7399036b4b73a32b21760491b604482015260640161074e565b600c5481610f7960085490565b610f8391906124d4565b1115610fd15760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720776f756c642065786365656420737570706c792100000000604482015260640161074e565b60005b81811015611053576000600d546001610fed91906124d4565b90506001600d600082825461100291906124d4565b90915550506001600160a01b03841660009081526010602052604081208054600192906110309084906124d4565b909155506110409050848261194f565b508061104b8161257e565b915050610fd4565b50604080516001600160a01b0384168152602081018390527ff2f7ccdd03dc638dad64351e563e32627706af55437b4623048a35512644fbf0910160405180910390a15050565b6110a433836115b8565b6110c05760405162461bcd60e51b815260040161074e90612483565b6110cc8484848461196d565b50505050565b600a546001600160a01b031633146110fc5760405162461bcd60e51b815260040161074e9061244e565b600f805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166111985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161074e565b6000600e80546111a790612543565b9050116111c35760405180602001604052806000815250610641565b600e6111ce836119a0565b6040516020016111df9291906122f1565b60405160208183030381529060405292915050565b600e805461120190612543565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90612543565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b505050505081565b600a546001600160a01b031633146112ac5760405162461bcd60e51b815260040161074e9061244e565b600f5460ff166112fa5760405162461bcd60e51b81526020600482015260196024820152782a32b0b69036b4b73a34b733903737ba1039ba30b93a32b21760391b604482015260640161074e565b600c54600854106113475760405162461bcd60e51b815260206004820152601760248201527620b636103a32b0b6903a37b5b2b7399036b4b73a32b21760491b604482015260640161074e565b600c548161135460085490565b61135e91906124d4565b11156113ac5760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720776f756c642065786365656420737570706c792100000000604482015260640161074e565b60005b81811015611425576000600d5460016113c891906124d4565b90506001600d60008282546113dd91906124d4565b90915550503360009081526010602052604081208054600192906114029084906124d4565b909155506114129050338261194f565b508061141d8161257e565b9150506113af565b5060408051338152602081018390527ff2f7ccdd03dc638dad64351e563e32627706af55437b4623048a35512644fbf0910160405180910390a150565b600a546001600160a01b0316331461148c5760405162461bcd60e51b815260040161074e9061244e565b6001600160a01b0381166114f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074e565b610d448161185a565b60006001600160e01b031982166380ac58cd60e01b148061152b57506001600160e01b03198216635b5e139f60e01b145b8061064157506301ffc9a760e01b6001600160e01b0319831614610641565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061157f82610b84565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074e565b600061163c83610b84565b9050806001600160a01b0316846001600160a01b031614806116775750836001600160a01b031661166c846106d9565b6001600160a01b0316145b806116a757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116c282610b84565b6001600160a01b03161461172a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161074e565b6001600160a01b03821661178c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074e565b611797838383611a9e565b6117a260008261154a565b6001600160a01b03831660009081526003602052604081208054600192906117cb908490612500565b90915550506001600160a01b03821660009081526003602052604081208054600192906117f99084906124d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118f9576040519150601f19603f3d011682016040523d82523d6000602084013e6118fe565b606091505b50509050806108845760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161074e565b611969828260405180602001604052806000815250611b56565b5050565b6119788484846116af565b61198484848484611b89565b6110cc5760405162461bcd60e51b815260040161074e906123fc565b6060816119c45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ee57806119d88161257e565b91506119e79050600a836124ec565b91506119c8565b60008167ffffffffffffffff811115611a0957611a09612605565b6040519080825280601f01601f191660200182016040528015611a33576020820181803683370190505b5090505b84156116a757611a48600183612500565b9150611a55600a86612599565b611a609060306124d4565b60f81b818381518110611a7557611a756125ef565b60200101906001600160f81b031916908160001a905350611a97600a866124ec565b9450611a37565b6001600160a01b038316611af957611af481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b1c565b816001600160a01b0316836001600160a01b031614611b1c57611b1c8382611c96565b6001600160a01b038216611b335761088481611d33565b826001600160a01b0316826001600160a01b031614610884576108848282611de2565b611b608383611e26565b611b6d6000848484611b89565b6108845760405162461bcd60e51b815260040161074e906123fc565b60006001600160a01b0384163b15611c8b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bcd9033908990889088906004016123ac565b602060405180830381600087803b158015611be757600080fd5b505af1925050508015611c17575060408051601f3d908101601f19168201909252611c149181019061222a565b60015b611c71573d808015611c45576040519150601f19603f3d011682016040523d82523d6000602084013e611c4a565b606091505b508051611c695760405162461bcd60e51b815260040161074e906123fc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116a7565b506001949350505050565b60006001611ca384610bfb565b611cad9190612500565b600083815260076020526040902054909150808214611d00576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d4590600190612500565b60008381526009602052604081205460088054939450909284908110611d6d57611d6d6125ef565b906000526020600020015490508060088381548110611d8e57611d8e6125ef565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dc657611dc66125d9565b6001900381819060005260206000200160009055905550505050565b6000611ded83610bfb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e7c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074e565b6000818152600260205260409020546001600160a01b031615611ee15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074e565b611eed60008383611a9e565b6001600160a01b0382166000908152600360205260408120805460019290611f169084906124d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f8090612543565b90600052602060002090601f016020900481019282611fa25760008555611fe8565b82601f10611fbb57805160ff1916838001178555611fe8565b82800160010185558215611fe8579182015b82811115611fe8578251825591602001919060010190611fcd565b50611ff4929150611ff8565b5090565b5b80821115611ff45760008155600101611ff9565b600067ffffffffffffffff8084111561202857612028612605565b604051601f8501601f19908116603f0116810190828211818310171561205057612050612605565b8160405280935085815286868601111561206957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a9357600080fd5b6000602082840312156120ac57600080fd5b6120b582612083565b9392505050565b600080604083850312156120cf57600080fd5b6120d883612083565b91506120e660208401612083565b90509250929050565b60008060006060848603121561210457600080fd5b61210d84612083565b925061211b60208501612083565b9150604084013590509250925092565b6000806000806080858703121561214157600080fd5b61214a85612083565b935061215860208601612083565b925060408501359150606085013567ffffffffffffffff81111561217b57600080fd5b8501601f8101871361218c57600080fd5b61219b8782356020840161200d565b91505092959194509250565b600080604083850312156121ba57600080fd5b6121c383612083565b9150602083013580151581146121d857600080fd5b809150509250929050565b600080604083850312156121f657600080fd5b6121ff83612083565b946020939093013593505050565b60006020828403121561221f57600080fd5b81356120b58161261b565b60006020828403121561223c57600080fd5b81516120b58161261b565b60006020828403121561225957600080fd5b813567ffffffffffffffff81111561227057600080fd5b8201601f8101841361228157600080fd5b6116a78482356020840161200d565b6000602082840312156122a257600080fd5b5035919050565b600081518084526122c1816020860160208601612517565b601f01601f19169290920160200192915050565b600081516122e7818560208601612517565b9290920192915050565b600080845481600182811c91508083168061230d57607f831692505b602080841082141561232d57634e487b7160e01b86526022600452602486fd5b81801561234157600181146123525761237f565b60ff1986168952848901965061237f565b60008b81526020902060005b868110156123775781548b82015290850190830161235e565b505084890196505b5050505050506123a361239282866122d5565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123df908301846122a9565b9695505050505050565b6020815260006120b560208301846122a9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124e7576124e76125ad565b500190565b6000826124fb576124fb6125c3565b500490565b600082821015612512576125126125ad565b500390565b60005b8381101561253257818101518382015260200161251a565b838111156110cc5750506000910152565b600181811c9082168061255757607f821691505b6020821081141561257857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612592576125926125ad565b5060010190565b6000826125a8576125a86125c3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4457600080fdfea2646970667358221220aa986a8287f30f5b65b5e8ad812b115aa847771d12d00f005e8d795aa04de8d964736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80638456cb591161010d578063b6a298e5116100a0578063c87b56dd1161006f578063c87b56dd1461056b578063d547cfb71461058b578063e985e9c5146105a0578063f19e75d4146105e9578063f2fde38b146105fc57600080fd5b8063b6a298e51461050a578063b88d4fde14610520578063c04086e814610540578063c4ae31681461055657600080fd5b806391b7f5ed116100dc57806391b7f5ed146104a257806395d89b41146104c2578063a22cb465146104d7578063add5a4fa146104f757600080fd5b80638456cb591461043a578063853828b6146104595780638d859f3e1461046e5780638da5cb5b1461048457600080fd5b80632f745c59116101905780634f6ccce71161015f5780634f6ccce7146103b05780635a7dab1d146103d05780636352211e146103e557806370a0823114610405578063715018a61461042557600080fd5b80632f745c591461032857806336c4ff7a1461034857806337c0df0c1461037057806342842e0e1461039057600080fd5b806318160ddd116101cc57806318160ddd146102af5780631978f469146102ce57806323b872dd146102ee5780632b4403bb1461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e61021936600461220d565b61061c565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610647565b60405161022a91906123e9565b34801561026157600080fd5b50610275610270366004612290565b6106d9565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a83660046121e3565b610773565b005b3480156102bb57600080fd5b506008545b60405190815260200161022a565b3480156102da57600080fd5b506102c06102e936600461209a565b610889565b3480156102fa57600080fd5b506102ad6103093660046120ef565b6108fd565b34801561031a57600080fd5b50600f5461021e9060ff1681565b34801561033457600080fd5b506102c06103433660046121e3565b61092e565b34801561035457600080fd5b5061027573ee9abb3a1d3d09d2e258862f69d52aedb262308881565b34801561037c57600080fd5b5061024861038b366004612247565b6109c4565b34801561039c57600080fd5b506102ad6103ab3660046120ef565b610a98565b3480156103bc57600080fd5b506102c06103cb366004612290565b610ab3565b3480156103dc57600080fd5b506102ad610b46565b3480156103f157600080fd5b50610275610400366004612290565b610b84565b34801561041157600080fd5b506102c061042036600461209a565b610bfb565b34801561043157600080fd5b506102ad610c82565b34801561044657600080fd5b50600f5461021e90610100900460ff1681565b34801561046557600080fd5b506102ad610cb8565b34801561047a57600080fd5b506102c0600b5481565b34801561049057600080fd5b50600a546001600160a01b0316610275565b3480156104ae57600080fd5b506102c06104bd366004612290565b610d47565b3480156104ce57600080fd5b50610248610d7d565b3480156104e357600080fd5b506102ad6104f23660046121a7565b610d8c565b6102ad6105053660046121e3565b610e51565b34801561051657600080fd5b506102c0600c5481565b34801561052c57600080fd5b506102ad61053b36600461212b565b61109a565b34801561054c57600080fd5b506102c0600d5481565b34801561056257600080fd5b506102ad6110d2565b34801561057757600080fd5b50610248610586366004612290565b611119565b34801561059757600080fd5b506102486111f4565b3480156105ac57600080fd5b5061021e6105bb3660046120bc565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6102ad6105f7366004612290565b611282565b34801561060857600080fd5b506102ad61061736600461209a565b611462565b60006001600160e01b0319821663780e9d6360e01b14806106415750610641826114fa565b92915050565b60606000805461065690612543565b80601f016020809104026020016040519081016040528092919081815260200182805461068290612543565b80156106cf5780601f106106a4576101008083540402835291602001916106cf565b820191906000526020600020905b8154815290600101906020018083116106b257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107575760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061077e82610b84565b9050806001600160a01b0316836001600160a01b031614156107ec5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161074e565b336001600160a01b0382161480610808575061080881336105bb565b61087a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161074e565b610884838361154a565b505050565b60006001600160a01b0382166108e15760405162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015260640161074e565b506001600160a01b031660009081526010602052604090205490565b61090733826115b8565b6109235760405162461bcd60e51b815260040161074e90612483565b6108848383836116af565b600061093983610bfb565b821061099b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161074e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546060906001600160a01b031633146109f15760405162461bcd60e51b815260040161074e9061244e565b8151610a0490600e906020850190611f74565b50600e8054610a1290612543565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3e90612543565b8015610a8b5780601f10610a6057610100808354040283529160200191610a8b565b820191906000526020600020905b815481529060010190602001808311610a6e57829003601f168201915b505050505090505b919050565b6108848383836040518060200160405280600081525061109a565b6000610abe60085490565b8210610b215760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161074e565b60088281548110610b3457610b346125ef565b90600052602060002001549050919050565b600a546001600160a01b03163314610b705760405162461bcd60e51b815260040161074e9061244e565b600f805460ff19811660ff90911615179055565b6000818152600260205260408120546001600160a01b0316806106415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161074e565b60006001600160a01b038216610c665760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161074e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610cac5760405162461bcd60e51b815260040161074e9061244e565b610cb6600061185a565b565b600a546001600160a01b03163314610ce25760405162461bcd60e51b815260040161074e9061244e565b4780610d265760405162461bcd60e51b8152602060048201526013602482015272496e737566666963656e742062616c616e636560681b604482015260640161074e565b610d4473ee9abb3a1d3d09d2e258862f69d52aedb2623088826118ac565b50565b600a546000906001600160a01b03163314610d745760405162461bcd60e51b815260040161074e9061244e565b50600b81905590565b60606001805461065690612543565b6001600160a01b038216331415610de55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161074e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314610e7b5760405162461bcd60e51b815260040161074e9061244e565b6001600160a01b038216610ed15760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206d696e7420746f206e756c6c20616464726573730000000000604482015260640161074e565b600f5460ff16610f1f5760405162461bcd60e51b81526020600482015260196024820152782a32b0b69036b4b73a34b733903737ba1039ba30b93a32b21760391b604482015260640161074e565b600c5460085410610f6c5760405162461bcd60e51b815260206004820152601760248201527620b636103a32b0b6903a37b5b2b7399036b4b73a32b21760491b604482015260640161074e565b600c5481610f7960085490565b610f8391906124d4565b1115610fd15760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720776f756c642065786365656420737570706c792100000000604482015260640161074e565b60005b81811015611053576000600d546001610fed91906124d4565b90506001600d600082825461100291906124d4565b90915550506001600160a01b03841660009081526010602052604081208054600192906110309084906124d4565b909155506110409050848261194f565b508061104b8161257e565b915050610fd4565b50604080516001600160a01b0384168152602081018390527ff2f7ccdd03dc638dad64351e563e32627706af55437b4623048a35512644fbf0910160405180910390a15050565b6110a433836115b8565b6110c05760405162461bcd60e51b815260040161074e90612483565b6110cc8484848461196d565b50505050565b600a546001600160a01b031633146110fc5760405162461bcd60e51b815260040161074e9061244e565b600f805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166111985760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161074e565b6000600e80546111a790612543565b9050116111c35760405180602001604052806000815250610641565b600e6111ce836119a0565b6040516020016111df9291906122f1565b60405160208183030381529060405292915050565b600e805461120190612543565b80601f016020809104026020016040519081016040528092919081815260200182805461122d90612543565b801561127a5780601f1061124f5761010080835404028352916020019161127a565b820191906000526020600020905b81548152906001019060200180831161125d57829003601f168201915b505050505081565b600a546001600160a01b031633146112ac5760405162461bcd60e51b815260040161074e9061244e565b600f5460ff166112fa5760405162461bcd60e51b81526020600482015260196024820152782a32b0b69036b4b73a34b733903737ba1039ba30b93a32b21760391b604482015260640161074e565b600c54600854106113475760405162461bcd60e51b815260206004820152601760248201527620b636103a32b0b6903a37b5b2b7399036b4b73a32b21760491b604482015260640161074e565b600c548161135460085490565b61135e91906124d4565b11156113ac5760405162461bcd60e51b815260206004820152601c60248201527f4d696e74696e6720776f756c642065786365656420737570706c792100000000604482015260640161074e565b60005b81811015611425576000600d5460016113c891906124d4565b90506001600d60008282546113dd91906124d4565b90915550503360009081526010602052604081208054600192906114029084906124d4565b909155506114129050338261194f565b508061141d8161257e565b9150506113af565b5060408051338152602081018390527ff2f7ccdd03dc638dad64351e563e32627706af55437b4623048a35512644fbf0910160405180910390a150565b600a546001600160a01b0316331461148c5760405162461bcd60e51b815260040161074e9061244e565b6001600160a01b0381166114f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074e565b610d448161185a565b60006001600160e01b031982166380ac58cd60e01b148061152b57506001600160e01b03198216635b5e139f60e01b145b8061064157506301ffc9a760e01b6001600160e01b0319831614610641565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061157f82610b84565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116315760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161074e565b600061163c83610b84565b9050806001600160a01b0316846001600160a01b031614806116775750836001600160a01b031661166c846106d9565b6001600160a01b0316145b806116a757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116c282610b84565b6001600160a01b03161461172a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161074e565b6001600160a01b03821661178c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161074e565b611797838383611a9e565b6117a260008261154a565b6001600160a01b03831660009081526003602052604081208054600192906117cb908490612500565b90915550506001600160a01b03821660009081526003602052604081208054600192906117f99084906124d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146118f9576040519150601f19603f3d011682016040523d82523d6000602084013e6118fe565b606091505b50509050806108845760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f2077696474686472617720457468657200000000000000604482015260640161074e565b611969828260405180602001604052806000815250611b56565b5050565b6119788484846116af565b61198484848484611b89565b6110cc5760405162461bcd60e51b815260040161074e906123fc565b6060816119c45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119ee57806119d88161257e565b91506119e79050600a836124ec565b91506119c8565b60008167ffffffffffffffff811115611a0957611a09612605565b6040519080825280601f01601f191660200182016040528015611a33576020820181803683370190505b5090505b84156116a757611a48600183612500565b9150611a55600a86612599565b611a609060306124d4565b60f81b818381518110611a7557611a756125ef565b60200101906001600160f81b031916908160001a905350611a97600a866124ec565b9450611a37565b6001600160a01b038316611af957611af481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b1c565b816001600160a01b0316836001600160a01b031614611b1c57611b1c8382611c96565b6001600160a01b038216611b335761088481611d33565b826001600160a01b0316826001600160a01b031614610884576108848282611de2565b611b608383611e26565b611b6d6000848484611b89565b6108845760405162461bcd60e51b815260040161074e906123fc565b60006001600160a01b0384163b15611c8b57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bcd9033908990889088906004016123ac565b602060405180830381600087803b158015611be757600080fd5b505af1925050508015611c17575060408051601f3d908101601f19168201909252611c149181019061222a565b60015b611c71573d808015611c45576040519150601f19603f3d011682016040523d82523d6000602084013e611c4a565b606091505b508051611c695760405162461bcd60e51b815260040161074e906123fc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116a7565b506001949350505050565b60006001611ca384610bfb565b611cad9190612500565b600083815260076020526040902054909150808214611d00576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d4590600190612500565b60008381526009602052604081205460088054939450909284908110611d6d57611d6d6125ef565b906000526020600020015490508060088381548110611d8e57611d8e6125ef565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dc657611dc66125d9565b6001900381819060005260206000200160009055905550505050565b6000611ded83610bfb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e7c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161074e565b6000818152600260205260409020546001600160a01b031615611ee15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161074e565b611eed60008383611a9e565b6001600160a01b0382166000908152600360205260408120805460019290611f169084906124d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f8090612543565b90600052602060002090601f016020900481019282611fa25760008555611fe8565b82601f10611fbb57805160ff1916838001178555611fe8565b82800160010185558215611fe8579182015b82811115611fe8578251825591602001919060010190611fcd565b50611ff4929150611ff8565b5090565b5b80821115611ff45760008155600101611ff9565b600067ffffffffffffffff8084111561202857612028612605565b604051601f8501601f19908116603f0116810190828211818310171561205057612050612605565b8160405280935085815286868601111561206957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a9357600080fd5b6000602082840312156120ac57600080fd5b6120b582612083565b9392505050565b600080604083850312156120cf57600080fd5b6120d883612083565b91506120e660208401612083565b90509250929050565b60008060006060848603121561210457600080fd5b61210d84612083565b925061211b60208501612083565b9150604084013590509250925092565b6000806000806080858703121561214157600080fd5b61214a85612083565b935061215860208601612083565b925060408501359150606085013567ffffffffffffffff81111561217b57600080fd5b8501601f8101871361218c57600080fd5b61219b8782356020840161200d565b91505092959194509250565b600080604083850312156121ba57600080fd5b6121c383612083565b9150602083013580151581146121d857600080fd5b809150509250929050565b600080604083850312156121f657600080fd5b6121ff83612083565b946020939093013593505050565b60006020828403121561221f57600080fd5b81356120b58161261b565b60006020828403121561223c57600080fd5b81516120b58161261b565b60006020828403121561225957600080fd5b813567ffffffffffffffff81111561227057600080fd5b8201601f8101841361228157600080fd5b6116a78482356020840161200d565b6000602082840312156122a257600080fd5b5035919050565b600081518084526122c1816020860160208601612517565b601f01601f19169290920160200192915050565b600081516122e7818560208601612517565b9290920192915050565b600080845481600182811c91508083168061230d57607f831692505b602080841082141561232d57634e487b7160e01b86526022600452602486fd5b81801561234157600181146123525761237f565b60ff1986168952848901965061237f565b60008b81526020902060005b868110156123775781548b82015290850190830161235e565b505084890196505b5050505050506123a361239282866122d5565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123df908301846122a9565b9695505050505050565b6020815260006120b560208301846122a9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156124e7576124e76125ad565b500190565b6000826124fb576124fb6125c3565b500490565b600082821015612512576125126125ad565b500390565b60005b8381101561253257818101518382015260200161251a565b838111156110cc5750506000910152565b600181811c9082168061255757607f821691505b6020821081141561257857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612592576125926125ad565b5060010190565b6000826125a8576125a86125c3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d4457600080fdfea2646970667358221220aa986a8287f30f5b65b5e8ad812b115aa847771d12d00f005e8d795aa04de8d964736f6c63430008070033

Deployed Bytecode Sourcemap

45043:3465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39153:224;;;;;;;;;;-1:-1:-1;39153:224:0;;;;;:::i;:::-;;:::i;:::-;;;7274:14:1;;7267:22;7249:41;;7237:2;7222:18;39153:224:0;;;;;;;;27036:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28604:221::-;;;;;;;;;;-1:-1:-1;28604:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6293:32:1;;;6275:51;;6263:2;6248:18;28604:221:0;6129:203:1;28127:411:0;;;;;;;;;;-1:-1:-1;28127:411:0;;;;;:::i;:::-;;:::i;:::-;;39793:113;;;;;;;;;;-1:-1:-1;39881:10:0;:17;39793:113;;;17351:25:1;;;17339:2;17324:18;39793:113:0;17205:177:1;46201:186:0;;;;;;;;;;-1:-1:-1;46201:186:0;;;;;:::i;:::-;;:::i;29494:339::-;;;;;;;;;;-1:-1:-1;29494:339:0;;;;;:::i;:::-;;:::i;45392:34::-;;;;;;;;;;-1:-1:-1;45392:34:0;;;;;;;;39461:256;;;;;;;;;;-1:-1:-1;39461:256:0;;;;;:::i;:::-;;:::i;45286:79::-;;;;;;;;;;;;45323:42;45286:79;;45890:160;;;;;;;;;;-1:-1:-1;45890:160:0;;;;;:::i;:::-;;:::i;29904:185::-;;;;;;;;;;-1:-1:-1;29904:185:0;;;;;:::i;:::-;;:::i;39983:233::-;;;;;;;;;;-1:-1:-1;39983:233:0;;;;;:::i;:::-;;:::i;45675:104::-;;;;;;;;;;;;;:::i;26730:239::-;;;;;;;;;;-1:-1:-1;26730:239:0;;;;;:::i;:::-;;:::i;26460:208::-;;;;;;;;;;-1:-1:-1;26460:208:0;;;;;:::i;:::-;;:::i;11017:94::-;;;;;;;;;;;;;:::i;45433:25::-;;;;;;;;;;-1:-1:-1;45433:25:0;;;;;;;;;;;47789:194;;;;;;;;;;;;;:::i;45132:30::-;;;;;;;;;;;;;;;;10366:87;;;;;;;;;;-1:-1:-1;10439:6:0;;-1:-1:-1;;;;;10439:6:0;10366:87;;46062:127;;;;;;;;;;-1:-1:-1;46062:127:0;;;;;:::i;:::-;;:::i;27205:104::-;;;;;;;;;;;;;:::i;28897:295::-;;;;;;;;;;-1:-1:-1;28897:295:0;;;;;:::i;:::-;;:::i;46399:723::-;;;;;;:::i;:::-;;:::i;45169:33::-;;;;;;;;;;;;;;;;30160:328;;;;;;;;;;-1:-1:-1;30160:328:0;;;;;:::i;:::-;;:::i;45209:32::-;;;;;;;;;;;;;;;;45803:75;;;;;;;;;;;;;:::i;48199:306::-;;;;;;;;;;-1:-1:-1;48199:306:0;;;;;:::i;:::-;;:::i;45248:31::-;;;;;;;;;;;;;:::i;29263:164::-;;;;;;;;;;-1:-1:-1;29263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29384:25:0;;;29360:4;29384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29263:164;47130:639;;;;;;:::i;:::-;;:::i;11266:192::-;;;;;;;;;;-1:-1:-1;11266:192:0;;;;;:::i;:::-;;:::i;39153:224::-;39255:4;-1:-1:-1;;;;;;39279:50:0;;-1:-1:-1;;;39279:50:0;;:90;;;39333:36;39357:11;39333:23;:36::i;:::-;39272:97;39153:224;-1:-1:-1;;39153:224:0:o;27036:100::-;27090:13;27123:5;27116:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27036:100;:::o;28604:221::-;28680:7;32087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32087:16:0;28700:73;;;;-1:-1:-1;;;28700:73:0;;12458:2:1;28700:73:0;;;12440:21:1;12497:2;12477:18;;;12470:30;12536:34;12516:18;;;12509:62;-1:-1:-1;;;12587:18:1;;;12580:42;12639:19;;28700:73:0;;;;;;;;;-1:-1:-1;28793:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28793:24:0;;28604:221::o;28127:411::-;28208:13;28224:23;28239:7;28224:14;:23::i;:::-;28208:39;;28272:5;-1:-1:-1;;;;;28266:11:0;:2;-1:-1:-1;;;;;28266:11:0;;;28258:57;;;;-1:-1:-1;;;28258:57:0;;14760:2:1;28258:57:0;;;14742:21:1;14799:2;14779:18;;;14772:30;14838:34;14818:18;;;14811:62;-1:-1:-1;;;14889:18:1;;;14882:31;14930:19;;28258:57:0;14558:397:1;28258:57:0;647:10;-1:-1:-1;;;;;28350:21:0;;;;:62;;-1:-1:-1;28375:37:0;28392:5;647:10;29263:164;:::i;28375:37::-;28328:168;;;;-1:-1:-1;;;28328:168:0;;10494:2:1;28328:168:0;;;10476:21:1;10533:2;10513:18;;;10506:30;10572:34;10552:18;;;10545:62;10643:26;10623:18;;;10616:54;10687:19;;28328:168:0;10292:420:1;28328:168:0;28509:21;28518:2;28522:7;28509:8;:21::i;:::-;28197:341;28127:411;;:::o;46201:186::-;46264:7;-1:-1:-1;;;;;46292:19:0;;46284:55;;;;-1:-1:-1;;;46284:55:0;;15162:2:1;46284:55:0;;;15144:21:1;15201:2;15181:18;;;15174:30;15240:25;15220:18;;;15213:53;15283:18;;46284:55:0;14960:347:1;46284:55:0;-1:-1:-1;;;;;;46359:20:0;;;;;:13;:20;;;;;;;46201:186::o;29494:339::-;29689:41;647:10;29722:7;29689:18;:41::i;:::-;29681:103;;;;-1:-1:-1;;;29681:103:0;;;;;;;:::i;:::-;29797:28;29807:4;29813:2;29817:7;29797:9;:28::i;39461:256::-;39558:7;39594:23;39611:5;39594:16;:23::i;:::-;39586:5;:31;39578:87;;;;-1:-1:-1;;;39578:87:0;;7727:2:1;39578:87:0;;;7709:21:1;7766:2;7746:18;;;7739:30;7805:34;7785:18;;;7778:62;-1:-1:-1;;;7856:18:1;;;7849:41;7907:19;;39578:87:0;7525:407:1;39578:87:0;-1:-1:-1;;;;;;39683:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39461:256::o;45890:160::-;10439:6;;45964:13;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;45990:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46030:12;46023:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10657:1;45890:160:::0;;;:::o;29904:185::-;30042:39;30059:4;30065:2;30069:7;30042:39;;;;;;;;;;;;:16;:39::i;39983:233::-;40058:7;40094:30;39881:10;:17;;39793:113;40094:30;40086:5;:38;40078:95;;;;-1:-1:-1;;;40078:95:0;;15932:2:1;40078:95:0;;;15914:21:1;15971:2;15951:18;;;15944:30;16010:34;15990:18;;;15983:62;-1:-1:-1;;;16061:18:1;;;16054:42;16113:19;;40078:95:0;15730:408:1;40078:95:0;40191:10;40202:5;40191:17;;;;;;;;:::i;:::-;;;;;;;;;40184:24;;39983:233;;;:::o;45675:104::-;10439:6;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;45756:15:::1;::::0;;-1:-1:-1;;45737:34:0;::::1;45756:15;::::0;;::::1;45755:16;45737:34;::::0;;45675:104::o;26730:239::-;26802:7;26838:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26838:16:0;26873:19;26865:73;;;;-1:-1:-1;;;26865:73:0;;11330:2:1;26865:73:0;;;11312:21:1;11369:2;11349:18;;;11342:30;11408:34;11388:18;;;11381:62;-1:-1:-1;;;11459:18:1;;;11452:39;11508:19;;26865:73:0;11128:405:1;26460:208:0;26532:7;-1:-1:-1;;;;;26560:19:0;;26552:74;;;;-1:-1:-1;;;26552:74:0;;10919:2:1;26552:74:0;;;10901:21:1;10958:2;10938:18;;;10931:30;10997:34;10977:18;;;10970:62;-1:-1:-1;;;11048:18:1;;;11041:40;11098:19;;26552:74:0;10717:406:1;26552:74:0;-1:-1:-1;;;;;;26644:16:0;;;;;:9;:16;;;;;;;26460:208::o;11017:94::-;10439:6;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;11082:21:::1;11100:1;11082:9;:21::i;:::-;11017:94::o:0;47789:194::-;10439:6;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;47858:21:::1;47898:11:::0;47890:43:::1;;;::::0;-1:-1:-1;;;47890:43:0;;12871:2:1;47890:43:0::1;::::0;::::1;12853:21:1::0;12910:2;12890:18;;;12883:30;-1:-1:-1;;;12929:18:1;;;12922:49;12988:18;;47890:43:0::1;12669:343:1::0;47890:43:0::1;47944:31;45323:42;47967:7;47944:10;:31::i;:::-;47829:154;47789:194::o:0;46062:127::-;10439:6;;46123:7;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;-1:-1:-1;46143:5:0::1;:15:::0;;;;46062:127::o;27205:104::-;27261:13;27294:7;27287:14;;;;;:::i;28897:295::-;-1:-1:-1;;;;;29000:24:0;;647:10;29000:24;;28992:62;;;;-1:-1:-1;;;28992:62:0;;9727:2:1;28992:62:0;;;9709:21:1;9766:2;9746:18;;;9739:30;9805:27;9785:18;;;9778:55;9850:18;;28992:62:0;9525:349:1;28992:62:0;647:10;29067:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29067:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29067:53:0;;;;;;;;;;29136:48;;7249:41:1;;;29067:42:0;;647:10;29136:48;;7222:18:1;29136:48:0;;;;;;;28897:295;;:::o;46399:723::-;10439:6;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46506:22:0;::::1;46498:62;;;::::0;-1:-1:-1;;;46498:62:0;;16345:2:1;46498:62:0::1;::::0;::::1;16327:21:1::0;16384:2;16364:18;;;16357:30;16423:29;16403:18;;;16396:57;16470:18;;46498:62:0::1;16143:351:1::0;46498:62:0::1;46579:15;::::0;::::1;;46571:53;;;::::0;-1:-1:-1;;;46571:53:0;;16701:2:1;46571:53:0::1;::::0;::::1;16683:21:1::0;16740:2;16720:18;;;16713:30;-1:-1:-1;;;16759:18:1;;;16752:55;16824:18;;46571:53:0::1;16499:349:1::0;46571:53:0::1;46659:12;::::0;39881:10;:17;46643:28:::1;46635:64;;;::::0;-1:-1:-1;;;46635:64:0;;17055:2:1;46635:64:0::1;::::0;::::1;17037:21:1::0;17094:2;17074:18;;;17067:30;-1:-1:-1;;;17113:18:1;;;17106:53;17176:18;;46635:64:0::1;16853:347:1::0;46635:64:0::1;46754:12;;46734:16;46718:13;39881:10:::0;:17;;39793:113;46718:13:::1;:32;;;;:::i;:::-;:48;;46710:89;;;::::0;-1:-1:-1;;;46710:89:0;;12101:2:1;46710:89:0::1;::::0;::::1;12083:21:1::0;12140:2;12120:18;;;12113:30;12179;12159:18;;;12152:58;12227:18;;46710:89:0::1;11899:352:1::0;46710:89:0::1;46825:9;46820:238;46844:16;46840:1;:20;46820:238;;;46882:15;46900:17;;46920:1;46900:21;;;;:::i;:::-;46882:39;;46959:1;46938:17;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;46975:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;:28;;47002:1:::1;::::0;46975:23;:28:::1;::::0;47002:1;;46975:28:::1;:::i;:::-;::::0;;;-1:-1:-1;47018:28:0::1;::::0;-1:-1:-1;47028:8:0;47038:7;47018:9:::1;:28::i;:::-;-1:-1:-1::0;46862:3:0;::::1;::::0;::::1;:::i;:::-;;;;46820:238;;;-1:-1:-1::0;47075:39:0::1;::::0;;-1:-1:-1;;;;;7022:32:1;;7004:51;;7086:2;7071:18;;7064:34;;;47075:39:0::1;::::0;6977:18:1;47075:39:0::1;;;;;;;46399:723:::0;;:::o;30160:328::-;30335:41;647:10;30368:7;30335:18;:41::i;:::-;30327:103;;;;-1:-1:-1;;;30327:103:0;;;;;;;:::i;:::-;30441:39;30455:4;30461:2;30465:7;30474:5;30441:13;:39::i;:::-;30160:328;;;;:::o;45803:75::-;10439:6;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;45865:5:::1;::::0;;-1:-1:-1;;45856:14:0;::::1;45865:5;::::0;;;::::1;;;45864:6;45856:14:::0;;::::1;;::::0;;45803:75::o;48199:306::-;32063:4;32087:16;;;:7;:16;;;;;;48272:13;;-1:-1:-1;;;;;32087:16:0;48298:76;;;;-1:-1:-1;;;48298:76:0;;13990:2:1;48298:76:0;;;13972:21:1;14029:2;14009:18;;;14002:30;14068:34;14048:18;;;14041:62;-1:-1:-1;;;14119:18:1;;;14112:45;14174:19;;48298:76:0;13788:411:1;48298:76:0;48421:1;48398:12;48392:26;;;;;:::i;:::-;;;:30;:105;;;;;;;;;;;;;;;;;48449:12;48463:18;:7;:16;:18::i;:::-;48432:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48385:112;48199:306;-1:-1:-1;;48199:306:0:o;45248:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47130:639::-;10439:6;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;47220:15:::1;::::0;::::1;;47212:53;;;::::0;-1:-1:-1;;;47212:53:0;;16701:2:1;47212:53:0::1;::::0;::::1;16683:21:1::0;16740:2;16720:18;;;16713:30;-1:-1:-1;;;16759:18:1;;;16752:55;16824:18;;47212:53:0::1;16499:349:1::0;47212:53:0::1;47300:12;::::0;39881:10;:17;47284:28:::1;47276:64;;;::::0;-1:-1:-1;;;47276:64:0;;17055:2:1;47276:64:0::1;::::0;::::1;17037:21:1::0;17094:2;17074:18;;;17067:30;-1:-1:-1;;;17113:18:1;;;17106:53;17176:18;;47276:64:0::1;16853:347:1::0;47276:64:0::1;47395:12;;47375:16;47359:13;39881:10:::0;:17;;39793:113;47359:13:::1;:32;;;;:::i;:::-;:48;;47351:89;;;::::0;-1:-1:-1;;;47351:89:0;;12101:2:1;47351:89:0::1;::::0;::::1;12083:21:1::0;12140:2;12120:18;;;12113:30;12179;12159:18;;;12152:58;12227:18;;47351:89:0::1;11899:352:1::0;47351:89:0::1;47466:9;47461:242;47485:16;47481:1;:20;47461:242;;;47523:15;47541:17;;47561:1;47541:21;;;;:::i;:::-;47523:39;;47600:1;47579:17;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;47630:10:0::1;47616:25;::::0;;;:13:::1;:25;::::0;;;;:30;;47645:1:::1;::::0;47616:25;:30:::1;::::0;47645:1;;47616:30:::1;:::i;:::-;::::0;;;-1:-1:-1;47661:30:0::1;::::0;-1:-1:-1;47671:10:0::1;47683:7:::0;47661:9:::1;:30::i;:::-;-1:-1:-1::0;47503:3:0;::::1;::::0;::::1;:::i;:::-;;;;47461:242;;;-1:-1:-1::0;47720:41:0::1;::::0;;47732:10:::1;7004:51:1::0;;7086:2;7071:18;;7064:34;;;47720:41:0::1;::::0;6977:18:1;47720:41:0::1;;;;;;;47130:639:::0;:::o;11266:192::-;10439:6;;-1:-1:-1;;;;;10439:6:0;647:10;10586:23;10578:68;;;;-1:-1:-1;;;10578:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11355:22:0;::::1;11347:73;;;::::0;-1:-1:-1;;;11347:73:0;;8558:2:1;11347:73:0::1;::::0;::::1;8540:21:1::0;8597:2;8577:18;;;8570:30;8636:34;8616:18;;;8609:62;-1:-1:-1;;;8687:18:1;;;8680:36;8733:19;;11347:73:0::1;8356:402:1::0;11347:73:0::1;11431:19;11441:8;11431:9;:19::i;26091:305::-:0;26193:4;-1:-1:-1;;;;;;26230:40:0;;-1:-1:-1;;;26230:40:0;;:105;;-1:-1:-1;;;;;;;26287:48:0;;-1:-1:-1;;;26287:48:0;26230:105;:158;;;-1:-1:-1;;;;;;;;;;13544:40:0;;;26352:36;13435:157;35980:174;36055:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36055:29:0;-1:-1:-1;;;;;36055:29:0;;;;;;;;:24;;36109:23;36055:24;36109:14;:23::i;:::-;-1:-1:-1;;;;;36100:46:0;;;;;;;;;;;35980:174;;:::o;32292:348::-;32385:4;32087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32087:16:0;32402:73;;;;-1:-1:-1;;;32402:73:0;;10081:2:1;32402:73:0;;;10063:21:1;10120:2;10100:18;;;10093:30;10159:34;10139:18;;;10132:62;-1:-1:-1;;;10210:18:1;;;10203:42;10262:19;;32402:73:0;9879:408:1;32402:73:0;32486:13;32502:23;32517:7;32502:14;:23::i;:::-;32486:39;;32555:5;-1:-1:-1;;;;;32544:16:0;:7;-1:-1:-1;;;;;32544:16:0;;:51;;;;32588:7;-1:-1:-1;;;;;32564:31:0;:20;32576:7;32564:11;:20::i;:::-;-1:-1:-1;;;;;32564:31:0;;32544:51;:87;;;-1:-1:-1;;;;;;29384:25:0;;;29360:4;29384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32599:32;32536:96;32292:348;-1:-1:-1;;;;32292:348:0:o;35284:578::-;35443:4;-1:-1:-1;;;;;35416:31:0;:23;35431:7;35416:14;:23::i;:::-;-1:-1:-1;;;;;35416:31:0;;35408:85;;;;-1:-1:-1;;;35408:85:0;;13580:2:1;35408:85:0;;;13562:21:1;13619:2;13599:18;;;13592:30;13658:34;13638:18;;;13631:62;-1:-1:-1;;;13709:18:1;;;13702:39;13758:19;;35408:85:0;13378:405:1;35408:85:0;-1:-1:-1;;;;;35512:16:0;;35504:65;;;;-1:-1:-1;;;35504:65:0;;9322:2:1;35504:65:0;;;9304:21:1;9361:2;9341:18;;;9334:30;9400:34;9380:18;;;9373:62;-1:-1:-1;;;9451:18:1;;;9444:34;9495:19;;35504:65:0;9120:400:1;35504:65:0;35582:39;35603:4;35609:2;35613:7;35582:20;:39::i;:::-;35686:29;35703:1;35707:7;35686:8;:29::i;:::-;-1:-1:-1;;;;;35728:15:0;;;;;;:9;:15;;;;;:20;;35747:1;;35728:15;:20;;35747:1;;35728:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35759:13:0;;;;;;:9;:13;;;;;:18;;35776:1;;35759:13;:18;;35776:1;;35759:18;:::i;:::-;;;;-1:-1:-1;;35788:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35788:21:0;-1:-1:-1;;;;;35788:21:0;;;;;;;;;35827:27;;35788:16;;35827:27;;;;;;;35284:578;;;:::o;11466:173::-;11541:6;;;-1:-1:-1;;;;;11558:17:0;;;-1:-1:-1;;;;;;11558:17:0;;;;;;;11591:40;;11541:6;;;11558:17;11541:6;;11591:40;;11522:16;;11591:40;11511:128;11466:173;:::o;47995:192::-;48070:12;48088:8;-1:-1:-1;;;;;48088:13:0;48110:7;48088:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48069:54;;;48142:7;48134:45;;;;-1:-1:-1;;;48134:45:0;;14406:2:1;48134:45:0;;;14388:21:1;14445:2;14425:18;;;14418:30;14484:27;14464:18;;;14457:55;14529:18;;48134:45:0;14204:349:1;32982:110:0;33058:26;33068:2;33072:7;33058:26;;;;;;;;;;;;:9;:26::i;:::-;32982:110;;:::o;31370:315::-;31527:28;31537:4;31543:2;31547:7;31527:9;:28::i;:::-;31574:48;31597:4;31603:2;31607:7;31616:5;31574:22;:48::i;:::-;31566:111;;;;-1:-1:-1;;;31566:111:0;;;;;;;:::i;13910:723::-;13966:13;14187:10;14183:53;;-1:-1:-1;;14214:10:0;;;;;;;;;;;;-1:-1:-1;;;14214:10:0;;;;;13910:723::o;14183:53::-;14261:5;14246:12;14302:78;14309:9;;14302:78;;14335:8;;;;:::i;:::-;;-1:-1:-1;14358:10:0;;-1:-1:-1;14366:2:0;14358:10;;:::i;:::-;;;14302:78;;;14390:19;14422:6;14412:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14412:17:0;;14390:39;;14440:154;14447:10;;14440:154;;14474:11;14484:1;14474:11;;:::i;:::-;;-1:-1:-1;14543:10:0;14551:2;14543:5;:10;:::i;:::-;14530:24;;:2;:24;:::i;:::-;14517:39;;14500:6;14507;14500:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;14500:56:0;;;;;;;;-1:-1:-1;14571:11:0;14580:2;14571:11;;:::i;:::-;;;14440:154;;40829:589;-1:-1:-1;;;;;41035:18:0;;41031:187;;41070:40;41102:7;42245:10;:17;;42218:24;;;;:15;:24;;;;;:44;;;42273:24;;;;;;;;;;;;42141:164;41070:40;41031:187;;;41140:2;-1:-1:-1;;;;;41132:10:0;:4;-1:-1:-1;;;;;41132:10:0;;41128:90;;41159:47;41192:4;41198:7;41159:32;:47::i;:::-;-1:-1:-1;;;;;41232:16:0;;41228:183;;41265:45;41302:7;41265:36;:45::i;41228:183::-;41338:4;-1:-1:-1;;;;;41332:10:0;:2;-1:-1:-1;;;;;41332:10:0;;41328:83;;41359:40;41387:2;41391:7;41359:27;:40::i;33319:321::-;33449:18;33455:2;33459:7;33449:5;:18::i;:::-;33500:54;33531:1;33535:2;33539:7;33548:5;33500:22;:54::i;:::-;33478:154;;;;-1:-1:-1;;;33478:154:0;;;;;;;:::i;36719:799::-;36874:4;-1:-1:-1;;;;;36895:13:0;;16814:20;16862:8;36891:620;;36931:72;;-1:-1:-1;;;36931:72:0;;-1:-1:-1;;;;;36931:36:0;;;;;:72;;647:10;;36982:4;;36988:7;;36997:5;;36931:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36931:72:0;;;;;;;;-1:-1:-1;;36931:72:0;;;;;;;;;;;;:::i;:::-;;;36927:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37173:13:0;;37169:272;;37216:60;;-1:-1:-1;;;37216:60:0;;;;;;;:::i;37169:272::-;37391:6;37385:13;37376:6;37372:2;37368:15;37361:38;36927:529;-1:-1:-1;;;;;;37054:51:0;-1:-1:-1;;;37054:51:0;;-1:-1:-1;37047:58:0;;36891:620;-1:-1:-1;37495:4:0;36719:799;;;;;;:::o;42932:988::-;43198:22;43248:1;43223:22;43240:4;43223:16;:22::i;:::-;:26;;;;:::i;:::-;43260:18;43281:26;;;:17;:26;;;;;;43198:51;;-1:-1:-1;43414:28:0;;;43410:328;;-1:-1:-1;;;;;43481:18:0;;43459:19;43481:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43532:30;;;;;;:44;;;43649:30;;:17;:30;;;;;:43;;;43410:328;-1:-1:-1;43834:26:0;;;;:17;:26;;;;;;;;43827:33;;;-1:-1:-1;;;;;43878:18:0;;;;;:12;:18;;;;;:34;;;;;;;43871:41;42932:988::o;43928:1079::-;44206:10;:17;44181:22;;44206:21;;44226:1;;44206:21;:::i;:::-;44238:18;44259:24;;;:15;:24;;;;;;44632:10;:26;;44181:46;;-1:-1:-1;44259:24:0;;44181:46;;44632:26;;;;;;:::i;:::-;;;;;;;;;44610:48;;44696:11;44671:10;44682;44671:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44776:28;;;:15;:28;;;;;;;:41;;;44948:24;;;;;44941:31;44983:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43999:1008;;;43928:1079;:::o;41719:221::-;41804:14;41821:20;41838:2;41821:16;:20::i;:::-;-1:-1:-1;;;;;41852:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41897:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41719:221:0:o;33976:382::-;-1:-1:-1;;;;;34056:16:0;;34048:61;;;;-1:-1:-1;;;34048:61:0;;11740:2:1;34048:61:0;;;11722:21:1;;;11759:18;;;11752:30;11818:34;11798:18;;;11791:62;11870:18;;34048:61:0;11538:356:1;34048:61:0;32063:4;32087:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32087:16:0;:30;34120:58;;;;-1:-1:-1;;;34120:58:0;;8965:2:1;34120:58:0;;;8947:21:1;9004:2;8984:18;;;8977:30;9043;9023:18;;;9016:58;9091:18;;34120:58:0;8763:352:1;34120:58:0;34191:45;34220:1;34224:2;34228:7;34191:20;:45::i;:::-;-1:-1:-1;;;;;34249:13:0;;;;;;:9;:13;;;;;:18;;34266:1;;34249:13;:18;;34266:1;;34249:18;:::i;:::-;;;;-1:-1:-1;;34278:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34278:21:0;-1:-1:-1;;;;;34278:21:0;;;;;;;;34317:33;;34278:16;;;34317:33;;34278:16;;34317:33;33976:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;17460:1;17453:14;;;17497:4;17484:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6337:488::-;-1:-1:-1;;;;;6606:15:1;;;6588:34;;6658:15;;6653:2;6638:18;;6631:43;6705:2;6690:18;;6683:34;;;6753:3;6748:2;6733:18;;6726:31;;;6531:4;;6774:45;;6799:19;;6791:6;6774:45;:::i;:::-;6766:53;6337:488;-1:-1:-1;;;;;;6337:488:1:o;7301:219::-;7450:2;7439:9;7432:21;7413:4;7470:44;7510:2;7499:9;7495:18;7487:6;7470:44;:::i;7937:414::-;8139:2;8121:21;;;8178:2;8158:18;;;8151:30;8217:34;8212:2;8197:18;;8190:62;-1:-1:-1;;;8283:2:1;8268:18;;8261:48;8341:3;8326:19;;7937:414::o;13017:356::-;13219:2;13201:21;;;13238:18;;;13231:30;13297:34;13292:2;13277:18;;13270:62;13364:2;13349:18;;13017:356::o;15312:413::-;15514:2;15496:21;;;15553:2;15533:18;;;15526:30;15592:34;15587:2;15572:18;;15565:62;-1:-1:-1;;;15658:2:1;15643:18;;15636:47;15715:3;15700:19;;15312:413::o;17513:128::-;17553:3;17584:1;17580:6;17577:1;17574:13;17571:39;;;17590:18;;:::i;:::-;-1:-1:-1;17626:9:1;;17513:128::o;17646:120::-;17686:1;17712;17702:35;;17717:18;;:::i;:::-;-1:-1:-1;17751:9:1;;17646:120::o;17771:125::-;17811:4;17839:1;17836;17833:8;17830:34;;;17844:18;;:::i;:::-;-1:-1:-1;17881:9:1;;17771:125::o;17901:258::-;17973:1;17983:113;17997:6;17994:1;17991:13;17983:113;;;18073:11;;;18067:18;18054:11;;;18047:39;18019:2;18012:10;17983:113;;;18114:6;18111:1;18108:13;18105:48;;;-1:-1:-1;;18149:1:1;18131:16;;18124:27;17901:258::o;18164:380::-;18243:1;18239:12;;;;18286;;;18307:61;;18361:4;18353:6;18349:17;18339:27;;18307:61;18414:2;18406:6;18403:14;18383:18;18380:38;18377:161;;;18460:10;18455:3;18451:20;18448:1;18441:31;18495:4;18492:1;18485:15;18523:4;18520:1;18513:15;18377:161;;18164:380;;;:::o;18549:135::-;18588:3;-1:-1:-1;;18609:17:1;;18606:43;;;18629:18;;:::i;:::-;-1:-1:-1;18676:1:1;18665:13;;18549:135::o;18689:112::-;18721:1;18747;18737:35;;18752:18;;:::i;:::-;-1:-1:-1;18786:9:1;;18689:112::o;18806:127::-;18867:10;18862:3;18858:20;18855:1;18848:31;18898:4;18895:1;18888:15;18922:4;18919:1;18912:15;18938:127;18999:10;18994:3;18990:20;18987:1;18980:31;19030:4;19027:1;19020:15;19054:4;19051:1;19044:15;19070:127;19131:10;19126:3;19122:20;19119:1;19112:31;19162:4;19159:1;19152:15;19186:4;19183:1;19176:15;19202:127;19263:10;19258:3;19254:20;19251:1;19244:31;19294:4;19291:1;19284:15;19318:4;19315:1;19308:15;19334:127;19395:10;19390:3;19386:20;19383:1;19376:31;19426:4;19423:1;19416:15;19450:4;19447:1;19440:15;19466:131;-1:-1:-1;;;;;;19540:32:1;;19530:43;;19520:71;;19587:1;19584;19577:12

Swarm Source

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