ETH Price: $3,273.03 (+0.88%)

Token

Bad Girlfriend Project Hellspawn (BGFHELLSPAWN)
 

Overview

Max Total Supply

150 BGFHELLSPAWN

Holders

60

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
twowheel.eth
Balance
1 BGFHELLSPAWN
0xe5e8bd70e888d26448492758e7b7a7efbc1f9e07
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:
BGFHELLSPAWN

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

// SPDX-License-Identifier: MIT

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;

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

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;


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

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;


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

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

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

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;


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

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.7;

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

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        require(owner != address(0), "ERC721A: balance query for the zero address");
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), "ERC721A: number minted query for the zero address");
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        require(operator != _msgSender(), "ERC721A: 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 {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");

        require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721A: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

interface HELLISHVAULT {
    function getBankBalance(address _address) external returns (uint256);
    function spendBalanceHellspawn(address _address, uint256 _amount) external;
}

contract BGFHELLSPAWN is ERC721A, Ownable {
    string public baseURI = "https://gateway.pinata.cloud/ipfs/QmadiqUyUQQnXxB3s84bJExSoPP24h4pcyJvVvhSnNxpNK/";
    string public baseExtension = "";
    uint256 public price = 500000;
    uint256 public maxSupply = 150;
    bool public paused = true;
    address public bgfVault;

    HELLISHVAULT vaultContract;

    constructor() ERC721A("Bad Girlfriend Project Hellspawn", "BGFHELLSPAWN") {}

    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(_exists(_tokenId),"Token doesn't exist.");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0
            ? string(abi.encodePacked(currentBaseURI,Strings.toString(_tokenId),baseExtension))
            : "";
    }

    function mint() public {
        require(!paused, "Not allowed yet.");
        uint256 balance = vaultContract.getBankBalance(msg.sender);
        require(balance >= price, "Insufficient Balance.");
        uint256 supply = totalSupply();
        require(supply + 1 <= maxSupply, "Total supply would be reached.");
        vaultContract.spendBalanceHellspawn(msg.sender, price);
        _safeMint(msg.sender, 1);        
    }

    function teamMint(uint256 _mintAmount) public onlyOwner {
        uint256 supply = totalSupply();
        require(
            supply + _mintAmount <= maxSupply,
            "Total supply would be reached."
        );
        _safeMint(msg.sender, _mintAmount);
    }
    
    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);

        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokenIds;
    }

    function setVaultAddress(address _address) public onlyOwner {
        bgfVault = _address;
        vaultContract = HELLISHVAULT(_address);
    }

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

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

    function setBaseUri(string memory _baseuri) public onlyOwner {
        baseURI = _baseuri;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bgfVault","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseuri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setVaultAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"teamMint","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

600880546001600160a01b03191673e053f156660e1abc83f95b6ac56be0a40f7d3dd31790556101006040526051608081815290620025e060a039805162000050916009916020909101906200019b565b506040805160208101918290526000908190526200007191600a916200019b565b506207a120600b556096600c55600d805460ff191660011790553480156200009857600080fd5b506040518060400160405280602081526020017f426164204769726c667269656e642050726f6a6563742048656c6c737061776e8152506040518060400160405280600c81526020016b2123a32422a62629a820aba760a11b81525081600190805190602001906200010c9291906200019b565b508051620001229060029060208401906200019b565b5050506200013f620001396200014560201b60201c565b62000149565b6200027e565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a99062000241565b90600052602060002090601f016020900481019282620001cd576000855562000218565b82601f10620001e857805160ff191683800117855562000218565b8280016001018555821562000218579182015b8281111562000218578251825591602001919060010190620001fb565b50620002269291506200022a565b5090565b5b808211156200022657600081556001016200022b565b600181811c908216806200025657607f821691505b602082108114156200027857634e487b7160e01b600052602260045260246000fd5b50919050565b612352806200028e6000396000f3fe6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461057a578063da3ef23f14610590578063e985e9c5146105b0578063ec84b933146105f9578063f2fde38b1461061e57600080fd5b8063a22cb46514610505578063b88d4fde14610525578063c668286214610545578063c87b56dd1461055a57600080fd5b806391b7f5ed116100dc57806391b7f5ed1461049a57806395d89b41146104ba578063a035b1fe146104cf578063a0bcfc7f146104e557600080fd5b806370a0823114610427578063715018a61461044757806385535cc51461045c5780638da5cb5b1461047c57600080fd5b80632f745c5911610190578063438b63001161015f578063438b63001461038b5780634f6ccce7146103b85780635c975abb146103d85780636352211e146103f25780636c0360eb1461041257600080fd5b80632f745c59146103235780632fbba115146103435780633ccfd60b1461036357806342842e0e1461036b57600080fd5b80631249c58b116101cc5780631249c58b146102af57806316c38b3c146102c457806318160ddd146102e457806323b872dd1461030357600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611f14565b61063e565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106ab565b60405161022a919061213a565b34801561026157600080fd5b50610275610270366004611f97565b61073d565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611ecf565b6107cd565b005b3480156102bb57600080fd5b506102ad6108e5565b3480156102d057600080fd5b506102ad6102df366004611ef9565b610acb565b3480156102f057600080fd5b506000545b60405190815260200161022a565b34801561030f57600080fd5b506102ad61031e366004611ded565b610b1d565b34801561032f57600080fd5b506102f561033e366004611ecf565b610b28565b34801561034f57600080fd5b506102ad61035e366004611f97565b610c85565b6102ad610d2c565b34801561037757600080fd5b506102ad610386366004611ded565b610d91565b34801561039757600080fd5b506103ab6103a6366004611d9f565b610dac565b60405161022a91906120f6565b3480156103c457600080fd5b506102f56103d3366004611f97565b610e4e565b3480156103e457600080fd5b50600d5461021e9060ff1681565b3480156103fe57600080fd5b5061027561040d366004611f97565b610eb0565b34801561041e57600080fd5b50610248610ec2565b34801561043357600080fd5b506102f5610442366004611d9f565b610f50565b34801561045357600080fd5b506102ad610fe1565b34801561046857600080fd5b506102ad610477366004611d9f565b61102a565b34801561048857600080fd5b506007546001600160a01b0316610275565b3480156104a657600080fd5b506102ad6104b5366004611f97565b6110a2565b3480156104c657600080fd5b506102486110e6565b3480156104db57600080fd5b506102f5600b5481565b3480156104f157600080fd5b506102ad610500366004611f4e565b6110f5565b34801561051157600080fd5b506102ad610520366004611ea5565b611147565b34801561053157600080fd5b506102ad610540366004611e29565b61120c565b34801561055157600080fd5b50610248611245565b34801561056657600080fd5b50610248610575366004611f97565b611252565b34801561058657600080fd5b506102f5600c5481565b34801561059c57600080fd5b506102ad6105ab366004611f4e565b611301565b3480156105bc57600080fd5b5061021e6105cb366004611dba565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561060557600080fd5b50600d546102759061010090046001600160a01b031681565b34801561062a57600080fd5b506102ad610639366004611d9f565b611353565b60006001600160e01b031982166380ac58cd60e01b148061066f57506001600160e01b03198216635b5e139f60e01b145b8061068a57506001600160e01b0319821663780e9d6360e01b145b806106a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106ba90612244565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690612244565b80156107335780601f1061070857610100808354040283529160200191610733565b820191906000526020600020905b81548152906001019060200180831161071657829003601f168201915b5050505050905090565b600061074a826000541190565b6107b15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107d882610eb0565b9050806001600160a01b0316836001600160a01b031614156108475760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107a8565b336001600160a01b0382161480610863575061086381336105cb565b6108d55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107a8565b6108e0838383611403565b505050565b600d5460ff161561092b5760405162461bcd60e51b815260206004820152601060248201526f2737ba1030b63637bbb2b2103cb2ba1760811b60448201526064016107a8565b600e546040516304cdb17160e01b81523360048201526000916001600160a01b0316906304cdb17190602401602060405180830381600087803b15801561097157600080fd5b505af1158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a99190611fb0565b9050600b548110156109f55760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a102130b630b731b29760591b60448201526064016107a8565b600054600c54610a068260016121d5565b1115610a545760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c7920776f756c6420626520726561636865642e000060448201526064016107a8565b600e54600b546040516322dcc2af60e11b815233600482015260248101919091526001600160a01b03909116906345b9855e90604401600060405180830381600087803b158015610aa457600080fd5b505af1158015610ab8573d6000803e3d6000fd5b50505050610ac733600161145f565b5050565b6007546001600160a01b0316331480610aee57506008546001600160a01b031633145b610b0a5760405162461bcd60e51b81526004016107a89061214d565b600d805460ff1916911515919091179055565b6108e0838383611479565b6000610b3383610f50565b8210610b8c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107a8565b600080549080805b83811015610c25576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610be757805192505b876001600160a01b0316836001600160a01b03161415610c1c5786841415610c15575093506106a592505050565b6001909301925b50600101610b94565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107a8565b6007546001600160a01b0316331480610ca857506008546001600160a01b031633145b610cc45760405162461bcd60e51b81526004016107a89061214d565b600054600c54610cd483836121d5565b1115610d225760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c7920776f756c6420626520726561636865642e000060448201526064016107a8565b610ac7338361145f565b6007546001600160a01b0316331480610d4f57506008546001600160a01b031633145b610d6b5760405162461bcd60e51b81526004016107a89061214d565b60405133904780156108fc02916000818181858888f19350505050610d8f57600080fd5b565b6108e08383836040518060200160405280600081525061120c565b60606000610db983610f50565b905060008167ffffffffffffffff811115610dd657610dd66122f0565b604051908082528060200260200182016040528015610dff578160200160208202803683370190505b50905060005b82811015610e4657610e178582610b28565b828281518110610e2957610e296122da565b602090810291909101015280610e3e8161227f565b915050610e05565b509392505050565b600080548210610eac5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107a8565b5090565b6000610ebb8261175e565b5192915050565b60098054610ecf90612244565b80601f0160208091040260200160405190810160405280929190818152602001828054610efb90612244565b8015610f485780601f10610f1d57610100808354040283529160200191610f48565b820191906000526020600020905b815481529060010190602001808311610f2b57829003601f168201915b505050505081565b60006001600160a01b038216610fbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107a8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633148061100457506008546001600160a01b031633145b6110205760405162461bcd60e51b81526004016107a89061214d565b610d8f6000611835565b6007546001600160a01b031633148061104d57506008546001600160a01b031633145b6110695760405162461bcd60e51b81526004016107a89061214d565b600d8054610100600160a81b0319166101006001600160a01b0393909316928302179055600e80546001600160a01b0319169091179055565b6007546001600160a01b03163314806110c557506008546001600160a01b031633145b6110e15760405162461bcd60e51b81526004016107a89061214d565b600b55565b6060600280546106ba90612244565b6007546001600160a01b031633148061111857506008546001600160a01b031633145b6111345760405162461bcd60e51b81526004016107a89061214d565b8051610ac7906009906020840190611c6d565b6001600160a01b0382163314156111a05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107a8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611217848484611479565b61122384848484611887565b61123f5760405162461bcd60e51b81526004016107a890612182565b50505050565b600a8054610ecf90612244565b606061125f826000541190565b6112a25760405162461bcd60e51b81526020600482015260146024820152732a37b5b2b7103237b2b9b713ba1032bc34b9ba1760611b60448201526064016107a8565b60006112ac611995565b905060008151116112cc57604051806020016040528060008152506112fa565b806112d6846119a4565b600a6040516020016112ea93929190611ff5565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633148061132457506008546001600160a01b031633145b6113405760405162461bcd60e51b81526004016107a89061214d565b8051610ac790600a906020840190611c6d565b6007546001600160a01b031633148061137657506008546001600160a01b031633145b6113925760405162461bcd60e51b81526004016107a89061214d565b6001600160a01b0381166113f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a8565b61140081611835565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610ac7828260405180602001604052806000815250611aa2565b60006114848261175e565b80519091506000906001600160a01b0316336001600160a01b031614806114bb5750336114b08461073d565b6001600160a01b0316145b806114cd575081516114cd90336105cb565b9050806115375760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107a8565b846001600160a01b031682600001516001600160a01b0316146115ab5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107a8565b6001600160a01b03841661160f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107a8565b61161f6000848460000151611403565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611714576116c7816000541190565b15611714578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261177d826000541190565b6117dc5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107a8565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561182b579392505050565b50600019016117de565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561198957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118cb9033908990889088906004016120b9565b602060405180830381600087803b1580156118e557600080fd5b505af1925050508015611915575060408051601f3d908101601f1916820190925261191291810190611f31565b60015b61196f573d808015611943576040519150601f19603f3d011682016040523d82523d6000602084013e611948565b606091505b5080516119675760405162461bcd60e51b81526004016107a890612182565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061198d565b5060015b949350505050565b6060600980546106ba90612244565b6060816119c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f257806119dc8161227f565b91506119eb9050600a836121ed565b91506119cc565b60008167ffffffffffffffff811115611a0d57611a0d6122f0565b6040519080825280601f01601f191660200182016040528015611a37576020820181803683370190505b5090505b841561198d57611a4c600183612201565b9150611a59600a8661229a565b611a649060306121d5565b60f81b818381518110611a7957611a796122da565b60200101906001600160f81b031916908160001a905350611a9b600a866121ed565b9450611a3b565b6108e083838360016000546001600160a01b038516611b0d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107a8565b83611b6b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107a8565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611c645760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c5857611c3c6000888488611887565b611c585760405162461bcd60e51b81526004016107a890612182565b60019182019101611be9565b50600055611757565b828054611c7990612244565b90600052602060002090601f016020900481019282611c9b5760008555611ce1565b82601f10611cb457805160ff1916838001178555611ce1565b82800160010185558215611ce1579182015b82811115611ce1578251825591602001919060010190611cc6565b50610eac9291505b80821115610eac5760008155600101611ce9565b600067ffffffffffffffff80841115611d1857611d186122f0565b604051601f8501601f19908116603f01168101908282118183101715611d4057611d406122f0565b81604052809350858152868686011115611d5957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d8a57600080fd5b919050565b80358015158114611d8a57600080fd5b600060208284031215611db157600080fd5b6112fa82611d73565b60008060408385031215611dcd57600080fd5b611dd683611d73565b9150611de460208401611d73565b90509250929050565b600080600060608486031215611e0257600080fd5b611e0b84611d73565b9250611e1960208501611d73565b9150604084013590509250925092565b60008060008060808587031215611e3f57600080fd5b611e4885611d73565b9350611e5660208601611d73565b925060408501359150606085013567ffffffffffffffff811115611e7957600080fd5b8501601f81018713611e8a57600080fd5b611e9987823560208401611cfd565b91505092959194509250565b60008060408385031215611eb857600080fd5b611ec183611d73565b9150611de460208401611d8f565b60008060408385031215611ee257600080fd5b611eeb83611d73565b946020939093013593505050565b600060208284031215611f0b57600080fd5b6112fa82611d8f565b600060208284031215611f2657600080fd5b81356112fa81612306565b600060208284031215611f4357600080fd5b81516112fa81612306565b600060208284031215611f6057600080fd5b813567ffffffffffffffff811115611f7757600080fd5b8201601f81018413611f8857600080fd5b61198d84823560208401611cfd565b600060208284031215611fa957600080fd5b5035919050565b600060208284031215611fc257600080fd5b5051919050565b60008151808452611fe1816020860160208601612218565b601f01601f19169290920160200192915050565b6000845160206120088285838a01612218565b85519184019161201b8184848a01612218565b8554920191600090600181811c908083168061203857607f831692505b85831081141561205657634e487b7160e01b85526022600452602485fd5b80801561206a576001811461207b576120a8565b60ff198516885283880195506120a8565b60008b81526020902060005b858110156120a05781548a820152908401908801612087565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ec90830184611fc9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561212e57835183529284019291840191600101612112565b50909695505050505050565b6020815260006112fa6020830184611fc9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156121e8576121e86122ae565b500190565b6000826121fc576121fc6122c4565b500490565b600082821015612213576122136122ae565b500390565b60005b8381101561223357818101518382015260200161221b565b8381111561123f5750506000910152565b600181811c9082168061225857607f821691505b6020821081141561227957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612293576122936122ae565b5060010190565b6000826122a9576122a96122c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140057600080fdfea26469706673582212208bbb5713680b98c51b2d61681e13415580214c189217c6c29c65a6271dd4374f64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6164697155795551516e58784233733834624a4578536f5050323468347063794a76567668536e4e78704e4b2f

Deployed Bytecode

0x6080604052600436106101f95760003560e01c806370a082311161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461057a578063da3ef23f14610590578063e985e9c5146105b0578063ec84b933146105f9578063f2fde38b1461061e57600080fd5b8063a22cb46514610505578063b88d4fde14610525578063c668286214610545578063c87b56dd1461055a57600080fd5b806391b7f5ed116100dc57806391b7f5ed1461049a57806395d89b41146104ba578063a035b1fe146104cf578063a0bcfc7f146104e557600080fd5b806370a0823114610427578063715018a61461044757806385535cc51461045c5780638da5cb5b1461047c57600080fd5b80632f745c5911610190578063438b63001161015f578063438b63001461038b5780634f6ccce7146103b85780635c975abb146103d85780636352211e146103f25780636c0360eb1461041257600080fd5b80632f745c59146103235780632fbba115146103435780633ccfd60b1461036357806342842e0e1461036b57600080fd5b80631249c58b116101cc5780631249c58b146102af57806316c38b3c146102c457806318160ddd146102e457806323b872dd1461030357600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611f14565b61063e565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b506102486106ab565b60405161022a919061213a565b34801561026157600080fd5b50610275610270366004611f97565b61073d565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611ecf565b6107cd565b005b3480156102bb57600080fd5b506102ad6108e5565b3480156102d057600080fd5b506102ad6102df366004611ef9565b610acb565b3480156102f057600080fd5b506000545b60405190815260200161022a565b34801561030f57600080fd5b506102ad61031e366004611ded565b610b1d565b34801561032f57600080fd5b506102f561033e366004611ecf565b610b28565b34801561034f57600080fd5b506102ad61035e366004611f97565b610c85565b6102ad610d2c565b34801561037757600080fd5b506102ad610386366004611ded565b610d91565b34801561039757600080fd5b506103ab6103a6366004611d9f565b610dac565b60405161022a91906120f6565b3480156103c457600080fd5b506102f56103d3366004611f97565b610e4e565b3480156103e457600080fd5b50600d5461021e9060ff1681565b3480156103fe57600080fd5b5061027561040d366004611f97565b610eb0565b34801561041e57600080fd5b50610248610ec2565b34801561043357600080fd5b506102f5610442366004611d9f565b610f50565b34801561045357600080fd5b506102ad610fe1565b34801561046857600080fd5b506102ad610477366004611d9f565b61102a565b34801561048857600080fd5b506007546001600160a01b0316610275565b3480156104a657600080fd5b506102ad6104b5366004611f97565b6110a2565b3480156104c657600080fd5b506102486110e6565b3480156104db57600080fd5b506102f5600b5481565b3480156104f157600080fd5b506102ad610500366004611f4e565b6110f5565b34801561051157600080fd5b506102ad610520366004611ea5565b611147565b34801561053157600080fd5b506102ad610540366004611e29565b61120c565b34801561055157600080fd5b50610248611245565b34801561056657600080fd5b50610248610575366004611f97565b611252565b34801561058657600080fd5b506102f5600c5481565b34801561059c57600080fd5b506102ad6105ab366004611f4e565b611301565b3480156105bc57600080fd5b5061021e6105cb366004611dba565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561060557600080fd5b50600d546102759061010090046001600160a01b031681565b34801561062a57600080fd5b506102ad610639366004611d9f565b611353565b60006001600160e01b031982166380ac58cd60e01b148061066f57506001600160e01b03198216635b5e139f60e01b145b8061068a57506001600160e01b0319821663780e9d6360e01b145b806106a557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546106ba90612244565b80601f01602080910402602001604051908101604052809291908181526020018280546106e690612244565b80156107335780601f1061070857610100808354040283529160200191610733565b820191906000526020600020905b81548152906001019060200180831161071657829003601f168201915b5050505050905090565b600061074a826000541190565b6107b15760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107d882610eb0565b9050806001600160a01b0316836001600160a01b031614156108475760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107a8565b336001600160a01b0382161480610863575061086381336105cb565b6108d55760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107a8565b6108e0838383611403565b505050565b600d5460ff161561092b5760405162461bcd60e51b815260206004820152601060248201526f2737ba1030b63637bbb2b2103cb2ba1760811b60448201526064016107a8565b600e546040516304cdb17160e01b81523360048201526000916001600160a01b0316906304cdb17190602401602060405180830381600087803b15801561097157600080fd5b505af1158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109a99190611fb0565b9050600b548110156109f55760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a102130b630b731b29760591b60448201526064016107a8565b600054600c54610a068260016121d5565b1115610a545760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c7920776f756c6420626520726561636865642e000060448201526064016107a8565b600e54600b546040516322dcc2af60e11b815233600482015260248101919091526001600160a01b03909116906345b9855e90604401600060405180830381600087803b158015610aa457600080fd5b505af1158015610ab8573d6000803e3d6000fd5b50505050610ac733600161145f565b5050565b6007546001600160a01b0316331480610aee57506008546001600160a01b031633145b610b0a5760405162461bcd60e51b81526004016107a89061214d565b600d805460ff1916911515919091179055565b6108e0838383611479565b6000610b3383610f50565b8210610b8c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107a8565b600080549080805b83811015610c25576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610be757805192505b876001600160a01b0316836001600160a01b03161415610c1c5786841415610c15575093506106a592505050565b6001909301925b50600101610b94565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107a8565b6007546001600160a01b0316331480610ca857506008546001600160a01b031633145b610cc45760405162461bcd60e51b81526004016107a89061214d565b600054600c54610cd483836121d5565b1115610d225760405162461bcd60e51b815260206004820152601e60248201527f546f74616c20737570706c7920776f756c6420626520726561636865642e000060448201526064016107a8565b610ac7338361145f565b6007546001600160a01b0316331480610d4f57506008546001600160a01b031633145b610d6b5760405162461bcd60e51b81526004016107a89061214d565b60405133904780156108fc02916000818181858888f19350505050610d8f57600080fd5b565b6108e08383836040518060200160405280600081525061120c565b60606000610db983610f50565b905060008167ffffffffffffffff811115610dd657610dd66122f0565b604051908082528060200260200182016040528015610dff578160200160208202803683370190505b50905060005b82811015610e4657610e178582610b28565b828281518110610e2957610e296122da565b602090810291909101015280610e3e8161227f565b915050610e05565b509392505050565b600080548210610eac5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107a8565b5090565b6000610ebb8261175e565b5192915050565b60098054610ecf90612244565b80601f0160208091040260200160405190810160405280929190818152602001828054610efb90612244565b8015610f485780601f10610f1d57610100808354040283529160200191610f48565b820191906000526020600020905b815481529060010190602001808311610f2b57829003601f168201915b505050505081565b60006001600160a01b038216610fbc5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107a8565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b031633148061100457506008546001600160a01b031633145b6110205760405162461bcd60e51b81526004016107a89061214d565b610d8f6000611835565b6007546001600160a01b031633148061104d57506008546001600160a01b031633145b6110695760405162461bcd60e51b81526004016107a89061214d565b600d8054610100600160a81b0319166101006001600160a01b0393909316928302179055600e80546001600160a01b0319169091179055565b6007546001600160a01b03163314806110c557506008546001600160a01b031633145b6110e15760405162461bcd60e51b81526004016107a89061214d565b600b55565b6060600280546106ba90612244565b6007546001600160a01b031633148061111857506008546001600160a01b031633145b6111345760405162461bcd60e51b81526004016107a89061214d565b8051610ac7906009906020840190611c6d565b6001600160a01b0382163314156111a05760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107a8565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611217848484611479565b61122384848484611887565b61123f5760405162461bcd60e51b81526004016107a890612182565b50505050565b600a8054610ecf90612244565b606061125f826000541190565b6112a25760405162461bcd60e51b81526020600482015260146024820152732a37b5b2b7103237b2b9b713ba1032bc34b9ba1760611b60448201526064016107a8565b60006112ac611995565b905060008151116112cc57604051806020016040528060008152506112fa565b806112d6846119a4565b600a6040516020016112ea93929190611ff5565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633148061132457506008546001600160a01b031633145b6113405760405162461bcd60e51b81526004016107a89061214d565b8051610ac790600a906020840190611c6d565b6007546001600160a01b031633148061137657506008546001600160a01b031633145b6113925760405162461bcd60e51b81526004016107a89061214d565b6001600160a01b0381166113f75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107a8565b61140081611835565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610ac7828260405180602001604052806000815250611aa2565b60006114848261175e565b80519091506000906001600160a01b0316336001600160a01b031614806114bb5750336114b08461073d565b6001600160a01b0316145b806114cd575081516114cd90336105cb565b9050806115375760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107a8565b846001600160a01b031682600001516001600160a01b0316146115ab5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107a8565b6001600160a01b03841661160f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107a8565b61161f6000848460000151611403565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611714576116c7816000541190565b15611714578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261177d826000541190565b6117dc5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107a8565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561182b579392505050565b50600019016117de565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561198957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906118cb9033908990889088906004016120b9565b602060405180830381600087803b1580156118e557600080fd5b505af1925050508015611915575060408051601f3d908101601f1916820190925261191291810190611f31565b60015b61196f573d808015611943576040519150601f19603f3d011682016040523d82523d6000602084013e611948565b606091505b5080516119675760405162461bcd60e51b81526004016107a890612182565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061198d565b5060015b949350505050565b6060600980546106ba90612244565b6060816119c85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f257806119dc8161227f565b91506119eb9050600a836121ed565b91506119cc565b60008167ffffffffffffffff811115611a0d57611a0d6122f0565b6040519080825280601f01601f191660200182016040528015611a37576020820181803683370190505b5090505b841561198d57611a4c600183612201565b9150611a59600a8661229a565b611a649060306121d5565b60f81b818381518110611a7957611a796122da565b60200101906001600160f81b031916908160001a905350611a9b600a866121ed565b9450611a3b565b6108e083838360016000546001600160a01b038516611b0d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107a8565b83611b6b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016107a8565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611c645760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c5857611c3c6000888488611887565b611c585760405162461bcd60e51b81526004016107a890612182565b60019182019101611be9565b50600055611757565b828054611c7990612244565b90600052602060002090601f016020900481019282611c9b5760008555611ce1565b82601f10611cb457805160ff1916838001178555611ce1565b82800160010185558215611ce1579182015b82811115611ce1578251825591602001919060010190611cc6565b50610eac9291505b80821115610eac5760008155600101611ce9565b600067ffffffffffffffff80841115611d1857611d186122f0565b604051601f8501601f19908116603f01168101908282118183101715611d4057611d406122f0565b81604052809350858152868686011115611d5957600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611d8a57600080fd5b919050565b80358015158114611d8a57600080fd5b600060208284031215611db157600080fd5b6112fa82611d73565b60008060408385031215611dcd57600080fd5b611dd683611d73565b9150611de460208401611d73565b90509250929050565b600080600060608486031215611e0257600080fd5b611e0b84611d73565b9250611e1960208501611d73565b9150604084013590509250925092565b60008060008060808587031215611e3f57600080fd5b611e4885611d73565b9350611e5660208601611d73565b925060408501359150606085013567ffffffffffffffff811115611e7957600080fd5b8501601f81018713611e8a57600080fd5b611e9987823560208401611cfd565b91505092959194509250565b60008060408385031215611eb857600080fd5b611ec183611d73565b9150611de460208401611d8f565b60008060408385031215611ee257600080fd5b611eeb83611d73565b946020939093013593505050565b600060208284031215611f0b57600080fd5b6112fa82611d8f565b600060208284031215611f2657600080fd5b81356112fa81612306565b600060208284031215611f4357600080fd5b81516112fa81612306565b600060208284031215611f6057600080fd5b813567ffffffffffffffff811115611f7757600080fd5b8201601f81018413611f8857600080fd5b61198d84823560208401611cfd565b600060208284031215611fa957600080fd5b5035919050565b600060208284031215611fc257600080fd5b5051919050565b60008151808452611fe1816020860160208601612218565b601f01601f19169290920160200192915050565b6000845160206120088285838a01612218565b85519184019161201b8184848a01612218565b8554920191600090600181811c908083168061203857607f831692505b85831081141561205657634e487b7160e01b85526022600452602485fd5b80801561206a576001811461207b576120a8565b60ff198516885283880195506120a8565b60008b81526020902060005b858110156120a05781548a820152908401908801612087565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ec90830184611fc9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561212e57835183529284019291840191600101612112565b50909695505050505050565b6020815260006112fa6020830184611fc9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156121e8576121e86122ae565b500190565b6000826121fc576121fc6122c4565b500490565b600082821015612213576122136122ae565b500390565b60005b8381101561223357818101518382015260200161221b565b8381111561123f5750506000910152565b600181811c9082168061225857607f821691505b6020821081141561227957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612293576122936122ae565b5060010190565b6000826122a9576122a96122c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140057600080fdfea26469706673582212208bbb5713680b98c51b2d61681e13415580214c189217c6c29c65a6271dd4374f64736f6c63430008070033

Deployed Bytecode Sourcemap

40089:2810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26762:372;;;;;;;;;;-1:-1:-1;26762:372:0;;;;;:::i;:::-;;:::i;:::-;;;8065:14:1;;8058:22;8040:41;;8028:2;8013:18;26762:372:0;;;;;;;;28648:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30210:214::-;;;;;;;;;;-1:-1:-1;30210:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6447:32:1;;;6429:51;;6417:2;6402:18;30210:214:0;6283:203:1;29731:413:0;;;;;;;;;;-1:-1:-1;29731:413:0;;;;;:::i;:::-;;:::i;:::-;;40929:434;;;;;;;;;;;;;:::i;42214:79::-;;;;;;;;;;-1:-1:-1;42214:79:0;;;;;:::i;:::-;;:::i;25019:100::-;;;;;;;;;;-1:-1:-1;25072:7:0;25099:12;25019:100;;;17155:25:1;;;17143:2;17128:18;25019:100:0;17009:177:1;31086:170:0;;;;;;;;;;-1:-1:-1;31086:170:0;;;;;:::i;:::-;;:::i;25683:1007::-;;;;;;;;;;-1:-1:-1;25683:1007:0;;;;;:::i;:::-;;:::i;41371:274::-;;;;;;;;;;-1:-1:-1;41371:274:0;;;;;:::i;:::-;;:::i;42776:120::-;;;:::i;31327:185::-;;;;;;;;;;-1:-1:-1;31327:185:0;;;;;:::i;:::-;;:::i;41657:394::-;;;;;;;;;;-1:-1:-1;41657:394:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25196:187::-;;;;;;;;;;-1:-1:-1;25196:187:0;;;;;:::i;:::-;;:::i;40364:25::-;;;;;;;;;;-1:-1:-1;40364:25:0;;;;;;;;28457:124;;;;;;;;;;-1:-1:-1;28457:124:0;;;;;:::i;:::-;;:::i;40138:107::-;;;;;;;;;;;;;:::i;27198:221::-;;;;;;;;;;-1:-1:-1;27198:221:0;;;;;:::i;:::-;;:::i;22467:103::-;;;;;;;;;;;;;:::i;42059:147::-;;;;;;;;;;-1:-1:-1;42059:147:0;;;;;:::i;:::-;;:::i;21783:87::-;;;;;;;;;;-1:-1:-1;21856:6:0;;-1:-1:-1;;;;;21856:6:0;21783:87;;42682:86;;;;;;;;;;-1:-1:-1;42682:86:0;;;;;:::i;:::-;;:::i;28817:104::-;;;;;;;;;;;;;:::i;40291:29::-;;;;;;;;;;;;;;;;42417:98;;;;;;;;;;-1:-1:-1;42417:98:0;;;;;:::i;:::-;;:::i;30496:288::-;;;;;;;;;;-1:-1:-1;30496:288:0;;;;;:::i;:::-;;:::i;31583:355::-;;;;;;;;;;-1:-1:-1;31583:355:0;;;;;:::i;:::-;;:::i;40252:32::-;;;;;;;;;;;;;:::i;40547:374::-;;;;;;;;;;-1:-1:-1;40547:374:0;;;;;:::i;:::-;;:::i;40327:30::-;;;;;;;;;;;;;;;;42523:151;;;;;;;;;;-1:-1:-1;42523:151:0;;;;;:::i;:::-;;:::i;30855:164::-;;;;;;;;;;-1:-1:-1;30855:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30976:25:0;;;30952:4;30976:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30855:164;40396:23;;;;;;;;;;-1:-1:-1;40396:23:0;;;;;;;-1:-1:-1;;;;;40396:23:0;;;22725:201;;;;;;;;;;-1:-1:-1;22725:201:0;;;;;:::i;:::-;;:::i;26762:372::-;26864:4;-1:-1:-1;;;;;;26901:40:0;;-1:-1:-1;;;26901:40:0;;:105;;-1:-1:-1;;;;;;;26958:48:0;;-1:-1:-1;;;26958:48:0;26901:105;:172;;;-1:-1:-1;;;;;;;27023:50:0;;-1:-1:-1;;;27023:50:0;26901:172;:225;;;-1:-1:-1;;;;;;;;;;13275:40:0;;;27090:36;26881:245;26762:372;-1:-1:-1;;26762:372:0:o;28648:100::-;28702:13;28735:5;28728:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28648:100;:::o;30210:214::-;30278:7;30306:16;30314:7;32250:4;32284:12;-1:-1:-1;32274:22:0;32193:111;30306:16;30298:74;;;;-1:-1:-1;;;30298:74:0;;16797:2:1;30298:74:0;;;16779:21:1;16836:2;16816:18;;;16809:30;16875:34;16855:18;;;16848:62;-1:-1:-1;;;16926:18:1;;;16919:43;16979:19;;30298:74:0;;;;;;;;;-1:-1:-1;30392:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30392:24:0;;30210:214::o;29731:413::-;29804:13;29820:24;29836:7;29820:15;:24::i;:::-;29804:40;;29869:5;-1:-1:-1;;;;;29863:11:0;:2;-1:-1:-1;;;;;29863:11:0;;;29855:58;;;;-1:-1:-1;;;29855:58:0;;13638:2:1;29855:58:0;;;13620:21:1;13677:2;13657:18;;;13650:30;13716:34;13696:18;;;13689:62;-1:-1:-1;;;13767:18:1;;;13760:32;13809:19;;29855:58:0;13436:398:1;29855:58:0;20566:10;-1:-1:-1;;;;;29948:21:0;;;;:62;;-1:-1:-1;29973:37:0;29990:5;20566:10;30855:164;:::i;29973:37::-;29926:169;;;;-1:-1:-1;;;29926:169:0;;10549:2:1;29926:169:0;;;10531:21:1;10588:2;10568:18;;;10561:30;10627:34;10607:18;;;10600:62;10698:27;10678:18;;;10671:55;10743:19;;29926:169:0;10347:421:1;29926:169:0;30108:28;30117:2;30121:7;30130:5;30108:8;:28::i;:::-;29793:351;29731:413;;:::o;40929:434::-;40972:6;;;;40971:7;40963:36;;;;-1:-1:-1;;;40963:36:0;;14390:2:1;40963:36:0;;;14372:21:1;14429:2;14409:18;;;14402:30;-1:-1:-1;;;14448:18:1;;;14441:46;14504:18;;40963:36:0;14188:340:1;40963:36:0;41028:13;;:40;;-1:-1:-1;;;41028:40:0;;41057:10;41028:40;;;6429:51:1;41010:15:0;;-1:-1:-1;;;;;41028:13:0;;:28;;6402:18:1;;41028:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41010:58;;41098:5;;41087:7;:16;;41079:50;;;;-1:-1:-1;;;41079:50:0;;10975:2:1;41079:50:0;;;10957:21:1;11014:2;10994:18;;;10987:30;-1:-1:-1;;;11033:18:1;;;11026:51;11094:18;;41079:50:0;10773:345:1;41079:50:0;41140:14;25099:12;41203:9;;41189:10;25099:12;41198:1;41189:10;:::i;:::-;:23;;41181:66;;;;-1:-1:-1;;;41181:66:0;;12505:2:1;41181:66:0;;;12487:21:1;12544:2;12524:18;;;12517:30;12583:32;12563:18;;;12556:60;12633:18;;41181:66:0;12303:354:1;41181:66:0;41258:13;;41306:5;;41258:54;;-1:-1:-1;;;41258:54:0;;41294:10;41258:54;;;7158:51:1;7225:18;;;7218:34;;;;-1:-1:-1;;;;;41258:13:0;;;;:35;;7131:18:1;;41258:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41323:24;41333:10;41345:1;41323:9;:24::i;:::-;40952:411;;40929:434::o;42214:79::-;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;42270:6:::1;:15:::0;;-1:-1:-1;;42270:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42214:79::o;31086:170::-;31220:28;31230:4;31236:2;31240:7;31220:9;:28::i;25683:1007::-;25772:7;25808:16;25818:5;25808:9;:16::i;:::-;25800:5;:24;25792:71;;;;-1:-1:-1;;;25792:71:0;;8518:2:1;25792:71:0;;;8500:21:1;8557:2;8537:18;;;8530:30;8596:34;8576:18;;;8569:62;-1:-1:-1;;;8647:18:1;;;8640:32;8689:19;;25792:71:0;8316:398:1;25792:71:0;25874:22;25099:12;;;25874:22;;26137:466;26157:14;26153:1;:18;26137:466;;;26197:31;26231:14;;;:11;:14;;;;;;;;;26197:48;;;;;;;;;-1:-1:-1;;;;;26197:48:0;;;;;-1:-1:-1;;;26197:48:0;;;;;;;;;;;;26268:28;26264:111;;26341:14;;;-1:-1:-1;26264:111:0;26418:5;-1:-1:-1;;;;;26397:26:0;:17;-1:-1:-1;;;;;26397:26:0;;26393:195;;;26467:5;26452:11;:20;26448:85;;;-1:-1:-1;26508:1:0;-1:-1:-1;26501:8:0;;-1:-1:-1;;;26501:8:0;26448:85;26555:13;;;;;26393:195;-1:-1:-1;26173:3:0;;26137:466;;;-1:-1:-1;26626:56:0;;-1:-1:-1;;;26626:56:0;;15966:2:1;26626:56:0;;;15948:21:1;16005:2;15985:18;;;15978:30;16044:34;16024:18;;;16017:62;-1:-1:-1;;;16095:18:1;;;16088:44;16149:19;;26626:56:0;15764:410:1;41371:274:0;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;41438:14:::1;25099:12:::0;41525:9:::1;::::0;41501:20:::1;41510:11:::0;25099:12;41501:20:::1;:::i;:::-;:33;;41479:113;;;::::0;-1:-1:-1;;;41479:113:0;;12505:2:1;41479:113:0::1;::::0;::::1;12487:21:1::0;12544:2;12524:18;;;12517:30;12583:32;12563:18;;;12556:60;12633:18;;41479:113:0::1;12303:354:1::0;41479:113:0::1;41603:34;41613:10;41625:11;41603:9;:34::i;42776:120::-:0;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;42840:47:::1;::::0;42848:10:::1;::::0;42865:21:::1;42840:47:::0;::::1;;;::::0;::::1;::::0;;;42865:21;42848:10;42840:47;::::1;;;;;;42832:56;;;::::0;::::1;;42776:120::o:0;31327:185::-;31465:39;31482:4;31488:2;31492:7;31465:39;;;;;;;;;;;;:16;:39::i;41657:394::-;41744:16;41778:23;41804:17;41814:6;41804:9;:17::i;:::-;41778:43;;41832:25;41874:15;41860:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41860:30:0;;41832:58;;41908:9;41903:113;41923:15;41919:1;:19;41903:113;;;41974:30;41994:6;42002:1;41974:19;:30::i;:::-;41960:8;41969:1;41960:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;41940:3;;;;:::i;:::-;;;;41903:113;;;-1:-1:-1;42035:8:0;41657:394;-1:-1:-1;;;41657:394:0:o;25196:187::-;25263:7;25099:12;;25291:5;:21;25283:69;;;;-1:-1:-1;;;25283:69:0;;9739:2:1;25283:69:0;;;9721:21:1;9778:2;9758:18;;;9751:30;9817:34;9797:18;;;9790:62;-1:-1:-1;;;9868:18:1;;;9861:33;9911:19;;25283:69:0;9537:399:1;25283:69:0;-1:-1:-1;25370:5:0;25196:187::o;28457:124::-;28521:7;28548:20;28560:7;28548:11;:20::i;:::-;:25;;28457:124;-1:-1:-1;;28457:124:0:o;40138:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27198:221::-;27262:7;-1:-1:-1;;;;;27290:19:0;;27282:75;;;;-1:-1:-1;;;27282:75:0;;11325:2:1;27282:75:0;;;11307:21:1;11364:2;11344:18;;;11337:30;11403:34;11383:18;;;11376:62;-1:-1:-1;;;11454:18:1;;;11447:41;11505:19;;27282:75:0;11123:407:1;27282:75:0;-1:-1:-1;;;;;;27383:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27383:27:0;;27198:221::o;22467:103::-;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;22532:30:::1;22559:1;22532:18;:30::i;42059:147::-:0;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;42130:8:::1;:19:::0;;-1:-1:-1;;;;;;42130:19:0::1;;-1:-1:-1::0;;;;;42130:19:0;;;::::1;::::0;;::::1;;::::0;;42160:13:::1;:38:::0;;-1:-1:-1;;;;;;42160:38:0::1;::::0;;::::1;::::0;;42059:147::o;42682:86::-;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;42746:5:::1;:14:::0;42682:86::o;28817:104::-;28873:13;28906:7;28899:14;;;;;:::i;42417:98::-;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;42489:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;30496:288::-:0;-1:-1:-1;;;;;30591:24:0;;20566:10;30591:24;;30583:63;;;;-1:-1:-1;;;30583:63:0;;12864:2:1;30583:63:0;;;12846:21:1;12903:2;12883:18;;;12876:30;12942:28;12922:18;;;12915:56;12988:18;;30583:63:0;12662:350:1;30583:63:0;20566:10;30659:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30659:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30659:53:0;;;;;;;;;;30728:48;;8040:41:1;;;30659:42:0;;20566:10;30728:48;;8013:18:1;30728:48:0;;;;;;;30496:288;;:::o;31583:355::-;31742:28;31752:4;31758:2;31762:7;31742:9;:28::i;:::-;31803:48;31826:4;31832:2;31836:7;31845:5;31803:22;:48::i;:::-;31781:149;;;;-1:-1:-1;;;31781:149:0;;;;;;;:::i;:::-;31583:355;;;;:::o;40252:32::-;;;;;;;:::i;40547:374::-;40621:13;40655:17;40663:8;32250:4;32284:12;-1:-1:-1;32274:22:0;32193:111;40655:17;40647:49;;;;-1:-1:-1;;;40647:49:0;;14041:2:1;40647:49:0;;;14023:21:1;14080:2;14060:18;;;14053:30;-1:-1:-1;;;14099:18:1;;;14092:50;14159:18;;40647:49:0;13839:344:1;40647:49:0;40707:28;40738:10;:8;:10::i;:::-;40707:41;;40797:1;40772:14;40766:28;:32;:147;;;;;;;;;;;;;;;;;40838:14;40853:26;40870:8;40853:16;:26::i;:::-;40880:13;40821:73;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40766:147;40759:154;40547:374;-1:-1:-1;;;40547:374:0:o;42523:151::-;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;42633:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;22725:201::-:0;21856:6;;-1:-1:-1;;;;;21856:6:0;20566:10;22003:23;;:55;;-1:-1:-1;22030:12:0;;-1:-1:-1;;;;;22030:12:0;20566:10;22030:28;22003:55;21995:101;;;;-1:-1:-1;;;21995:101:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22814:22:0;::::1;22806:73;;;::::0;-1:-1:-1;;;22806:73:0;;8921:2:1;22806:73:0::1;::::0;::::1;8903:21:1::0;8960:2;8940:18;;;8933:30;8999:34;8979:18;;;8972:62;-1:-1:-1;;;9050:18:1;;;9043:36;9096:19;;22806:73:0::1;8719:402:1::0;22806:73:0::1;22890:28;22909:8;22890:18;:28::i;:::-;22725:201:::0;:::o;37113:196::-;37228:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;37228:29:0;-1:-1:-1;;;;;37228:29:0;;;;;;;;;37273:28;;37228:24;;37273:28;;;;;;;37113:196;;;:::o;32312:104::-;32381:27;32391:2;32395:8;32381:27;;;;;;;;;;;;:9;:27::i;34993:2002::-;35108:35;35146:20;35158:7;35146:11;:20::i;:::-;35221:18;;35108:58;;-1:-1:-1;35179:22:0;;-1:-1:-1;;;;;35205:34:0;20566:10;-1:-1:-1;;;;;35205:34:0;;:87;;;-1:-1:-1;20566:10:0;35256:20;35268:7;35256:11;:20::i;:::-;-1:-1:-1;;;;;35256:36:0;;35205:87;:154;;;-1:-1:-1;35326:18:0;;35309:50;;20566:10;30855:164;:::i;35309:50::-;35179:181;;35381:17;35373:80;;;;-1:-1:-1;;;35373:80:0;;13219:2:1;35373:80:0;;;13201:21:1;13258:2;13238:18;;;13231:30;13297:34;13277:18;;;13270:62;-1:-1:-1;;;13348:18:1;;;13341:48;13406:19;;35373:80:0;13017:414:1;35373:80:0;35496:4;-1:-1:-1;;;;;35474:26:0;:13;:18;;;-1:-1:-1;;;;;35474:26:0;;35466:77;;;;-1:-1:-1;;;35466:77:0;;11737:2:1;35466:77:0;;;11719:21:1;11776:2;11756:18;;;11749:30;11815:34;11795:18;;;11788:62;-1:-1:-1;;;11866:18:1;;;11859:36;11912:19;;35466:77:0;11535:402:1;35466:77:0;-1:-1:-1;;;;;35562:16:0;;35554:66;;;;-1:-1:-1;;;35554:66:0;;10143:2:1;35554:66:0;;;10125:21:1;10182:2;10162:18;;;10155:30;10221:34;10201:18;;;10194:62;-1:-1:-1;;;10272:18:1;;;10265:35;10317:19;;35554:66:0;9941:401:1;35554:66:0;35741:49;35758:1;35762:7;35771:13;:18;;;35741:8;:49::i;:::-;-1:-1:-1;;;;;36086:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;36086:31:0;;;-1:-1:-1;;;;;36086:31:0;;;-1:-1:-1;;36086:31:0;;;;;;;36132:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36132:29:0;;;;;;;;;;;;;36178:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36223:61:0;;;;-1:-1:-1;;;36268:15:0;36223:61;;;;;;36558:11;;;36588:24;;;;;:29;36558:11;;36588:29;36584:295;;36656:20;36664:11;32250:4;32284:12;-1:-1:-1;32274:22:0;32193:111;36656:20;36652:212;;;36733:18;;;36701:24;;;:11;:24;;;;;;;;:50;;36816:28;;;;36774:70;;-1:-1:-1;;;36774:70:0;-1:-1:-1;;;;;;36774:70:0;;;-1:-1:-1;;;;;36701:50:0;;;36774:70;;;;;;;36652:212;36061:829;36926:7;36922:2;-1:-1:-1;;;;;36907:27:0;36916:4;-1:-1:-1;;;;;36907:27:0;;;;;;;;;;;36945:42;35097:1898;;34993:2002;;;:::o;27858:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;27961:16:0;27969:7;32250:4;32284:12;-1:-1:-1;32274:22:0;32193:111;27961:16;27953:71;;;;-1:-1:-1;;;27953:71:0;;9328:2:1;27953:71:0;;;9310:21:1;9367:2;9347:18;;;9340:30;9406:34;9386:18;;;9379:62;-1:-1:-1;;;9457:18:1;;;9450:40;9507:19;;27953:71:0;9126:406:1;27953:71:0;28082:7;28062:245;28129:31;28163:17;;;:11;:17;;;;;;;;;28129:51;;;;;;;;;-1:-1:-1;;;;;28129:51:0;;;;;-1:-1:-1;;;28129:51:0;;;;;;;;;;;;28203:28;28199:93;;28263:9;27858:537;-1:-1:-1;;;27858:537:0:o;28199:93::-;-1:-1:-1;;;28102:6:0;28062:245;;23086:191;23179:6;;;-1:-1:-1;;;;;23196:17:0;;;-1:-1:-1;;;;;;23196:17:0;;;;;;;23229:40;;23179:6;;;23196:17;23179:6;;23229:40;;23160:16;;23229:40;23149:128;23086:191;:::o;37874:804::-;38029:4;-1:-1:-1;;;;;38050:13:0;;3571:19;:23;38046:625;;38086:72;;-1:-1:-1;;;38086:72:0;;-1:-1:-1;;;;;38086:36:0;;;;;:72;;20566:10;;38137:4;;38143:7;;38152:5;;38086:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38086:72:0;;;;;;;;-1:-1:-1;;38086:72:0;;;;;;;;;;;;:::i;:::-;;;38082:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38332:13:0;;38328:273;;38375:61;;-1:-1:-1;;;38375:61:0;;;;;;;:::i;38328:273::-;38551:6;38545:13;38536:6;38532:2;38528:15;38521:38;38082:534;-1:-1:-1;;;;;;38209:55:0;-1:-1:-1;;;38209:55:0;;-1:-1:-1;38202:62:0;;38046:625;-1:-1:-1;38655:4:0;38046:625;37874:804;;;;;;:::o;42301:108::-;42361:13;42394:7;42387:14;;;;;:::i;342:723::-;398:13;619:10;615:53;;-1:-1:-1;;646:10:0;;;;;;;;;;;;-1:-1:-1;;;646:10:0;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:0;;-1:-1:-1;798:2:0;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:0;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:0;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:0;;;;;;;;-1:-1:-1;1003:11:0;1012:2;1003:11;;:::i;:::-;;;872:154;;32779:163;32902:32;32908:2;32912:8;32922:5;32929:4;33340:20;33363:12;-1:-1:-1;;;;;33394:16:0;;33386:62;;;;-1:-1:-1;;;33386:62:0;;15155:2:1;33386:62:0;;;15137:21:1;15194:2;15174:18;;;15167:30;15233:34;15213:18;;;15206:62;-1:-1:-1;;;15284:18:1;;;15277:31;15325:19;;33386:62:0;14953:397:1;33386:62:0;33467:13;33459:66;;;;-1:-1:-1;;;33459:66:0;;15557:2:1;33459:66:0;;;15539:21:1;15596:2;15576:18;;;15569:30;15635:34;15615:18;;;15608:62;-1:-1:-1;;;15686:18:1;;;15679:38;15734:19;;33459:66:0;15355:404:1;33459:66:0;-1:-1:-1;;;;;33877:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;33877:45:0;;-1:-1:-1;;;;;33877:45:0;;;;;;;;;;33937:50;;;;;;;;;;;;;;34004:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34054:66:0;;;;-1:-1:-1;;;34104:15:0;34054:66;;;;;;;34004:25;;34189:415;34209:8;34205:1;:12;34189:415;;;34248:38;;34273:12;;-1:-1:-1;;;;;34248:38:0;;;34265:1;;34248:38;;34265:1;;34248:38;34309:4;34305:249;;;34372:59;34403:1;34407:2;34411:12;34425:5;34372:22;:59::i;:::-;34338:196;;;;-1:-1:-1;;;34338:196:0;;;;;;;:::i;:::-;34574:14;;;;;34219:3;34189:415;;;-1:-1:-1;34620:12:0;:27;34671:60;31583:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:184::-;4370:6;4423:2;4411:9;4402:7;4398:23;4394:32;4391:52;;;4439:1;4436;4429:12;4391:52;-1:-1:-1;4462:16:1;;4300:184;-1:-1:-1;4300:184:1:o;4489:257::-;4530:3;4568:5;4562:12;4595:6;4590:3;4583:19;4611:63;4667:6;4660:4;4655:3;4651:14;4644:4;4637:5;4633:16;4611:63;:::i;:::-;4728:2;4707:15;-1:-1:-1;;4703:29:1;4694:39;;;;4735:4;4690:50;;4489:257;-1:-1:-1;;4489:257:1:o;4751:1527::-;4975:3;5013:6;5007:13;5039:4;5052:51;5096:6;5091:3;5086:2;5078:6;5074:15;5052:51;:::i;:::-;5166:13;;5125:16;;;;5188:55;5166:13;5125:16;5210:15;;;5188:55;:::i;:::-;5332:13;;5265:20;;;5305:1;;5392;5414:18;;;;5467;;;;5494:93;;5572:4;5562:8;5558:19;5546:31;;5494:93;5635:2;5625:8;5622:16;5602:18;5599:40;5596:167;;;-1:-1:-1;;;5662:33:1;;5718:4;5715:1;5708:15;5748:4;5669:3;5736:17;5596:167;5779:18;5806:110;;;;5930:1;5925:328;;;;5772:481;;5806:110;-1:-1:-1;;5841:24:1;;5827:39;;5886:20;;;;-1:-1:-1;5806:110:1;;5925:328;17264:1;17257:14;;;17301:4;17288:18;;6020:1;6034:169;6048:8;6045:1;6042:15;6034:169;;;6130:14;;6115:13;;;6108:37;6173:16;;;;6065:10;;6034:169;;;6038:3;;6234:8;6227:5;6223:20;6216:27;;5772:481;-1:-1:-1;6269:3:1;;4751:1527;-1:-1:-1;;;;;;;;;;;4751:1527:1:o;6491:488::-;-1:-1:-1;;;;;6760:15:1;;;6742:34;;6812:15;;6807:2;6792:18;;6785:43;6859:2;6844:18;;6837:34;;;6907:3;6902:2;6887:18;;6880:31;;;6685:4;;6928:45;;6953:19;;6945:6;6928:45;:::i;:::-;6920:53;6491:488;-1:-1:-1;;;;;;6491:488:1:o;7263:632::-;7434:2;7486:21;;;7556:13;;7459:18;;;7578:22;;;7405:4;;7434:2;7657:15;;;;7631:2;7616:18;;;7405:4;7700:169;7714:6;7711:1;7708:13;7700:169;;;7775:13;;7763:26;;7844:15;;;;7809:12;;;;7736:1;7729:9;7700:169;;;-1:-1:-1;7886:3:1;;7263:632;-1:-1:-1;;;;;;7263:632:1:o;8092:219::-;8241:2;8230:9;8223:21;8204:4;8261:44;8301:2;8290:9;8286:18;8278:6;8261:44;:::i;11942:356::-;12144:2;12126:21;;;12163:18;;;12156:30;12222:34;12217:2;12202:18;;12195:62;12289:2;12274:18;;11942:356::o;14533:415::-;14735:2;14717:21;;;14774:2;14754:18;;;14747:30;14813:34;14808:2;14793:18;;14786:62;-1:-1:-1;;;14879:2:1;14864:18;;14857:49;14938:3;14923:19;;14533:415::o;17317:128::-;17357:3;17388:1;17384:6;17381:1;17378:13;17375:39;;;17394:18;;:::i;:::-;-1:-1:-1;17430:9:1;;17317:128::o;17450:120::-;17490:1;17516;17506:35;;17521:18;;:::i;:::-;-1:-1:-1;17555:9:1;;17450:120::o;17575:125::-;17615:4;17643:1;17640;17637:8;17634:34;;;17648:18;;:::i;:::-;-1:-1:-1;17685:9:1;;17575:125::o;17705:258::-;17777:1;17787:113;17801:6;17798:1;17795:13;17787:113;;;17877:11;;;17871:18;17858:11;;;17851:39;17823:2;17816:10;17787:113;;;17918:6;17915:1;17912:13;17909:48;;;-1:-1:-1;;17953:1:1;17935:16;;17928:27;17705:258::o;17968:380::-;18047:1;18043:12;;;;18090;;;18111:61;;18165:4;18157:6;18153:17;18143:27;;18111:61;18218:2;18210:6;18207:14;18187:18;18184:38;18181:161;;;18264:10;18259:3;18255:20;18252:1;18245:31;18299:4;18296:1;18289:15;18327:4;18324:1;18317:15;18181:161;;17968:380;;;:::o;18353:135::-;18392:3;-1:-1:-1;;18413:17:1;;18410:43;;;18433:18;;:::i;:::-;-1:-1:-1;18480:1:1;18469:13;;18353:135::o;18493:112::-;18525:1;18551;18541:35;;18556:18;;:::i;:::-;-1:-1:-1;18590:9:1;;18493:112::o;18610:127::-;18671:10;18666:3;18662:20;18659:1;18652:31;18702:4;18699:1;18692:15;18726:4;18723:1;18716:15;18742:127;18803:10;18798:3;18794:20;18791:1;18784:31;18834:4;18831:1;18824:15;18858:4;18855:1;18848:15;18874:127;18935:10;18930:3;18926:20;18923:1;18916:31;18966:4;18963:1;18956:15;18990:4;18987:1;18980:15;19006:127;19067:10;19062:3;19058:20;19055:1;19048:31;19098:4;19095:1;19088:15;19122:4;19119:1;19112:15;19138:131;-1:-1:-1;;;;;;19212:32:1;;19202:43;;19192:71;;19259:1;19256;19249:12

Swarm Source

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