ETH Price: $3,107.99 (+1.51%)
Gas: 5 Gwei

Token

Savannah Pixels (SP)
 

Overview

Max Total Supply

1,913 SP

Holders

428

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
solecity.eth
Balance
1 SP
0x724DaEbd22c0D403De40aa5ee6cD2e0E2d11Afb2
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Savannah_Pixels

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 12 of 13: savannah_pixels.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.10;

import "./ERC721Enum.sol";
import "./Ownable.sol";
import "./Strings.sol";

contract Savannah_Pixels is ERC721Enum, Ownable {
  using Strings for uint256;
  string internal baseURI ;
  uint256 public cost = 0.015 ether;
  uint256 public maxSupply = 3333;
  uint256 public maxMintAmount = 50;
  bool public paused = true;
  string _name = "Savannah Pixels";
  string _symbol = "SP";
  string _initBaseURI = "https://xm02-uvgu-kd4v.n2.xano.io/api:ZN1Zg2oJ/savannah_pixels/";

    constructor() ERC721P(_name, _symbol){
        setBaseURI(_initBaseURI);
    }

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);


    for (uint256 i = 0; i < _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
    // internal
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
    
     function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
     return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
        : "";
    }

  //only owner
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

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

  function withdraw() public payable onlyOwner {
    // This pays zeekay 10% of the initial sale.
    // =============================================================================
    (bool hs, ) = payable(0x0344e6DC73A4128d7a889509a13C3Dd25B4B688A).call{value: address(this).balance * 10 / 100}("");
    require(hs);
    // =============================================================================
    
    // This will payout the owner the contract balance.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

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 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

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 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 13: ERC721Enum.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./ERC721P.sol";
import "./IERC721Enumerable.sol";

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721P)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256 tokenId)
    {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

File 5 of 13: ERC721P.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    
    function getOwners() external view returns (address[] memory) {
        return _owners;
    }

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

    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        uint256 count = 0;
        uint256 length = _owners.length;
        for (uint256 i = 0; i < length; ++i) {
            if (owner == _owners[i]) {
                ++count;
            }
        }
        delete length;
        return count;
    }

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

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }

    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

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

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

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

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

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

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

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

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

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

    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);
        _owners.push(to);

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

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

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

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

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 7 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 8 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 9 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 10 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 11 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

