ETH Price: $3,471.96 (+2.39%)
Gas: 7 Gwei

Token

Axolittles (AXOLITTLE)
 

Overview

Max Total Supply

10,000 AXOLITTLE

Holders

3,481

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 AXOLITTLE
0xdf1d3478e965ad86beffc9f529a61f1cee50be67
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Axolittles is a collection of 10,000 algorithmically generated pieces of art, assembled from over 160 traits. They're inspired by axolotls, the world's cutest amphibians.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Axolittles

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// Sources flattened with hardhat v2.6.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;







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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 contracts/Axolittles.sol



// SHA256: EFB6E06BEDED5D5D286FD426867ABFCFBC6D3781EE7AB8E46B4A6C8C8EC75D39

/**
   #                                                            
  # #   #    #  ####  #      # ##### ##### #      ######  ####  
 #   #   #  #  #    # #      #   #     #   #      #      #      
#     #   ##   #    # #      #   #     #   #      #####   ####  
#######   ##   #    # #      #   #     #   #      #           # 
#     #  #  #  #    # #      #   #     #   #      #      #    # 
#     # #    #  ####  ###### #   #     #   ###### ######  ####  
 */

pragma solidity ^0.8.7;


contract Axolittles is ERC721, Ownable {

    uint public mintPrice = 0.07 ether; // Mutable by owner
    uint public maxItems = 10000;
    uint public totalSupply = 0;
    uint public maxItemsPerTx = 10; // Mutable by owner
    string public _baseTokenURI;
    bool public publicMintPaused = false;
    uint public startTimestamp = 1630944000; // Monday, September 6, 2021 at 12pm Eastern

    event Mint(address indexed owner, uint indexed tokenId);

    constructor() ERC721("Axolittles", "AXOLITTLE") {}

    receive() external payable {}

    function giveawayMint(address to, uint amount) external onlyOwner {
        _mintWithoutValidation(to, amount);
    }

    function publicMint() external payable {
        require(block.timestamp >= startTimestamp, "publicMint: Not open yet");
        require(!publicMintPaused, "publicMint: Paused");
        uint remainder = msg.value % mintPrice;
        uint amount = msg.value / mintPrice;
        require(remainder == 0, "publicMint: Send a divisible amount of eth");
        require(amount <= maxItemsPerTx, "publicMint: Surpasses maxItemsPerTx");

        _mintWithoutValidation(msg.sender, amount);
    }

    function _mintWithoutValidation(address to, uint amount) internal {
        require(totalSupply + amount <= maxItems, "mintWithoutValidation: Sold out");
        for (uint i = 0; i < amount; i++) {
            _mint(to, totalSupply);
            emit Mint(to, totalSupply);
            totalSupply += 1;
        }
    }

    function isOpen() external view returns (bool) {
        return block.timestamp >= startTimestamp && !publicMintPaused && totalSupply < maxItems;
    }

    // ADMIN FUNCTIONALITY

    function setStartTimestamp(uint _startTimestamp) external onlyOwner {
        startTimestamp = _startTimestamp;
    }

    function setMintPrice(uint _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
    }

    function setPublicMintPaused(bool _publicMintPaused) external onlyOwner {
        publicMintPaused = _publicMintPaused;
    }

    function setMaxItemsPerTx(uint _maxItemsPerTx) external onlyOwner {
        maxItemsPerTx = _maxItemsPerTx;
    }

    function setBaseTokenURI(string memory __baseTokenURI) external onlyOwner {
        _baseTokenURI = __baseTokenURI;
    }

    /**
     * @dev Withdraw the contract balance to the dev address or splitter address
     */
    function withdraw() external onlyOwner {
        sendEth(owner(), address(this).balance);
    }

    function sendEth(address to, uint amount) internal {
        (bool success,) = to.call{value: amount}("");
        require(success, "Failed to send ether");
    }

    // METADATA FUNCTIONALITY

    /**
     * @dev Returns a URI for a given token ID's metadata
     */
    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId)));
    }

}

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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","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":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItems","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxItemsPerTx","type":"uint256"}],"name":"setMaxItemsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintPaused","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimestamp","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405266f8b0a10e4700006007556127106008556000600955600a8055600c805460ff191690556361363b00600d553480156200003d57600080fd5b50604080518082018252600a81526941786f6c6974746c657360b01b60208083019182528351808501909452600984526841584f4c4954544c4560b81b908401528151919291620000919160009162000120565b508051620000a790600190602084019062000120565b505050620000c4620000be620000ca60201b60201c565b620000ce565b62000203565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012e90620001c6565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b600181811c90821680620001db57607f821691505b60208210811415620001fd57634e487b7160e01b600052602260045260246000fd5b50919050565b611eb980620002136000396000f3fe6080604052600436106101e75760003560e01c80636352211e11610102578063b88d4fde11610095578063e6fd48bc11610064578063e6fd48bc14610533578063e985e9c514610549578063f2fde38b14610592578063f4a0a528146105b257600080fd5b8063b88d4fde146104be578063c44bef75146104de578063c87b56dd146104fe578063cfc86f7b1461051e57600080fd5b80637a4e5715116100d15780637a4e57151461044b5780638da5cb5b1461046b57806395d89b4114610489578063a22cb4651461049e57600080fd5b80636352211e146103e05780636817c76c1461040057806370a0823114610416578063715018a61461043657600080fd5b806330176e131161017a5780633c010a3e116101495780633c010a3e146103805780633ccfd60b1461039657806342842e0e146103ab57806347535d7b146103cb57600080fd5b806330176e131461031057806330666a4d14610330578063339493481461034657806333d9d5fd1461036657600080fd5b8063095ea7b3116101b6578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e857806326092b831461030857600080fd5b806301ffc9a7146101f3578063048266241461022857806306fdde031461024a578063081812fc1461026c57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a89565b6105d2565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611a44565b610624565b005b34801561025657600080fd5b5061025f610665565b60405161021f9190611c51565b34801561027857600080fd5b5061028c610287366004611b0c565b6106f7565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611a44565b61078c565b3480156102d057600080fd5b506102da60095481565b60405190815260200161021f565b3480156102f457600080fd5b50610248610303366004611962565b6108a2565b6102486108d3565b34801561031c57600080fd5b5061024861032b366004611ac3565b610a5a565b34801561033c57600080fd5b506102da600a5481565b34801561035257600080fd5b50610248610361366004611a6e565b610a97565b34801561037257600080fd5b50600c546102139060ff1681565b34801561038c57600080fd5b506102da60085481565b3480156103a257600080fd5b50610248610ad4565b3480156103b757600080fd5b506102486103c6366004611962565b610b1b565b3480156103d757600080fd5b50610213610b36565b3480156103ec57600080fd5b5061028c6103fb366004611b0c565b610b61565b34801561040c57600080fd5b506102da60075481565b34801561042257600080fd5b506102da61043136600461190d565b610bd8565b34801561044257600080fd5b50610248610c5f565b34801561045757600080fd5b50610248610466366004611b0c565b610c93565b34801561047757600080fd5b506006546001600160a01b031661028c565b34801561049557600080fd5b5061025f610cc2565b3480156104aa57600080fd5b506102486104b9366004611a1a565b610cd1565b3480156104ca57600080fd5b506102486104d936600461199e565b610d96565b3480156104ea57600080fd5b506102486104f9366004611b0c565b610dce565b34801561050a57600080fd5b5061025f610519366004611b0c565b610dfd565b34801561052a57600080fd5b5061025f610e31565b34801561053f57600080fd5b506102da600d5481565b34801561055557600080fd5b5061021361056436600461192f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059e57600080fd5b506102486105ad36600461190d565b610ebf565b3480156105be57600080fd5b506102486105cd366004611b0c565b610f5a565b60006001600160e01b031982166380ac58cd60e01b148061060357506001600160e01b03198216635b5e139f60e01b145b8061061e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106575760405162461bcd60e51b815260040161064e90611cb6565b60405180910390fd5b6106618282610f89565b5050565b60606000805461067490611dab565b80601f01602080910402602001604051908101604052809291908181526020018280546106a090611dab565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b506000908152600460205260409020546001600160a01b031690565b600061079782610b61565b9050806001600160a01b0316836001600160a01b031614156108055760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064e565b336001600160a01b038216148061082157506108218133610564565b6108935760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161064e565b61089d8383611061565b505050565b6108ac33826110cf565b6108c85760405162461bcd60e51b815260040161064e90611ceb565b61089d8383836111c6565b600d544210156109255760405162461bcd60e51b815260206004820152601860248201527f7075626c69634d696e743a204e6f74206f70656e207965740000000000000000604482015260640161064e565b600c5460ff161561096d5760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b604482015260640161064e565b60006007543461097d9190611e01565b905060006007543461098f9190611d54565b905081156109f25760405162461bcd60e51b815260206004820152602a60248201527f7075626c69634d696e743a2053656e64206120646976697369626c6520616d6f6044820152690eadce840decc40cae8d60b31b606482015260840161064e565b600a54811115610a505760405162461bcd60e51b815260206004820152602360248201527f7075626c69634d696e743a20537572706173736573206d61784974656d7350656044820152620e4a8f60eb1b606482015260840161064e565b6106613382610f89565b6006546001600160a01b03163314610a845760405162461bcd60e51b815260040161064e90611cb6565b805161066190600b9060208401906117d2565b6006546001600160a01b03163314610ac15760405162461bcd60e51b815260040161064e90611cb6565b600c805460ff1916911515919091179055565b6006546001600160a01b03163314610afe5760405162461bcd60e51b815260040161064e90611cb6565b610b19610b136006546001600160a01b031690565b47611366565b565b61089d83838360405180602001604052806000815250610d96565b6000600d544210158015610b4d5750600c5460ff16155b8015610b5c5750600854600954105b905090565b6000818152600260205260408120546001600160a01b03168061061e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161064e565b60006001600160a01b038216610c435760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161064e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c895760405162461bcd60e51b815260040161064e90611cb6565b610b196000611400565b6006546001600160a01b03163314610cbd5760405162461bcd60e51b815260040161064e90611cb6565b600a55565b60606001805461067490611dab565b6001600160a01b038216331415610d2a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da033836110cf565b610dbc5760405162461bcd60e51b815260040161064e90611ceb565b610dc884848484611452565b50505050565b6006546001600160a01b03163314610df85760405162461bcd60e51b815260040161064e90611cb6565b600d55565b6060600b610e0a83611485565b604051602001610e1b929190611b6d565b6040516020818303038152906040529050919050565b600b8054610e3e90611dab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6a90611dab565b8015610eb75780601f10610e8c57610100808354040283529160200191610eb7565b820191906000526020600020905b815481529060010190602001808311610e9a57829003601f168201915b505050505081565b6006546001600160a01b03163314610ee95760405162461bcd60e51b815260040161064e90611cb6565b6001600160a01b038116610f4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064e565b610f5781611400565b50565b6006546001600160a01b03163314610f845760405162461bcd60e51b815260040161064e90611cb6565b600755565b60085481600954610f9a9190611d3c565b1115610fe85760405162461bcd60e51b815260206004820152601f60248201527f6d696e74576974686f757456616c69646174696f6e3a20536f6c64206f757400604482015260640161064e565b60005b8181101561089d57610fff83600954611583565b6009546040516001600160a01b038516907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a36001600960008282546110499190611d3c565b9091555081905061105981611de6565b915050610feb565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061109682610b61565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b600061115383610b61565b9050806001600160a01b0316846001600160a01b0316148061118e5750836001600160a01b0316611183846106f7565b6001600160a01b0316145b806111be57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111d982610b61565b6001600160a01b0316146112415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161064e565b6001600160a01b0382166112a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064e565b6112ae600082611061565b6001600160a01b03831660009081526003602052604081208054600192906112d7908490611d68565b90915550506001600160a01b0382166000908152600360205260408120805460019290611305908490611d3c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113b3576040519150601f19603f3d011682016040523d82523d6000602084013e6113b8565b606091505b505090508061089d5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b604482015260640161064e565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61145d8484846111c6565b611469848484846116c5565b610dc85760405162461bcd60e51b815260040161064e90611c64565b6060816114a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114d357806114bd81611de6565b91506114cc9050600a83611d54565b91506114ad565b60008167ffffffffffffffff8111156114ee576114ee611e57565b6040519080825280601f01601f191660200182016040528015611518576020820181803683370190505b5090505b84156111be5761152d600183611d68565b915061153a600a86611e01565b611545906030611d3c565b60f81b81838151811061155a5761155a611e41565b60200101906001600160f81b031916908160001a90535061157c600a86611d54565b945061151c565b6001600160a01b0382166115d95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064e565b6000818152600260205260409020546001600160a01b03161561163e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064e565b6001600160a01b0382166000908152600360205260408120805460019290611667908490611d3c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156117c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611709903390899088908890600401611c14565b602060405180830381600087803b15801561172357600080fd5b505af1925050508015611753575060408051601f3d908101601f1916820190925261175091810190611aa6565b60015b6117ad573d808015611781576040519150601f19603f3d011682016040523d82523d6000602084013e611786565b606091505b5080516117a55760405162461bcd60e51b815260040161064e90611c64565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111be565b506001949350505050565b8280546117de90611dab565b90600052602060002090601f0160209004810192826118005760008555611846565b82601f1061181957805160ff1916838001178555611846565b82800160010185558215611846579182015b8281111561184657825182559160200191906001019061182b565b50611852929150611856565b5090565b5b808211156118525760008155600101611857565b600067ffffffffffffffff8084111561188657611886611e57565b604051601f8501601f19908116603f011681019082821181831017156118ae576118ae611e57565b816040528093508581528686860111156118c757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118f857600080fd5b919050565b803580151581146118f857600080fd5b60006020828403121561191f57600080fd5b611928826118e1565b9392505050565b6000806040838503121561194257600080fd5b61194b836118e1565b9150611959602084016118e1565b90509250929050565b60008060006060848603121561197757600080fd5b611980846118e1565b925061198e602085016118e1565b9150604084013590509250925092565b600080600080608085870312156119b457600080fd5b6119bd856118e1565b93506119cb602086016118e1565b925060408501359150606085013567ffffffffffffffff8111156119ee57600080fd5b8501601f810187136119ff57600080fd5b611a0e8782356020840161186b565b91505092959194509250565b60008060408385031215611a2d57600080fd5b611a36836118e1565b9150611959602084016118fd565b60008060408385031215611a5757600080fd5b611a60836118e1565b946020939093013593505050565b600060208284031215611a8057600080fd5b611928826118fd565b600060208284031215611a9b57600080fd5b813561192881611e6d565b600060208284031215611ab857600080fd5b815161192881611e6d565b600060208284031215611ad557600080fd5b813567ffffffffffffffff811115611aec57600080fd5b8201601f81018413611afd57600080fd5b6111be8482356020840161186b565b600060208284031215611b1e57600080fd5b5035919050565b60008151808452611b3d816020860160208601611d7f565b601f01601f19169290920160200192915050565b60008151611b63818560208601611d7f565b9290920192915050565b600080845481600182811c915080831680611b8957607f831692505b6020808410821415611ba957634e487b7160e01b86526022600452602486fd5b818015611bbd5760018114611bce57611bfb565b60ff19861689528489019650611bfb565b60008b81526020902060005b86811015611bf35781548b820152908501908301611bda565b505084890196505b505050505050611c0b8185611b51565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4790830184611b25565b9695505050505050565b6020815260006119286020830184611b25565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611d4f57611d4f611e15565b500190565b600082611d6357611d63611e2b565b500490565b600082821015611d7a57611d7a611e15565b500390565b60005b83811015611d9a578181015183820152602001611d82565b83811115610dc85750506000910152565b600181811c90821680611dbf57607f821691505b60208210811415611de057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611dfa57611dfa611e15565b5060010190565b600082611e1057611e10611e2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f5757600080fdfea26469706673582212209b4dd6ed2a34e57ccbacf7507c6579f0bab1449bd0bafce1b3fcdac06c6906fc64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c80636352211e11610102578063b88d4fde11610095578063e6fd48bc11610064578063e6fd48bc14610533578063e985e9c514610549578063f2fde38b14610592578063f4a0a528146105b257600080fd5b8063b88d4fde146104be578063c44bef75146104de578063c87b56dd146104fe578063cfc86f7b1461051e57600080fd5b80637a4e5715116100d15780637a4e57151461044b5780638da5cb5b1461046b57806395d89b4114610489578063a22cb4651461049e57600080fd5b80636352211e146103e05780636817c76c1461040057806370a0823114610416578063715018a61461043657600080fd5b806330176e131161017a5780633c010a3e116101495780633c010a3e146103805780633ccfd60b1461039657806342842e0e146103ab57806347535d7b146103cb57600080fd5b806330176e131461031057806330666a4d14610330578063339493481461034657806333d9d5fd1461036657600080fd5b8063095ea7b3116101b6578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e857806326092b831461030857600080fd5b806301ffc9a7146101f3578063048266241461022857806306fdde031461024a578063081812fc1461026c57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a89565b6105d2565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611a44565b610624565b005b34801561025657600080fd5b5061025f610665565b60405161021f9190611c51565b34801561027857600080fd5b5061028c610287366004611b0c565b6106f7565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611a44565b61078c565b3480156102d057600080fd5b506102da60095481565b60405190815260200161021f565b3480156102f457600080fd5b50610248610303366004611962565b6108a2565b6102486108d3565b34801561031c57600080fd5b5061024861032b366004611ac3565b610a5a565b34801561033c57600080fd5b506102da600a5481565b34801561035257600080fd5b50610248610361366004611a6e565b610a97565b34801561037257600080fd5b50600c546102139060ff1681565b34801561038c57600080fd5b506102da60085481565b3480156103a257600080fd5b50610248610ad4565b3480156103b757600080fd5b506102486103c6366004611962565b610b1b565b3480156103d757600080fd5b50610213610b36565b3480156103ec57600080fd5b5061028c6103fb366004611b0c565b610b61565b34801561040c57600080fd5b506102da60075481565b34801561042257600080fd5b506102da61043136600461190d565b610bd8565b34801561044257600080fd5b50610248610c5f565b34801561045757600080fd5b50610248610466366004611b0c565b610c93565b34801561047757600080fd5b506006546001600160a01b031661028c565b34801561049557600080fd5b5061025f610cc2565b3480156104aa57600080fd5b506102486104b9366004611a1a565b610cd1565b3480156104ca57600080fd5b506102486104d936600461199e565b610d96565b3480156104ea57600080fd5b506102486104f9366004611b0c565b610dce565b34801561050a57600080fd5b5061025f610519366004611b0c565b610dfd565b34801561052a57600080fd5b5061025f610e31565b34801561053f57600080fd5b506102da600d5481565b34801561055557600080fd5b5061021361056436600461192f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059e57600080fd5b506102486105ad36600461190d565b610ebf565b3480156105be57600080fd5b506102486105cd366004611b0c565b610f5a565b60006001600160e01b031982166380ac58cd60e01b148061060357506001600160e01b03198216635b5e139f60e01b145b8061061e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106575760405162461bcd60e51b815260040161064e90611cb6565b60405180910390fd5b6106618282610f89565b5050565b60606000805461067490611dab565b80601f01602080910402602001604051908101604052809291908181526020018280546106a090611dab565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b506000908152600460205260409020546001600160a01b031690565b600061079782610b61565b9050806001600160a01b0316836001600160a01b031614156108055760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064e565b336001600160a01b038216148061082157506108218133610564565b6108935760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161064e565b61089d8383611061565b505050565b6108ac33826110cf565b6108c85760405162461bcd60e51b815260040161064e90611ceb565b61089d8383836111c6565b600d544210156109255760405162461bcd60e51b815260206004820152601860248201527f7075626c69634d696e743a204e6f74206f70656e207965740000000000000000604482015260640161064e565b600c5460ff161561096d5760405162461bcd60e51b81526020600482015260126024820152711c1d589b1a58d35a5b9d0e8814185d5cd95960721b604482015260640161064e565b60006007543461097d9190611e01565b905060006007543461098f9190611d54565b905081156109f25760405162461bcd60e51b815260206004820152602a60248201527f7075626c69634d696e743a2053656e64206120646976697369626c6520616d6f6044820152690eadce840decc40cae8d60b31b606482015260840161064e565b600a54811115610a505760405162461bcd60e51b815260206004820152602360248201527f7075626c69634d696e743a20537572706173736573206d61784974656d7350656044820152620e4a8f60eb1b606482015260840161064e565b6106613382610f89565b6006546001600160a01b03163314610a845760405162461bcd60e51b815260040161064e90611cb6565b805161066190600b9060208401906117d2565b6006546001600160a01b03163314610ac15760405162461bcd60e51b815260040161064e90611cb6565b600c805460ff1916911515919091179055565b6006546001600160a01b03163314610afe5760405162461bcd60e51b815260040161064e90611cb6565b610b19610b136006546001600160a01b031690565b47611366565b565b61089d83838360405180602001604052806000815250610d96565b6000600d544210158015610b4d5750600c5460ff16155b8015610b5c5750600854600954105b905090565b6000818152600260205260408120546001600160a01b03168061061e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161064e565b60006001600160a01b038216610c435760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161064e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c895760405162461bcd60e51b815260040161064e90611cb6565b610b196000611400565b6006546001600160a01b03163314610cbd5760405162461bcd60e51b815260040161064e90611cb6565b600a55565b60606001805461067490611dab565b6001600160a01b038216331415610d2a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610da033836110cf565b610dbc5760405162461bcd60e51b815260040161064e90611ceb565b610dc884848484611452565b50505050565b6006546001600160a01b03163314610df85760405162461bcd60e51b815260040161064e90611cb6565b600d55565b6060600b610e0a83611485565b604051602001610e1b929190611b6d565b6040516020818303038152906040529050919050565b600b8054610e3e90611dab565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6a90611dab565b8015610eb75780601f10610e8c57610100808354040283529160200191610eb7565b820191906000526020600020905b815481529060010190602001808311610e9a57829003601f168201915b505050505081565b6006546001600160a01b03163314610ee95760405162461bcd60e51b815260040161064e90611cb6565b6001600160a01b038116610f4e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064e565b610f5781611400565b50565b6006546001600160a01b03163314610f845760405162461bcd60e51b815260040161064e90611cb6565b600755565b60085481600954610f9a9190611d3c565b1115610fe85760405162461bcd60e51b815260206004820152601f60248201527f6d696e74576974686f757456616c69646174696f6e3a20536f6c64206f757400604482015260640161064e565b60005b8181101561089d57610fff83600954611583565b6009546040516001600160a01b038516907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a36001600960008282546110499190611d3c565b9091555081905061105981611de6565b915050610feb565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061109682610b61565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b600061115383610b61565b9050806001600160a01b0316846001600160a01b0316148061118e5750836001600160a01b0316611183846106f7565b6001600160a01b0316145b806111be57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166111d982610b61565b6001600160a01b0316146112415760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161064e565b6001600160a01b0382166112a35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064e565b6112ae600082611061565b6001600160a01b03831660009081526003602052604081208054600192906112d7908490611d68565b90915550506001600160a01b0382166000908152600360205260408120805460019290611305908490611d3c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146113b3576040519150601f19603f3d011682016040523d82523d6000602084013e6113b8565b606091505b505090508061089d5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b604482015260640161064e565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61145d8484846111c6565b611469848484846116c5565b610dc85760405162461bcd60e51b815260040161064e90611c64565b6060816114a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114d357806114bd81611de6565b91506114cc9050600a83611d54565b91506114ad565b60008167ffffffffffffffff8111156114ee576114ee611e57565b6040519080825280601f01601f191660200182016040528015611518576020820181803683370190505b5090505b84156111be5761152d600183611d68565b915061153a600a86611e01565b611545906030611d3c565b60f81b81838151811061155a5761155a611e41565b60200101906001600160f81b031916908160001a90535061157c600a86611d54565b945061151c565b6001600160a01b0382166115d95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064e565b6000818152600260205260409020546001600160a01b03161561163e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064e565b6001600160a01b0382166000908152600360205260408120805460019290611667908490611d3c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156117c757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611709903390899088908890600401611c14565b602060405180830381600087803b15801561172357600080fd5b505af1925050508015611753575060408051601f3d908101601f1916820190925261175091810190611aa6565b60015b6117ad573d808015611781576040519150601f19603f3d011682016040523d82523d6000602084013e611786565b606091505b5080516117a55760405162461bcd60e51b815260040161064e90611c64565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111be565b506001949350505050565b8280546117de90611dab565b90600052602060002090601f0160209004810192826118005760008555611846565b82601f1061181957805160ff1916838001178555611846565b82800160010185558215611846579182015b8281111561184657825182559160200191906001019061182b565b50611852929150611856565b5090565b5b808211156118525760008155600101611857565b600067ffffffffffffffff8084111561188657611886611e57565b604051601f8501601f19908116603f011681019082821181831017156118ae576118ae611e57565b816040528093508581528686860111156118c757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118f857600080fd5b919050565b803580151581146118f857600080fd5b60006020828403121561191f57600080fd5b611928826118e1565b9392505050565b6000806040838503121561194257600080fd5b61194b836118e1565b9150611959602084016118e1565b90509250929050565b60008060006060848603121561197757600080fd5b611980846118e1565b925061198e602085016118e1565b9150604084013590509250925092565b600080600080608085870312156119b457600080fd5b6119bd856118e1565b93506119cb602086016118e1565b925060408501359150606085013567ffffffffffffffff8111156119ee57600080fd5b8501601f810187136119ff57600080fd5b611a0e8782356020840161186b565b91505092959194509250565b60008060408385031215611a2d57600080fd5b611a36836118e1565b9150611959602084016118fd565b60008060408385031215611a5757600080fd5b611a60836118e1565b946020939093013593505050565b600060208284031215611a8057600080fd5b611928826118fd565b600060208284031215611a9b57600080fd5b813561192881611e6d565b600060208284031215611ab857600080fd5b815161192881611e6d565b600060208284031215611ad557600080fd5b813567ffffffffffffffff811115611aec57600080fd5b8201601f81018413611afd57600080fd5b6111be8482356020840161186b565b600060208284031215611b1e57600080fd5b5035919050565b60008151808452611b3d816020860160208601611d7f565b601f01601f19169290920160200192915050565b60008151611b63818560208601611d7f565b9290920192915050565b600080845481600182811c915080831680611b8957607f831692505b6020808410821415611ba957634e487b7160e01b86526022600452602486fd5b818015611bbd5760018114611bce57611bfb565b60ff19861689528489019650611bfb565b60008b81526020902060005b86811015611bf35781548b820152908501908301611bda565b505084890196505b505050505050611c0b8185611b51565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c4790830184611b25565b9695505050505050565b6020815260006119286020830184611b25565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611d4f57611d4f611e15565b500190565b600082611d6357611d63611e2b565b500490565b600082821015611d7a57611d7a611e15565b500390565b60005b83811015611d9a578181015183820152602001611d82565b83811115610dc85750506000910152565b600181811c90821680611dbf57607f821691505b60208210811415611de057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611dfa57611dfa611e15565b5060010190565b600082611e1057611e10611e2b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f5757600080fdfea26469706673582212209b4dd6ed2a34e57ccbacf7507c6579f0bab1449bd0bafce1b3fcdac06c6906fc64736f6c63430008070033

