ETH Price: $2,861.52 (-10.65%)
Gas: 19 Gwei

Token

Apeload (Al)
 

Overview

Max Total Supply

0 Al

Holders

534

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
flicksparks.eth
Balance
3 Al
0x4d5662d3c4e21517c79f145019ac05f544cd0918
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A collection of 5,000 apes kidnapped by aliens and entrapped in the metaverse. Visit our website to learn about the lore and utility of your NFTs. https://www.apeload.io/

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Apeload

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-12
*/

// SPDX-License-Identifier: MIT
// File: Counters.sol



pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}
// File: Strings.sol



pragma solidity ^0.8.1;

/**
 * @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: Context.sol



pragma solidity ^0.8.1;

/**
 * @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: Ownable.sol



pragma solidity ^0.8.1;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: IERC721Receiver.sol



pragma solidity ^0.8.1;

/**
 * @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: IERC165.sol



pragma solidity ^0.8.1;

/**
 * @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: ERC165.sol



pragma solidity ^0.8.1;


/**
 * @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: IERC721.sol



pragma solidity ^0.8.1;


/**
 * @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: IERC721Metadata.sol



pragma solidity ^0.8.1;


/**
 * @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: ERC721.sol



pragma solidity ^0.8.1;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: Apeload.sol


pragma solidity ^0.8.9;





library OpenSeaGasFreeListing {
    function isApprovedForAll(address owner, address operator)
        internal
        view
        returns (bool)
    {
        ProxyRegistry registry;
        assembly {
            switch chainid()
            case 1 {
                registry := 0xa5409ec958c83c3f309868babaca7c86dcb077c1
            }
            case 4 {
                registry := 0xf57b2c51ded3a29e6891aba85459d600256cf317
            }
        }

        return
            address(registry) != address(0) &&
            address(registry.proxies(owner)) == operator;
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract Apeload is ERC721, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;

    bool public saleStart = false;
    string public tokenBaseURI;
    string public tokenBaseExtension = ".json";
    uint256 public cost = 0.02 ether;
    uint256 public maxTxnLimit = 10;
    uint256 public free = 1000;
    uint256 public maxSupply = 5000;

    Counters.Counter public tokenSupply;

    constructor() ERC721("Apeload", "Al") {
        _safeMints(1);
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Query for nonexistent token");

        return
            string(
                abi.encodePacked(
                    tokenBaseURI,
                    _tokenId.toString(),
                    tokenBaseExtension
                )
            );
    }

    function mint(uint256 amount) external payable {
        require(saleStart, "Sale has not started");
        require(amount > 0 && amount <= maxTxnLimit, "Invalid mint amount");
        _safeMints(amount);
    }

    function _safeMints(uint256 amount) internal {
        if (free < tokenSupply.current() + amount) {
            require(
                tokenSupply.current() + amount <= maxSupply,
                "Max supply reached"
            );
            require(msg.value >= cost * amount, "Insufficient eth");
        }

        for (uint256 i = 0; i < amount; i++) {
            uint256 mintIndex = tokenSupply.current();

            if (mintIndex < maxSupply) {
                tokenSupply.increment();
                _safeMint(msg.sender, mintIndex + 1);
            }
        }
    }

    function getSupply() external view returns (uint256) {
        return tokenSupply.current();
    }

    function setTokenBaseExtension(string memory _tokenBaseExtension)
        external
        onlyOwner
    {
        tokenBaseExtension = _tokenBaseExtension;
    }

    function setTokenBaseURI(string memory _baseURI) external onlyOwner {
        tokenBaseURI = _baseURI;
    }

    function setSaleState(bool state) external onlyOwner {
        saleStart = state;
    }

    function setCost(uint256 price) external onlyOwner {
        cost = price;
    }

    function setFree(uint256 index) external onlyOwner {
        free = index;
    }

    function setTxnLimit(uint256 txnLimit) external onlyOwner {
        maxTxnLimit = txnLimit;
    }

    function withdraw() public onlyOwner {
        (bool success, ) = payable(owner()).call{value: address(this).balance}(
            ""
        );
        require(success);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        return
            OpenSeaGasFreeListing.isApprovedForAll(owner, operator) ||
            super.isApprovedForAll(owner, operator);
    }
}

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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"free","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxnLimit","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"saleStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseExtension","type":"string"}],"name":"setTokenBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"txnLimit","type":"uint256"}],"name":"setTxnLimit","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":"tokenBaseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSupply","outputs":[{"internalType":"uint256","name":"_value","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":[{"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"}]

6006805460ff60a01b1916905560c06040526005608081905264173539b7b760d91b60a0908152620000359160089190620005fe565b5066470de4df820000600955600a80556103e8600b55611388600c553480156200005e57600080fd5b506040805180820182526007815266105c195b1bd85960ca1b602080830191825283518085019094526002845261105b60f21b908401528151919291620000a891600091620005fe565b508051620000be906001906020840190620005fe565b505050620000db620000d5620000ed60201b60201c565b620000f1565b620000e7600162000143565b62000800565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b806200015b600d620002b060201b62000fb41760201c565b620001679190620006ba565b600b5410156200023557600c54816200018c600d620002b060201b62000fb41760201c565b620001989190620006ba565b1115620001e15760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064015b60405180910390fd5b80600954620001f19190620006d5565b341015620002355760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce840cae8d60831b6044820152606401620001d8565b60005b81811015620002ac5760006200025a600d620002b060201b62000fb41760201c565b9050600c5481101562000296576200027e600d620002b460201b62000fb81760201c565b620002963362000290836001620006ba565b620002bd565b5080620002a381620006f7565b91505062000238565b5050565b5490565b80546001019055565b620002ac828260405180602001604052806000815250620002df60201b60201c565b620002eb838362000357565b620002fa60008484846200049f565b620003525760405162461bcd60e51b815260206004820152603260248201526000805160206200280e83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d8565b505050565b6001600160a01b038216620003af5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001d8565b6000818152600260205260409020546001600160a01b031615620004165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001d8565b6001600160a01b038216600090815260036020526040812080546001929062000441908490620006ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000620004c0846001600160a01b0316620005f860201b62000fc11760201c565b15620005ec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004fa90339089908890889060040162000715565b6020604051808303816000875af192505050801562000538575060408051601f3d908101601f19168201909252620005359181019062000790565b60015b620005d1573d80801562000569576040519150601f19603f3d011682016040523d82523d6000602084013e6200056e565b606091505b508051620005c95760405162461bcd60e51b815260206004820152603260248201526000805160206200280e83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620001d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005f0565b5060015b949350505050565b3b151590565b8280546200060c90620007c3565b90600052602060002090601f0160209004810192826200063057600085556200067b565b82601f106200064b57805160ff19168380011785556200067b565b828001600101855582156200067b579182015b828111156200067b5782518255916020019190600101906200065e565b50620006899291506200068d565b5090565b5b808211156200068957600081556001016200068e565b634e487b7160e01b600052601160045260246000fd5b60008219821115620006d057620006d0620006a4565b500190565b6000816000190483118215151615620006f257620006f2620006a4565b500290565b60006000198214156200070e576200070e620006a4565b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620007645785810182015185820160a00152810162000746565b828111156200077757600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620007a357600080fd5b81516001600160e01b031981168114620007bc57600080fd5b9392505050565b600181811c90821680620007d857607f821691505b60208210811415620007fa57634e487b7160e01b600052602260045260246000fd5b50919050565b611ffe80620008106000396000f3fe6080604052600436106101ed5760003560e01c80637040d73f1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461053e578063d5abeb011461055e578063e985e9c514610574578063f2fde38b14610594578063f74568cc146105b457600080fd5b8063a22cb465146104bd578063ab0bcc41146104dd578063b88d4fde146104fe578063c4e370951461051e57600080fd5b80638da5cb5b116100dc5780638da5cb5b146104575780638ef79e911461047557806395d89b4114610495578063a0712d68146104aa57600080fd5b80637040d73f146103eb57806370a082311461040b578063715018a61461042b5780637824407f1461044057600080fd5b80633ccfd60b116101855780636352211e116101545780636352211e14610380578063681aa362146103a05780636be0d5ce146103b65780636c9c2faf146103d657600080fd5b80633ccfd60b1461031657806342842e0e1461032b57806344a0d68a1461034b5780634e99b8001461036b57600080fd5b8063095ea7b3116101c1578063095ea7b31461029a5780631370128e146102bc57806313faede6146102e057806323b872dd146102f657600080fd5b8062a6840e146101f257806301ffc9a71461021d57806306fdde031461024d578063081812fc14610262575b600080fd5b3480156101fe57600080fd5b506102076105d4565b60405161021491906119ad565b60405180910390f35b34801561022957600080fd5b5061023d6102383660046119d6565b610662565b6040519015158152602001610214565b34801561025957600080fd5b506102076106b4565b34801561026e57600080fd5b5061028261027d3660046119f3565b610746565b6040516001600160a01b039091168152602001610214565b3480156102a657600080fd5b506102ba6102b5366004611a21565b6107e0565b005b3480156102c857600080fd5b506102d2600b5481565b604051908152602001610214565b3480156102ec57600080fd5b506102d260095481565b34801561030257600080fd5b506102ba610311366004611a4d565b6108f6565b34801561032257600080fd5b506102ba610927565b34801561033757600080fd5b506102ba610346366004611a4d565b6109c5565b34801561035757600080fd5b506102ba6103663660046119f3565b6109e0565b34801561037757600080fd5b50610207610a0f565b34801561038c57600080fd5b5061028261039b3660046119f3565b610a1c565b3480156103ac57600080fd5b506102d2600a5481565b3480156103c257600080fd5b506102ba6103d1366004611b1a565b610a93565b3480156103e257600080fd5b506102d2610ad4565b3480156103f757600080fd5b506102ba6104063660046119f3565b610ae4565b34801561041757600080fd5b506102d2610426366004611b63565b610b13565b34801561043757600080fd5b506102ba610b9a565b34801561044c57600080fd5b50600d546102d29081565b34801561046357600080fd5b506006546001600160a01b0316610282565b34801561048157600080fd5b506102ba610490366004611b1a565b610bd0565b3480156104a157600080fd5b50610207610c0d565b6102ba6104b83660046119f3565b610c1c565b3480156104c957600080fd5b506102ba6104d8366004611b95565b610cc9565b3480156104e957600080fd5b5060065461023d90600160a01b900460ff1681565b34801561050a57600080fd5b506102ba610519366004611bca565b610d8e565b34801561052a57600080fd5b506102ba610539366004611c4a565b610dc6565b34801561054a57600080fd5b506102076105593660046119f3565b610e0e565b34801561056a57600080fd5b506102d2600c5481565b34801561058057600080fd5b5061023d61058f366004611c65565b610eaa565b3480156105a057600080fd5b506102ba6105af366004611b63565b610eed565b3480156105c057600080fd5b506102ba6105cf3660046119f3565b610f85565b600880546105e190611c9e565b80601f016020809104026020016040519081016040528092919081815260200182805461060d90611c9e565b801561065a5780601f1061062f5761010080835404028352916020019161065a565b820191906000526020600020905b81548152906001019060200180831161063d57829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b148061069357506001600160e01b03198216635b5e139f60e01b145b806106ae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106c390611c9e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90611c9e565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107eb82610a1c565b9050806001600160a01b0316836001600160a01b031614156108595760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107bb565b336001600160a01b038216148061087557506108758133610eaa565b6108e75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107bb565b6108f18383610fc7565b505050565b6109003382611035565b61091c5760405162461bcd60e51b81526004016107bb90611cd9565b6108f183838361110c565b6006546001600160a01b031633146109515760405162461bcd60e51b81526004016107bb90611d2a565b60006109656006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109af576040519150601f19603f3d011682016040523d82523d6000602084013e6109b4565b606091505b50509050806109c257600080fd5b50565b6108f183838360405180602001604052806000815250610d8e565b6006546001600160a01b03163314610a0a5760405162461bcd60e51b81526004016107bb90611d2a565b600955565b600780546105e190611c9e565b6000818152600260205260408120546001600160a01b0316806106ae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107bb565b6006546001600160a01b03163314610abd5760405162461bcd60e51b81526004016107bb90611d2a565b8051610ad09060089060208401906118bc565b5050565b6000610adf600d5490565b905090565b6006546001600160a01b03163314610b0e5760405162461bcd60e51b81526004016107bb90611d2a565b600b55565b60006001600160a01b038216610b7e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107bb565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bc45760405162461bcd60e51b81526004016107bb90611d2a565b610bce60006112ac565b565b6006546001600160a01b03163314610bfa5760405162461bcd60e51b81526004016107bb90611d2a565b8051610ad09060079060208401906118bc565b6060600180546106c390611c9e565b600654600160a01b900460ff16610c6c5760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016107bb565b600081118015610c7e5750600a548111155b610cc05760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016107bb565b6109c2816112fe565b6001600160a01b038216331415610d225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107bb565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d983383611035565b610db45760405162461bcd60e51b81526004016107bb90611cd9565b610dc08484848461141c565b50505050565b6006546001600160a01b03163314610df05760405162461bcd60e51b81526004016107bb90611d2a565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260409020546060906001600160a01b0316610e755760405162461bcd60e51b815260206004820152601b60248201527f517565727920666f72206e6f6e6578697374656e7420746f6b656e000000000060448201526064016107bb565b6007610e808361144f565b6008604051602001610e9493929190611df9565b6040516020818303038152906040529050919050565b6000610eb6838361154d565b80610ee657506001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b6006546001600160a01b03163314610f175760405162461bcd60e51b81526004016107bb90611d2a565b6001600160a01b038116610f7c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bb565b6109c2816112ac565b6006546001600160a01b03163314610faf5760405162461bcd60e51b81526004016107bb90611d2a565b600a55565b5490565b80546001019055565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ffc82610a1c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107bb565b60006110b983610a1c565b9050806001600160a01b0316846001600160a01b031614806110f45750836001600160a01b03166110e984610746565b6001600160a01b0316145b8061110457506111048185610eaa565b949350505050565b826001600160a01b031661111f82610a1c565b6001600160a01b0316146111875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107bb565b6001600160a01b0382166111e95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107bb565b6111f4600082610fc7565b6001600160a01b038316600090815260036020526040812080546001929061121d908490611e42565b90915550506001600160a01b038216600090815260036020526040812080546001929061124b908490611e59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80611308600d5490565b6113129190611e59565b600b5410156113c557600c5481611328600d5490565b6113329190611e59565b11156113755760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016107bb565b806009546113839190611e71565b3410156113c55760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce840cae8d60831b60448201526064016107bb565b60005b81811015610ad05760006113db600d5490565b9050600c54811015611409576113f5600d80546001019055565b61140933611404836001611e59565b61162f565b508061141481611e90565b9150506113c8565b61142784848461110c565b61143384848484611649565b610dc05760405162461bcd60e51b81526004016107bb90611eab565b6060816114735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561149d578061148781611e90565b91506114969050600a83611f13565b9150611477565b60008167ffffffffffffffff8111156114b8576114b8611a8e565b6040519080825280601f01601f1916602001820160405280156114e2576020820181803683370190505b5090505b8415611104576114f7600183611e42565b9150611504600a86611f27565b61150f906030611e59565b60f81b81838151811061152457611524611f3b565b60200101906001600160f81b031916908160001a905350611546600a86611f13565b94506114e6565b600080466001811461156657600481146115825761159a565b73a5409ec958c83c3f309868babaca7c86dcb077c1915061159a565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590611104575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c455279190602401602060405180830381865afa1580156115f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161d9190611f51565b6001600160a01b031614949350505050565b610ad0828260405180602001604052806000815250611747565b60006001600160a01b0384163b1561173c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061168d903390899088908890600401611f6e565b6020604051808303816000875af19250505080156116c8575060408051601f3d908101601f191682019092526116c591810190611fab565b60015b611722573d8080156116f6576040519150601f19603f3d011682016040523d82523d6000602084013e6116fb565b606091505b50805161171a5760405162461bcd60e51b81526004016107bb90611eab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611104565b506001949350505050565b611751838361177a565b61175e6000848484611649565b6108f15760405162461bcd60e51b81526004016107bb90611eab565b6001600160a01b0382166117d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107bb565b6000818152600260205260409020546001600160a01b0316156118355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107bb565b6001600160a01b038216600090815260036020526040812080546001929061185e908490611e59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546118c890611c9e565b90600052602060002090601f0160209004810192826118ea5760008555611930565b82601f1061190357805160ff1916838001178555611930565b82800160010185558215611930579182015b82811115611930578251825591602001919060010190611915565b5061193c929150611940565b5090565b5b8082111561193c5760008155600101611941565b60005b83811015611970578181015183820152602001611958565b83811115610dc05750506000910152565b60008151808452611999816020860160208601611955565b601f01601f19169290920160200192915050565b602081526000610ee66020830184611981565b6001600160e01b0319811681146109c257600080fd5b6000602082840312156119e857600080fd5b8135610ee6816119c0565b600060208284031215611a0557600080fd5b5035919050565b6001600160a01b03811681146109c257600080fd5b60008060408385031215611a3457600080fd5b8235611a3f81611a0c565b946020939093013593505050565b600080600060608486031215611a6257600080fd5b8335611a6d81611a0c565b92506020840135611a7d81611a0c565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611abf57611abf611a8e565b604051601f8501601f19908116603f01168101908282118183101715611ae757611ae7611a8e565b81604052809350858152868686011115611b0057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b2c57600080fd5b813567ffffffffffffffff811115611b4357600080fd5b8201601f81018413611b5457600080fd5b61110484823560208401611aa4565b600060208284031215611b7557600080fd5b8135610ee681611a0c565b80358015158114611b9057600080fd5b919050565b60008060408385031215611ba857600080fd5b8235611bb381611a0c565b9150611bc160208401611b80565b90509250929050565b60008060008060808587031215611be057600080fd5b8435611beb81611a0c565b93506020850135611bfb81611a0c565b925060408501359150606085013567ffffffffffffffff811115611c1e57600080fd5b8501601f81018713611c2f57600080fd5b611c3e87823560208401611aa4565b91505092959194509250565b600060208284031215611c5c57600080fd5b610ee682611b80565b60008060408385031215611c7857600080fd5b8235611c8381611a0c565b91506020830135611c9381611a0c565b809150509250929050565b600181811c90821680611cb257607f821691505b60208210811415611cd357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8054600090600181811c9080831680611d7957607f831692505b6020808410821415611d9b57634e487b7160e01b600052602260045260246000fd5b818015611daf5760018114611dc057611ded565b60ff19861689528489019650611ded565b60008881526020902060005b86811015611de55781548b820152908501908301611dcc565b505084890196505b50505050505092915050565b6000611e058286611d5f565b8451611e15818360208901611955565b611e2181830186611d5f565b979650505050505050565b634e487b7160e01b600052601160045260246000fd5b600082821015611e5457611e54611e2c565b500390565b60008219821115611e6c57611e6c611e2c565b500190565b6000816000190483118215151615611e8b57611e8b611e2c565b500290565b6000600019821415611ea457611ea4611e2c565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611f2257611f22611efd565b500490565b600082611f3657611f36611efd565b500690565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f6357600080fd5b8151610ee681611a0c565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fa190830184611981565b9695505050505050565b600060208284031215611fbd57600080fd5b8151610ee6816119c056fea2646970667358221220d15eec2122df4e1b13270dd68a9dfc7b304f9260fcf6c44e684805606a4d316864736f6c634300080b00334552433732313a207472616e7366657220746f206e6f6e204552433732315265

Deployed Bytecode

0x6080604052600436106101ed5760003560e01c80637040d73f1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461053e578063d5abeb011461055e578063e985e9c514610574578063f2fde38b14610594578063f74568cc146105b457600080fd5b8063a22cb465146104bd578063ab0bcc41146104dd578063b88d4fde146104fe578063c4e370951461051e57600080fd5b80638da5cb5b116100dc5780638da5cb5b146104575780638ef79e911461047557806395d89b4114610495578063a0712d68146104aa57600080fd5b80637040d73f146103eb57806370a082311461040b578063715018a61461042b5780637824407f1461044057600080fd5b80633ccfd60b116101855780636352211e116101545780636352211e14610380578063681aa362146103a05780636be0d5ce146103b65780636c9c2faf146103d657600080fd5b80633ccfd60b1461031657806342842e0e1461032b57806344a0d68a1461034b5780634e99b8001461036b57600080fd5b8063095ea7b3116101c1578063095ea7b31461029a5780631370128e146102bc57806313faede6146102e057806323b872dd146102f657600080fd5b8062a6840e146101f257806301ffc9a71461021d57806306fdde031461024d578063081812fc14610262575b600080fd5b3480156101fe57600080fd5b506102076105d4565b60405161021491906119ad565b60405180910390f35b34801561022957600080fd5b5061023d6102383660046119d6565b610662565b6040519015158152602001610214565b34801561025957600080fd5b506102076106b4565b34801561026e57600080fd5b5061028261027d3660046119f3565b610746565b6040516001600160a01b039091168152602001610214565b3480156102a657600080fd5b506102ba6102b5366004611a21565b6107e0565b005b3480156102c857600080fd5b506102d2600b5481565b604051908152602001610214565b3480156102ec57600080fd5b506102d260095481565b34801561030257600080fd5b506102ba610311366004611a4d565b6108f6565b34801561032257600080fd5b506102ba610927565b34801561033757600080fd5b506102ba610346366004611a4d565b6109c5565b34801561035757600080fd5b506102ba6103663660046119f3565b6109e0565b34801561037757600080fd5b50610207610a0f565b34801561038c57600080fd5b5061028261039b3660046119f3565b610a1c565b3480156103ac57600080fd5b506102d2600a5481565b3480156103c257600080fd5b506102ba6103d1366004611b1a565b610a93565b3480156103e257600080fd5b506102d2610ad4565b3480156103f757600080fd5b506102ba6104063660046119f3565b610ae4565b34801561041757600080fd5b506102d2610426366004611b63565b610b13565b34801561043757600080fd5b506102ba610b9a565b34801561044c57600080fd5b50600d546102d29081565b34801561046357600080fd5b506006546001600160a01b0316610282565b34801561048157600080fd5b506102ba610490366004611b1a565b610bd0565b3480156104a157600080fd5b50610207610c0d565b6102ba6104b83660046119f3565b610c1c565b3480156104c957600080fd5b506102ba6104d8366004611b95565b610cc9565b3480156104e957600080fd5b5060065461023d90600160a01b900460ff1681565b34801561050a57600080fd5b506102ba610519366004611bca565b610d8e565b34801561052a57600080fd5b506102ba610539366004611c4a565b610dc6565b34801561054a57600080fd5b506102076105593660046119f3565b610e0e565b34801561056a57600080fd5b506102d2600c5481565b34801561058057600080fd5b5061023d61058f366004611c65565b610eaa565b3480156105a057600080fd5b506102ba6105af366004611b63565b610eed565b3480156105c057600080fd5b506102ba6105cf3660046119f3565b610f85565b600880546105e190611c9e565b80601f016020809104026020016040519081016040528092919081815260200182805461060d90611c9e565b801561065a5780601f1061062f5761010080835404028352916020019161065a565b820191906000526020600020905b81548152906001019060200180831161063d57829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b148061069357506001600160e01b03198216635b5e139f60e01b145b806106ae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546106c390611c9e565b80601f01602080910402602001604051908101604052809291908181526020018280546106ef90611c9e565b801561073c5780601f106107115761010080835404028352916020019161073c565b820191906000526020600020905b81548152906001019060200180831161071f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107c45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107eb82610a1c565b9050806001600160a01b0316836001600160a01b031614156108595760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107bb565b336001600160a01b038216148061087557506108758133610eaa565b6108e75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107bb565b6108f18383610fc7565b505050565b6109003382611035565b61091c5760405162461bcd60e51b81526004016107bb90611cd9565b6108f183838361110c565b6006546001600160a01b031633146109515760405162461bcd60e51b81526004016107bb90611d2a565b60006109656006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146109af576040519150601f19603f3d011682016040523d82523d6000602084013e6109b4565b606091505b50509050806109c257600080fd5b50565b6108f183838360405180602001604052806000815250610d8e565b6006546001600160a01b03163314610a0a5760405162461bcd60e51b81526004016107bb90611d2a565b600955565b600780546105e190611c9e565b6000818152600260205260408120546001600160a01b0316806106ae5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107bb565b6006546001600160a01b03163314610abd5760405162461bcd60e51b81526004016107bb90611d2a565b8051610ad09060089060208401906118bc565b5050565b6000610adf600d5490565b905090565b6006546001600160a01b03163314610b0e5760405162461bcd60e51b81526004016107bb90611d2a565b600b55565b60006001600160a01b038216610b7e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107bb565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610bc45760405162461bcd60e51b81526004016107bb90611d2a565b610bce60006112ac565b565b6006546001600160a01b03163314610bfa5760405162461bcd60e51b81526004016107bb90611d2a565b8051610ad09060079060208401906118bc565b6060600180546106c390611c9e565b600654600160a01b900460ff16610c6c5760405162461bcd60e51b815260206004820152601460248201527314d85b19481a185cc81b9bdd081cdd185c9d195960621b60448201526064016107bb565b600081118015610c7e5750600a548111155b610cc05760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b60448201526064016107bb565b6109c2816112fe565b6001600160a01b038216331415610d225760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107bb565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d983383611035565b610db45760405162461bcd60e51b81526004016107bb90611cd9565b610dc08484848461141c565b50505050565b6006546001600160a01b03163314610df05760405162461bcd60e51b81526004016107bb90611d2a565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260409020546060906001600160a01b0316610e755760405162461bcd60e51b815260206004820152601b60248201527f517565727920666f72206e6f6e6578697374656e7420746f6b656e000000000060448201526064016107bb565b6007610e808361144f565b6008604051602001610e9493929190611df9565b6040516020818303038152906040529050919050565b6000610eb6838361154d565b80610ee657506001600160a01b0380841660009081526005602090815260408083209386168352929052205460ff165b9392505050565b6006546001600160a01b03163314610f175760405162461bcd60e51b81526004016107bb90611d2a565b6001600160a01b038116610f7c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bb565b6109c2816112ac565b6006546001600160a01b03163314610faf5760405162461bcd60e51b81526004016107bb90611d2a565b600a55565b5490565b80546001019055565b3b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610ffc82610a1c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107bb565b60006110b983610a1c565b9050806001600160a01b0316846001600160a01b031614806110f45750836001600160a01b03166110e984610746565b6001600160a01b0316145b8061110457506111048185610eaa565b949350505050565b826001600160a01b031661111f82610a1c565b6001600160a01b0316146111875760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107bb565b6001600160a01b0382166111e95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107bb565b6111f4600082610fc7565b6001600160a01b038316600090815260036020526040812080546001929061121d908490611e42565b90915550506001600160a01b038216600090815260036020526040812080546001929061124b908490611e59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80611308600d5490565b6113129190611e59565b600b5410156113c557600c5481611328600d5490565b6113329190611e59565b11156113755760405162461bcd60e51b815260206004820152601260248201527113585e081cdd5c1c1b1e481c995858da195960721b60448201526064016107bb565b806009546113839190611e71565b3410156113c55760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce840cae8d60831b60448201526064016107bb565b60005b81811015610ad05760006113db600d5490565b9050600c54811015611409576113f5600d80546001019055565b61140933611404836001611e59565b61162f565b508061141481611e90565b9150506113c8565b61142784848461110c565b61143384848484611649565b610dc05760405162461bcd60e51b81526004016107bb90611eab565b6060816114735750506040805180820190915260018152600360fc1b602082015290565b8160005b811561149d578061148781611e90565b91506114969050600a83611f13565b9150611477565b60008167ffffffffffffffff8111156114b8576114b8611a8e565b6040519080825280601f01601f1916602001820160405280156114e2576020820181803683370190505b5090505b8415611104576114f7600183611e42565b9150611504600a86611f27565b61150f906030611e59565b60f81b81838151811061152457611524611f3b565b60200101906001600160f81b031916908160001a905350611546600a86611f13565b94506114e6565b600080466001811461156657600481146115825761159a565b73a5409ec958c83c3f309868babaca7c86dcb077c1915061159a565b73f57b2c51ded3a29e6891aba85459d600256cf31791505b506001600160a01b03811615801590611104575060405163c455279160e01b81526001600160a01b038581166004830152808516919083169063c455279190602401602060405180830381865afa1580156115f9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161d9190611f51565b6001600160a01b031614949350505050565b610ad0828260405180602001604052806000815250611747565b60006001600160a01b0384163b1561173c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061168d903390899088908890600401611f6e565b6020604051808303816000875af19250505080156116c8575060408051601f3d908101601f191682019092526116c591810190611fab565b60015b611722573d8080156116f6576040519150601f19603f3d011682016040523d82523d6000602084013e6116fb565b606091505b50805161171a5760405162461bcd60e51b81526004016107bb90611eab565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611104565b506001949350505050565b611751838361177a565b61175e6000848484611649565b6108f15760405162461bcd60e51b81526004016107bb90611eab565b6001600160a01b0382166117d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107bb565b6000818152600260205260409020546001600160a01b0316156118355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107bb565b6001600160a01b038216600090815260036020526040812080546001929061185e908490611e59565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546118c890611c9e565b90600052602060002090601f0160209004810192826118ea5760008555611930565b82601f1061190357805160ff1916838001178555611930565b82800160010185558215611930579182015b82811115611930578251825591602001919060010190611915565b5061193c929150611940565b5090565b5b8082111561193c5760008155600101611941565b60005b83811015611970578181015183820152602001611958565b83811115610dc05750506000910152565b60008151808452611999816020860160208601611955565b601f01601f19169290920160200192915050565b602081526000610ee66020830184611981565b6001600160e01b0319811681146109c257600080fd5b6000602082840312156119e857600080fd5b8135610ee6816119c0565b600060208284031215611a0557600080fd5b5035919050565b6001600160a01b03811681146109c257600080fd5b60008060408385031215611a3457600080fd5b8235611a3f81611a0c565b946020939093013593505050565b600080600060608486031215611a6257600080fd5b8335611a6d81611a0c565b92506020840135611a7d81611a0c565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611abf57611abf611a8e565b604051601f8501601f19908116603f01168101908282118183101715611ae757611ae7611a8e565b81604052809350858152868686011115611b0057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611b2c57600080fd5b813567ffffffffffffffff811115611b4357600080fd5b8201601f81018413611b5457600080fd5b61110484823560208401611aa4565b600060208284031215611b7557600080fd5b8135610ee681611a0c565b80358015158114611b9057600080fd5b919050565b60008060408385031215611ba857600080fd5b8235611bb381611a0c565b9150611bc160208401611b80565b90509250929050565b60008060008060808587031215611be057600080fd5b8435611beb81611a0c565b93506020850135611bfb81611a0c565b925060408501359150606085013567ffffffffffffffff811115611c1e57600080fd5b8501601f81018713611c2f57600080fd5b611c3e87823560208401611aa4565b91505092959194509250565b600060208284031215611c5c57600080fd5b610ee682611b80565b60008060408385031215611c7857600080fd5b8235611c8381611a0c565b91506020830135611c9381611a0c565b809150509250929050565b600181811c90821680611cb257607f821691505b60208210811415611cd357634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b8054600090600181811c9080831680611d7957607f831692505b6020808410821415611d9b57634e487b7160e01b600052602260045260246000fd5b818015611daf5760018114611dc057611ded565b60ff19861689528489019650611ded565b60008881526020902060005b86811015611de55781548b820152908501908301611dcc565b505084890196505b50505050505092915050565b6000611e058286611d5f565b8451611e15818360208901611955565b611e2181830186611d5f565b979650505050505050565b634e487b7160e01b600052601160045260246000fd5b600082821015611e5457611e54611e2c565b500390565b60008219821115611e6c57611e6c611e2c565b500190565b6000816000190483118215151615611e8b57611e8b611e2c565b500290565b6000600019821415611ea457611ea4611e2c565b5060010190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611f2257611f22611efd565b500490565b600082611f3657611f36611efd565b500690565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611f6357600080fd5b8151610ee681611a0c565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fa190830184611981565b9695505050505050565b600060208284031215611fbd57600080fd5b8151610ee6816119c056fea2646970667358221220d15eec2122df4e1b13270dd68a9dfc7b304f9260fcf6c44e684805606a4d316864736f6c634300080b0033

Deployed Bytecode Sourcemap

38615:3034:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38803:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24733:355;;;;;;;;;;-1:-1:-1;24733:355:0;;;;;:::i;:::-;;:::i;:::-;;;1316:14:1;;1309:22;1291:41;;1279:2;1264:18;24733:355:0;1151:187:1;25902:100:0;;;;;;;;;;;;;:::i;27595:308::-;;;;;;;;;;-1:-1:-1;27595:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27595:308:0;1528:203:1;27118:411:0;;;;;;;;;;-1:-1:-1;27118:411:0;;;;;:::i;:::-;;:::i;:::-;;38929:26;;;;;;;;;;;;;;;;;;;2338:25:1;;;2326:2;2311:18;38929:26:0;2192:177:1;38852:32:0;;;;;;;;;;;;;;;;28654:376;;;;;;;;;;-1:-1:-1;28654:376:0;;;;;:::i;:::-;;:::i;41171:181::-;;;;;;;;;;;;;:::i;29101:185::-;;;;;;;;;;-1:-1:-1;29101:185:0;;;;;:::i;:::-;;:::i;40884:82::-;;;;;;;;;;-1:-1:-1;40884:82:0;;;;;:::i;:::-;;:::i;38770:26::-;;;;;;;;;;;;;:::i;25509:326::-;;;;;;;;;;-1:-1:-1;25509:326:0;;;;;:::i;:::-;;:::i;38891:31::-;;;;;;;;;;;;;;;;40494:167;;;;;;;;;;-1:-1:-1;40494:167:0;;;;;:::i;:::-;;:::i;40386:100::-;;;;;;;;;;;;;:::i;40974:82::-;;;;;;;;;;-1:-1:-1;40974:82:0;;;;;:::i;:::-;;:::i;25152:295::-;;;;;;;;;;-1:-1:-1;25152:295:0;;;;;:::i;:::-;;:::i;5935:94::-;;;;;;;;;;;;;:::i;39002:35::-;;;;;;;;;;-1:-1:-1;39002:35:0;;;;;;5284:87;;;;;;;;;;-1:-1:-1;5357:6:0;;-1:-1:-1;;;;;5357:6:0;5284:87;;40669:110;;;;;;;;;;-1:-1:-1;40669:110:0;;;;;:::i;:::-;;:::i;26071:104::-;;;;;;;;;;;;;:::i;39556:215::-;;;;;;:::i;:::-;;:::i;27975:327::-;;;;;;;;;;-1:-1:-1;27975:327:0;;;;;:::i;:::-;;:::i;38734:29::-;;;;;;;;;;-1:-1:-1;38734:29:0;;;;-1:-1:-1;;;38734:29:0;;;;;;29357:365;;;;;;;;;;-1:-1:-1;29357:365:0;;;;;:::i;:::-;;:::i;40787:89::-;;;;;;;;;;-1:-1:-1;40787:89:0;;;;;:::i;:::-;;:::i;39124:424::-;;;;;;;;;;-1:-1:-1;39124:424:0;;;;;:::i;:::-;;:::i;38962:31::-;;;;;;;;;;;;;;;;41360:286;;;;;;;;;;-1:-1:-1;41360:286:0;;;;;:::i;:::-;;:::i;6184:229::-;;;;;;;;;;-1:-1:-1;6184:229:0;;;;;:::i;:::-;;:::i;41064:99::-;;;;;;;;;;-1:-1:-1;41064:99:0;;;;;:::i;:::-;;:::i;38803:42::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24733:355::-;24880:4;-1:-1:-1;;;;;;24922:40:0;;-1:-1:-1;;;24922:40:0;;:105;;-1:-1:-1;;;;;;;24979:48:0;;-1:-1:-1;;;24979:48:0;24922:105;:158;;;-1:-1:-1;;;;;;;;;;17778:40:0;;;25044:36;24902:178;24733:355;-1:-1:-1;;24733:355:0:o;25902:100::-;25956:13;25989:5;25982:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25902:100;:::o;27595:308::-;27716:7;31358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31358:16:0;27741:110;;;;-1:-1:-1;;;27741:110:0;;6762:2:1;27741:110:0;;;6744:21:1;6801:2;6781:18;;;6774:30;6840:34;6820:18;;;6813:62;-1:-1:-1;;;6891:18:1;;;6884:42;6943:19;;27741:110:0;;;;;;;;;-1:-1:-1;27871:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27871:24:0;;27595:308::o;27118:411::-;27199:13;27215:23;27230:7;27215:14;:23::i;:::-;27199:39;;27263:5;-1:-1:-1;;;;;27257:11:0;:2;-1:-1:-1;;;;;27257:11:0;;;27249:57;;;;-1:-1:-1;;;27249:57:0;;7175:2:1;27249:57:0;;;7157:21:1;7214:2;7194:18;;;7187:30;7253:34;7233:18;;;7226:62;-1:-1:-1;;;7304:18:1;;;7297:31;7345:19;;27249:57:0;6973:397:1;27249:57:0;4158:10;-1:-1:-1;;;;;27341:21:0;;;;:62;;-1:-1:-1;27366:37:0;27383:5;4158:10;41360:286;:::i;27366:37::-;27319:168;;;;-1:-1:-1;;;27319:168:0;;7577:2:1;27319:168:0;;;7559:21:1;7616:2;7596:18;;;7589:30;7655:34;7635:18;;;7628:62;7726:26;7706:18;;;7699:54;7770:19;;27319:168:0;7375:420:1;27319:168:0;27500:21;27509:2;27513:7;27500:8;:21::i;:::-;27188:341;27118:411;;:::o;28654:376::-;28863:41;4158:10;28896:7;28863:18;:41::i;:::-;28841:140;;;;-1:-1:-1;;;28841:140:0;;;;;;;:::i;:::-;28994:28;29004:4;29010:2;29014:7;28994:9;:28::i;41171:181::-;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;41220:12:::1;41246:7;5357:6:::0;;-1:-1:-1;;;;;5357:6:0;;5284:87;41246:7:::1;-1:-1:-1::0;;;;;41238:21:0::1;41267;41238:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41219:98;;;41336:7;41328:16;;;::::0;::::1;;41208:144;41171:181::o:0;29101:185::-;29239:39;29256:4;29262:2;29266:7;29239:39;;;;;;;;;;;;:16;:39::i;40884:82::-;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;40946:4:::1;:12:::0;40884:82::o;38770:26::-;;;;;;;:::i;25509:326::-;25626:7;25667:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25667:16:0;25716:19;25694:110;;;;-1:-1:-1;;;25694:110:0;;8991:2:1;25694:110:0;;;8973:21:1;9030:2;9010:18;;;9003:30;9069:34;9049:18;;;9042:62;-1:-1:-1;;;9120:18:1;;;9113:39;9169:19;;25694:110:0;8789:405:1;40494:167:0;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;40613:40;;::::1;::::0;:18:::1;::::0;:40:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40494:167:::0;:::o;40386:100::-;40430:7;40457:21;:11;912:14;;820:114;40457:21;40450:28;;40386:100;:::o;40974:82::-;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;41036:4:::1;:12:::0;40974:82::o;25152:295::-;25269:7;-1:-1:-1;;;;;25316:19:0;;25294:111;;;;-1:-1:-1;;;25294:111:0;;9401:2:1;25294:111:0;;;9383:21:1;9440:2;9420:18;;;9413:30;9479:34;9459:18;;;9452:62;-1:-1:-1;;;9530:18:1;;;9523:40;9580:19;;25294:111:0;9199:406:1;25294:111:0;-1:-1:-1;;;;;;25423:16:0;;;;;:9;:16;;;;;;;25152:295::o;5935:94::-;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;6000:21:::1;6018:1;6000:9;:21::i;:::-;5935:94::o:0;40669:110::-;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;40748:23;;::::1;::::0;:12:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;26071:104::-:0;26127:13;26160:7;26153:14;;;;;:::i;39556:215::-;39622:9;;-1:-1:-1;;;39622:9:0;;;;39614:42;;;;-1:-1:-1;;;39614:42:0;;9812:2:1;39614:42:0;;;9794:21:1;9851:2;9831:18;;;9824:30;-1:-1:-1;;;9870:18:1;;;9863:50;9930:18;;39614:42:0;9610:344:1;39614:42:0;39684:1;39675:6;:10;:35;;;;;39699:11;;39689:6;:21;;39675:35;39667:67;;;;-1:-1:-1;;;39667:67:0;;10161:2:1;39667:67:0;;;10143:21:1;10200:2;10180:18;;;10173:30;-1:-1:-1;;;10219:18:1;;;10212:49;10278:18;;39667:67:0;9959:343:1;39667:67:0;39745:18;39756:6;39745:10;:18::i;27975:327::-;-1:-1:-1;;;;;28110:24:0;;4158:10;28110:24;;28102:62;;;;-1:-1:-1;;;28102:62:0;;10509:2:1;28102:62:0;;;10491:21:1;10548:2;10528:18;;;10521:30;10587:27;10567:18;;;10560:55;10632:18;;28102:62:0;10307:349:1;28102:62:0;4158:10;28177:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28177:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28177:53:0;;;;;;;;;;28246:48;;1291:41:1;;;28177:42:0;;4158:10;28246:48;;1264:18:1;28246:48:0;;;;;;;27975:327;;:::o;29357:365::-;29546:41;4158:10;29579:7;29546:18;:41::i;:::-;29524:140;;;;-1:-1:-1;;;29524:140:0;;;;;;;:::i;:::-;29675:39;29689:4;29695:2;29699:7;29708:5;29675:13;:39::i;:::-;29357:365;;;;:::o;40787:89::-;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;40851:9:::1;:17:::0;;;::::1;;-1:-1:-1::0;;;40851:17:0::1;-1:-1:-1::0;;;;40851:17:0;;::::1;::::0;;;::::1;::::0;;40787:89::o;39124:424::-;31334:4;31358:16;;;:7;:16;;;;;;39226:13;;-1:-1:-1;;;;;31358:16:0;39257:57;;;;-1:-1:-1;;;39257:57:0;;10863:2:1;39257:57:0;;;10845:21:1;10902:2;10882:18;;;10875:30;10941:29;10921:18;;;10914:57;10988:18;;39257:57:0;10661:351:1;39257:57:0;39411:12;39446:19;:8;:17;:19::i;:::-;39488:18;39372:153;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39327:213;;39124:424;;;:::o;41360:286::-;41485:4;41527:55;41566:5;41573:8;41527:38;:55::i;:::-;:111;;;-1:-1:-1;;;;;;28544:25:0;;;28515:4;28544:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41599:39;41507:131;41360:286;-1:-1:-1;;;41360:286:0:o;6184:229::-;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6287:22:0;::::1;6265:110;;;::::0;-1:-1:-1;;;6265:110:0;;12784:2:1;6265:110:0::1;::::0;::::1;12766:21:1::0;12823:2;12803:18;;;12796:30;12862:34;12842:18;;;12835:62;-1:-1:-1;;;12913:18:1;;;12906:36;12959:19;;6265:110:0::1;12582:402:1::0;6265:110:0::1;6386:19;6396:8;6386:9;:19::i;41064:99::-:0;5357:6;;-1:-1:-1;;;;;5357:6:0;4158:10;5504:23;5496:68;;;;-1:-1:-1;;;5496:68:0;;;;;;;:::i;:::-;41133:11:::1;:22:::0;41064:99::o;820:114::-;912:14;;820:114::o;942:127::-;1031:19;;1049:1;1031:19;;;942:127::o;7337:387::-;7660:20;7708:8;;;7337:387::o;35392:174::-;35467:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35467:29:0;-1:-1:-1;;;;;35467:29:0;;;;;;;;:24;;35521:23;35467:24;35521:14;:23::i;:::-;-1:-1:-1;;;;;35512:46:0;;;;;;;;;;;35392:174;;:::o;31563:452::-;31692:4;31358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31358:16:0;31714:110;;;;-1:-1:-1;;;31714:110:0;;13191:2:1;31714:110:0;;;13173:21:1;13230:2;13210:18;;;13203:30;13269:34;13249:18;;;13242:62;-1:-1:-1;;;13320:18:1;;;13313:42;13372:19;;31714:110:0;12989:408:1;31714:110:0;31835:13;31851:23;31866:7;31851:14;:23::i;:::-;31835:39;;31904:5;-1:-1:-1;;;;;31893:16:0;:7;-1:-1:-1;;;;;31893:16:0;;:64;;;;31950:7;-1:-1:-1;;;;;31926:31:0;:20;31938:7;31926:11;:20::i;:::-;-1:-1:-1;;;;;31926:31:0;;31893:64;:113;;;;31974:32;31991:5;31998:7;31974:16;:32::i;:::-;31885:122;31563:452;-1:-1:-1;;;;31563:452:0:o;34659:615::-;34832:4;-1:-1:-1;;;;;34805:31:0;:23;34820:7;34805:14;:23::i;:::-;-1:-1:-1;;;;;34805:31:0;;34783:122;;;;-1:-1:-1;;;34783:122:0;;13604:2:1;34783:122:0;;;13586:21:1;13643:2;13623:18;;;13616:30;13682:34;13662:18;;;13655:62;-1:-1:-1;;;13733:18:1;;;13726:39;13782:19;;34783:122:0;13402:405:1;34783:122:0;-1:-1:-1;;;;;34924:16:0;;34916:65;;;;-1:-1:-1;;;34916:65:0;;14014:2:1;34916:65:0;;;13996:21:1;14053:2;14033:18;;;14026:30;14092:34;14072:18;;;14065:62;-1:-1:-1;;;14143:18:1;;;14136:34;14187:19;;34916:65:0;13812:400:1;34916:65:0;35098:29;35115:1;35119:7;35098:8;:29::i;:::-;-1:-1:-1;;;;;35140:15:0;;;;;;:9;:15;;;;;:20;;35159:1;;35140:15;:20;;35159:1;;35140:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35171:13:0;;;;;;:9;:13;;;;;:18;;35188:1;;35171:13;:18;;35188:1;;35171:18;:::i;:::-;;;;-1:-1:-1;;35200:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35200:21:0;-1:-1:-1;;;;;35200:21:0;;;;;;;;;35239:27;;35200:16;;35239:27;;;;;;;34659:615;;;:::o;6421:173::-;6496:6;;;-1:-1:-1;;;;;6513:17:0;;;-1:-1:-1;;;;;;6513:17:0;;;;;;;6546:40;;6496:6;;;6513:17;6496:6;;6546:40;;6477:16;;6546:40;6466:128;6421:173;:::o;39779:599::-;39870:6;39846:21;:11;912:14;;820:114;39846:21;:30;;;;:::i;:::-;39839:4;;:37;39835:263;;;39953:9;;39943:6;39919:21;:11;912:14;;820:114;39919:21;:30;;;;:::i;:::-;:43;;39893:123;;;;-1:-1:-1;;;39893:123:0;;14814:2:1;39893:123:0;;;14796:21:1;14853:2;14833:18;;;14826:30;-1:-1:-1;;;14872:18:1;;;14865:48;14930:18;;39893:123:0;14612:342:1;39893:123:0;40059:6;40052:4;;:13;;;;:::i;:::-;40039:9;:26;;40031:55;;;;-1:-1:-1;;;40031:55:0;;15334:2:1;40031:55:0;;;15316:21:1;15373:2;15353:18;;;15346:30;-1:-1:-1;;;15392:18:1;;;15385:46;15448:18;;40031:55:0;15132:340:1;40031:55:0;40115:9;40110:261;40134:6;40130:1;:10;40110:261;;;40162:17;40182:21;:11;912:14;;820:114;40182:21;40162:41;;40236:9;;40224;:21;40220:140;;;40266:23;:11;1031:19;;1049:1;1031:19;;;942:127;40266:23;40308:36;40318:10;40330:13;:9;40342:1;40330:13;:::i;:::-;40308:9;:36::i;:::-;-1:-1:-1;40142:3:0;;;;:::i;:::-;;;;40110:261;;30604:352;30761:28;30771:4;30777:2;30781:7;30761:9;:28::i;:::-;30822:48;30845:4;30851:2;30855:7;30864:5;30822:22;:48::i;:::-;30800:148;;;;-1:-1:-1;;;30800:148:0;;;;;;;:::i;1692:723::-;1748:13;1969:10;1965:53;;-1:-1:-1;;1996:10:0;;;;;;;;;;;;-1:-1:-1;;;1996:10:0;;;;;1692:723::o;1965:53::-;2043:5;2028:12;2084:78;2091:9;;2084:78;;2117:8;;;;:::i;:::-;;-1:-1:-1;2140:10:0;;-1:-1:-1;2148:2:0;2140:10;;:::i;:::-;;;2084:78;;;2172:19;2204:6;2194:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2194:17:0;;2172:39;;2222:154;2229:10;;2222:154;;2256:11;2266:1;2256:11;;:::i;:::-;;-1:-1:-1;2325:10:0;2333:2;2325:5;:10;:::i;:::-;2312:24;;:2;:24;:::i;:::-;2299:39;;2282:6;2289;2282:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2282:56:0;;;;;;;;-1:-1:-1;2353:11:0;2362:2;2353:11;;:::i;:::-;;;2222:154;;37914:565;38023:4;38045:22;38109:9;38137:1;38132:95;;;;38246:1;38241:95;;;;38102:234;;38132:95;38170:42;38158:54;;38132:95;;38241;38279:42;38267:54;;38102:234;-1:-1:-1;;;;;;38379:31:0;;;;;;:92;;-1:-1:-1;38435:23:0;;-1:-1:-1;;;38435:23:0;;-1:-1:-1;;;;;1692:32:1;;;38435:23:0;;;1674:51:1;38427:44:0;;;;38435:16;;;;;;1647:18:1;;38435:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;38427:44:0;;;37914:565;-1:-1:-1;;;;37914:565:0:o;32357:110::-;32433:26;32443:2;32447:7;32433:26;;;;;;;;;;;;:9;:26::i;36131:980::-;36286:4;-1:-1:-1;;;;;36307:13:0;;7660:20;7708:8;36303:801;;36360:175;;-1:-1:-1;;;36360:175:0;;-1:-1:-1;;;;;36360:36:0;;;;;:175;;4158:10;;36454:4;;36481:7;;36511:5;;36360:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36360:175:0;;;;;;;;-1:-1:-1;;36360:175:0;;;;;;;;;;;;:::i;:::-;;;36339:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36718:13:0;;36714:320;;36761:108;;-1:-1:-1;;;36761:108:0;;;;;;;:::i;36714:320::-;36984:6;36978:13;36969:6;36965:2;36961:15;36954:38;36339:710;-1:-1:-1;;;;;;36599:51:0;-1:-1:-1;;;36599:51:0;;-1:-1:-1;36592:58:0;;36303:801;-1:-1:-1;37088:4:0;36131:980;;;;;;:::o;32694:321::-;32824:18;32830:2;32834:7;32824:5;:18::i;:::-;32875:54;32906:1;32910:2;32914:7;32923:5;32875:22;:54::i;:::-;32853:154;;;;-1:-1:-1;;;32853:154:0;;;;;;;:::i;33351:382::-;-1:-1:-1;;;;;33431:16:0;;33423:61;;;;-1:-1:-1;;;33423:61:0;;17777:2:1;33423:61:0;;;17759:21:1;;;17796:18;;;17789:30;17855:34;17835:18;;;17828:62;17907:18;;33423:61:0;17575:356:1;33423:61:0;31334:4;31358:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31358:16:0;:30;33495:58;;;;-1:-1:-1;;;33495:58:0;;18138:2:1;33495:58:0;;;18120:21:1;18177:2;18157:18;;;18150:30;18216;18196:18;;;18189:58;18264:18;;33495:58:0;17936:352:1;33495:58:0;-1:-1:-1;;;;;33624:13:0;;;;;;:9;:13;;;;;:18;;33641:1;;33624:13;:18;;33641:1;;33624:18;:::i;:::-;;;;-1:-1:-1;;33653:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33653:21:0;-1:-1:-1;;;;;33653:21:0;;;;;;;;33692:33;;33653:16;;;33692:33;;33653:16;;33692:33;33351:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:258:1;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;-1:-1:-1;;262:1:1;244:16;;237:27;14:258::o;277:::-;319:3;357:5;351:12;384:6;379:3;372:19;400:63;456:6;449:4;444:3;440:14;433:4;426:5;422:16;400:63;:::i;:::-;517:2;496:15;-1:-1:-1;;492:29:1;483:39;;;;524:4;479:50;;277:258;-1:-1:-1;;277:258:1:o;540:220::-;689:2;678:9;671:21;652:4;709:45;750:2;739:9;735:18;727:6;709:45;:::i;765:131::-;-1:-1:-1;;;;;;839:32:1;;829:43;;819:71;;886:1;883;876:12;901:245;959:6;1012:2;1000:9;991:7;987:23;983:32;980:52;;;1028:1;1025;1018:12;980:52;1067:9;1054:23;1086:30;1110:5;1086:30;:::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:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:127::-;2896:10;2891:3;2887:20;2884:1;2877:31;2927:4;2924:1;2917:15;2951:4;2948:1;2941:15;2967:632;3032:5;3062:18;3103:2;3095:6;3092:14;3089:40;;;3109:18;;:::i;:::-;3184:2;3178:9;3152:2;3238:15;;-1:-1:-1;;3234:24:1;;;3260:2;3230:33;3226:42;3214:55;;;3284:18;;;3304:22;;;3281:46;3278:72;;;3330:18;;:::i;:::-;3370:10;3366:2;3359:22;3399:6;3390:15;;3429:6;3421;3414:22;3469:3;3460:6;3455:3;3451:16;3448:25;3445:45;;;3486:1;3483;3476:12;3445:45;3536:6;3531:3;3524:4;3516:6;3512:17;3499:44;3591:1;3584:4;3575:6;3567;3563:19;3559:30;3552:41;;;;2967:632;;;;;:::o;3604:451::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3782:9;3769:23;3815:18;3807:6;3804:30;3801:50;;;3847:1;3844;3837:12;3801:50;3870:22;;3923:4;3915:13;;3911:27;-1:-1:-1;3901:55:1;;3952:1;3949;3942:12;3901:55;3975:74;4041:7;4036:2;4023:16;4018:2;4014;4010:11;3975:74;:::i;4060:247::-;4119:6;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4227:9;4214:23;4246:31;4271:5;4246:31;:::i;4312:160::-;4377:20;;4433:13;;4426:21;4416:32;;4406:60;;4462:1;4459;4452:12;4406:60;4312:160;;;:::o;4477:315::-;4542:6;4550;4603:2;4591:9;4582:7;4578:23;4574:32;4571:52;;;4619:1;4616;4609:12;4571:52;4658:9;4645:23;4677:31;4702:5;4677:31;:::i;:::-;4727:5;-1:-1:-1;4751:35:1;4782:2;4767:18;;4751:35;:::i;:::-;4741:45;;4477:315;;;;;:::o;4797:795::-;4892:6;4900;4908;4916;4969:3;4957:9;4948:7;4944:23;4940:33;4937:53;;;4986:1;4983;4976:12;4937:53;5025:9;5012:23;5044:31;5069:5;5044:31;:::i;:::-;5094:5;-1:-1:-1;5151:2:1;5136:18;;5123:32;5164:33;5123:32;5164:33;:::i;:::-;5216:7;-1:-1:-1;5270:2:1;5255:18;;5242:32;;-1:-1:-1;5325:2:1;5310:18;;5297:32;5352:18;5341:30;;5338:50;;;5384:1;5381;5374:12;5338:50;5407:22;;5460:4;5452:13;;5448:27;-1:-1:-1;5438:55:1;;5489:1;5486;5479:12;5438:55;5512:74;5578:7;5573:2;5560:16;5555:2;5551;5547:11;5512:74;:::i;:::-;5502:84;;;4797:795;;;;;;;:::o;5597:180::-;5653:6;5706:2;5694:9;5685:7;5681:23;5677:32;5674:52;;;5722:1;5719;5712:12;5674:52;5745:26;5761:9;5745:26;:::i;5782:388::-;5850:6;5858;5911:2;5899:9;5890:7;5886:23;5882:32;5879:52;;;5927:1;5924;5917:12;5879:52;5966:9;5953:23;5985:31;6010:5;5985:31;:::i;:::-;6035:5;-1:-1:-1;6092:2:1;6077:18;;6064:32;6105:33;6064:32;6105:33;:::i;:::-;6157:7;6147:17;;;5782:388;;;;;:::o;6175:380::-;6254:1;6250:12;;;;6297;;;6318:61;;6372:4;6364:6;6360:17;6350:27;;6318:61;6425:2;6417:6;6414:14;6394:18;6391:38;6388:161;;;6471:10;6466:3;6462:20;6459:1;6452:31;6506:4;6503:1;6496:15;6534:4;6531:1;6524:15;6388:161;;6175:380;;;:::o;7800:413::-;8002:2;7984:21;;;8041:2;8021:18;;;8014:30;8080:34;8075:2;8060:18;;8053:62;-1:-1:-1;;;8146:2:1;8131:18;;8124:47;8203:3;8188:19;;7800:413::o;8218:356::-;8420:2;8402:21;;;8439:18;;;8432:30;8498:34;8493:2;8478:18;;8471:62;8565:2;8550:18;;8218:356::o;11143:973::-;11228:12;;11193:3;;11283:1;11303:18;;;;11356;;;;11383:61;;11437:4;11429:6;11425:17;11415:27;;11383:61;11463:2;11511;11503:6;11500:14;11480:18;11477:38;11474:161;;;11557:10;11552:3;11548:20;11545:1;11538:31;11592:4;11589:1;11582:15;11620:4;11617:1;11610:15;11474:161;11651:18;11678:104;;;;11796:1;11791:319;;;;11644:466;;11678:104;-1:-1:-1;;11711:24:1;;11699:37;;11756:16;;;;-1:-1:-1;11678:104:1;;11791:319;11090:1;11083:14;;;11127:4;11114:18;;11885:1;11899:165;11913:6;11910:1;11907:13;11899:165;;;11991:14;;11978:11;;;11971:35;12034:16;;;;11928:10;;11899:165;;;11903:3;;12093:6;12088:3;12084:16;12077:23;;11644:466;;;;;;;11143:973;;;;:::o;12121:456::-;12342:3;12370:38;12404:3;12396:6;12370:38;:::i;:::-;12437:6;12431:13;12453:52;12498:6;12494:2;12487:4;12479:6;12475:17;12453:52;:::i;:::-;12521:50;12563:6;12559:2;12555:15;12547:6;12521:50;:::i;:::-;12514:57;12121:456;-1:-1:-1;;;;;;;12121:456:1:o;14217:127::-;14278:10;14273:3;14269:20;14266:1;14259:31;14309:4;14306:1;14299:15;14333:4;14330:1;14323:15;14349:125;14389:4;14417:1;14414;14411:8;14408:34;;;14422:18;;:::i;:::-;-1:-1:-1;14459:9:1;;14349:125::o;14479:128::-;14519:3;14550:1;14546:6;14543:1;14540:13;14537:39;;;14556:18;;:::i;:::-;-1:-1:-1;14592:9:1;;14479:128::o;14959:168::-;14999:7;15065:1;15061;15057:6;15053:14;15050:1;15047:21;15042:1;15035:9;15028:17;15024:45;15021:71;;;15072:18;;:::i;:::-;-1:-1:-1;15112:9:1;;14959:168::o;15477:135::-;15516:3;-1:-1:-1;;15537:17:1;;15534:43;;;15557:18;;:::i;:::-;-1:-1:-1;15604:1:1;15593:13;;15477:135::o;15617:414::-;15819:2;15801:21;;;15858:2;15838:18;;;15831:30;15897:34;15892:2;15877:18;;15870:62;-1:-1:-1;;;15963:2:1;15948:18;;15941:48;16021:3;16006:19;;15617:414::o;16036:127::-;16097:10;16092:3;16088:20;16085:1;16078:31;16128:4;16125:1;16118:15;16152:4;16149:1;16142:15;16168:120;16208:1;16234;16224:35;;16239:18;;:::i;:::-;-1:-1:-1;16273:9:1;;16168:120::o;16293:112::-;16325:1;16351;16341:35;;16356:18;;:::i;:::-;-1:-1:-1;16390:9:1;;16293:112::o;16410:127::-;16471:10;16466:3;16462:20;16459:1;16452:31;16502:4;16499:1;16492:15;16526:4;16523:1;16516:15;16542:280;16641:6;16694:2;16682:9;16673:7;16669:23;16665:32;16662:52;;;16710:1;16707;16700:12;16662:52;16742:9;16736:16;16761:31;16786:5;16761:31;:::i;16827:489::-;-1:-1:-1;;;;;17096:15:1;;;17078:34;;17148:15;;17143:2;17128:18;;17121:43;17195:2;17180:18;;17173:34;;;17243:3;17238:2;17223:18;;17216:31;;;17021:4;;17264:46;;17290:19;;17282:6;17264:46;:::i;:::-;17256:54;16827:489;-1:-1:-1;;;;;;16827:489:1:o;17321:249::-;17390:6;17443:2;17431:9;17422:7;17418:23;17414:32;17411:52;;;17459:1;17456;17449:12;17411:52;17491:9;17485:16;17510:30;17534:5;17510:30;:::i

Swarm Source

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