66354a6ba7a18000600755610d056008556032600955600a805460ff1916600117905560c0604052600f60808190526e536176616e6e616820506978656c7360881b60a09081526200005591600b9190620003a1565b5060408051808201909152600280825261053560f41b60209092019182526200008191600c91620003a1565b506040518060600160405280603f8152602001620024da603f91398051620000b291600d91602090910190620003a1565b50348015620000c057600080fd5b50600b8054620000d09062000447565b80601f0160208091040260200160405190810160405280929190818152602001828054620000fe9062000447565b80156200014f5780601f1062000123576101008083540402835291602001916200014f565b820191906000526020600020905b8154815290600101906020018083116200013157829003601f168201915b5050505050600c8054620001639062000447565b80601f0160208091040260200160405190810160405280929190818152602001828054620001919062000447565b8015620001e25780601f10620001b657610100808354040283529160200191620001e2565b820191906000526020600020905b815481529060010190602001808311620001c457829003601f168201915b50508451620001fc935060009250602086019150620003a1565b50805162000212906001906020840190620003a1565b5050506200022f62000229620002d360201b60201c565b620002d7565b620002cd600d8054620002429062000447565b80601f0160208091040260200160405190810160405280929190818152602001828054620002709062000447565b8015620002c15780601f106200029557610100808354040283529160200191620002c1565b820191906000526020600020905b815481529060010190602001808311620002a357829003601f168201915b50506200032992505050565b62000484565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200039d906006906020840190620003a1565b5050565b828054620003af9062000447565b90600052602060002090601f016020900481019282620003d357600085556200041e565b82601f10620003ee57805160ff19168380011785556200041e565b828001600101855582156200041e579182015b828111156200041e57825182559160200191906001019062000401565b506200042c92915062000430565b5090565b5b808211156200042c576000815560010162000431565b600181811c908216806200045c57607f821691505b602082108114156200047e57634e487b7160e01b600052602260045260246000fd5b50919050565b61204680620004946000396000f3fe6080604052600436106101e35760003560e01c806355f804b31161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610554578063d5abeb0114610574578063e985e9c51461058a578063f2fde38b146105d357600080fd5b806395d89b41146104dd578063a0e67e2b146104f2578063a22cb46514610514578063b88d4fde1461053457600080fd5b8063715018a6116100d1578063715018a61461046a5780637f00c7a61461047f5780638462151c1461049f5780638da5cb5b146104bf57600080fd5b806355f804b3146103f05780635c975abb146104105780636352211e1461042a57806370a082311461044a57600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e14610363578063438b63001461038357806344a0d68a146103b05780634f6ccce7146103d057600080fd5b806323b872dd146103085780632f745c59146103285780633ccfd60b1461034857806340c10f191461035057600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806313faede6146102b957806318160ddd146102dd578063239c70ae146102f257600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b506102086102033660046119d5565b6105f3565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611a07565b61061e565b005b34801561024b57600080fd5b50610254610664565b6040516102149190611a7a565b34801561026d57600080fd5b5061028161027c366004611a8d565b6106f6565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611abd565b61077e565b3480156102c557600080fd5b506102cf60075481565b604051908152602001610214565b3480156102e957600080fd5b506002546102cf565b3480156102fe57600080fd5b506102cf60095481565b34801561031457600080fd5b5061023d610323366004611ae7565b610894565b34801561033457600080fd5b506102cf610343366004611abd565b6108c5565b61023d610974565b61023d61035e366004611abd565b610a90565b34801561036f57600080fd5b5061023d61037e366004611ae7565b610b18565b34801561038f57600080fd5b506103a361039e366004611b23565b610b33565b6040516102149190611b3e565b3480156103bc57600080fd5b5061023d6103cb366004611a8d565b610bd5565b3480156103dc57600080fd5b506102cf6103eb366004611a8d565b610c04565b3480156103fc57600080fd5b5061023d61040b366004611c0e565b610c61565b34801561041c57600080fd5b50600a546102089060ff1681565b34801561043657600080fd5b50610281610445366004611a8d565b610c9e565b34801561045657600080fd5b506102cf610465366004611b23565b610d2a565b34801561047657600080fd5b5061023d610dfc565b34801561048b57600080fd5b5061023d61049a366004611a8d565b610e32565b3480156104ab57600080fd5b506103a36104ba366004611b23565b610e61565b3480156104cb57600080fd5b506005546001600160a01b0316610281565b3480156104e957600080fd5b50610254610f23565b3480156104fe57600080fd5b50610507610f32565b6040516102149190611c57565b34801561052057600080fd5b5061023d61052f366004611c98565b610f93565b34801561054057600080fd5b5061023d61054f366004611ccb565b611058565b34801561056057600080fd5b5061025461056f366004611a8d565b61108a565b34801561058057600080fd5b506102cf60085481565b34801561059657600080fd5b506102086105a5366004611d47565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156105df57600080fd5b5061023d6105ee366004611b23565b611147565b60006001600160e01b0319821663780e9d6360e01b14806106185750610618826111e2565b92915050565b6005546001600160a01b031633146106515760405162461bcd60e51b815260040161064890611d71565b60405180910390fd5b600a805460ff1916911515919091179055565b60606000805461067390611da6565b80601f016020809104026020016040519081016040528092919081815260200182805461069f90611da6565b80156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b5050505050905090565b600061070182611232565b6107625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610648565b506000908152600360205260409020546001600160a01b031690565b600061078982610c9e565b9050806001600160a01b0316836001600160a01b031614156107f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610648565b336001600160a01b0382161480610813575061081381336105a5565b6108855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610648565b61088f838361127c565b505050565b61089e33826112ea565b6108ba5760405162461bcd60e51b815260040161064890611de1565b61088f8383836113d4565b60006108d083610d2a565b82106108ee5760405162461bcd60e51b815260040161064890611e32565b6000805b60025481101561095b576002818154811061090f5761090f611e62565b6000918252602090912001546001600160a01b038681169116141561094b578382141561093f5791506106189050565b61094882611e8e565b91505b61095481611e8e565b90506108f2565b5060405162461bcd60e51b815260040161064890611e32565b6005546001600160a01b0316331461099e5760405162461bcd60e51b815260040161064890611d71565b6000730344e6dc73a4128d7a889509a13c3dd25b4b688a60646109c247600a611ea9565b6109cc9190611ede565b604051600081818185875af1925050503d8060008114610a08576040519150601f19603f3d011682016040523d82523d6000602084013e610a0d565b606091505b5050905080610a1b57600080fd5b6000610a2f6005546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a79576040519150601f19603f3d011682016040523d82523d6000602084013e610a7e565b606091505b5050905080610a8c57600080fd5b5050565b6000610a9b60025490565b600a5490915060ff1615610aae57600080fd5b60008211610abb57600080fd5b600954821115610aca57600080fd5b600854610ad78383611ef2565b1115610ae257600080fd5b60005b82811015610b1257610b0084610afb8385611ef2565b61152a565b80610b0a81611e8e565b915050610ae5565b50505050565b61088f83838360405180602001604052806000815250611058565b60606000610b4083610d2a565b905060008167ffffffffffffffff811115610b5d57610b5d611b82565b604051908082528060200260200182016040528015610b86578160200160208202803683370190505b50905060005b82811015610bcd57610b9e85826108c5565b828281518110610bb057610bb0611e62565b602090810291909101015280610bc581611e8e565b915050610b8c565b509392505050565b6005546001600160a01b03163314610bff5760405162461bcd60e51b815260040161064890611d71565b600755565b6000610c0f60025490565b8210610c5d5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610648565b5090565b6005546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161064890611d71565b8051610a8c90600690602084019061192f565b60008060028381548110610cb457610cb4611e62565b6000918252602090912001546001600160a01b03169050806106185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610648565b60006001600160a01b038216610d955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610648565b600254600090815b81811015610df35760028181548110610db857610db8611e62565b6000918252602090912001546001600160a01b0386811691161415610de357610de083611e8e565b92505b610dec81611e8e565b9050610d9d565b50909392505050565b6005546001600160a01b03163314610e265760405162461bcd60e51b815260040161064890611d71565b610e306000611544565b565b6005546001600160a01b03163314610e5c5760405162461bcd60e51b815260040161064890611d71565b600955565b6060610e6c82610d2a565b600010610e8b5760405162461bcd60e51b815260040161064890611e32565b6000610e9683610d2a565b905060008167ffffffffffffffff811115610eb357610eb3611b82565b604051908082528060200260200182016040528015610edc578160200160208202803683370190505b50905060005b82811015610bcd57610ef485826108c5565b828281518110610f0657610f06611e62565b602090810291909101015280610f1b81611e8e565b915050610ee2565b60606001805461067390611da6565b606060028054806020026020016040519081016040528092919081815260200182805480156106ec57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610f6c575050505050905090565b6001600160a01b038216331415610fec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610648565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106233836112ea565b61107e5760405162461bcd60e51b815260040161064890611de1565b610b1284848484611596565b606061109582611232565b6110eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610648565b60006110f56115c9565b905060008151116111155760405180602001604052806000815250611140565b8061111f846115d8565b604051602001611130929190611f0a565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146111715760405162461bcd60e51b815260040161064890611d71565b6001600160a01b0381166111d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b6111df81611544565b50565b60006001600160e01b031982166380ac58cd60e01b148061121357506001600160e01b03198216635b5e139f60e01b145b8061061857506301ffc9a760e01b6001600160e01b0319831614610618565b60025460009082108015610618575060006001600160a01b03166002838154811061125f5761125f611e62565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b182610c9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112f582611232565b6113565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610648565b600061136183610c9e565b9050806001600160a01b0316846001600160a01b0316148061139c5750836001600160a01b0316611391846106f6565b6001600160a01b0316145b806113cc57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113e782610c9e565b6001600160a01b03161461144f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610648565b6001600160a01b0382166114b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610648565b6114bc60008261127c565b81600282815481106114d0576114d0611e62565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b610a8c8282604051806020016040528060008152506116d6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115a18484846113d4565b6115ad84848484611709565b610b125760405162461bcd60e51b815260040161064890611f39565b60606006805461067390611da6565b6060816115fc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611626578061161081611e8e565b915061161f9050600a83611ede565b9150611600565b60008167ffffffffffffffff81111561164157611641611b82565b6040519080825280601f01601f19166020018201604052801561166b576020820181803683370190505b5090505b84156113cc57611680600183611f8b565b915061168d600a86611fa2565b611698906030611ef2565b60f81b8183815181106116ad576116ad611e62565b60200101906001600160f81b031916908160001a9053506116cf600a86611ede565b945061166f565b6116e08383611807565b6116ed6000848484611709565b61088f5760405162461bcd60e51b815260040161064890611f39565b60006001600160a01b0384163b156117fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061174d903390899088908890600401611fb6565b6020604051808303816000875af1925050508015611788575060408051601f3d908101601f1916820190925261178591810190611ff3565b60015b6117e2573d8080156117b6576040519150601f19603f3d011682016040523d82523d6000602084013e6117bb565b606091505b5080516117da5760405162461bcd60e51b815260040161064890611f39565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113cc565b506001949350505050565b6001600160a01b03821661185d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610648565b61186681611232565b156118b35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610648565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461193b90611da6565b90600052602060002090601f01602090048101928261195d57600085556119a3565b82601f1061197657805160ff19168380011785556119a3565b828001600101855582156119a3579182015b828111156119a3578251825591602001919060010190611988565b50610c5d9291505b80821115610c5d57600081556001016119ab565b6001600160e01b0319811681146111df57600080fd5b6000602082840312156119e757600080fd5b8135611140816119bf565b80358015158114611a0257600080fd5b919050565b600060208284031215611a1957600080fd5b611140826119f2565b60005b83811015611a3d578181015183820152602001611a25565b83811115610b125750506000910152565b60008151808452611a66816020860160208601611a22565b601f01601f19169290920160200192915050565b6020815260006111406020830184611a4e565b600060208284031215611a9f57600080fd5b5035919050565b80356001600160a01b0381168114611a0257600080fd5b60008060408385031215611ad057600080fd5b611ad983611aa6565b946020939093013593505050565b600080600060608486031215611afc57600080fd5b611b0584611aa6565b9250611b1360208501611aa6565b9150604084013590509250925092565b600060208284031215611b3557600080fd5b61114082611aa6565b6020808252825182820181905260009190848201906040850190845b81811015611b7657835183529284019291840191600101611b5a565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bb357611bb3611b82565b604051601f8501601f19908116603f01168101908282118183101715611bdb57611bdb611b82565b81604052809350858152868686011115611bf457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c2057600080fd5b813567ffffffffffffffff811115611c3757600080fd5b8201601f81018413611c4857600080fd5b6113cc84823560208401611b98565b6020808252825182820181905260009190848201906040850190845b81811015611b765783516001600160a01b031683529284019291840191600101611c73565b60008060408385031215611cab57600080fd5b611cb483611aa6565b9150611cc2602084016119f2565b90509250929050565b60008060008060808587031215611ce157600080fd5b611cea85611aa6565b9350611cf860208601611aa6565b925060408501359150606085013567ffffffffffffffff811115611d1b57600080fd5b8501601f81018713611d2c57600080fd5b611d3b87823560208401611b98565b91505092959194509250565b60008060408385031215611d5a57600080fd5b611d6383611aa6565b9150611cc260208401611aa6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611dba57607f821691505b60208210811415611ddb57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ea257611ea2611e78565b5060010190565b6000816000190483118215151615611ec357611ec3611e78565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611eed57611eed611ec8565b500490565b60008219821115611f0557611f05611e78565b500190565b60008351611f1c818460208801611a22565b835190830190611f30818360208801611a22565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015611f9d57611f9d611e78565b500390565b600082611fb157611fb1611ec8565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe990830184611a4e565b9695505050505050565b60006020828403121561200557600080fd5b8151611140816119bf56fea2646970667358221220633f7deb96257ef3bcee7955d949db2178c90ef82229cb66f4feff0cd32f0c2564736f6c634300080a003368747470733a2f2f786d30322d757667752d6b6434762e6e322e78616e6f2e696f2f6170693a5a4e315a67326f4a2f736176616e6e61685f706978656c732f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806355f804b31161010257806395d89b4111610095578063c87b56dd11610064578063c87b56dd14610554578063d5abeb0114610574578063e985e9c51461058a578063f2fde38b146105d357600080fd5b806395d89b41146104dd578063a0e67e2b146104f2578063a22cb46514610514578063b88d4fde1461053457600080fd5b8063715018a6116100d1578063715018a61461046a5780637f00c7a61461047f5780638462151c1461049f5780638da5cb5b146104bf57600080fd5b806355f804b3146103f05780635c975abb146104105780636352211e1461042a57806370a082311461044a57600080fd5b806323b872dd1161017a57806342842e0e1161014957806342842e0e14610363578063438b63001461038357806344a0d68a146103b05780634f6ccce7146103d057600080fd5b806323b872dd146103085780632f745c59146103285780633ccfd60b1461034857806340c10f191461035057600080fd5b8063095ea7b3116101b6578063095ea7b31461029957806313faede6146102b957806318160ddd146102dd578063239c70ae146102f257600080fd5b806301ffc9a7146101e857806302329a291461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b506102086102033660046119d5565b6105f3565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004611a07565b61061e565b005b34801561024b57600080fd5b50610254610664565b6040516102149190611a7a565b34801561026d57600080fd5b5061028161027c366004611a8d565b6106f6565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611abd565b61077e565b3480156102c557600080fd5b506102cf60075481565b604051908152602001610214565b3480156102e957600080fd5b506002546102cf565b3480156102fe57600080fd5b506102cf60095481565b34801561031457600080fd5b5061023d610323366004611ae7565b610894565b34801561033457600080fd5b506102cf610343366004611abd565b6108c5565b61023d610974565b61023d61035e366004611abd565b610a90565b34801561036f57600080fd5b5061023d61037e366004611ae7565b610b18565b34801561038f57600080fd5b506103a361039e366004611b23565b610b33565b6040516102149190611b3e565b3480156103bc57600080fd5b5061023d6103cb366004611a8d565b610bd5565b3480156103dc57600080fd5b506102cf6103eb366004611a8d565b610c04565b3480156103fc57600080fd5b5061023d61040b366004611c0e565b610c61565b34801561041c57600080fd5b50600a546102089060ff1681565b34801561043657600080fd5b50610281610445366004611a8d565b610c9e565b34801561045657600080fd5b506102cf610465366004611b23565b610d2a565b34801561047657600080fd5b5061023d610dfc565b34801561048b57600080fd5b5061023d61049a366004611a8d565b610e32565b3480156104ab57600080fd5b506103a36104ba366004611b23565b610e61565b3480156104cb57600080fd5b506005546001600160a01b0316610281565b3480156104e957600080fd5b50610254610f23565b3480156104fe57600080fd5b50610507610f32565b6040516102149190611c57565b34801561052057600080fd5b5061023d61052f366004611c98565b610f93565b34801561054057600080fd5b5061023d61054f366004611ccb565b611058565b34801561056057600080fd5b5061025461056f366004611a8d565b61108a565b34801561058057600080fd5b506102cf60085481565b34801561059657600080fd5b506102086105a5366004611d47565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b3480156105df57600080fd5b5061023d6105ee366004611b23565b611147565b60006001600160e01b0319821663780e9d6360e01b14806106185750610618826111e2565b92915050565b6005546001600160a01b031633146106515760405162461bcd60e51b815260040161064890611d71565b60405180910390fd5b600a805460ff1916911515919091179055565b60606000805461067390611da6565b80601f016020809104026020016040519081016040528092919081815260200182805461069f90611da6565b80156106ec5780601f106106c1576101008083540402835291602001916106ec565b820191906000526020600020905b8154815290600101906020018083116106cf57829003601f168201915b5050505050905090565b600061070182611232565b6107625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610648565b506000908152600360205260409020546001600160a01b031690565b600061078982610c9e565b9050806001600160a01b0316836001600160a01b031614156107f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610648565b336001600160a01b0382161480610813575061081381336105a5565b6108855760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610648565b61088f838361127c565b505050565b61089e33826112ea565b6108ba5760405162461bcd60e51b815260040161064890611de1565b61088f8383836113d4565b60006108d083610d2a565b82106108ee5760405162461bcd60e51b815260040161064890611e32565b6000805b60025481101561095b576002818154811061090f5761090f611e62565b6000918252602090912001546001600160a01b038681169116141561094b578382141561093f5791506106189050565b61094882611e8e565b91505b61095481611e8e565b90506108f2565b5060405162461bcd60e51b815260040161064890611e32565b6005546001600160a01b0316331461099e5760405162461bcd60e51b815260040161064890611d71565b6000730344e6dc73a4128d7a889509a13c3dd25b4b688a60646109c247600a611ea9565b6109cc9190611ede565b604051600081818185875af1925050503d8060008114610a08576040519150601f19603f3d011682016040523d82523d6000602084013e610a0d565b606091505b5050905080610a1b57600080fd5b6000610a2f6005546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610a79576040519150601f19603f3d011682016040523d82523d6000602084013e610a7e565b606091505b5050905080610a8c57600080fd5b5050565b6000610a9b60025490565b600a5490915060ff1615610aae57600080fd5b60008211610abb57600080fd5b600954821115610aca57600080fd5b600854610ad78383611ef2565b1115610ae257600080fd5b60005b82811015610b1257610b0084610afb8385611ef2565b61152a565b80610b0a81611e8e565b915050610ae5565b50505050565b61088f83838360405180602001604052806000815250611058565b60606000610b4083610d2a565b905060008167ffffffffffffffff811115610b5d57610b5d611b82565b604051908082528060200260200182016040528015610b86578160200160208202803683370190505b50905060005b82811015610bcd57610b9e85826108c5565b828281518110610bb057610bb0611e62565b602090810291909101015280610bc581611e8e565b915050610b8c565b509392505050565b6005546001600160a01b03163314610bff5760405162461bcd60e51b815260040161064890611d71565b600755565b6000610c0f60025490565b8210610c5d5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610648565b5090565b6005546001600160a01b03163314610c8b5760405162461bcd60e51b815260040161064890611d71565b8051610a8c90600690602084019061192f565b60008060028381548110610cb457610cb4611e62565b6000918252602090912001546001600160a01b03169050806106185760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610648565b60006001600160a01b038216610d955760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610648565b600254600090815b81811015610df35760028181548110610db857610db8611e62565b6000918252602090912001546001600160a01b0386811691161415610de357610de083611e8e565b92505b610dec81611e8e565b9050610d9d565b50909392505050565b6005546001600160a01b03163314610e265760405162461bcd60e51b815260040161064890611d71565b610e306000611544565b565b6005546001600160a01b03163314610e5c5760405162461bcd60e51b815260040161064890611d71565b600955565b6060610e6c82610d2a565b600010610e8b5760405162461bcd60e51b815260040161064890611e32565b6000610e9683610d2a565b905060008167ffffffffffffffff811115610eb357610eb3611b82565b604051908082528060200260200182016040528015610edc578160200160208202803683370190505b50905060005b82811015610bcd57610ef485826108c5565b828281518110610f0657610f06611e62565b602090810291909101015280610f1b81611e8e565b915050610ee2565b60606001805461067390611da6565b606060028054806020026020016040519081016040528092919081815260200182805480156106ec57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610f6c575050505050905090565b6001600160a01b038216331415610fec5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610648565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61106233836112ea565b61107e5760405162461bcd60e51b815260040161064890611de1565b610b1284848484611596565b606061109582611232565b6110eb5760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b6064820152608401610648565b60006110f56115c9565b905060008151116111155760405180602001604052806000815250611140565b8061111f846115d8565b604051602001611130929190611f0a565b6040516020818303038152906040525b9392505050565b6005546001600160a01b031633146111715760405162461bcd60e51b815260040161064890611d71565b6001600160a01b0381166111d65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610648565b6111df81611544565b50565b60006001600160e01b031982166380ac58cd60e01b148061121357506001600160e01b03198216635b5e139f60e01b145b8061061857506301ffc9a760e01b6001600160e01b0319831614610618565b60025460009082108015610618575060006001600160a01b03166002838154811061125f5761125f611e62565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906112b182610c9e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006112f582611232565b6113565760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610648565b600061136183610c9e565b9050806001600160a01b0316846001600160a01b0316148061139c5750836001600160a01b0316611391846106f6565b6001600160a01b0316145b806113cc57506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113e782610c9e565b6001600160a01b03161461144f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610648565b6001600160a01b0382166114b15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610648565b6114bc60008261127c565b81600282815481106114d0576114d0611e62565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b610a8c8282604051806020016040528060008152506116d6565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6115a18484846113d4565b6115ad84848484611709565b610b125760405162461bcd60e51b815260040161064890611f39565b60606006805461067390611da6565b6060816115fc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611626578061161081611e8e565b915061161f9050600a83611ede565b9150611600565b60008167ffffffffffffffff81111561164157611641611b82565b6040519080825280601f01601f19166020018201604052801561166b576020820181803683370190505b5090505b84156113cc57611680600183611f8b565b915061168d600a86611fa2565b611698906030611ef2565b60f81b8183815181106116ad576116ad611e62565b60200101906001600160f81b031916908160001a9053506116cf600a86611ede565b945061166f565b6116e08383611807565b6116ed6000848484611709565b61088f5760405162461bcd60e51b815260040161064890611f39565b60006001600160a01b0384163b156117fc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061174d903390899088908890600401611fb6565b6020604051808303816000875af1925050508015611788575060408051601f3d908101601f1916820190925261178591810190611ff3565b60015b6117e2573d8080156117b6576040519150601f19603f3d011682016040523d82523d6000602084013e6117bb565b606091505b5080516117da5760405162461bcd60e51b815260040161064890611f39565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113cc565b506001949350505050565b6001600160a01b03821661185d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610648565b61186681611232565b156118b35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610648565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461193b90611da6565b90600052602060002090601f01602090048101928261195d57600085556119a3565b82601f1061197657805160ff19168380011785556119a3565b828001600101855582156119a3579182015b828111156119a3578251825591602001919060010190611988565b50610c5d9291505b80821115610c5d57600081556001016119ab565b6001600160e01b0319811681146111df57600080fd5b6000602082840312156119e757600080fd5b8135611140816119bf565b80358015158114611a0257600080fd5b919050565b600060208284031215611a1957600080fd5b611140826119f2565b60005b83811015611a3d578181015183820152602001611a25565b83811115610b125750506000910152565b60008151808452611a66816020860160208601611a22565b601f01601f19169290920160200192915050565b6020815260006111406020830184611a4e565b600060208284031215611a9f57600080fd5b5035919050565b80356001600160a01b0381168114611a0257600080fd5b60008060408385031215611ad057600080fd5b611ad983611aa6565b946020939093013593505050565b600080600060608486031215611afc57600080fd5b611b0584611aa6565b9250611b1360208501611aa6565b9150604084013590509250925092565b600060208284031215611b3557600080fd5b61114082611aa6565b6020808252825182820181905260009190848201906040850190845b81811015611b7657835183529284019291840191600101611b5a565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611bb357611bb3611b82565b604051601f8501601f19908116603f01168101908282118183101715611bdb57611bdb611b82565b81604052809350858152868686011115611bf457600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c2057600080fd5b813567ffffffffffffffff811115611c3757600080fd5b8201601f81018413611c4857600080fd5b6113cc84823560208401611b98565b6020808252825182820181905260009190848201906040850190845b81811015611b765783516001600160a01b031683529284019291840191600101611c73565b60008060408385031215611cab57600080fd5b611cb483611aa6565b9150611cc2602084016119f2565b90509250929050565b60008060008060808587031215611ce157600080fd5b611cea85611aa6565b9350611cf860208601611aa6565b925060408501359150606085013567ffffffffffffffff811115611d1b57600080fd5b8501601f81018713611d2c57600080fd5b611d3b87823560208401611b98565b91505092959194509250565b60008060408385031215611d5a57600080fd5b611d6383611aa6565b9150611cc260208401611aa6565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611dba57607f821691505b60208210811415611ddb57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415611ea257611ea2611e78565b5060010190565b6000816000190483118215151615611ec357611ec3611e78565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611eed57611eed611ec8565b500490565b60008219821115611f0557611f05611e78565b500190565b60008351611f1c818460208801611a22565b835190830190611f30818360208801611a22565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082821015611f9d57611f9d611e78565b500390565b600082611fb157611fb1611ec8565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fe990830184611a4e565b9695505050505050565b60006020828403121561200557600080fd5b8151611140816119bf56fea2646970667358221220633f7deb96257ef3bcee7955d949db2178c90ef82229cb66f4feff0cd32f0c2564736f6c634300080a0033

