ETH Price: $3,384.99 (-2.76%)
Gas: 1 Gwei

Token

Syndicate Legends (SYNLEGENDS)
 

Overview

Max Total Supply

5,000 SYNLEGENDS

Holders

1,142

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 SYNLEGENDS
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
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:
SyndicateLegends

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


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

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


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

pragma solidity ^0.8.0;

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

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

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


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

    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(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}


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


// OpenZeppelin Contracts v4.4.1 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/TwistedToonz.sol


// Creator: Chiru Labs

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

contract SyndicateLegends is ERC721A, Ownable, ReentrancyGuard {
  string public        baseURI;
  uint public          price             = 0.003 ether;
  uint public          maxPerTx          = 3;
  uint public          totalFree         = 2000;
  uint public          maxSupply         = 5000;
  bool public          mintEnabled;


  constructor() ERC721A("Syndicate Legends", "SYNLEGENDS"){
  }

  function mint(uint256 amount) external payable
  {
    uint cost = price;
    if(totalSupply() + amount < totalFree + 1) {
      cost = 0;
    }
    require(mintEnabled, "Minting is not live yet, hold on");
    require(totalSupply() + amount < maxSupply + 1,"No more syndicate legends");
    require(msg.value == amount * cost,"Please send the exact amount");
    require(amount < maxPerTx + 1, "Max per TX reached");
    
    _safeMint(msg.sender, amount);
  }

  function ownerBatchMint(uint256 amount) external onlyOwner
  {
    require(totalSupply() + amount < maxSupply + 1,"too many!");

    _safeMint(msg.sender, amount);
  }

  function toggleMinting() external onlyOwner {
      mintEnabled = !mintEnabled;
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function setBaseURI(string calldata baseURI_) external onlyOwner {
    baseURI = baseURI_;
  }

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

  function setTotalFree(uint256 totalFree_) external onlyOwner {
      totalFree = totalFree_;
  }

  function setMaxPerTx(uint256 maxPerTx_) external onlyOwner {
      maxPerTx = maxPerTx_;
  }

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

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

}

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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ownerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalFree_","type":"uint256"}],"name":"setTotalFree","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":[],"name":"toggleMinting","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600a556003600b556107d0600c55611388600d553480156200002d57600080fd5b50604080518082018252601181527053796e646963617465204c6567656e647360781b60208083019182528351808501909452600a84526953594e4c4547454e445360b01b90840152815191929162000089916001916200011d565b5080516200009f9060029060208401906200011d565b505050620000bc620000b6620000c760201b60201c565b620000cb565b600160085562000200565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012b90620001c3565b90600052602060002090601f0160209004810192826200014f57600085556200019a565b82601f106200016a57805160ff19168380011785556200019a565b828001600101855582156200019a579182015b828111156200019a5782518255916020019190600101906200017d565b50620001a8929150620001ac565b5090565b5b80821115620001a85760008155600101620001ad565b600181811c90821680620001d857607f821691505b60208210811415620001fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6121f780620002106000396000f3fe6080604052600436106101f95760003560e01c80637d55094d1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb011461056e578063dc33e68114610584578063e985e9c5146105a4578063f2fde38b146105ed578063f968adbe1461060d57600080fd5b8063b88d4fde146104f4578063c6f6f21614610514578063c87b56dd14610534578063d12397301461055457600080fd5b806395d89b41116100dc57806395d89b4114610496578063a035b1fe146104ab578063a0712d68146104c1578063a22cb465146104d457600080fd5b80637d55094d146104235780638da5cb5b146104385780638db89f071461045657806391b7f5ed1461047657600080fd5b80633ccfd60b11610190578063563aaf111161015f578063563aaf11146103995780636352211e146103b95780636c0360eb146103d957806370a08231146103ee578063715018a61461040e57600080fd5b80633ccfd60b1461032457806342842e0e146103395780634f6ccce71461035957806355f804b31461037957600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102ce5780632f745c59146102ee578063333e44e61461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c91565b610623565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610690565b60405161022a9190611d06565b34801561026157600080fd5b50610275610270366004611d19565b610722565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611d4e565b6107b2565b005b3480156102bb57600080fd5b506000545b60405190815260200161022a565b3480156102da57600080fd5b506102ad6102e9366004611d78565b6108ca565b3480156102fa57600080fd5b506102c0610309366004611d4e565b6108d5565b34801561031a57600080fd5b506102c0600c5481565b34801561033057600080fd5b506102ad610a32565b34801561034557600080fd5b506102ad610354366004611d78565b610b47565b34801561036557600080fd5b506102c0610374366004611d19565b610b62565b34801561038557600080fd5b506102ad610394366004611db4565b610bc4565b3480156103a557600080fd5b506102ad6103b4366004611d19565b610bfa565b3480156103c557600080fd5b506102756103d4366004611d19565b610c29565b3480156103e557600080fd5b50610248610c3b565b3480156103fa57600080fd5b506102c0610409366004611e26565b610cc9565b34801561041a57600080fd5b506102ad610d5a565b34801561042f57600080fd5b506102ad610d90565b34801561044457600080fd5b506007546001600160a01b0316610275565b34801561046257600080fd5b506102ad610471366004611d19565b610dce565b34801561048257600080fd5b506102ad610491366004611d19565b610e60565b3480156104a257600080fd5b50610248610e8f565b3480156104b757600080fd5b506102c0600a5481565b6102ad6104cf366004611d19565b610e9e565b3480156104e057600080fd5b506102ad6104ef366004611e41565b611045565b34801561050057600080fd5b506102ad61050f366004611e93565b61110a565b34801561052057600080fd5b506102ad61052f366004611d19565b611143565b34801561054057600080fd5b5061024861054f366004611d19565b611172565b34801561056057600080fd5b50600e5461021e9060ff1681565b34801561057a57600080fd5b506102c0600d5481565b34801561059057600080fd5b506102c061059f366004611e26565b611240565b3480156105b057600080fd5b5061021e6105bf366004611f6f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105f957600080fd5b506102ad610608366004611e26565b61124b565b34801561061957600080fd5b506102c0600b5481565b60006001600160e01b031982166380ac58cd60e01b148061065457506001600160e01b03198216635b5e139f60e01b145b8061066f57506001600160e01b0319821663780e9d6360e01b145b8061068a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461069f90611fa2565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb90611fa2565b80156107185780601f106106ed57610100808354040283529160200191610718565b820191906000526020600020905b8154815290600101906020018083116106fb57829003601f168201915b5050505050905090565b600061072f826000541190565b6107965760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107bd82610c29565b9050806001600160a01b0316836001600160a01b0316141561082c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161078d565b336001600160a01b0382161480610848575061084881336105bf565b6108ba5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161078d565b6108c58383836112e3565b505050565b6108c583838361133f565b60006108e083610cc9565b82106109395760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161078d565b600080549080805b838110156109d2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561099457805192505b876001600160a01b0316836001600160a01b031614156109c957868414156109c25750935061068a92505050565b6001909301925b50600101610941565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161078d565b6007546001600160a01b03163314610a5c5760405162461bcd60e51b815260040161078d90611fdd565b60026008541415610aaf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161078d565b6002600855604051600090339047908381818185875af1925050503d8060008114610af6576040519150601f19603f3d011682016040523d82523d6000602084013e610afb565b606091505b5050905080610b3f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161078d565b506001600855565b6108c58383836040518060200160405280600081525061110a565b600080548210610bc05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161078d565b5090565b6007546001600160a01b03163314610bee5760405162461bcd60e51b815260040161078d90611fdd565b6108c560098383611beb565b6007546001600160a01b03163314610c245760405162461bcd60e51b815260040161078d90611fdd565b600c55565b6000610c3482611624565b5192915050565b60098054610c4890611fa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7490611fa2565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b505050505081565b60006001600160a01b038216610d355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161078d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d845760405162461bcd60e51b815260040161078d90611fdd565b610d8e60006116fb565b565b6007546001600160a01b03163314610dba5760405162461bcd60e51b815260040161078d90611fdd565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610df85760405162461bcd60e51b815260040161078d90611fdd565b600d54610e06906001612028565b81610e1060005490565b610e1a9190612028565b10610e535760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b604482015260640161078d565b610e5d338261174d565b50565b6007546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161078d90611fdd565b600a55565b60606002805461069f90611fa2565b600a54600c54610eaf906001612028565b82610eb960005490565b610ec39190612028565b1015610ecd575060005b600e5460ff16610f1f5760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e604482015260640161078d565b600d54610f2d906001612028565b82610f3760005490565b610f419190612028565b10610f8e5760405162461bcd60e51b815260206004820152601960248201527f4e6f206d6f72652073796e646963617465206c6567656e647300000000000000604482015260640161078d565b610f988183612040565b3414610fe65760405162461bcd60e51b815260206004820152601c60248201527f506c656173652073656e642074686520657861637420616d6f756e7400000000604482015260640161078d565b600b54610ff4906001612028565b82106110375760405162461bcd60e51b815260206004820152601260248201527113585e081c195c881516081c995858da195960721b604482015260640161078d565b611041338361174d565b5050565b6001600160a01b03821633141561109e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161078d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61111584848461133f565b61112184848484611767565b61113d5760405162461bcd60e51b815260040161078d9061205f565b50505050565b6007546001600160a01b0316331461116d5760405162461bcd60e51b815260040161078d90611fdd565b600b55565b606061117f826000541190565b6111e35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078d565b60006111ed611875565b905080516000141561120e5760405180602001604052806000815250611239565b8061121884611884565b6040516020016112299291906120b2565b6040516020818303038152906040525b9392505050565b600061068a82611982565b6007546001600160a01b031633146112755760405162461bcd60e51b815260040161078d90611fdd565b6001600160a01b0381166112da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b610e5d816116fb565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061134a82611624565b80519091506000906001600160a01b0316336001600160a01b0316148061138157503361137684610722565b6001600160a01b0316145b806113935750815161139390336105bf565b9050806113fd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161078d565b846001600160a01b031682600001516001600160a01b0316146114715760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161078d565b6001600160a01b0384166114d55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161078d565b6114e560008484600001516112e3565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115da5761158d816000541190565b156115da578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611643826000541190565b6116a25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161078d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116f1579392505050565b50600019016116a4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611041828260405180602001604052806000815250611a20565b60006001600160a01b0384163b1561186957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ab9033908990889088906004016120e1565b602060405180830381600087803b1580156117c557600080fd5b505af19250505080156117f5575060408051601f3d908101601f191682019092526117f29181019061211e565b60015b61184f573d808015611823576040519150601f19603f3d011682016040523d82523d6000602084013e611828565b606091505b5080516118475760405162461bcd60e51b815260040161078d9061205f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061186d565b5060015b949350505050565b60606009805461069f90611fa2565b6060816118a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d257806118bc8161213b565b91506118cb9050600a8361216c565b91506118ac565b60008167ffffffffffffffff8111156118ed576118ed611e7d565b6040519080825280601f01601f191660200182016040528015611917576020820181803683370190505b5090505b841561186d5761192c600183612180565b9150611939600a86612197565b611944906030612028565b60f81b818381518110611959576119596121ab565b60200101906001600160f81b031916908160001a90535061197b600a8661216c565b945061191b565b60006001600160a01b0382166119f45760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161078d565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6108c583838360016000546001600160a01b038516611a8b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161078d565b83611ae95760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161078d565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611be25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611bd657611bba6000888488611767565b611bd65760405162461bcd60e51b815260040161078d9061205f565b60019182019101611b67565b5060005561161d565b828054611bf790611fa2565b90600052602060002090601f016020900481019282611c195760008555611c5f565b82601f10611c325782800160ff19823516178555611c5f565b82800160010185558215611c5f579182015b82811115611c5f578235825591602001919060010190611c44565b50610bc09291505b80821115610bc05760008155600101611c67565b6001600160e01b031981168114610e5d57600080fd5b600060208284031215611ca357600080fd5b813561123981611c7b565b60005b83811015611cc9578181015183820152602001611cb1565b8381111561113d5750506000910152565b60008151808452611cf2816020860160208601611cae565b601f01601f19169290920160200192915050565b6020815260006112396020830184611cda565b600060208284031215611d2b57600080fd5b5035919050565b80356001600160a01b0381168114611d4957600080fd5b919050565b60008060408385031215611d6157600080fd5b611d6a83611d32565b946020939093013593505050565b600080600060608486031215611d8d57600080fd5b611d9684611d32565b9250611da460208501611d32565b9150604084013590509250925092565b60008060208385031215611dc757600080fd5b823567ffffffffffffffff80821115611ddf57600080fd5b818501915085601f830112611df357600080fd5b813581811115611e0257600080fd5b866020828501011115611e1457600080fd5b60209290920196919550909350505050565b600060208284031215611e3857600080fd5b61123982611d32565b60008060408385031215611e5457600080fd5b611e5d83611d32565b915060208301358015158114611e7257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ea957600080fd5b611eb285611d32565b9350611ec060208601611d32565b925060408501359150606085013567ffffffffffffffff80821115611ee457600080fd5b818701915087601f830112611ef857600080fd5b813581811115611f0a57611f0a611e7d565b604051601f8201601f19908116603f01168101908382118183101715611f3257611f32611e7d565b816040528281528a6020848701011115611f4b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f8257600080fd5b611f8b83611d32565b9150611f9960208401611d32565b90509250929050565b600181811c90821680611fb657607f821691505b60208210811415611fd757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561203b5761203b612012565b500190565b600081600019048311821515161561205a5761205a612012565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516120c4818460208801611cae565b8351908301906120d8818360208801611cae565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211490830184611cda565b9695505050505050565b60006020828403121561213057600080fd5b815161123981611c7b565b600060001982141561214f5761214f612012565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261217b5761217b612156565b500490565b60008282101561219257612192612012565b500390565b6000826121a6576121a6612156565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d0e8bea954b1e74ba46bbc8622564c1b7701762c1e8eb5a3a318c4d23037507b64736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101f95760003560e01c80637d55094d1161010d578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb011461056e578063dc33e68114610584578063e985e9c5146105a4578063f2fde38b146105ed578063f968adbe1461060d57600080fd5b8063b88d4fde146104f4578063c6f6f21614610514578063c87b56dd14610534578063d12397301461055457600080fd5b806395d89b41116100dc57806395d89b4114610496578063a035b1fe146104ab578063a0712d68146104c1578063a22cb465146104d457600080fd5b80637d55094d146104235780638da5cb5b146104385780638db89f071461045657806391b7f5ed1461047657600080fd5b80633ccfd60b11610190578063563aaf111161015f578063563aaf11146103995780636352211e146103b95780636c0360eb146103d957806370a08231146103ee578063715018a61461040e57600080fd5b80633ccfd60b1461032457806342842e0e146103395780634f6ccce71461035957806355f804b31461037957600080fd5b806318160ddd116101cc57806318160ddd146102af57806323b872dd146102ce5780632f745c59146102ee578063333e44e61461030e57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e610219366004611c91565b610623565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610690565b60405161022a9190611d06565b34801561026157600080fd5b50610275610270366004611d19565b610722565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611d4e565b6107b2565b005b3480156102bb57600080fd5b506000545b60405190815260200161022a565b3480156102da57600080fd5b506102ad6102e9366004611d78565b6108ca565b3480156102fa57600080fd5b506102c0610309366004611d4e565b6108d5565b34801561031a57600080fd5b506102c0600c5481565b34801561033057600080fd5b506102ad610a32565b34801561034557600080fd5b506102ad610354366004611d78565b610b47565b34801561036557600080fd5b506102c0610374366004611d19565b610b62565b34801561038557600080fd5b506102ad610394366004611db4565b610bc4565b3480156103a557600080fd5b506102ad6103b4366004611d19565b610bfa565b3480156103c557600080fd5b506102756103d4366004611d19565b610c29565b3480156103e557600080fd5b50610248610c3b565b3480156103fa57600080fd5b506102c0610409366004611e26565b610cc9565b34801561041a57600080fd5b506102ad610d5a565b34801561042f57600080fd5b506102ad610d90565b34801561044457600080fd5b506007546001600160a01b0316610275565b34801561046257600080fd5b506102ad610471366004611d19565b610dce565b34801561048257600080fd5b506102ad610491366004611d19565b610e60565b3480156104a257600080fd5b50610248610e8f565b3480156104b757600080fd5b506102c0600a5481565b6102ad6104cf366004611d19565b610e9e565b3480156104e057600080fd5b506102ad6104ef366004611e41565b611045565b34801561050057600080fd5b506102ad61050f366004611e93565b61110a565b34801561052057600080fd5b506102ad61052f366004611d19565b611143565b34801561054057600080fd5b5061024861054f366004611d19565b611172565b34801561056057600080fd5b50600e5461021e9060ff1681565b34801561057a57600080fd5b506102c0600d5481565b34801561059057600080fd5b506102c061059f366004611e26565b611240565b3480156105b057600080fd5b5061021e6105bf366004611f6f565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105f957600080fd5b506102ad610608366004611e26565b61124b565b34801561061957600080fd5b506102c0600b5481565b60006001600160e01b031982166380ac58cd60e01b148061065457506001600160e01b03198216635b5e139f60e01b145b8061066f57506001600160e01b0319821663780e9d6360e01b145b8061068a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461069f90611fa2565b80601f01602080910402602001604051908101604052809291908181526020018280546106cb90611fa2565b80156107185780601f106106ed57610100808354040283529160200191610718565b820191906000526020600020905b8154815290600101906020018083116106fb57829003601f168201915b5050505050905090565b600061072f826000541190565b6107965760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107bd82610c29565b9050806001600160a01b0316836001600160a01b0316141561082c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161078d565b336001600160a01b0382161480610848575061084881336105bf565b6108ba5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161078d565b6108c58383836112e3565b505050565b6108c583838361133f565b60006108e083610cc9565b82106109395760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161078d565b600080549080805b838110156109d2576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561099457805192505b876001600160a01b0316836001600160a01b031614156109c957868414156109c25750935061068a92505050565b6001909301925b50600101610941565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161078d565b6007546001600160a01b03163314610a5c5760405162461bcd60e51b815260040161078d90611fdd565b60026008541415610aaf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161078d565b6002600855604051600090339047908381818185875af1925050503d8060008114610af6576040519150601f19603f3d011682016040523d82523d6000602084013e610afb565b606091505b5050905080610b3f5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161078d565b506001600855565b6108c58383836040518060200160405280600081525061110a565b600080548210610bc05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161078d565b5090565b6007546001600160a01b03163314610bee5760405162461bcd60e51b815260040161078d90611fdd565b6108c560098383611beb565b6007546001600160a01b03163314610c245760405162461bcd60e51b815260040161078d90611fdd565b600c55565b6000610c3482611624565b5192915050565b60098054610c4890611fa2565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7490611fa2565b8015610cc15780601f10610c9657610100808354040283529160200191610cc1565b820191906000526020600020905b815481529060010190602001808311610ca457829003601f168201915b505050505081565b60006001600160a01b038216610d355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161078d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d845760405162461bcd60e51b815260040161078d90611fdd565b610d8e60006116fb565b565b6007546001600160a01b03163314610dba5760405162461bcd60e51b815260040161078d90611fdd565b600e805460ff19811660ff90911615179055565b6007546001600160a01b03163314610df85760405162461bcd60e51b815260040161078d90611fdd565b600d54610e06906001612028565b81610e1060005490565b610e1a9190612028565b10610e535760405162461bcd60e51b8152602060048201526009602482015268746f6f206d616e792160b81b604482015260640161078d565b610e5d338261174d565b50565b6007546001600160a01b03163314610e8a5760405162461bcd60e51b815260040161078d90611fdd565b600a55565b60606002805461069f90611fa2565b600a54600c54610eaf906001612028565b82610eb960005490565b610ec39190612028565b1015610ecd575060005b600e5460ff16610f1f5760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206973206e6f74206c697665207965742c20686f6c64206f6e604482015260640161078d565b600d54610f2d906001612028565b82610f3760005490565b610f419190612028565b10610f8e5760405162461bcd60e51b815260206004820152601960248201527f4e6f206d6f72652073796e646963617465206c6567656e647300000000000000604482015260640161078d565b610f988183612040565b3414610fe65760405162461bcd60e51b815260206004820152601c60248201527f506c656173652073656e642074686520657861637420616d6f756e7400000000604482015260640161078d565b600b54610ff4906001612028565b82106110375760405162461bcd60e51b815260206004820152601260248201527113585e081c195c881516081c995858da195960721b604482015260640161078d565b611041338361174d565b5050565b6001600160a01b03821633141561109e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161078d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61111584848461133f565b61112184848484611767565b61113d5760405162461bcd60e51b815260040161078d9061205f565b50505050565b6007546001600160a01b0316331461116d5760405162461bcd60e51b815260040161078d90611fdd565b600b55565b606061117f826000541190565b6111e35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078d565b60006111ed611875565b905080516000141561120e5760405180602001604052806000815250611239565b8061121884611884565b6040516020016112299291906120b2565b6040516020818303038152906040525b9392505050565b600061068a82611982565b6007546001600160a01b031633146112755760405162461bcd60e51b815260040161078d90611fdd565b6001600160a01b0381166112da5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078d565b610e5d816116fb565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061134a82611624565b80519091506000906001600160a01b0316336001600160a01b0316148061138157503361137684610722565b6001600160a01b0316145b806113935750815161139390336105bf565b9050806113fd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161078d565b846001600160a01b031682600001516001600160a01b0316146114715760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161078d565b6001600160a01b0384166114d55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161078d565b6114e560008484600001516112e3565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff16021790559086018083529120549091166115da5761158d816000541190565b156115da578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805180820190915260008082526020820152611643826000541190565b6116a25760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161078d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116f1579392505050565b50600019016116a4565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611041828260405180602001604052806000815250611a20565b60006001600160a01b0384163b1561186957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117ab9033908990889088906004016120e1565b602060405180830381600087803b1580156117c557600080fd5b505af19250505080156117f5575060408051601f3d908101601f191682019092526117f29181019061211e565b60015b61184f573d808015611823576040519150601f19603f3d011682016040523d82523d6000602084013e611828565b606091505b5080516118475760405162461bcd60e51b815260040161078d9061205f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061186d565b5060015b949350505050565b60606009805461069f90611fa2565b6060816118a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118d257806118bc8161213b565b91506118cb9050600a8361216c565b91506118ac565b60008167ffffffffffffffff8111156118ed576118ed611e7d565b6040519080825280601f01601f191660200182016040528015611917576020820181803683370190505b5090505b841561186d5761192c600183612180565b9150611939600a86612197565b611944906030612028565b60f81b818381518110611959576119596121ab565b60200101906001600160f81b031916908160001a90535061197b600a8661216c565b945061191b565b60006001600160a01b0382166119f45760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161078d565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6108c583838360016000546001600160a01b038516611a8b5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161078d565b83611ae95760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161078d565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611be25760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611bd657611bba6000888488611767565b611bd65760405162461bcd60e51b815260040161078d9061205f565b60019182019101611b67565b5060005561161d565b828054611bf790611fa2565b90600052602060002090601f016020900481019282611c195760008555611c5f565b82601f10611c325782800160ff19823516178555611c5f565b82800160010185558215611c5f579182015b82811115611c5f578235825591602001919060010190611c44565b50610bc09291505b80821115610bc05760008155600101611c67565b6001600160e01b031981168114610e5d57600080fd5b600060208284031215611ca357600080fd5b813561123981611c7b565b60005b83811015611cc9578181015183820152602001611cb1565b8381111561113d5750506000910152565b60008151808452611cf2816020860160208601611cae565b601f01601f19169290920160200192915050565b6020815260006112396020830184611cda565b600060208284031215611d2b57600080fd5b5035919050565b80356001600160a01b0381168114611d4957600080fd5b919050565b60008060408385031215611d6157600080fd5b611d6a83611d32565b946020939093013593505050565b600080600060608486031215611d8d57600080fd5b611d9684611d32565b9250611da460208501611d32565b9150604084013590509250925092565b60008060208385031215611dc757600080fd5b823567ffffffffffffffff80821115611ddf57600080fd5b818501915085601f830112611df357600080fd5b813581811115611e0257600080fd5b866020828501011115611e1457600080fd5b60209290920196919550909350505050565b600060208284031215611e3857600080fd5b61123982611d32565b60008060408385031215611e5457600080fd5b611e5d83611d32565b915060208301358015158114611e7257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ea957600080fd5b611eb285611d32565b9350611ec060208601611d32565b925060408501359150606085013567ffffffffffffffff80821115611ee457600080fd5b818701915087601f830112611ef857600080fd5b813581811115611f0a57611f0a611e7d565b604051601f8201601f19908116603f01168101908382118183101715611f3257611f32611e7d565b816040528281528a6020848701011115611f4b57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611f8257600080fd5b611f8b83611d32565b9150611f9960208401611d32565b90509250929050565b600181811c90821680611fb657607f821691505b60208210811415611fd757634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561203b5761203b612012565b500190565b600081600019048311821515161561205a5761205a612012565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600083516120c4818460208801611cae565b8351908301906120d8818360208801611cae565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211490830184611cda565b9695505050505050565b60006020828403121561213057600080fd5b815161123981611c7b565b600060001982141561214f5761214f612012565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261217b5761217b612156565b500490565b60008282101561219257612192612012565b500390565b6000826121a6576121a6612156565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220d0e8bea954b1e74ba46bbc8622564c1b7701762c1e8eb5a3a318c4d23037507b64736f6c63430008090033

Deployed Bytecode Sourcemap

50149:1958:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37009:372;;;;;;;;;;-1:-1:-1;37009:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37009:372:0;;;;;;;;38895:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40457:214::-;;;;;;;;;;-1:-1:-1;40457:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;40457:214:0;1528:203:1;39978:413:0;;;;;;;;;;-1:-1:-1;39978:413:0;;;;;:::i;:::-;;:::i;:::-;;35266:100;;;;;;;;;;-1:-1:-1;35319:7:0;35346:12;35266:100;;;2319:25:1;;;2307:2;2292:18;35266:100:0;2173:177:1;41333:170:0;;;;;;;;;;-1:-1:-1;41333:170:0;;;;;:::i;:::-;;:::i;35930:1007::-;;;;;;;;;;-1:-1:-1;35930:1007:0;;;;;:::i;:::-;;:::i;50354:45::-;;;;;;;;;;;;;;;;51926:176;;;;;;;;;;;;;:::i;41574:185::-;;;;;;;;;;-1:-1:-1;41574:185:0;;;;;:::i;:::-;;:::i;35443:187::-;;;;;;;;;;-1:-1:-1;35443:187:0;;;;;:::i;:::-;;:::i;51424:96::-;;;;;;;;;;-1:-1:-1;51424:96:0;;;;;:::i;:::-;;:::i;51614:98::-;;;;;;;;;;-1:-1:-1;51614:98:0;;;;;:::i;:::-;;:::i;38704:124::-;;;;;;;;;;-1:-1:-1;38704:124:0;;;;;:::i;:::-;;:::i;50217:28::-;;;;;;;;;;;;;:::i;37445:221::-;;;;;;;;;;-1:-1:-1;37445:221:0;;;;;:::i;:::-;;:::i;10401:103::-;;;;;;;;;;;;;:::i;51220:85::-;;;;;;;;;;;;;:::i;9750:87::-;;;;;;;;;;-1:-1:-1;9823:6:0;;-1:-1:-1;;;;;9823:6:0;9750:87;;51042:172;;;;;;;;;;-1:-1:-1;51042:172:0;;;;;:::i;:::-;;:::i;51526:82::-;;;;;;;;;;-1:-1:-1;51526:82:0;;;;;:::i;:::-;;:::i;39064:104::-;;;;;;;;;;;;;:::i;50250:52::-;;;;;;;;;;;;;;;;50563:473;;;;;;:::i;:::-;;:::i;40743:288::-;;;;;;;;;;-1:-1:-1;40743:288:0;;;;;:::i;:::-;;:::i;41830:355::-;;;;;;;;;;-1:-1:-1;41830:355:0;;;;;:::i;:::-;;:::i;51718:94::-;;;;;;;;;;-1:-1:-1;51718:94:0;;;;;:::i;:::-;;:::i;39239:335::-;;;;;;;;;;-1:-1:-1;39239:335:0;;;;;:::i;:::-;;:::i;50454:32::-;;;;;;;;;;-1:-1:-1;50454:32:0;;;;;;;;50404:45;;;;;;;;;;;;;;;;51311:107;;;;;;;;;;-1:-1:-1;51311:107:0;;;;;:::i;:::-;;:::i;41102:164::-;;;;;;;;;;-1:-1:-1;41102:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;41223:25:0;;;41199:4;41223:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;41102:164;10659:201;;;;;;;;;;-1:-1:-1;10659:201:0;;;;;:::i;:::-;;:::i;50307:42::-;;;;;;;;;;;;;;;;37009:372;37111:4;-1:-1:-1;;;;;;37148:40:0;;-1:-1:-1;;;37148:40:0;;:105;;-1:-1:-1;;;;;;;37205:48:0;;-1:-1:-1;;;37205:48:0;37148:105;:172;;;-1:-1:-1;;;;;;;37270:50:0;;-1:-1:-1;;;37270:50:0;37148:172;:225;;;-1:-1:-1;;;;;;;;;;26638:40:0;;;37337:36;37128:245;37009:372;-1:-1:-1;;37009:372:0:o;38895:100::-;38949:13;38982:5;38975:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38895:100;:::o;40457:214::-;40525:7;40553:16;40561:7;42497:4;42531:12;-1:-1:-1;42521:22:0;42440:111;40553:16;40545:74;;;;-1:-1:-1;;;40545:74:0;;5955:2:1;40545:74:0;;;5937:21:1;5994:2;5974:18;;;5967:30;6033:34;6013:18;;;6006:62;-1:-1:-1;;;6084:18:1;;;6077:43;6137:19;;40545:74:0;;;;;;;;;-1:-1:-1;40639:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40639:24:0;;40457:214::o;39978:413::-;40051:13;40067:24;40083:7;40067:15;:24::i;:::-;40051:40;;40116:5;-1:-1:-1;;;;;40110:11:0;:2;-1:-1:-1;;;;;40110:11:0;;;40102:58;;;;-1:-1:-1;;;40102:58:0;;6369:2:1;40102:58:0;;;6351:21:1;6408:2;6388:18;;;6381:30;6447:34;6427:18;;;6420:62;-1:-1:-1;;;6498:18:1;;;6491:32;6540:19;;40102:58:0;6167:398:1;40102:58:0;8554:10;-1:-1:-1;;;;;40195:21:0;;;;:62;;-1:-1:-1;40220:37:0;40237:5;8554:10;41102:164;:::i;40220:37::-;40173:169;;;;-1:-1:-1;;;40173:169:0;;6772:2:1;40173:169:0;;;6754:21:1;6811:2;6791:18;;;6784:30;6850:34;6830:18;;;6823:62;6921:27;6901:18;;;6894:55;6966:19;;40173:169:0;6570:421:1;40173:169:0;40355:28;40364:2;40368:7;40377:5;40355:8;:28::i;:::-;40040:351;39978:413;;:::o;41333:170::-;41467:28;41477:4;41483:2;41487:7;41467:9;:28::i;35930:1007::-;36019:7;36055:16;36065:5;36055:9;:16::i;:::-;36047:5;:24;36039:71;;;;-1:-1:-1;;;36039:71:0;;7198:2:1;36039:71:0;;;7180:21:1;7237:2;7217:18;;;7210:30;7276:34;7256:18;;;7249:62;-1:-1:-1;;;7327:18:1;;;7320:32;7369:19;;36039:71:0;6996:398:1;36039:71:0;36121:22;35346:12;;;36121:22;;36384:466;36404:14;36400:1;:18;36384:466;;;36444:31;36478:14;;;:11;:14;;;;;;;;;36444:48;;;;;;;;;-1:-1:-1;;;;;36444:48:0;;;;;-1:-1:-1;;;36444:48:0;;;;;;;;;;;;36515:28;36511:111;;36588:14;;;-1:-1:-1;36511:111:0;36665:5;-1:-1:-1;;;;;36644:26:0;:17;-1:-1:-1;;;;;36644:26:0;;36640:195;;;36714:5;36699:11;:20;36695:85;;;-1:-1:-1;36755:1:0;-1:-1:-1;36748:8:0;;-1:-1:-1;;;36748:8:0;36695:85;36802:13;;;;;36640:195;-1:-1:-1;36420:3:0;;36384:466;;;-1:-1:-1;36873:56:0;;-1:-1:-1;;;36873:56:0;;7601:2:1;36873:56:0;;;7583:21:1;7640:2;7620:18;;;7613:30;7679:34;7659:18;;;7652:62;-1:-1:-1;;;7730:18:1;;;7723:44;7784:19;;36873:56:0;7399:410:1;51926:176:0;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;4724:1:::1;5322:7;;:19;;5314:63;;;::::0;-1:-1:-1;;;5314:63:0;;8377:2:1;5314:63:0::1;::::0;::::1;8359:21:1::0;8416:2;8396:18;;;8389:30;8455:33;8435:18;;;8428:61;8506:18;;5314:63:0::1;8175:355:1::0;5314:63:0::1;4724:1;5455:7;:18:::0;52004:49:::2;::::0;51986:12:::2;::::0;52004:10:::2;::::0;52027:21:::2;::::0;51986:12;52004:49;51986:12;52004:49;52027:21;52004:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51985:68;;;52068:7;52060:36;;;::::0;-1:-1:-1;;;52060:36:0;;8947:2:1;52060:36:0::2;::::0;::::2;8929:21:1::0;8986:2;8966:18;;;8959:30;-1:-1:-1;;;9005:18:1;;;8998:46;9061:18;;52060:36:0::2;8745:340:1::0;52060:36:0::2;-1:-1:-1::0;4680:1:0::1;5634:7;:22:::0;51926:176::o;41574:185::-;41712:39;41729:4;41735:2;41739:7;41712:39;;;;;;;;;;;;:16;:39::i;35443:187::-;35510:7;35346:12;;35538:5;:21;35530:69;;;;-1:-1:-1;;;35530:69:0;;9292:2:1;35530:69:0;;;9274:21:1;9331:2;9311:18;;;9304:30;9370:34;9350:18;;;9343:62;-1:-1:-1;;;9421:18:1;;;9414:33;9464:19;;35530:69:0;9090:399:1;35530:69:0;-1:-1:-1;35617:5:0;35443:187::o;51424:96::-;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;51496:18:::1;:7;51506:8:::0;;51496:18:::1;:::i;51614:98::-:0;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;51684:9:::1;:22:::0;51614:98::o;38704:124::-;38768:7;38795:20;38807:7;38795:11;:20::i;:::-;:25;;38704:124;-1:-1:-1;;38704:124:0:o;50217:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37445:221::-;37509:7;-1:-1:-1;;;;;37537:19:0;;37529:75;;;;-1:-1:-1;;;37529:75:0;;9696:2:1;37529:75:0;;;9678:21:1;9735:2;9715:18;;;9708:30;9774:34;9754:18;;;9747:62;-1:-1:-1;;;9825:18:1;;;9818:41;9876:19;;37529:75:0;9494:407:1;37529:75:0;-1:-1:-1;;;;;;37630:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37630:27:0;;37445:221::o;10401:103::-;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;10466:30:::1;10493:1;10466:18;:30::i;:::-;10401:103::o:0;51220:85::-;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;51288:11:::1;::::0;;-1:-1:-1;;51273:26:0;::::1;51288:11;::::0;;::::1;51287:12;51273:26;::::0;;51220:85::o;51042:172::-;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;51144:9:::1;::::0;:13:::1;::::0;51156:1:::1;51144:13;:::i;:::-;51135:6;51119:13;35319:7:::0;35346:12;;35266:100;51119:13:::1;:22;;;;:::i;:::-;:38;51111:59;;;::::0;-1:-1:-1;;;51111:59:0;;10373:2:1;51111:59:0::1;::::0;::::1;10355:21:1::0;10412:1;10392:18;;;10385:29;-1:-1:-1;;;10430:18:1;;;10423:39;10479:18;;51111:59:0::1;10171:332:1::0;51111:59:0::1;51179:29;51189:10;51201:6;51179:9;:29::i;:::-;51042:172:::0;:::o;51526:82::-;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;51588:5:::1;:14:::0;51526:82::o;39064:104::-;39120:13;39153:7;39146:14;;;;;:::i;50563:473::-;50632:5;;50672:9;;:13;;50684:1;50672:13;:::i;:::-;50663:6;50647:13;35319:7;35346:12;;35266:100;50647:13;:22;;;;:::i;:::-;:38;50644:68;;;-1:-1:-1;50703:1:0;50644:68;50726:11;;;;50718:56;;;;-1:-1:-1;;;50718:56:0;;10710:2:1;50718:56:0;;;10692:21:1;;;10729:18;;;10722:30;10788:34;10768:18;;;10761:62;10840:18;;50718:56:0;10508:356:1;50718:56:0;50814:9;;:13;;50826:1;50814:13;:::i;:::-;50805:6;50789:13;35319:7;35346:12;;35266:100;50789:13;:22;;;;:::i;:::-;:38;50781:75;;;;-1:-1:-1;;;50781:75:0;;11071:2:1;50781:75:0;;;11053:21:1;11110:2;11090:18;;;11083:30;11149:27;11129:18;;;11122:55;11194:18;;50781:75:0;10869:349:1;50781:75:0;50884:13;50893:4;50884:6;:13;:::i;:::-;50871:9;:26;50863:66;;;;-1:-1:-1;;;50863:66:0;;11598:2:1;50863:66:0;;;11580:21:1;11637:2;11617:18;;;11610:30;11676;11656:18;;;11649:58;11724:18;;50863:66:0;11396:352:1;50863:66:0;50953:8;;:12;;50964:1;50953:12;:::i;:::-;50944:6;:21;50936:52;;;;-1:-1:-1;;;50936:52:0;;11955:2:1;50936:52:0;;;11937:21:1;11994:2;11974:18;;;11967:30;-1:-1:-1;;;12013:18:1;;;12006:48;12071:18;;50936:52:0;11753:342:1;50936:52:0;51001:29;51011:10;51023:6;51001:9;:29::i;:::-;50613:423;50563:473;:::o;40743:288::-;-1:-1:-1;;;;;40838:24:0;;8554:10;40838:24;;40830:63;;;;-1:-1:-1;;;40830:63:0;;12302:2:1;40830:63:0;;;12284:21:1;12341:2;12321:18;;;12314:30;12380:28;12360:18;;;12353:56;12426:18;;40830:63:0;12100:350:1;40830:63:0;8554:10;40906:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40906:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40906:53:0;;;;;;;;;;40975:48;;540:41:1;;;40906:42:0;;8554:10;40975:48;;513:18:1;40975:48:0;;;;;;;40743:288;;:::o;41830:355::-;41989:28;41999:4;42005:2;42009:7;41989:9;:28::i;:::-;42050:48;42073:4;42079:2;42083:7;42092:5;42050:22;:48::i;:::-;42028:149;;;;-1:-1:-1;;;42028:149:0;;;;;;;:::i;:::-;41830:355;;;;:::o;51718:94::-;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;51786:8:::1;:20:::0;51718:94::o;39239:335::-;39312:13;39346:16;39354:7;42497:4;42531:12;-1:-1:-1;42521:22:0;42440:111;39346:16;39338:76;;;;-1:-1:-1;;;39338:76:0;;13077:2:1;39338:76:0;;;13059:21:1;13116:2;13096:18;;;13089:30;13155:34;13135:18;;;13128:62;-1:-1:-1;;;13206:18:1;;;13199:45;13261:19;;39338:76:0;12875:411:1;39338:76:0;39427:21;39451:10;:8;:10::i;:::-;39427:34;;39485:7;39479:21;39504:1;39479:26;;:87;;;;;;;;;;;;;;;;;39532:7;39541:18;:7;:16;:18::i;:::-;39515:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39479:87;39472:94;39239:335;-1:-1:-1;;;39239:335:0:o;51311:107::-;51369:7;51392:20;51406:5;51392:13;:20::i;10659:201::-;9823:6;;-1:-1:-1;;;;;9823:6:0;8554:10;9970:23;9962:68;;;;-1:-1:-1;;;9962:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10748:22:0;::::1;10740:73;;;::::0;-1:-1:-1;;;10740:73:0;;13968:2:1;10740:73:0::1;::::0;::::1;13950:21:1::0;14007:2;13987:18;;;13980:30;14046:34;14026:18;;;14019:62;-1:-1:-1;;;14097:18:1;;;14090:36;14143:19;;10740:73:0::1;13766:402:1::0;10740:73:0::1;10824:28;10843:8;10824:18;:28::i;47360:196::-:0;47475:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;47475:29:0;-1:-1:-1;;;;;47475:29:0;;;;;;;;;47520:28;;47475:24;;47520:28;;;;;;;47360:196;;;:::o;45240:2002::-;45355:35;45393:20;45405:7;45393:11;:20::i;:::-;45468:18;;45355:58;;-1:-1:-1;45426:22:0;;-1:-1:-1;;;;;45452:34:0;8554:10;-1:-1:-1;;;;;45452:34:0;;:87;;;-1:-1:-1;8554:10:0;45503:20;45515:7;45503:11;:20::i;:::-;-1:-1:-1;;;;;45503:36:0;;45452:87;:154;;;-1:-1:-1;45573:18:0;;45556:50;;8554:10;41102:164;:::i;45556:50::-;45426:181;;45628:17;45620:80;;;;-1:-1:-1;;;45620:80:0;;14375:2:1;45620:80:0;;;14357:21:1;14414:2;14394:18;;;14387:30;14453:34;14433:18;;;14426:62;-1:-1:-1;;;14504:18:1;;;14497:48;14562:19;;45620:80:0;14173:414:1;45620:80:0;45743:4;-1:-1:-1;;;;;45721:26:0;:13;:18;;;-1:-1:-1;;;;;45721:26:0;;45713:77;;;;-1:-1:-1;;;45713:77:0;;14794:2:1;45713:77:0;;;14776:21:1;14833:2;14813:18;;;14806:30;14872:34;14852:18;;;14845:62;-1:-1:-1;;;14923:18:1;;;14916:36;14969:19;;45713:77:0;14592:402:1;45713:77:0;-1:-1:-1;;;;;45809:16:0;;45801:66;;;;-1:-1:-1;;;45801:66:0;;15201:2:1;45801:66:0;;;15183:21:1;15240:2;15220:18;;;15213:30;15279:34;15259:18;;;15252:62;-1:-1:-1;;;15330:18:1;;;15323:35;15375:19;;45801:66:0;14999:401:1;45801:66:0;45988:49;46005:1;46009:7;46018:13;:18;;;45988:8;:49::i;:::-;-1:-1:-1;;;;;46333:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;46333:31:0;;;-1:-1:-1;;;;;46333:31:0;;;-1:-1:-1;;46333:31:0;;;;;;;46379:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;46379:29:0;;;;;;;;;;;;;46425:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;46470:61:0;;;;-1:-1:-1;;;46515:15:0;46470:61;;;;;;46805:11;;;46835:24;;;;;:29;46805:11;;46835:29;46831:295;;46903:20;46911:11;42497:4;42531:12;-1:-1:-1;42521:22:0;42440:111;46903:20;46899:212;;;46980:18;;;46948:24;;;:11;:24;;;;;;;;:50;;47063:28;;;;47021:70;;-1:-1:-1;;;47021:70:0;-1:-1:-1;;;;;;47021:70:0;;;-1:-1:-1;;;;;46948:50:0;;;47021:70;;;;;;;46899:212;46308:829;47173:7;47169:2;-1:-1:-1;;;;;47154:27:0;47163:4;-1:-1:-1;;;;;47154:27:0;;;;;;;;;;;47192:42;45344:1898;;45240:2002;;;:::o;38105:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;38208:16:0;38216:7;42497:4;42531:12;-1:-1:-1;42521:22:0;42440:111;38208:16;38200:71;;;;-1:-1:-1;;;38200:71:0;;15607:2:1;38200:71:0;;;15589:21:1;15646:2;15626:18;;;15619:30;15685:34;15665:18;;;15658:62;-1:-1:-1;;;15736:18:1;;;15729:40;15786:19;;38200:71:0;15405:406:1;38200:71:0;38329:7;38309:245;38376:31;38410:17;;;:11;:17;;;;;;;;;38376:51;;;;;;;;;-1:-1:-1;;;;;38376:51:0;;;;;-1:-1:-1;;;38376:51:0;;;;;;;;;;;;38450:28;38446:93;;38510:9;38105:537;-1:-1:-1;;;38105:537:0:o;38446:93::-;-1:-1:-1;;;38349:6:0;38309:245;;11020:191;11113:6;;;-1:-1:-1;;;;;11130:17:0;;;-1:-1:-1;;;;;;11130:17:0;;;;;;;11163:40;;11113:6;;;11130:17;11113:6;;11163:40;;11094:16;;11163:40;11083:128;11020:191;:::o;42559:104::-;42628:27;42638:2;42642:8;42628:27;;;;;;;;;;;;:9;:27::i;48121:804::-;48276:4;-1:-1:-1;;;;;48297:13:0;;12746:19;:23;48293:625;;48333:72;;-1:-1:-1;;;48333:72:0;;-1:-1:-1;;;;;48333:36:0;;;;;:72;;8554:10;;48384:4;;48390:7;;48399:5;;48333:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48333:72:0;;;;;;;;-1:-1:-1;;48333:72:0;;;;;;;;;;;;:::i;:::-;;;48329:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48579:13:0;;48575:273;;48622:61;;-1:-1:-1;;;48622:61:0;;;;;;;:::i;48575:273::-;48798:6;48792:13;48783:6;48779:2;48775:15;48768:38;48329:534;-1:-1:-1;;;;;;48456:55:0;-1:-1:-1;;;48456:55:0;;-1:-1:-1;48449:62:0;;48293:625;-1:-1:-1;48902:4:0;48293:625;48121:804;;;;;;:::o;51818:102::-;51878:13;51907:7;51900:14;;;;;:::i;6036:723::-;6092:13;6313:10;6309:53;;-1:-1:-1;;6340:10:0;;;;;;;;;;;;-1:-1:-1;;;6340:10:0;;;;;6036:723::o;6309:53::-;6387:5;6372:12;6428:78;6435:9;;6428:78;;6461:8;;;;:::i;:::-;;-1:-1:-1;6484:10:0;;-1:-1:-1;6492:2:0;6484:10;;:::i;:::-;;;6428:78;;;6516:19;6548:6;6538:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6538:17:0;;6516:39;;6566:154;6573:10;;6566:154;;6600:11;6610:1;6600:11;;:::i;:::-;;-1:-1:-1;6669:10:0;6677:2;6669:5;:10;:::i;:::-;6656:24;;:2;:24;:::i;:::-;6643:39;;6626:6;6633;6626:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6626:56:0;;;;;;;;-1:-1:-1;6697:11:0;6706:2;6697:11;;:::i;:::-;;;6566:154;;37674:229;37735:7;-1:-1:-1;;;;;37763:19:0;;37755:81;;;;-1:-1:-1;;;37755:81:0;;17958:2:1;37755:81:0;;;17940:21:1;17997:2;17977:18;;;17970:30;18036:34;18016:18;;;18009:62;-1:-1:-1;;;18087:18:1;;;18080:47;18144:19;;37755:81:0;17756:413:1;37755:81:0;-1:-1:-1;;;;;;37862:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37862:32:0;;-1:-1:-1;;;;;37862:32:0;;37674:229::o;43026:163::-;43149:32;43155:2;43159:8;43169:5;43176:4;43587:20;43610:12;-1:-1:-1;;;;;43641:16:0;;43633:62;;;;-1:-1:-1;;;43633:62:0;;18376:2:1;43633:62:0;;;18358:21:1;18415:2;18395:18;;;18388:30;18454:34;18434:18;;;18427:62;-1:-1:-1;;;18505:18:1;;;18498:31;18546:19;;43633:62:0;18174:397:1;43633:62:0;43714:13;43706:66;;;;-1:-1:-1;;;43706:66:0;;18778:2:1;43706:66:0;;;18760:21:1;18817:2;18797:18;;;18790:30;18856:34;18836:18;;;18829:62;-1:-1:-1;;;18907:18:1;;;18900:38;18955:19;;43706:66:0;18576:404:1;43706:66:0;-1:-1:-1;;;;;44124:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;44124:45:0;;-1:-1:-1;;;;;44124:45:0;;;;;;;;;;44184:50;;;;;;;;;;;;;;44251:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;44301:66:0;;;;-1:-1:-1;;;44351:15:0;44301:66;;;;;;;44251:25;;44436:415;44456:8;44452:1;:12;44436:415;;;44495:38;;44520:12;;-1:-1:-1;;;;;44495:38:0;;;44512:1;;44495:38;;44512:1;;44495:38;44556:4;44552:249;;;44619:59;44650:1;44654:2;44658:12;44672:5;44619:22;:59::i;:::-;44585:196;;;;-1:-1:-1;;;44585:196:0;;;;;;;:::i;:::-;44821:14;;;;;44466:3;44436:415;;;-1:-1:-1;44867:12:0;:27;44918:60;41830:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;2905:18;2946:2;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:347::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3720:2;3709:9;3705:18;3692:32;3767:5;3760:13;3753:21;3746:5;3743:32;3733:60;;3789:1;3786;3779:12;3733:60;3812:5;3802:15;;;3476:347;;;;;:::o;3828:127::-;3889:10;3884:3;3880:20;3877:1;3870:31;3920:4;3917:1;3910:15;3944:4;3941:1;3934:15;3960:1138;4055:6;4063;4071;4079;4132:3;4120:9;4111:7;4107:23;4103:33;4100:53;;;4149:1;4146;4139:12;4100:53;4172:29;4191:9;4172:29;:::i;:::-;4162:39;;4220:38;4254:2;4243:9;4239:18;4220:38;:::i;:::-;4210:48;;4305:2;4294:9;4290:18;4277:32;4267:42;;4360:2;4349:9;4345:18;4332:32;4383:18;4424:2;4416:6;4413:14;4410:34;;;4440:1;4437;4430:12;4410:34;4478:6;4467:9;4463:22;4453:32;;4523:7;4516:4;4512:2;4508:13;4504:27;4494:55;;4545:1;4542;4535:12;4494:55;4581:2;4568:16;4603:2;4599;4596:10;4593:36;;;4609:18;;:::i;:::-;4684:2;4678:9;4652:2;4738:13;;-1:-1:-1;;4734:22:1;;;4758:2;4730:31;4726:40;4714:53;;;4782:18;;;4802:22;;;4779:46;4776:72;;;4828:18;;:::i;:::-;4868:10;4864:2;4857:22;4903:2;4895:6;4888:18;4943:7;4938:2;4933;4929;4925:11;4921:20;4918:33;4915:53;;;4964:1;4961;4954:12;4915:53;5020:2;5015;5011;5007:11;5002:2;4994:6;4990:15;4977:46;5065:1;5060:2;5055;5047:6;5043:15;5039:24;5032:35;5086:6;5076:16;;;;;;;3960:1138;;;;;;;:::o;5103:260::-;5171:6;5179;5232:2;5220:9;5211:7;5207:23;5203:32;5200:52;;;5248:1;5245;5238:12;5200:52;5271:29;5290:9;5271:29;:::i;:::-;5261:39;;5319:38;5353:2;5342:9;5338:18;5319:38;:::i;:::-;5309:48;;5103:260;;;;;:::o;5368:380::-;5447:1;5443:12;;;;5490;;;5511:61;;5565:4;5557:6;5553:17;5543:27;;5511:61;5618:2;5610:6;5607:14;5587:18;5584:38;5581:161;;;5664:10;5659:3;5655:20;5652:1;5645:31;5699:4;5696:1;5689:15;5727:4;5724:1;5717:15;5581:161;;5368:380;;;:::o;7814:356::-;8016:2;7998:21;;;8035:18;;;8028:30;8094:34;8089:2;8074:18;;8067:62;8161:2;8146:18;;7814:356::o;9906:127::-;9967:10;9962:3;9958:20;9955:1;9948:31;9998:4;9995:1;9988:15;10022:4;10019:1;10012:15;10038:128;10078:3;10109:1;10105:6;10102:1;10099:13;10096:39;;;10115:18;;:::i;:::-;-1:-1:-1;10151:9:1;;10038:128::o;11223:168::-;11263:7;11329:1;11325;11321:6;11317:14;11314:1;11311:21;11306:1;11299:9;11292:17;11288:45;11285:71;;;11336:18;;:::i;:::-;-1:-1:-1;11376:9:1;;11223:168::o;12455:415::-;12657:2;12639:21;;;12696:2;12676:18;;;12669:30;12735:34;12730:2;12715:18;;12708:62;-1:-1:-1;;;12801:2:1;12786:18;;12779:49;12860:3;12845:19;;12455:415::o;13291:470::-;13470:3;13508:6;13502:13;13524:53;13570:6;13565:3;13558:4;13550:6;13546:17;13524:53;:::i;:::-;13640:13;;13599:16;;;;13662:57;13640:13;13599:16;13696:4;13684:17;;13662:57;:::i;:::-;13735:20;;13291:470;-1:-1:-1;;;;13291:470:1:o;16232:489::-;-1:-1:-1;;;;;16501:15:1;;;16483:34;;16553:15;;16548:2;16533:18;;16526:43;16600:2;16585:18;;16578:34;;;16648:3;16643:2;16628:18;;16621:31;;;16426:4;;16669:46;;16695:19;;16687:6;16669:46;:::i;:::-;16661:54;16232:489;-1:-1:-1;;;;;;16232:489:1:o;16726:249::-;16795:6;16848:2;16836:9;16827:7;16823:23;16819:32;16816:52;;;16864:1;16861;16854:12;16816:52;16896:9;16890:16;16915:30;16939:5;16915:30;:::i;16980:135::-;17019:3;-1:-1:-1;;17040:17:1;;17037:43;;;17060:18;;:::i;:::-;-1:-1:-1;17107:1:1;17096:13;;16980:135::o;17120:127::-;17181:10;17176:3;17172:20;17169:1;17162:31;17212:4;17209:1;17202:15;17236:4;17233:1;17226:15;17252:120;17292:1;17318;17308:35;;17323:18;;:::i;:::-;-1:-1:-1;17357:9:1;;17252:120::o;17377:125::-;17417:4;17445:1;17442;17439:8;17436:34;;;17450:18;;:::i;:::-;-1:-1:-1;17487:9:1;;17377:125::o;17507:112::-;17539:1;17565;17555:35;;17570:18;;:::i;:::-;-1:-1:-1;17604:9:1;;17507:112::o;17624:127::-;17685:10;17680:3;17676:20;17673:1;17666:31;17716:4;17713:1;17706:15;17740:4;17737:1;17730:15

Swarm Source

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