Deployed Bytecode Sourcemap

35802:3013:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23055:305;;;;;;;;;;-1:-1:-1;23055:305:0;;;;;:::i;:::-;;:::i;:::-;;;7007:14:1;;7000:22;6982:41;;6970:2;6955:18;23055:305:0;;;;;;;;36366:119;;;;;;;;;;-1:-1:-1;36366:119:0;;;;;:::i;:::-;;:::i;:::-;;24000:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25559:221::-;;;;;;;;;;-1:-1:-1;25559:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6305:32:1;;;6287:51;;6275:2;6260:18;25559:221:0;6141:203:1;25082:411:0;;;;;;;;;;-1:-1:-1;25082:411:0;;;;;:::i;:::-;;:::i;35946:27::-;;;;;;;;;;;;;;;;;;;15594:25:1;;;15582:2;15567:18;35946:27:0;15448:177:1;26449:339:0;;;;;;;;;;-1:-1:-1;26449:339:0;;;;;:::i;:::-;;:::i;36493:499::-;;;:::i;38017:123::-;;;;;;;;;;-1:-1:-1;38017:123:0;;;;;:::i;:::-;;:::i;35980:30::-;;;;;;;;;;;;;;;;37759:127;;;;;;;;;;-1:-1:-1;37759:127:0;;;;;:::i;:::-;;:::i;36071:36::-;;;;;;;;;;-1:-1:-1;36071:36:0;;;;;;;;35911:28;;;;;;;;;;;;;;;;38248:97;;;;;;;;;;;;;:::i;26859:185::-;;;;;;;;;;-1:-1:-1;26859:185:0;;;;;:::i;:::-;;:::i;37334:153::-;;;;;;;;;;;;;:::i;23694:239::-;;;;;;;;;;-1:-1:-1;23694:239:0;;;;;:::i;:::-;;:::i;35850:34::-;;;;;;;;;;;;;;;;23424:208;;;;;;;;;;-1:-1:-1;23424:208:0;;;;;:::i;:::-;;:::i;2564:94::-;;;;;;;;;;;;;:::i;37894:115::-;;;;;;;;;;-1:-1:-1;37894:115:0;;;;;:::i;:::-;;:::i;1913:87::-;;;;;;;;;;-1:-1:-1;1986:6:0;;-1:-1:-1;;;;;1986:6:0;1913:87;;24169:104;;;;;;;;;;;;;:::i;25852:295::-;;;;;;;;;;-1:-1:-1;25852:295:0;;;;;:::i;:::-;;:::i;27115:328::-;;;;;;;;;;-1:-1:-1;27115:328:0;;;;;:::i;:::-;;:::i;37525:119::-;;;;;;;;;;-1:-1:-1;37525:119:0;;;;;:::i;:::-;;:::i;38636:174::-;;;;;;;;;;-1:-1:-1;38636:174:0;;;;;:::i;:::-;;:::i;36037:27::-;;;;;;;;;;;;;:::i;36114:39::-;;;;;;;;;;;;;;;;26218:164;;;;;;;;;;-1:-1:-1;26218:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26339:25:0;;;26315:4;26339:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26218:164;2813:192;;;;;;;;;;-1:-1:-1;2813:192:0;;;;;:::i;:::-;;:::i;37652:99::-;;;;;;;;;;-1:-1:-1;37652:99:0;;;;;:::i;:::-;;:::i;23055:305::-;23157:4;-1:-1:-1;;;;;;23194:40:0;;-1:-1:-1;;;23194:40:0;;:105;;-1:-1:-1;;;;;;;23251:48:0;;-1:-1:-1;;;23251:48:0;23194:105;:158;;;-1:-1:-1;;;;;;;;;;21662:40:0;;;23316:36;23174:178;23055:305;-1:-1:-1;;23055:305:0:o;36366:119::-;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;;;;;;;;;36443:34:::1;36466:2;36470:6;36443:22;:34::i;:::-;36366:119:::0;;:::o;24000:100::-;24054:13;24087:5;24080:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24000:100;:::o;25559:221::-;25635:7;29042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29042:16:0;25655:73;;;;-1:-1:-1;;;25655:73:0;;12540:2:1;25655:73:0;;;12522:21:1;12579:2;12559:18;;;12552:30;12618:34;12598:18;;;12591:62;-1:-1:-1;;;12669:18:1;;;12662:42;12721:19;;25655:73:0;12338:408:1;25655:73:0;-1:-1:-1;25748:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25748:24:0;;25559:221::o;25082:411::-;25163:13;25179:23;25194:7;25179:14;:23::i;:::-;25163:39;;25227:5;-1:-1:-1;;;;;25221:11:0;:2;-1:-1:-1;;;;;25221:11:0;;;25213:57;;;;-1:-1:-1;;;25213:57:0;;14477:2:1;25213:57:0;;;14459:21:1;14516:2;14496:18;;;14489:30;14555:34;14535:18;;;14528:62;-1:-1:-1;;;14606:18:1;;;14599:31;14647:19;;25213:57:0;14275:397:1;25213:57:0;775:10;-1:-1:-1;;;;;25305:21:0;;;;:62;;-1:-1:-1;25330:37:0;25347:5;775:10;26218:164;:::i;25330:37::-;25283:168;;;;-1:-1:-1;;;25283:168:0;;10933:2:1;25283:168:0;;;10915:21:1;10972:2;10952:18;;;10945:30;11011:34;10991:18;;;10984:62;11082:26;11062:18;;;11055:54;11126:19;;25283:168:0;10731:420:1;25283:168:0;25464:21;25473:2;25477:7;25464:8;:21::i;:::-;25152:341;25082:411;;:::o;26449:339::-;26644:41;775:10;26677:7;26644:18;:41::i;:::-;26636:103;;;;-1:-1:-1;;;26636:103:0;;;;;;;:::i;:::-;26752:28;26762:4;26768:2;26772:7;26752:9;:28::i;36493:499::-;36570:14;;36551:15;:33;;36543:70;;;;-1:-1:-1;;;36543:70:0;;15297:2:1;36543:70:0;;;15279:21:1;15336:2;15316:18;;;15309:30;15375:26;15355:18;;;15348:54;15419:18;;36543:70:0;15095:348:1;36543:70:0;36633:16;;;;36632:17;36624:48;;;;-1:-1:-1;;;36624:48:0;;8290:2:1;36624:48:0;;;8272:21:1;8329:2;8309:18;;;8302:30;-1:-1:-1;;;8348:18:1;;;8341:48;8406:18;;36624:48:0;8088:342:1;36624:48:0;36683:14;36712:9;;36700;:21;;;;:::i;:::-;36683:38;;36732:11;36758:9;;36746;:21;;;;:::i;:::-;36732:35;-1:-1:-1;36786:14:0;;36778:69;;;;-1:-1:-1;;;36778:69:0;;7460:2:1;36778:69:0;;;7442:21:1;7499:2;7479:18;;;7472:30;7538:34;7518:18;;;7511:62;-1:-1:-1;;;7589:18:1;;;7582:40;7639:19;;36778:69:0;7258:406:1;36778:69:0;36876:13;;36866:6;:23;;36858:71;;;;-1:-1:-1;;;36858:71:0;;14073:2:1;36858:71:0;;;14055:21:1;14112:2;14092:18;;;14085:30;14151:34;14131:18;;;14124:62;-1:-1:-1;;;14202:18:1;;;14195:33;14245:19;;36858:71:0;13871:399:1;36858:71:0;36942:42;36965:10;36977:6;36942:22;:42::i;38017:123::-;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;38102:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;37759:127::-:0;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;37842:16:::1;:36:::0;;-1:-1:-1;;37842:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37759:127::o;38248:97::-;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;38298:39:::1;38306:7;1986:6:::0;;-1:-1:-1;;;;;1986:6:0;;1913:87;38306:7:::1;38315:21;38298:7;:39::i;:::-;38248:97::o:0;26859:185::-;26997:39;27014:4;27020:2;27024:7;26997:39;;;;;;;;;;;;:16;:39::i;37334:153::-;37375:4;37418:14;;37399:15;:33;;:54;;;;-1:-1:-1;37437:16:0;;;;37436:17;37399:54;:80;;;;;37471:8;;37457:11;;:22;37399:80;37392:87;;37334:153;:::o;23694:239::-;23766:7;23802:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23802:16:0;23837:19;23829:73;;;;-1:-1:-1;;;23829:73:0;;11769:2:1;23829:73:0;;;11751:21:1;11808:2;11788:18;;;11781:30;11847:34;11827:18;;;11820:62;-1:-1:-1;;;11898:18:1;;;11891:39;11947:19;;23829:73:0;11567:405:1;23424:208:0;23496:7;-1:-1:-1;;;;;23524:19:0;;23516:74;;;;-1:-1:-1;;;23516:74:0;;11358:2:1;23516:74:0;;;11340:21:1;11397:2;11377:18;;;11370:30;11436:34;11416:18;;;11409:62;-1:-1:-1;;;11487:18:1;;;11480:40;11537:19;;23516:74:0;11156:406:1;23516:74:0;-1:-1:-1;;;;;;23608:16:0;;;;;:9;:16;;;;;;;23424:208::o;2564:94::-;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;2629:21:::1;2647:1;2629:9;:21::i;37894:115::-:0;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;37971:13:::1;:30:::0;37894:115::o;24169:104::-;24225:13;24258:7;24251:14;;;;;:::i;25852:295::-;-1:-1:-1;;;;;25955:24:0;;775:10;25955:24;;25947:62;;;;-1:-1:-1;;;25947:62:0;;10166:2:1;25947:62:0;;;10148:21:1;10205:2;10185:18;;;10178:30;10244:27;10224:18;;;10217:55;10289:18;;25947:62:0;9964:349:1;25947:62:0;775:10;26022:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26022:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26022:53:0;;;;;;;;;;26091:48;;6982:41:1;;;26022:42:0;;775:10;26091:48;;6955:18:1;26091:48:0;;;;;;;25852:295;;:::o;27115:328::-;27290:41;775:10;27323:7;27290:18;:41::i;:::-;27282:103;;;;-1:-1:-1;;;27282:103:0;;;;;;;:::i;:::-;27396:39;27410:4;27416:2;27420:7;27429:5;27396:13;:39::i;:::-;27115:328;;;;:::o;37525:119::-;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;37604:14:::1;:32:::0;37525:119::o;38636:174::-;38702:13;38759;38774:26;38791:8;38774:16;:26::i;:::-;38742:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38728:74;;38636:174;;;:::o;36037:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2813:192::-;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2902:22:0;::::1;2894:73;;;::::0;-1:-1:-1;;;2894:73:0;;8637:2:1;2894:73:0::1;::::0;::::1;8619:21:1::0;8676:2;8656:18;;;8649:30;8715:34;8695:18;;;8688:62;-1:-1:-1;;;8766:18:1;;;8759:36;8812:19;;2894:73:0::1;8435:402:1::0;2894:73:0::1;2978:19;2988:8;2978:9;:19::i;:::-;2813:192:::0;:::o;37652:99::-;1986:6;;-1:-1:-1;;;;;1986:6:0;775:10;2133:23;2125:68;;;;-1:-1:-1;;;2125:68:0;;;;;;;:::i;:::-;37721:9:::1;:22:::0;37652:99::o;37000:326::-;37109:8;;37099:6;37085:11;;:20;;;;:::i;:::-;:32;;37077:76;;;;-1:-1:-1;;;37077:76:0;;9044:2:1;37077:76:0;;;9026:21:1;9083:2;9063:18;;;9056:30;9122:33;9102:18;;;9095:61;9173:18;;37077:76:0;8842:355:1;37077:76:0;37169:6;37164:155;37185:6;37181:1;:10;37164:155;;;37213:22;37219:2;37223:11;;37213:5;:22::i;:::-;37264:11;;37255:21;;-1:-1:-1;;;;;37255:21:0;;;;;;;;37306:1;37291:11;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;37193:3:0;;-1:-1:-1;37193:3:0;;;:::i;:::-;;;;37164:155;;32935:174;33010:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33010:29:0;-1:-1:-1;;;;;33010:29:0;;;;;;;;:24;;33064:23;33010:24;33064:14;:23::i;:::-;-1:-1:-1;;;;;33055:46:0;;;;;;;;;;;32935:174;;:::o;29247:348::-;29340:4;29042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29042:16:0;29357:73;;;;-1:-1:-1;;;29357:73:0;;10520:2:1;29357:73:0;;;10502:21:1;10559:2;10539:18;;;10532:30;10598:34;10578:18;;;10571:62;-1:-1:-1;;;10649:18:1;;;10642:42;10701:19;;29357:73:0;10318:408:1;29357:73:0;29441:13;29457:23;29472:7;29457:14;:23::i;:::-;29441:39;;29510:5;-1:-1:-1;;;;;29499:16:0;:7;-1:-1:-1;;;;;29499:16:0;;:51;;;;29543:7;-1:-1:-1;;;;;29519:31:0;:20;29531:7;29519:11;:20::i;:::-;-1:-1:-1;;;;;29519:31:0;;29499:51;:87;;;-1:-1:-1;;;;;;26339:25:0;;;26315:4;26339:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29554:32;29491:96;29247:348;-1:-1:-1;;;;29247:348:0:o;32239:578::-;32398:4;-1:-1:-1;;;;;32371:31:0;:23;32386:7;32371:14;:23::i;:::-;-1:-1:-1;;;;;32371:31:0;;32363:85;;;;-1:-1:-1;;;32363:85:0;;13663:2:1;32363:85:0;;;13645:21:1;13702:2;13682:18;;;13675:30;13741:34;13721:18;;;13714:62;-1:-1:-1;;;13792:18:1;;;13785:39;13841:19;;32363:85:0;13461:405:1;32363:85:0;-1:-1:-1;;;;;32467:16:0;;32459:65;;;;-1:-1:-1;;;32459:65:0;;9761:2:1;32459:65:0;;;9743:21:1;9800:2;9780:18;;;9773:30;9839:34;9819:18;;;9812:62;-1:-1:-1;;;9890:18:1;;;9883:34;9934:19;;32459:65:0;9559:400:1;32459:65:0;32641:29;32658:1;32662:7;32641:8;:29::i;:::-;-1:-1:-1;;;;;32683:15:0;;;;;;:9;:15;;;;;:20;;32702:1;;32683:15;:20;;32702:1;;32683:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32714:13:0;;;;;;:9;:13;;;;;:18;;32731:1;;32714:13;:18;;32731:1;;32714:18;:::i;:::-;;;;-1:-1:-1;;32743:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32743:21:0;-1:-1:-1;;;;;32743:21:0;;;;;;;;;32782:27;;32743:16;;32782:27;;;;;;;32239:578;;;:::o;38353:165::-;38416:12;38433:2;-1:-1:-1;;;;;38433:7:0;38448:6;38433:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38415:44;;;38478:7;38470:40;;;;-1:-1:-1;;;38470:40:0;;13314:2:1;38470:40:0;;;13296:21:1;13353:2;13333:18;;;13326:30;-1:-1:-1;;;13372:18:1;;;13365:50;13432:18;;38470:40:0;13112:344:1;3013:173:0;3088:6;;;-1:-1:-1;;;;;3105:17:0;;;-1:-1:-1;;;;;;3105:17:0;;;;;;;3138:40;;3088:6;;;3105:17;3088:6;;3138:40;;3069:16;;3138:40;3058:128;3013:173;:::o;28325:315::-;28482:28;28492:4;28498:2;28502:7;28482:9;:28::i;:::-;28529:48;28552:4;28558:2;28562:7;28571:5;28529:22;:48::i;:::-;28521:111;;;;-1:-1:-1;;;28521:111:0;;;;;;;:::i;18990:723::-;19046:13;19267:10;19263:53;;-1:-1:-1;;19294:10:0;;;;;;;;;;;;-1:-1:-1;;;19294:10:0;;;;;18990:723::o;19263:53::-;19341:5;19326:12;19382:78;19389:9;;19382:78;;19415:8;;;;:::i;:::-;;-1:-1:-1;19438:10:0;;-1:-1:-1;19446:2:0;19438:10;;:::i;:::-;;;19382:78;;;19470:19;19502:6;19492:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19492:17:0;;19470:39;;19520:154;19527:10;;19520:154;;19554:11;19564:1;19554:11;;:::i;:::-;;-1:-1:-1;19623:10:0;19631:2;19623:5;:10;:::i;:::-;19610:24;;:2;:24;:::i;:::-;19597:39;;19580:6;19587;19580:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19580:56:0;;;;;;;;-1:-1:-1;19651:11:0;19660:2;19651:11;;:::i;:::-;;;19520:154;;30931:382;-1:-1:-1;;;;;31011:16:0;;31003:61;;;;-1:-1:-1;;;31003:61:0;;12179:2:1;31003:61:0;;;12161:21:1;;;12198:18;;;12191:30;12257:34;12237:18;;;12230:62;12309:18;;31003:61:0;11977:356:1;31003:61:0;29018:4;29042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29042:16:0;:30;31075:58;;;;-1:-1:-1;;;31075:58:0;;9404:2:1;31075:58:0;;;9386:21:1;9443:2;9423:18;;;9416:30;9482;9462:18;;;9455:58;9530:18;;31075:58:0;9202:352:1;31075:58:0;-1:-1:-1;;;;;31204:13:0;;;;;;:9;:13;;;;;:18;;31221:1;;31204:13;:18;;31221:1;;31204:18;:::i;:::-;;;;-1:-1:-1;;31233:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31233:21:0;-1:-1:-1;;;;;31233:21:0;;;;;;;;31272:33;;31233:16;;;31272:33;;31233:16;;31272:33;30931:382;;:::o;33674:799::-;33829:4;-1:-1:-1;;;;;33850:13:0;;11663:20;11711:8;33846:620;;33886:72;;-1:-1:-1;;;33886:72:0;;-1:-1:-1;;;;;33886:36:0;;;;;:72;;775:10;;33937:4;;33943:7;;33952:5;;33886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33886:72:0;;;;;;;;-1:-1:-1;;33886:72:0;;;;;;;;;;;;:::i;:::-;;;33882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34128:13:0;;34124:272;;34171:60;;-1:-1:-1;;;34171:60:0;;;;;;;:::i;34124:272::-;34346:6;34340:13;34331:6;34327:2;34323:15;34316:38;33882:529;-1:-1:-1;;;;;;34009:51:0;-1:-1:-1;;;34009:51:0;;-1:-1:-1;34002:58:0;;33846:620;-1:-1:-1;34450:4:0;33674:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4562:185;-1:-1:-1;;4562:185:1:o;4752:1174::-;4928:3;4957:1;4990:6;4984:13;5020:3;5042:1;5070:9;5066:2;5062:18;5052:28;;5130:2;5119:9;5115:18;5152;5142:61;;5196:4;5188:6;5184:17;5174:27;;5142:61;5222:2;5270;5262:6;5259:14;5239:18;5236:38;5233:165;;;-1:-1:-1;;;5297:33:1;;5353:4;5350:1;5343:15;5383:4;5304:3;5371:17;5233:165;5414:18;5441:104;;;;5559:1;5554:320;;;;5407:467;;5441:104;-1:-1:-1;;5474:24:1;;5462:37;;5519:16;;;;-1:-1:-1;5441:104:1;;5554:320;15703:1;15696:14;;;15740:4;15727:18;;5649:1;5663:165;5677:6;5674:1;5671:13;5663:165;;;5755:14;;5742:11;;;5735:35;5798:16;;;;5692:10;;5663:165;;;5667:3;;5857:6;5852:3;5848:16;5841:23;;5407:467;;;;;;;5890:30;5916:3;5908:6;5890:30;:::i;:::-;5883:37;4752:1174;-1:-1:-1;;;;;4752:1174:1:o;6349:488::-;-1:-1:-1;;;;;6618:15:1;;;6600:34;;6670:15;;6665:2;6650:18;;6643:43;6717:2;6702:18;;6695:34;;;6765:3;6760:2;6745:18;;6738:31;;;6543:4;;6786:45;;6811:19;;6803:6;6786:45;:::i;:::-;6778:53;6349:488;-1:-1:-1;;;;;;6349:488:1:o;7034:219::-;7183:2;7172:9;7165:21;7146:4;7203:44;7243:2;7232:9;7228:18;7220:6;7203:44;:::i;7669:414::-;7871:2;7853:21;;;7910:2;7890:18;;;7883:30;7949:34;7944:2;7929:18;;7922:62;-1:-1:-1;;;8015:2:1;8000:18;;7993:48;8073:3;8058:19;;7669:414::o;12751:356::-;12953:2;12935:21;;;12972:18;;;12965:30;13031:34;13026:2;13011:18;;13004:62;13098:2;13083:18;;12751:356::o;14677:413::-;14879:2;14861:21;;;14918:2;14898:18;;;14891:30;14957:34;14952:2;14937:18;;14930:62;-1:-1:-1;;;15023:2:1;15008:18;;15001:47;15080:3;15065:19;;14677:413::o;15756:128::-;15796:3;15827:1;15823:6;15820:1;15817:13;15814:39;;;15833:18;;:::i;:::-;-1:-1:-1;15869:9:1;;15756:128::o;15889:120::-;15929:1;15955;15945:35;;15960:18;;:::i;:::-;-1:-1:-1;15994:9:1;;15889:120::o;16014:125::-;16054:4;16082:1;16079;16076:8;16073:34;;;16087:18;;:::i;:::-;-1:-1:-1;16124:9:1;;16014:125::o;16144:258::-;16216:1;16226:113;16240:6;16237:1;16234:13;16226:113;;;16316:11;;;16310:18;16297:11;;;16290:39;16262:2;16255:10;16226:113;;;16357:6;16354:1;16351:13;16348:48;;;-1:-1:-1;;16392:1:1;16374:16;;16367:27;16144:258::o;16407:380::-;16486:1;16482:12;;;;16529;;;16550:61;;16604:4;16596:6;16592:17;16582:27;;16550:61;16657:2;16649:6;16646:14;16626:18;16623:38;16620:161;;;16703:10;16698:3;16694:20;16691:1;16684:31;16738:4;16735:1;16728:15;16766:4;16763:1;16756:15;16620:161;;16407:380;;;:::o;16792:135::-;16831:3;-1:-1:-1;;16852:17:1;;16849:43;;;16872:18;;:::i;:::-;-1:-1:-1;16919:1:1;16908:13;;16792:135::o;16932:112::-;16964:1;16990;16980:35;;16995:18;;:::i;:::-;-1:-1:-1;17029:9:1;;16932:112::o;17049:127::-;17110:10;17105:3;17101:20;17098:1;17091:31;17141:4;17138:1;17131:15;17165:4;17162:1;17155:15;17181:127;17242:10;17237:3;17233:20;17230:1;17223:31;17273:4;17270:1;17263:15;17297:4;17294:1;17287:15;17313:127;17374:10;17369:3;17365:20;17362:1;17355:31;17405:4;17402:1;17395:15;17429:4;17426:1;17419:15;17445:127;17506:10;17501:3;17497:20;17494:1;17487:31;17537:4;17534:1;17527:15;17561:4;17558:1;17551:15;17577:131;-1:-1:-1;;;;;;17651:32:1;;17641:43;;17631:71;;17698:1;17695;17688:12

Swarm Source

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