Deployed Bytecode Sourcemap

147:2864:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191:301:3;;;;;;;;;;-1:-1:-1;191:301:3;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;191:301:3;;;;;;;;2184:73:12;;;;;;;;;;-1:-1:-1;2184:73:12;;;;;:::i;:::-;;:::i;:::-;;2021:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2661:308::-;;;;;;;;;;-1:-1:-1;2661:308:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:13;;;2024:51;;2012:2;1997:18;2661:308:4;1878:203:13;2241:412:4;;;;;;;;;;-1:-1:-1;2241:412:4;;;;;:::i;:::-;;:::i;259:33:12:-;;;;;;;;;;;;;;;;;;;2669:25:13;;;2657:2;2642:18;259:33:12;2523:177:13;1470:110:3;;;;;;;;;;-1:-1:-1;1558:7:3;:14;1470:110;;333:33:12;;;;;;;;;;;;;;;;3534:376:4;;;;;;;;;;-1:-1:-1;3534:376:4;;;;;:::i;:::-;;:::i;500:504:3:-;;;;;;;;;;-1:-1:-1;500:504:3;;;;;:::i;:::-;;:::i;2266:742:12:-;;;:::i;659:348::-;;;;;;:::i;:::-;;:::i;3918:185:4:-;;;;;;;;;;-1:-1:-1;3918:185:4;;;;;:::i;:::-;;:::i;1013:348:12:-;;;;;;;;;;-1:-1:-1;1013:348:12;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1872:80::-;;;;;;;;;;-1:-1:-1;1872:80:12;;;;;:::i;:::-;;:::i;1588:244:3:-;;;;;;;;;;-1:-1:-1;1588:244:3;;;;;:::i;:::-;;:::i;2080:98:12:-;;;;;;;;;;-1:-1:-1;2080:98:12;;;;;:::i;:::-;;:::i;371:25::-;;;;;;;;;;-1:-1:-1;371:25:12;;;;;;;;1687:326:4;;;;;;;;;;-1:-1:-1;1687:326:4;;;;;:::i;:::-;;:::i;1161:518::-;;;;;;;;;;-1:-1:-1;1161:518:4;;;;;:::i;:::-;;:::i;1650:94:10:-;;;;;;;;;;;;;:::i;1958:116:12:-;;;;;;;;;;-1:-1:-1;1958:116:12;;;;;:::i;:::-;;:::i;1012:450:3:-;;;;;;;;;;-1:-1:-1;1012:450:3;;;;;:::i;:::-;;:::i;999:87:10:-;;;;;;;;;;-1:-1:-1;1072:6:10;;-1:-1:-1;;;;;1072:6:10;999:87;;2129:104:4;;;;;;;;;;;;;:::i;695:95::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2977:327::-;;;;;;;;;;-1:-1:-1;2977:327:4;;;;;:::i;:::-;;:::i;4111:365::-;;;;;;;;;;-1:-1:-1;4111:365:4;;;;;:::i;:::-;;:::i;1496:354:12:-;;;;;;;;;;-1:-1:-1;1496:354:12;;;;;:::i;:::-;;:::i;297:31::-;;;;;;;;;;;;;;;;3312:214:4;;;;;;;;;;-1:-1:-1;3312:214:4;;;;;:::i;:::-;-1:-1:-1;;;;;3483:25:4;;;3454:4;3483:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;3312:214;1899:192:10;;;;;;;;;;-1:-1:-1;1899:192:10;;;;;:::i;:::-;;:::i;191:301:3:-;339:4;-1:-1:-1;;;;;;381:50:3;;-1:-1:-1;;;381:50:3;;:103;;;448:36;472:11;448:23;:36::i;:::-;361:123;191:301;-1:-1:-1;;191:301:3:o;2184:73:12:-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;;;;;;;;;2236:6:12::1;:15:::0;;-1:-1:-1;;2236:15:12::1;::::0;::::1;;::::0;;;::::1;::::0;;2184:73::o;2021:100:4:-;2075:13;2108:5;2101:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021:100;:::o;2661:308::-;2782:7;2829:16;2837:7;2829;:16::i;:::-;2807:110;;;;-1:-1:-1;;;2807:110:4;;7898:2:13;2807:110:4;;;7880:21:13;7937:2;7917:18;;;7910:30;7976:34;7956:18;;;7949:62;-1:-1:-1;;;8027:18:13;;;8020:42;8079:19;;2807:110:4;7696:408:13;2807:110:4;-1:-1:-1;2937:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;2937:24:4;;2661:308::o;2241:412::-;2322:13;2338:24;2354:7;2338:15;:24::i;:::-;2322:40;;2387:5;-1:-1:-1;;;;;2381:11:4;:2;-1:-1:-1;;;;;2381:11:4;;;2373:57;;;;-1:-1:-1;;;2373:57:4;;8311:2:13;2373:57:4;;;8293:21:13;8350:2;8330:18;;;8323:30;8389:34;8369:18;;;8362:62;-1:-1:-1;;;8440:18:13;;;8433:31;8481:19;;2373:57:4;8109:397:13;2373:57:4;682:10:1;-1:-1:-1;;;;;2465:21:4;;;;:62;;-1:-1:-1;2490:37:4;2507:5;682:10:1;3312:214:4;:::i;2490:37::-;2443:168;;;;-1:-1:-1;;;2443:168:4;;8713:2:13;2443:168:4;;;8695:21:13;8752:2;8732:18;;;8725:30;8791:34;8771:18;;;8764:62;8862:26;8842:18;;;8835:54;8906:19;;2443:168:4;8511:420:13;2443:168:4;2624:21;2633:2;2637:7;2624:8;:21::i;:::-;2311:342;2241:412;;:::o;3534:376::-;3743:41;682:10:1;3776:7:4;3743:18;:41::i;:::-;3721:140;;;;-1:-1:-1;;;3721:140:4;;;;;;;:::i;:::-;3874:28;3884:4;3890:2;3894:7;3874:9;:28::i;500:504:3:-;625:15;674:24;692:5;674:17;:24::i;:::-;666:5;:32;658:67;;;;-1:-1:-1;;;658:67:3;;;;;;;:::i;:::-;736:13;765:9;760:186;780:7;:14;776:18;;760:186;;;829:7;837:1;829:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;820:19:3;;;829:10;;820:19;816:119;;;873:5;864;:14;860:59;;;887:1;-1:-1:-1;880:8:3;;-1:-1:-1;880:8:3;860:59;912:7;;;:::i;:::-;;;860:59;796:3;;;:::i;:::-;;;760:186;;;-1:-1:-1;956:40:3;;-1:-1:-1;;;956:40:3;;;;;;;:::i;2266:742:12:-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2455:7:12::1;2476:42;2561:3;2532:26;:21;2556:2;2532:26;:::i;:::-;:32;;;;:::i;:::-;2468:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2454:115;;;2584:2;2576:11;;;::::0;::::1;;2830:7;2851;1072:6:10::0;;-1:-1:-1;;;;;1072:6:10;;999:87;2851:7:12::1;-1:-1:-1::0;;;;;2843:21:12::1;2872;2843:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2829:69;;;2913:2;2905:11;;;::::0;::::1;;2311:697;;2266:742::o:0;659:348::-;729:14;746:13;1558:7:3;:14;;1470:110;746:13:12;775:6;;729:30;;-1:-1:-1;775:6:12;;774:7;766:16;;;;;;811:1;797:11;:15;789:24;;;;;;843:13;;828:11;:28;;820:37;;;;;;896:9;;872:20;881:11;872:6;:20;:::i;:::-;:33;;864:42;;;;;;922:9;917:85;941:11;937:1;:15;917:85;;;968:26;978:3;983:10;992:1;983:6;:10;:::i;:::-;968:9;:26::i;:::-;954:3;;;;:::i;:::-;;;;917:85;;;;722:285;659:348;;:::o;3918:185:4:-;4056:39;4073:4;4079:2;4083:7;4056:39;;;;;;;;;;;;:16;:39::i;1013:348:12:-;1088:16;1116:23;1142:17;1152:6;1142:9;:17::i;:::-;1116:43;;1166:25;1208:15;1194:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1194:30:12;;1166:58;;1236:9;1231:103;1251:15;1247:1;:19;1231:103;;;1296:30;1316:6;1324:1;1296:19;:30::i;:::-;1282:8;1291:1;1282:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;1268:3;;;;:::i;:::-;;;;1231:103;;;-1:-1:-1;1347:8:12;1013:348;-1:-1:-1;;;1013:348:12:o;1872:80::-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;1931:4:12::1;:15:::0;1872:80::o;1588:244:3:-;1708:7;1749:24;1558:7;:14;;1470:110;1749:24;1741:5;:32;1733:68;;;;-1:-1:-1;;;1733:68:3;;11084:2:13;1733:68:3;;;11066:21:13;11123:2;11103:18;;;11096:30;11162:25;11142:18;;;11135:53;11205:18;;1733:68:3;10882:347:13;1733:68:3;-1:-1:-1;1819:5:3;1588:244::o;2080:98:12:-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2151:21:12;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;1687:326:4:-:0;1804:7;1829:13;1845:7;1853;1845:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1845:16:4;;-1:-1:-1;1894:19:4;1872:110;;;;-1:-1:-1;;;1872:110:4;;11436:2:13;1872:110:4;;;11418:21:13;11475:2;11455:18;;;11448:30;11514:34;11494:18;;;11487:62;-1:-1:-1;;;11565:18:13;;;11558:39;11614:19;;1872:110:4;11234:405:13;1161:518:4;1278:7;-1:-1:-1;;;;;1325:19:4;;1303:111;;;;-1:-1:-1;;;1303:111:4;;11846:2:13;1303:111:4;;;11828:21:13;11885:2;11865:18;;;11858:30;11924:34;11904:18;;;11897:62;-1:-1:-1;;;11975:18:13;;;11968:40;12025:19;;1303:111:4;11644:406:13;1303:111:4;1470:7;:14;1425:13;;;1495:130;1519:6;1515:1;:10;1495:130;;;1560:7;1568:1;1560:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1551:19:4;;;1560:10;;1551:19;1547:67;;;1591:7;;;:::i;:::-;;;1547:67;1527:3;;;:::i;:::-;;;1495:130;;;-1:-1:-1;1666:5:4;;1161:518;-1:-1:-1;;;1161:518:4:o;1650:94:10:-;1072:6;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;1958:116:12:-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2035:13:12::1;:33:::0;1958:116::o;1012:450:3:-;1098:16;1144:24;1162:5;1144:17;:24::i;:::-;1140:1;:28;1132:63;;;;-1:-1:-1;;;1132:63:3;;;;;;;:::i;:::-;1206:18;1227:16;1237:5;1227:9;:16::i;:::-;1206:37;;1254:25;1296:10;1282:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1282:25:3;;1254:53;;1323:9;1318:111;1342:10;1338:1;:14;1318:111;;;1388:29;1408:5;1415:1;1388:19;:29::i;:::-;1374:8;1383:1;1374:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1354:3;;;;:::i;:::-;;;;1318:111;;2129:104:4;2185:13;2218:7;2211:14;;;;;:::i;695:95::-;739:16;775:7;768:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;768:14:4;;;;;;;;;;;;;;;;;;;;;;695:95;:::o;2977:327::-;-1:-1:-1;;;;;3112:24:4;;682:10:1;3112:24:4;;3104:62;;;;-1:-1:-1;;;3104:62:4;;12257:2:13;3104:62:4;;;12239:21:13;12296:2;12276:18;;;12269:30;12335:27;12315:18;;;12308:55;12380:18;;3104:62:4;12055:349:13;3104:62:4;682:10:1;3179:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;3179:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;3179:53:4;;;;;;;;;;3248:48;;540:41:13;;;3179:42:4;;682:10:1;3248:48:4;;513:18:13;3248:48:4;;;;;;;2977:327;;:::o;4111:365::-;4300:41;682:10:1;4333:7:4;4300:18;:41::i;:::-;4278:140;;;;-1:-1:-1;;;4278:140:4;;;;;;;:::i;:::-;4429:39;4443:4;4449:2;4453:7;4462:5;4429:13;:39::i;1496:354:12:-;1569:13;1603:16;1611:7;1603;:16::i;:::-;1595:62;;;;-1:-1:-1;;;1595:62:12;;12611:2:13;1595:62:12;;;12593:21:13;12650:2;12630:18;;;12623:30;12689:34;12669:18;;;12662:62;-1:-1:-1;;;12740:18:13;;;12733:31;12781:19;;1595:62:12;12409:397:13;1595:62:12;1668:28;1699:10;:8;:10::i;:::-;1668:41;;1755:1;1730:14;1724:28;:32;:118;;;;;;;;;;;;;;;;;1792:14;1808:18;:7;:16;:18::i;:::-;1775:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1724:118;1717:125;1496:354;-1:-1:-1;;;1496:354:12:o;1899:192:10:-;1072:6;;-1:-1:-1;;;;;1072:6:10;682:10:1;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:10;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:10;;13488:2:13;1980:73:10::1;::::0;::::1;13470:21:13::0;13527:2;13507:18;;;13500:30;13566:34;13546:18;;;13539:62;-1:-1:-1;;;13617:18:13;;;13610:36;13663:19;;1980:73:10::1;13286:402:13::0;1980:73:10::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;798:355:4:-;945:4;-1:-1:-1;;;;;;987:40:4;;-1:-1:-1;;;987:40:4;;:105;;-1:-1:-1;;;;;;;1044:48:4;;-1:-1:-1;;;1044:48:4;987:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:2;;;1109:36:4;787:157:2;4844:155:4;4943:7;:14;4909:4;;4933:24;;:58;;;;;4989:1;-1:-1:-1;;;;;4961:30:4;:7;4969;4961:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4961:16:4;:30;;4926:65;4844:155;-1:-1:-1;;4844:155:4:o;7172:175::-;7247:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;7247:29:4;-1:-1:-1;;;;;7247:29:4;;;;;;;;:24;;7301;7247;7301:15;:24::i;:::-;-1:-1:-1;;;;;7292:47:4;;;;;;;;;;;7172:175;;:::o;5007:453::-;5136:4;5180:16;5188:7;5180;:16::i;:::-;5158:110;;;;-1:-1:-1;;;5158:110:4;;13895:2:13;5158:110:4;;;13877:21:13;13934:2;13914:18;;;13907:30;13973:34;13953:18;;;13946:62;-1:-1:-1;;;14024:18:13;;;14017:42;14076:19;;5158:110:4;13693:408:13;5158:110:4;5279:13;5295:24;5311:7;5295:15;:24::i;:::-;5279:40;;5349:5;-1:-1:-1;;;;;5338:16:4;:7;-1:-1:-1;;;;;5338:16:4;;:64;;;;5395:7;-1:-1:-1;;;;;5371:31:4;:20;5383:7;5371:11;:20::i;:::-;-1:-1:-1;;;;;5371:31:4;;5338:64;:113;;;-1:-1:-1;;;;;;3483:25:4;;;3454:4;3483:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;5419:32;5330:122;5007:453;-1:-1:-1;;;;5007:453:4:o;6610:554::-;6784:4;-1:-1:-1;;;;;6756:32:4;:24;6772:7;6756:15;:24::i;:::-;-1:-1:-1;;;;;6756:32:4;;6734:123;;;;-1:-1:-1;;;6734:123:4;;14308:2:13;6734:123:4;;;14290:21:13;14347:2;14327:18;;;14320:30;14386:34;14366:18;;;14359:62;-1:-1:-1;;;14437:18:13;;;14430:39;14486:19;;6734:123:4;14106:405:13;6734:123:4;-1:-1:-1;;;;;6876:16:4;;6868:65;;;;-1:-1:-1;;;6868:65:4;;14718:2:13;6868:65:4;;;14700:21:13;14757:2;14737:18;;;14730:30;14796:34;14776:18;;;14769:62;-1:-1:-1;;;14847:18:13;;;14840:34;14891:19;;6868:65:4;14516:400:13;6868:65:4;7050:29;7067:1;7071:7;7050:8;:29::i;:::-;7109:2;7090:7;7098;7090:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;7090:21:4;-1:-1:-1;;;;;7090:21:4;;;;;;7129:27;;7148:7;;7129:27;;;;;;;;;;7090:16;7129:27;6610:554;;;:::o;5468:110::-;5544:26;5554:2;5558:7;5544:26;;;;;;;;;;;;:9;:26::i;2099:173:10:-;2174:6;;;-1:-1:-1;;;;;2191:17:10;;;-1:-1:-1;;;;;;2191:17:10;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;4484:352:4:-;4641:28;4651:4;4657:2;4661:7;4641:9;:28::i;:::-;4702:48;4725:4;4731:2;4735:7;4744:5;4702:22;:48::i;:::-;4680:148;;;;-1:-1:-1;;;4680:148:4;;;;;;;:::i;1384:99:12:-;1435:13;1468:7;1461:14;;;;;:::i;288:723:11:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:11;;;;;;;;;;;;-1:-1:-1;;;592:10:11;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:11;;-1:-1:-1;744:2:11;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:11;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:11;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:11;;;;;;;;-1:-1:-1;949:11:11;958:2;949:11;;:::i;:::-;;;818:154;;5586:321:4;5716:18;5722:2;5726:7;5716:5;:18::i;:::-;5767:54;5798:1;5802:2;5806:7;5815:5;5767:22;:54::i;:::-;5745:154;;;;-1:-1:-1;;;5745:154:4;;;;;;;:::i;7355:980::-;7510:4;-1:-1:-1;;;;;7531:13:4;;1066:20:0;1114:8;7527:801:4;;7584:175;;-1:-1:-1;;;7584:175:4;;-1:-1:-1;;;;;7584:36:4;;;;;:175;;682:10:1;;7678:4:4;;7705:7;;7735:5;;7584:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7584:175:4;;;;;;;;-1:-1:-1;;7584:175:4;;;;;;;;;;;;:::i;:::-;;;7563:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7942:13:4;;7938:320;;7985:108;;-1:-1:-1;;;7985:108:4;;;;;;;:::i;7938:320::-;8208:6;8202:13;8193:6;8189:2;8185:15;8178:38;7563:710;-1:-1:-1;;;;;;7823:51:4;-1:-1:-1;;;7823:51:4;;-1:-1:-1;7816:58:4;;7527:801;-1:-1:-1;8312:4:4;7355:980;;;;;;:::o;5915:346::-;-1:-1:-1;;;;;5995:16:4;;5987:61;;;;-1:-1:-1;;;5987:61:4;;16537:2:13;5987:61:4;;;16519:21:13;;;16556:18;;;16549:30;16615:34;16595:18;;;16588:62;16667:18;;5987:61:4;16335:356:13;5987:61:4;6068:16;6076:7;6068;:16::i;:::-;6067:17;6059:58;;;;-1:-1:-1;;;6059:58:4;;16898:2:13;6059:58:4;;;16880:21:13;16937:2;16917:18;;;16910:30;16976;16956:18;;;16949:58;17024:18;;6059:58:4;16696:352:13;6059:58:4;6186:7;:16;;;;;;;-1:-1:-1;6186:16:4;;;;;;;-1:-1:-1;;;;;;6186:16:4;-1:-1:-1;;;;;6186:16:4;;;;;;;;6220:33;;6245:7;;-1:-1:-1;6220:33:4;;-1:-1:-1;;6220:33:4;5915:346;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:13;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:13;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:13:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:13;;1693:180;-1:-1:-1;1693:180:13:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:13;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:13:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:632::-;3400:2;3452:21;;;3522:13;;3425:18;;;3544:22;;;3371:4;;3400:2;3623:15;;;;3597:2;3582:18;;;3371:4;3666:169;3680:6;3677:1;3674:13;3666:169;;;3741:13;;3729:26;;3810:15;;;;3775:12;;;;3702:1;3695:9;3666:169;;;-1:-1:-1;3852:3:13;;3229:632;-1:-1:-1;;;;;;3229:632:13:o;3866:127::-;3927:10;3922:3;3918:20;3915:1;3908:31;3958:4;3955:1;3948:15;3982:4;3979:1;3972:15;3998:632;4063:5;4093:18;4134:2;4126:6;4123:14;4120:40;;;4140:18;;:::i;:::-;4215:2;4209:9;4183:2;4269:15;;-1:-1:-1;;4265:24:13;;;4291:2;4261:33;4257:42;4245:55;;;4315:18;;;4335:22;;;4312:46;4309:72;;;4361:18;;:::i;:::-;4401:10;4397:2;4390:22;4430:6;4421:15;;4460:6;4452;4445:22;4500:3;4491:6;4486:3;4482:16;4479:25;4476:45;;;4517:1;4514;4507:12;4476:45;4567:6;4562:3;4555:4;4547:6;4543:17;4530:44;4622:1;4615:4;4606:6;4598;4594:19;4590:30;4583:41;;;;3998:632;;;;;:::o;4635:451::-;4704:6;4757:2;4745:9;4736:7;4732:23;4728:32;4725:52;;;4773:1;4770;4763:12;4725:52;4813:9;4800:23;4846:18;4838:6;4835:30;4832:50;;;4878:1;4875;4868:12;4832:50;4901:22;;4954:4;4946:13;;4942:27;-1:-1:-1;4932:55:13;;4983:1;4980;4973:12;4932:55;5006:74;5072:7;5067:2;5054:16;5049:2;5045;5041:11;5006:74;:::i;5091:658::-;5262:2;5314:21;;;5384:13;;5287:18;;;5406:22;;;5233:4;;5262:2;5485:15;;;;5459:2;5444:18;;;5233:4;5528:195;5542:6;5539:1;5536:13;5528:195;;;5607:13;;-1:-1:-1;;;;;5603:39:13;5591:52;;5698:15;;;;5663:12;;;;5639:1;5557:9;5528:195;;5754:254;5819:6;5827;5880:2;5868:9;5859:7;5855:23;5851:32;5848:52;;;5896:1;5893;5886:12;5848:52;5919:29;5938:9;5919:29;:::i;:::-;5909:39;;5967:35;5998:2;5987:9;5983:18;5967:35;:::i;:::-;5957:45;;5754:254;;;;;:::o;6013:667::-;6108:6;6116;6124;6132;6185:3;6173:9;6164:7;6160:23;6156:33;6153:53;;;6202:1;6199;6192:12;6153:53;6225:29;6244:9;6225:29;:::i;:::-;6215:39;;6273:38;6307:2;6296:9;6292:18;6273:38;:::i;:::-;6263:48;;6358:2;6347:9;6343:18;6330:32;6320:42;;6413:2;6402:9;6398:18;6385:32;6440:18;6432:6;6429:30;6426:50;;;6472:1;6469;6462:12;6426:50;6495:22;;6548:4;6540:13;;6536:27;-1:-1:-1;6526:55:13;;6577:1;6574;6567:12;6526:55;6600:74;6666:7;6661:2;6648:16;6643:2;6639;6635:11;6600:74;:::i;:::-;6590:84;;;6013:667;;;;;;;:::o;6685:260::-;6753:6;6761;6814:2;6802:9;6793:7;6789:23;6785:32;6782:52;;;6830:1;6827;6820:12;6782:52;6853:29;6872:9;6853:29;:::i;:::-;6843:39;;6901:38;6935:2;6924:9;6920:18;6901:38;:::i;6950:356::-;7152:2;7134:21;;;7171:18;;;7164:30;7230:34;7225:2;7210:18;;7203:62;7297:2;7282:18;;6950:356::o;7311:380::-;7390:1;7386:12;;;;7433;;;7454:61;;7508:4;7500:6;7496:17;7486:27;;7454:61;7561:2;7553:6;7550:14;7530:18;7527:38;7524:161;;;7607:10;7602:3;7598:20;7595:1;7588:31;7642:4;7639:1;7632:15;7670:4;7667:1;7660:15;7524:161;;7311:380;;;:::o;8936:413::-;9138:2;9120:21;;;9177:2;9157:18;;;9150:30;9216:34;9211:2;9196:18;;9189:62;-1:-1:-1;;;9282:2:13;9267:18;;9260:47;9339:3;9324:19;;8936:413::o;9354:346::-;9556:2;9538:21;;;9595:2;9575:18;;;9568:30;-1:-1:-1;;;9629:2:13;9614:18;;9607:52;9691:2;9676:18;;9354:346::o;9705:127::-;9766:10;9761:3;9757:20;9754:1;9747:31;9797:4;9794:1;9787:15;9821:4;9818:1;9811:15;9837:127;9898:10;9893:3;9889:20;9886:1;9879:31;9929:4;9926:1;9919:15;9953:4;9950:1;9943:15;9969:135;10008:3;-1:-1:-1;;10029:17:13;;10026:43;;;10049:18;;:::i;:::-;-1:-1:-1;10096:1:13;10085:13;;9969:135::o;10109:168::-;10149:7;10215:1;10211;10207:6;10203:14;10200:1;10197:21;10192:1;10185:9;10178:17;10174:45;10171:71;;;10222:18;;:::i;:::-;-1:-1:-1;10262:9:13;;10109:168::o;10282:127::-;10343:10;10338:3;10334:20;10331:1;10324:31;10374:4;10371:1;10364:15;10398:4;10395:1;10388:15;10414:120;10454:1;10480;10470:35;;10485:18;;:::i;:::-;-1:-1:-1;10519:9:13;;10414:120::o;10749:128::-;10789:3;10820:1;10816:6;10813:1;10810:13;10807:39;;;10826:18;;:::i;:::-;-1:-1:-1;10862:9:13;;10749:128::o;12811:470::-;12990:3;13028:6;13022:13;13044:53;13090:6;13085:3;13078:4;13070:6;13066:17;13044:53;:::i;:::-;13160:13;;13119:16;;;;13182:57;13160:13;13119:16;13216:4;13204:17;;13182:57;:::i;:::-;13255:20;;12811:470;-1:-1:-1;;;;12811:470:13:o;14921:414::-;15123:2;15105:21;;;15162:2;15142:18;;;15135:30;15201:34;15196:2;15181:18;;15174:62;-1:-1:-1;;;15267:2:13;15252:18;;15245:48;15325:3;15310:19;;14921:414::o;15340:125::-;15380:4;15408:1;15405;15402:8;15399:34;;;15413:18;;:::i;:::-;-1:-1:-1;15450:9:13;;15340:125::o;15470:112::-;15502:1;15528;15518:35;;15533:18;;:::i;:::-;-1:-1:-1;15567:9:13;;15470:112::o;15587:489::-;-1:-1:-1;;;;;15856:15:13;;;15838:34;;15908:15;;15903:2;15888:18;;15881:43;15955:2;15940:18;;15933:34;;;16003:3;15998:2;15983:18;;15976:31;;;15781:4;;16024:46;;16050:19;;16042:6;16024:46;:::i;:::-;16016:54;15587:489;-1:-1:-1;;;;;;15587:489:13:o;16081:249::-;16150:6;16203:2;16191:9;16182:7;16178:23;16174:32;16171:52;;;16219:1;16216;16209:12;16171:52;16251:9;16245:16;16270:30;16294:5;16270:30;:::i

Swarm Source

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