ETH Price: $3,290.71 (+1.51%)
Gas: 2 Gwei

Token

The GM Frens (GM)
 

Overview

Max Total Supply

471 GM

Holders

216

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 GM
0xb10833dcecf2549b836c7164ae67bd288918c10f
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:
GMFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 8 of 19: GMFriends.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";

import "./NativeMetaTransaction.sol";

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

contract GMFrens is
    ContextMixin,
    ERC721Enumerable,
    NativeMetaTransaction,
    Ownable
{
    using SafeMath for uint256;

    string public baseTokenURI;
    uint256 private _currentTokenId = 0;
    uint256 MAX_SUPPLY = 6900;
    uint256 public totalReserved;

    uint256 public presaleTime = 1641567000;
    uint256 public publicSaleTime = 1641653400;
    uint256 public presalePrice = .03 ether;
    uint256 public publicSalePrice = .04 ether;
    uint256 withdrawn;

    mapping(address => uint8) public reservedAmount;
    mapping(address => uint8) public userClaimed;

    event Reserved(address user, uint8 amount);

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC721(_name, _symbol) {
        baseTokenURI = _uri;
        _initializeEIP712(_name);
    }

    function mintByOwner(address[] memory recipients) external onlyOwner {
        for (uint256 i = 0; i < recipients.length; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(recipients[i], newTokenId);
            _incrementTokenId();
        }
        totalReserved += recipients.length;
    }

    function presaleReserve(uint8 num) external payable {
        require(
            block.timestamp >= presaleTime && block.timestamp < publicSaleTime,
            "GM Frens: Presale has not yet started."
        );
        require(totalReserved + uint256(num) <= MAX_SUPPLY);
        require(
            (num + reservedAmount[msg.sender]) <= 10,
            "GM Frens: Up to 10 GM Frens can be purchased."
        );
        require(
            msg.value == uint256(num) * presalePrice,
            "GM Frens: You need to pay the exact price."
        );
        reservedAmount[msg.sender] += num;
        totalReserved += uint256(num);
        emit Reserved(msg.sender, num);
    }

    function publicSaleReserve(uint8 num) external payable {
        require(
            block.timestamp >= publicSaleTime,
            "GM Frens: Public sale has not yet started."
        );
        require(totalReserved + uint256(num) <= MAX_SUPPLY);
        require(
            (num + reservedAmount[msg.sender]) <= 30,
            "GM Frens: Up to 30 GM Frens can be purchased."
        );
        require(
            msg.value == uint256(num) * publicSalePrice,
            "GM Frens: You need to pay the exact price."
        );
        reservedAmount[msg.sender] += num;
        totalReserved += uint256(num);
        emit Reserved(msg.sender, num);
    }

    function mintForFriends(address[] memory addrs) external {
        require(
            block.timestamp >= publicSaleTime,
            "GM Frens: Public sale has not yet started."
        );
        for (uint256 i = 0; i < addrs.length; i++) {
            uint8 amount = reservedAmount[addrs[i]] - userClaimed[addrs[i]];
            require(amount > 0);
            userClaimed[addrs[i]] += amount;
            _mintAmount(addrs[i], amount);
        }
    }

    function _mintAmount(address _user, uint8 _num) private {
        for (uint8 i = 0; i < _num; i++) {
            uint256 newTokenId = _getNextTokenId();
            _mint(_user, newTokenId);
            _incrementTokenId();
        }
    }

    function _getNextTokenId() private view returns (uint256) {
        return _currentTokenId.add(1);
    }

    function _incrementTokenId() private {
        require(_currentTokenId < MAX_SUPPLY);
        _currentTokenId++;
    }

    function setBaseUri(string memory _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function setAllTime(uint256 _preSaleTime, uint256 _publicSaleTime)
        external
        onlyOwner
    {
        presaleTime = _preSaleTime;
        publicSaleTime = _publicSaleTime;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId)));
    }

    function _msgSender() internal view override returns (address sender) {
        return ContextMixin.msgSender();
    }

    function withdraw() external onlyOwner {
        uint256 canWithdraw = totalSupply() * publicSalePrice - withdrawn;
        if (canWithdraw > address(this).balance)
            canWithdraw = address(this).balance;
        payable(owner()).transfer(canWithdraw);
        withdrawn += canWithdraw;
    }
}

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

pragma solidity ^0.8.1;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 19: ContentMixin.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

abstract contract ContextMixin {
    function msgSender() internal view returns (address payable sender) {
        if (msg.sender == address(this)) {
            bytes memory array = msg.data;
            uint256 index = msg.data.length;
            assembly {
                // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those.
                sender := and(
                    mload(add(array, index)),
                    0xffffffffffffffffffffffffffffffffffffffff
                )
            }
        } else {
            sender = payable(msg.sender);
        }
        return sender;
    }
}

File 3 of 19: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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

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

File 4 of 19: EIP712Base.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import {Initializable} from "./Initializable.sol";

contract EIP712Base is Initializable {
    struct EIP712Domain {
        string name;
        string version;
        address verifyingContract;
        bytes32 salt;
    }

    string public constant ERC712_VERSION = "1";

    bytes32 internal constant EIP712_DOMAIN_TYPEHASH =
        keccak256(
            bytes(
                "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)"
            )
        );
    bytes32 internal domainSeperator;

    // supposed to be called once while initializing.
    // one of the contracts that inherits this contract follows proxy pattern
    // so it is not possible to do this in a constructor
    function _initializeEIP712(string memory name) internal initializer {
        _setDomainSeperator(name);
    }

    function _setDomainSeperator(string memory name) internal {
        domainSeperator = keccak256(
            abi.encode(
                EIP712_DOMAIN_TYPEHASH,
                keccak256(bytes(name)),
                keccak256(bytes(ERC712_VERSION)),
                address(this),
                bytes32(getChainId())
            )
        );
    }

    function getDomainSeperator() public view returns (bytes32) {
        return domainSeperator;
    }

    function getChainId() public view returns (uint256) {
        uint256 id;
        assembly {
            id := chainid()
        }
        return id;
    }

    /**
     * Accept message hash and returns hash message in EIP712 compatible form
     * So that it can be used to recover signer from signature signed using EIP712 formatted data
     * https://eips.ethereum.org/EIPS/eip-712
     * "\\x19" makes the encoding deterministic
     * "\\x01" is the version byte to make it compatible to EIP-191
     */
    function toTypedMessageHash(bytes32 messageHash)
        internal
        view
        returns (bytes32)
    {
        return
            keccak256(
                abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash)
            );
    }
}

File 5 of 19: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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 6 of 19: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 19: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

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

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 9 of 19: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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

File 10 of 19: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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

pragma solidity ^0.8.1;

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 12 of 19: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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

pragma solidity ^0.8.1;

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

File 14 of 19: Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

contract Initializable {
    bool inited = false;

    modifier initializer() {
        require(!inited, "already inited");
        _;
        inited = true;
    }
}

File 15 of 19: Migrations.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

contract Migrations {
    address public owner;
    uint256 public last_completed_migration;

    constructor() {
        owner = msg.sender;
    }

    modifier restricted() {
        if (msg.sender == owner) _;
    }

    function setCompleted(uint256 completed) public restricted {
        last_completed_migration = completed;
    }

    function upgrade(address new_address) public restricted {
        Migrations upgraded = Migrations(new_address);
        upgraded.setCompleted(last_completed_migration);
    }
}

File 16 of 19: NativeMetaTransaction.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

import {SafeMath} from "./SafeMath.sol";
import {EIP712Base} from "./EIP712Base.sol";

contract NativeMetaTransaction is EIP712Base {
    using SafeMath for uint256;
    bytes32 private constant META_TRANSACTION_TYPEHASH =
        keccak256(
            bytes(
                "MetaTransaction(uint256 nonce,address from,bytes functionSignature)"
            )
        );
    event MetaTransactionExecuted(
        address userAddress,
        address payable relayerAddress,
        bytes functionSignature
    );
    mapping(address => uint256) nonces;

    /*
     * Meta transaction structure.
     * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas
     * He should call the desired function directly in that case.
     */
    struct MetaTransaction {
        uint256 nonce;
        address from;
        bytes functionSignature;
    }

    function executeMetaTransaction(
        address userAddress,
        bytes memory functionSignature,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) public payable returns (bytes memory) {
        MetaTransaction memory metaTx = MetaTransaction({
            nonce: nonces[userAddress],
            from: userAddress,
            functionSignature: functionSignature
        });

        require(
            verify(userAddress, metaTx, sigR, sigS, sigV),
            "Signer and signature do not match"
        );

        // increase nonce for user (to avoid re-use)
        nonces[userAddress] = nonces[userAddress].add(1);

        emit MetaTransactionExecuted(
            userAddress,
            payable(msg.sender),
            functionSignature
        );

        // Append userAddress and relayer address at the end to extract it from calling context
        (bool success, bytes memory returnData) = address(this).call(
            abi.encodePacked(functionSignature, userAddress)
        );
        require(success, "Function call not successful");

        return returnData;
    }

    function hashMetaTransaction(MetaTransaction memory metaTx)
        internal
        pure
        returns (bytes32)
    {
        return
            keccak256(
                abi.encode(
                    META_TRANSACTION_TYPEHASH,
                    metaTx.nonce,
                    metaTx.from,
                    keccak256(metaTx.functionSignature)
                )
            );
    }

    function getNonce(address user) public view returns (uint256 nonce) {
        nonce = nonces[user];
    }

    function verify(
        address signer,
        MetaTransaction memory metaTx,
        bytes32 sigR,
        bytes32 sigS,
        uint8 sigV
    ) internal view returns (bool) {
        require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER");
        return
            signer ==
            ecrecover(
                toTypedMessageHash(hashMetaTransaction(metaTx)),
                sigV,
                sigR,
                sigS
            );
    }
}

File 17 of 19: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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 18 of 19: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 19 of 19: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.1;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"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":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","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":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint8","name":"amount","type":"uint8"}],"name":"Reserved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintByOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"mintForFriends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"num","type":"uint8"}],"name":"presaleReserve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"num","type":"uint8"}],"name":"publicSaleReserve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"reservedAmount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"uint256","name":"_preSaleTime","type":"uint256"},{"internalType":"uint256","name":"_publicSaleTime","type":"uint256"}],"name":"setAllTime","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":"_uri","type":"string"}],"name":"setBaseUri","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":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReserved","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":"","type":"address"}],"name":"userClaimed","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600a805460ff191690556000600f55611af46010556361d853186012556361d9a498601355666a94d74f430000601455668e1bc9bf0400006015553480156200004c57600080fd5b506040516200334c3803806200334c8339810160408190526200006f9162000415565b82518390839062000088906000906020850190620002b8565b5080516200009e906001906020840190620002b8565b505050620000bb620000b5620000e560201b60201c565b62000101565b8051620000d090600e906020840190620002b8565b50620000dc8362000153565b505050620004f9565b6000620000fc620001b760201b620017ce1760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156200019c5760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001a78162000216565b50600a805460ff19166001179055565b6000333014156200021057600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002139050565b50335b90565b6040518060800160405280604f8152602001620032fd604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002c690620004a6565b90600052602060002090601f016020900481019282620002ea576000855562000335565b82601f106200030557805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033557825182559160200191906001019062000318565b506200034392915062000347565b5090565b5b8082111562000343576000815560010162000348565b600082601f8301126200037057600080fd5b81516001600160401b03808211156200038d576200038d620004e3565b604051601f8301601f19908116603f01168101908282118183101715620003b857620003b8620004e3565b81604052838152602092508683858801011115620003d557600080fd5b600091505b83821015620003f95785820183015181830184015290820190620003da565b838211156200040b5760008385830101525b9695505050505050565b6000806000606084860312156200042b57600080fd5b83516001600160401b03808211156200044357600080fd5b62000451878388016200035e565b945060208601519150808211156200046857600080fd5b62000476878388016200035e565b935060408601519150808211156200048d57600080fd5b506200049c868287016200035e565b9150509250925092565b600181811c90821680620004bb57607f821691505b60208210811415620004dd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612df480620005096000396000f3fe60806040526004361061022f5760003560e01c80634ed3f96f1161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610669578063d547cfb714610689578063e985e9c51461069e578063f2fde38b146106e7578063fb4d81fc1461070757600080fd5b8063a22cb465146105dd578063b88d4fde146105fd578063c41e4ef41461061d578063c6e62e0b1461063d578063c71b0e1c1461065357600080fd5b8063715018a6116100f2578063715018a61461055f5780638da5cb5b1461057457806395d89b41146105925780639b6860c8146105a7578063a0bcfc7f146105bd57600080fd5b80634ed3f96f146104cc5780634f6ccce7146104ec5780636352211e1461050c57806367d5d4b01461052c57806370a082311461053f57600080fd5b806320379ee5116101bc5780632f745c59116101805780632f745c59146104345780633408e470146104545780633b7fcdca146104675780633ccfd60b1461049757806342842e0e146104ac57600080fd5b806320379ee5146103715780632344be0a14610386578063234649061461039c57806323b872dd146103de5780632d0335ab146103fe57600080fd5b8063095ea7b311610203578063095ea7b3146102e75780630c53c51c146103095780630f7e59701461031c578063139bee421461034957806318160ddd1461035c57600080fd5b80620e7fa81461023457806301ffc9a71461025d57806306fdde031461028d578063081812fc146102af575b600080fd5b34801561024057600080fd5b5061024a60145481565b6040519081526020015b60405180910390f35b34801561026957600080fd5b5061027d6102783660046127ad565b610727565b6040519015158152602001610254565b34801561029957600080fd5b506102a2610752565b6040516102549190612a31565b3480156102bb57600080fd5b506102cf6102ca366004612830565b6107e4565b6040516001600160a01b039091168152602001610254565b3480156102f357600080fd5b506103076103023660046126cf565b61087e565b005b6102a261031736600461265d565b6109a6565b34801561032857600080fd5b506102a2604051806040016040528060018152602001603160f81b81525081565b61030761035736600461286b565b610b90565b34801561036857600080fd5b5060085461024a565b34801561037d57600080fd5b50600b5461024a565b34801561039257600080fd5b5061024a60135481565b3480156103a857600080fd5b506103cc6103b736600461252f565b60176020526000908152604090205460ff1681565b60405160ff9091168152602001610254565b3480156103ea57600080fd5b506103076103f936600461257d565b610da7565b34801561040a57600080fd5b5061024a61041936600461252f565b6001600160a01b03166000908152600c602052604090205490565b34801561044057600080fd5b5061024a61044f3660046126cf565b610ddf565b34801561046057600080fd5b504661024a565b34801561047357600080fd5b506103cc61048236600461252f565b60186020526000908152604090205460ff1681565b3480156104a357600080fd5b50610307610e75565b3480156104b857600080fd5b506103076104c736600461257d565b610f45565b3480156104d857600080fd5b506103076104e7366004612849565b610f60565b3480156104f857600080fd5b5061024a610507366004612830565b610fb4565b34801561051857600080fd5b506102cf610527366004612830565b611047565b61030761053a36600461286b565b6110be565b34801561054b57600080fd5b5061024a61055a36600461252f565b611196565b34801561056b57600080fd5b5061030761121d565b34801561058057600080fd5b50600d546001600160a01b03166102cf565b34801561059e57600080fd5b506102a2611272565b3480156105b357600080fd5b5061024a60155481565b3480156105c957600080fd5b506103076105d83660046127e7565b611281565b3480156105e957600080fd5b506103076105f8366004612621565b6112e1565b34801561060957600080fd5b506103076106183660046125b9565b6113e3565b34801561062957600080fd5b506103076106383660046126f9565b611422565b34801561064957600080fd5b5061024a60125481565b34801561065f57600080fd5b5061024a60115481565b34801561067557600080fd5b506102a2610684366004612830565b61159f565b34801561069557600080fd5b506102a26115d3565b3480156106aa57600080fd5b5061027d6106b936600461254a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f357600080fd5b5061030761070236600461252f565b611661565b34801561071357600080fd5b506103076107223660046126f9565b61171b565b60006001600160e01b0319821663780e9d6360e01b148061074c575061074c8261182b565b92915050565b60606000805461076190612c6d565b80601f016020809104026020016040519081016040528092919081815260200182805461078d90612c6d565b80156107da5780601f106107af576101008083540402835291602001916107da565b820191906000526020600020905b8154815290600101906020018083116107bd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088982611047565b9050806001600160a01b0316836001600160a01b031614156108f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610859565b806001600160a01b031661090961187b565b6001600160a01b031614806109255750610925816106b961187b565b6109975760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610859565b6109a1838361188a565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526109e487828787876118f8565b610a3a5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610859565b6001600160a01b0387166000908152600c6020526040902054610a5e9060016119e8565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610aae90899033908a906129c8565b60405180910390a1600080306001600160a01b0316888a604051602001610ad69291906128ea565b60408051601f1981840301815290829052610af0916128ce565b6000604051808303816000865af19150503d8060008114610b2d576040519150601f19603f3d011682016040523d82523d6000602084013e610b32565b606091505b509150915081610b845760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610859565b98975050505050505050565b6012544210158015610ba3575060135442105b610bfe5760405162461bcd60e51b815260206004820152602660248201527f474d204672656e733a2050726573616c6520686173206e6f742079657420737460448201526530b93a32b21760d11b6064820152608401610859565b6010548160ff16601154610c129190612b97565b1115610c1d57600080fd5b33600090815260176020526040902054600a90610c3d9060ff1683612baf565b60ff161115610ca45760405162461bcd60e51b815260206004820152602d60248201527f474d204672656e733a20557020746f20313020474d204672656e732063616e2060448201526c313290383ab931b430b9b2b21760991b6064820152608401610859565b601454610cb49060ff8316612be8565b3414610d155760405162461bcd60e51b815260206004820152602a60248201527f474d204672656e733a20596f75206e65656420746f207061792074686520657860448201526930b1ba10383934b1b29760b11b6064820152608401610859565b3360009081526017602052604081208054839290610d3790849060ff16612baf565b92506101000a81548160ff021916908360ff1602179055508060ff1660116000828254610d649190612b97565b90915550506040805133815260ff831660208201527f3ba60c1c710f2ec100a624408f910f88f5a4b177cd96629d541df02019fd8918910160405180910390a150565b610db8610db261187b565b826119fb565b610dd45760405162461bcd60e51b815260040161085990612acb565b6109a1838383611af2565b6000610dea83611196565b8210610e4c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610859565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610e7d61187b565b6001600160a01b0316610e98600d546001600160a01b031690565b6001600160a01b031614610ebe5760405162461bcd60e51b815260040161085990612a96565b6000601654601554610ecf60085490565b610ed99190612be8565b610ee39190612c07565b905047811115610ef05750475b600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610f2a573d6000803e3d6000fd5b508060166000828254610f3d9190612b97565b909155505050565b6109a1838383604051806020016040528060008152506113e3565b610f6861187b565b6001600160a01b0316610f83600d546001600160a01b031690565b6001600160a01b031614610fa95760405162461bcd60e51b815260040161085990612a96565b601291909155601355565b6000610fbf60085490565b82106110225760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610859565b6008828154811061103557611035612d39565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061074c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610859565b6013544210156110e05760405162461bcd60e51b815260040161085990612b1c565b6010548160ff166011546110f49190612b97565b11156110ff57600080fd5b33600090815260176020526040902054601e9061111f9060ff1683612baf565b60ff1611156111865760405162461bcd60e51b815260206004820152602d60248201527f474d204672656e733a20557020746f20333020474d204672656e732063616e2060448201526c313290383ab931b430b9b2b21760991b6064820152608401610859565b601554610cb49060ff8316612be8565b60006001600160a01b0382166112015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610859565b506001600160a01b031660009081526003602052604090205490565b61122561187b565b6001600160a01b0316611240600d546001600160a01b031690565b6001600160a01b0316146112665760405162461bcd60e51b815260040161085990612a96565b6112706000611c9d565b565b60606001805461076190612c6d565b61128961187b565b6001600160a01b03166112a4600d546001600160a01b031690565b6001600160a01b0316146112ca5760405162461bcd60e51b815260040161085990612a96565b80516112dd90600e9060208401906123f1565b5050565b6112e961187b565b6001600160a01b0316826001600160a01b0316141561134a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610859565b806005600061135761187b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561139b61187b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d7911515815260200190565b60405180910390a35050565b6113f46113ee61187b565b836119fb565b6114105760405162461bcd60e51b815260040161085990612acb565b61141c84848484611cef565b50505050565b6013544210156114445760405162461bcd60e51b815260040161085990612b1c565b60005b81518110156112dd5760006018600084848151811061146857611468612d39565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a900460ff16601760008585815181106114b4576114b4612d39565b6020908102919091018101516001600160a01b03168252810191909152604001600020546114e5919060ff16612c1e565b905060008160ff16116114f757600080fd5b806018600085858151811061150e5761150e612d39565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008282829054906101000a900460ff166115519190612baf565b92506101000a81548160ff021916908360ff16021790555061158c83838151811061157e5761157e612d39565b602002602001015182611d22565b508061159781612ca8565b915050611447565b6060600e6115ac83611d64565b6040516020016115bd929190612921565b6040516020818303038152906040529050919050565b600e80546115e090612c6d565b80601f016020809104026020016040519081016040528092919081815260200182805461160c90612c6d565b80156116595780601f1061162e57610100808354040283529160200191611659565b820191906000526020600020905b81548152906001019060200180831161163c57829003601f168201915b505050505081565b61166961187b565b6001600160a01b0316611684600d546001600160a01b031690565b6001600160a01b0316146116aa5760405162461bcd60e51b815260040161085990612a96565b6001600160a01b03811661170f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610859565b61171881611c9d565b50565b61172361187b565b6001600160a01b031661173e600d546001600160a01b031690565b6001600160a01b0316146117645760405162461bcd60e51b815260040161085990612a96565b60005b81518110156117ba57600061177a611e62565b905061179f83838151811061179157611791612d39565b602002602001015182611e73565b6117a7611fc1565b50806117b281612ca8565b915050611767565b50805160116000828254610f3d9190612b97565b60003330141561182557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506118289050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061185c57506001600160e01b03198216635b5e139f60e01b145b8061074c57506301ffc9a760e01b6001600160e01b031983161461074c565b60006118856117ce565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118bf82611047565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661195e5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610859565b600161197161196c87611fe8565b612065565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156119bf573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006119f48284612b97565b9392505050565b6000818152600260205260408120546001600160a01b0316611a745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b6000611a7f83611047565b9050806001600160a01b0316846001600160a01b03161480611aba5750836001600160a01b0316611aaf846107e4565b6001600160a01b0316145b80611aea57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b0582611047565b6001600160a01b031614611b6d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610859565b6001600160a01b038216611bcf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610859565b611bda838383612095565b611be560008261188a565b6001600160a01b0383166000908152600360205260408120805460019290611c0e908490612c07565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c3c908490612b97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611cfa848484611af2565b611d068484848461214d565b61141c5760405162461bcd60e51b815260040161085990612a44565b60005b8160ff168160ff1610156109a1576000611d3d611e62565b9050611d498482611e73565b611d51611fc1565b5080611d5c81612cc3565b915050611d25565b606081611d885750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db25780611d9c81612ca8565b9150611dab9050600a83612bd4565b9150611d8c565b60008167ffffffffffffffff811115611dcd57611dcd612d4f565b6040519080825280601f01601f191660200182016040528015611df7576020820181803683370190505b5090505b8415611aea57611e0c600183612c07565b9150611e19600a86612ce3565b611e24906030612b97565b60f81b818381518110611e3957611e39612d39565b60200101906001600160f81b031916908160001a905350611e5b600a86612bd4565b9450611dfb565b600f546000906118859060016119e8565b6001600160a01b038216611ec95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610859565b6000818152600260205260409020546001600160a01b031615611f2e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610859565b611f3a60008383612095565b6001600160a01b0382166000908152600360205260408120805460019290611f63908490612b97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b601054600f5410611fd157600080fd5b600f8054906000611fe183612ca8565b9190505550565b6000604051806080016040528060438152602001612d7c6043913980516020918201208351848301516040808701518051908601209051612048950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612070600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612048565b6001600160a01b0383166120f0576120eb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612113565b816001600160a01b0316836001600160a01b031614612113576121138382612261565b6001600160a01b03821661212a576109a1816122fe565b826001600160a01b0316826001600160a01b0316146109a1576109a182826123ad565b60006001600160a01b0384163b1561225657836001600160a01b031663150b7a0261217661187b565b8786866040518563ffffffff1660e01b815260040161219894939291906129f4565b602060405180830381600087803b1580156121b257600080fd5b505af19250505080156121e2575060408051601f3d908101601f191682019092526121df918101906127ca565b60015b61223c573d808015612210576040519150601f19603f3d011682016040523d82523d6000602084013e612215565b606091505b5080516122345760405162461bcd60e51b815260040161085990612a44565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aea565b506001949350505050565b6000600161226e84611196565b6122789190612c07565b6000838152600760205260409020549091508082146122cb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061231090600190612c07565b6000838152600960205260408120546008805493945090928490811061233857612338612d39565b90600052602060002001549050806008838154811061235957612359612d39565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061239157612391612d23565b6001900381819060005260206000200160009055905550505050565b60006123b883611196565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123fd90612c6d565b90600052602060002090601f01602090048101928261241f5760008555612465565b82601f1061243857805160ff1916838001178555612465565b82800160010185558215612465579182015b8281111561246557825182559160200191906001019061244a565b50612471929150612475565b5090565b5b808211156124715760008155600101612476565b600067ffffffffffffffff8311156124a4576124a4612d4f565b6124b7601f8401601f1916602001612b66565b90508281528383830111156124cb57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146124f957600080fd5b919050565b600082601f83011261250f57600080fd5b6119f48383356020850161248a565b803560ff811681146124f957600080fd5b60006020828403121561254157600080fd5b6119f4826124e2565b6000806040838503121561255d57600080fd5b612566836124e2565b9150612574602084016124e2565b90509250929050565b60008060006060848603121561259257600080fd5b61259b846124e2565b92506125a9602085016124e2565b9150604084013590509250925092565b600080600080608085870312156125cf57600080fd5b6125d8856124e2565b93506125e6602086016124e2565b925060408501359150606085013567ffffffffffffffff81111561260957600080fd5b612615878288016124fe565b91505092959194509250565b6000806040838503121561263457600080fd5b61263d836124e2565b91506020830135801515811461265257600080fd5b809150509250929050565b600080600080600060a0868803121561267557600080fd5b61267e866124e2565b9450602086013567ffffffffffffffff81111561269a57600080fd5b6126a6888289016124fe565b94505060408601359250606086013591506126c36080870161251e565b90509295509295909350565b600080604083850312156126e257600080fd5b6126eb836124e2565b946020939093013593505050565b6000602080838503121561270c57600080fd5b823567ffffffffffffffff8082111561272457600080fd5b818501915085601f83011261273857600080fd5b81358181111561274a5761274a612d4f565b8060051b915061275b848301612b66565b8181528481019084860184860187018a101561277657600080fd5b600095505b838610156127a05761278c816124e2565b83526001959095019491860191860161277b565b5098975050505050505050565b6000602082840312156127bf57600080fd5b81356119f481612d65565b6000602082840312156127dc57600080fd5b81516119f481612d65565b6000602082840312156127f957600080fd5b813567ffffffffffffffff81111561281057600080fd5b8201601f8101841361282157600080fd5b611aea8482356020840161248a565b60006020828403121561284257600080fd5b5035919050565b6000806040838503121561285c57600080fd5b50508035926020909101359150565b60006020828403121561287d57600080fd5b6119f48261251e565b6000815180845261289e816020860160208601612c41565b601f01601f19169290920160200192915050565b600081516128c4818560208601612c41565b9290920192915050565b600082516128e0818460208701612c41565b9190910192915050565b600083516128fc818460208801612c41565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845481600182811c91508083168061293d57607f831692505b602080841082141561295d57634e487b7160e01b86526022600452602486fd5b8180156129715760018114612982576129af565b60ff198616895284890196506129af565b60008b81526020902060005b868110156129a75781548b82015290850190830161298e565b505084890196505b5050505050506129bf81856128b2565b95945050505050565b6001600160a01b038481168252831660208201526060604082018190526000906129bf90830184612886565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a2790830184612886565b9695505050505050565b6020815260006119f46020830184612886565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602a908201527f474d204672656e733a205075626c69632073616c6520686173206e6f742079656040820152693a1039ba30b93a32b21760b11b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612b8f57612b8f612d4f565b604052919050565b60008219821115612baa57612baa612cf7565b500190565b600060ff821660ff84168060ff03821115612bcc57612bcc612cf7565b019392505050565b600082612be357612be3612d0d565b500490565b6000816000190483118215151615612c0257612c02612cf7565b500290565b600082821015612c1957612c19612cf7565b500390565b600060ff821660ff841680821015612c3857612c38612cf7565b90039392505050565b60005b83811015612c5c578181015183820152602001612c44565b8381111561141c5750506000910152565b600181811c90821680612c8157607f821691505b60208210811415612ca257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cbc57612cbc612cf7565b5060010190565b600060ff821660ff811415612cda57612cda612cf7565b60010192915050565b600082612cf257612cf2612d0d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461171857600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122037d6bc3fe07c3d06b1c2a6f8a399b6d49a83f738e1862bac884b7fc65369605764736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c54686520474d204672656e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002474d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f676d2e746865676d6672656e732e636f6d2f6170692f6672656e732f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061022f5760003560e01c80634ed3f96f1161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610669578063d547cfb714610689578063e985e9c51461069e578063f2fde38b146106e7578063fb4d81fc1461070757600080fd5b8063a22cb465146105dd578063b88d4fde146105fd578063c41e4ef41461061d578063c6e62e0b1461063d578063c71b0e1c1461065357600080fd5b8063715018a6116100f2578063715018a61461055f5780638da5cb5b1461057457806395d89b41146105925780639b6860c8146105a7578063a0bcfc7f146105bd57600080fd5b80634ed3f96f146104cc5780634f6ccce7146104ec5780636352211e1461050c57806367d5d4b01461052c57806370a082311461053f57600080fd5b806320379ee5116101bc5780632f745c59116101805780632f745c59146104345780633408e470146104545780633b7fcdca146104675780633ccfd60b1461049757806342842e0e146104ac57600080fd5b806320379ee5146103715780632344be0a14610386578063234649061461039c57806323b872dd146103de5780632d0335ab146103fe57600080fd5b8063095ea7b311610203578063095ea7b3146102e75780630c53c51c146103095780630f7e59701461031c578063139bee421461034957806318160ddd1461035c57600080fd5b80620e7fa81461023457806301ffc9a71461025d57806306fdde031461028d578063081812fc146102af575b600080fd5b34801561024057600080fd5b5061024a60145481565b6040519081526020015b60405180910390f35b34801561026957600080fd5b5061027d6102783660046127ad565b610727565b6040519015158152602001610254565b34801561029957600080fd5b506102a2610752565b6040516102549190612a31565b3480156102bb57600080fd5b506102cf6102ca366004612830565b6107e4565b6040516001600160a01b039091168152602001610254565b3480156102f357600080fd5b506103076103023660046126cf565b61087e565b005b6102a261031736600461265d565b6109a6565b34801561032857600080fd5b506102a2604051806040016040528060018152602001603160f81b81525081565b61030761035736600461286b565b610b90565b34801561036857600080fd5b5060085461024a565b34801561037d57600080fd5b50600b5461024a565b34801561039257600080fd5b5061024a60135481565b3480156103a857600080fd5b506103cc6103b736600461252f565b60176020526000908152604090205460ff1681565b60405160ff9091168152602001610254565b3480156103ea57600080fd5b506103076103f936600461257d565b610da7565b34801561040a57600080fd5b5061024a61041936600461252f565b6001600160a01b03166000908152600c602052604090205490565b34801561044057600080fd5b5061024a61044f3660046126cf565b610ddf565b34801561046057600080fd5b504661024a565b34801561047357600080fd5b506103cc61048236600461252f565b60186020526000908152604090205460ff1681565b3480156104a357600080fd5b50610307610e75565b3480156104b857600080fd5b506103076104c736600461257d565b610f45565b3480156104d857600080fd5b506103076104e7366004612849565b610f60565b3480156104f857600080fd5b5061024a610507366004612830565b610fb4565b34801561051857600080fd5b506102cf610527366004612830565b611047565b61030761053a36600461286b565b6110be565b34801561054b57600080fd5b5061024a61055a36600461252f565b611196565b34801561056b57600080fd5b5061030761121d565b34801561058057600080fd5b50600d546001600160a01b03166102cf565b34801561059e57600080fd5b506102a2611272565b3480156105b357600080fd5b5061024a60155481565b3480156105c957600080fd5b506103076105d83660046127e7565b611281565b3480156105e957600080fd5b506103076105f8366004612621565b6112e1565b34801561060957600080fd5b506103076106183660046125b9565b6113e3565b34801561062957600080fd5b506103076106383660046126f9565b611422565b34801561064957600080fd5b5061024a60125481565b34801561065f57600080fd5b5061024a60115481565b34801561067557600080fd5b506102a2610684366004612830565b61159f565b34801561069557600080fd5b506102a26115d3565b3480156106aa57600080fd5b5061027d6106b936600461254a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f357600080fd5b5061030761070236600461252f565b611661565b34801561071357600080fd5b506103076107223660046126f9565b61171b565b60006001600160e01b0319821663780e9d6360e01b148061074c575061074c8261182b565b92915050565b60606000805461076190612c6d565b80601f016020809104026020016040519081016040528092919081815260200182805461078d90612c6d565b80156107da5780601f106107af576101008083540402835291602001916107da565b820191906000526020600020905b8154815290600101906020018083116107bd57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088982611047565b9050806001600160a01b0316836001600160a01b031614156108f75760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610859565b806001600160a01b031661090961187b565b6001600160a01b031614806109255750610925816106b961187b565b6109975760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610859565b6109a1838361188a565b505050565b60408051606081810183526001600160a01b0388166000818152600c6020908152908590205484528301529181018690526109e487828787876118f8565b610a3a5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d6174636044820152600d60fb1b6064820152608401610859565b6001600160a01b0387166000908152600c6020526040902054610a5e9060016119e8565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610aae90899033908a906129c8565b60405180910390a1600080306001600160a01b0316888a604051602001610ad69291906128ea565b60408051601f1981840301815290829052610af0916128ce565b6000604051808303816000865af19150503d8060008114610b2d576040519150601f19603f3d011682016040523d82523d6000602084013e610b32565b606091505b509150915081610b845760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610859565b98975050505050505050565b6012544210158015610ba3575060135442105b610bfe5760405162461bcd60e51b815260206004820152602660248201527f474d204672656e733a2050726573616c6520686173206e6f742079657420737460448201526530b93a32b21760d11b6064820152608401610859565b6010548160ff16601154610c129190612b97565b1115610c1d57600080fd5b33600090815260176020526040902054600a90610c3d9060ff1683612baf565b60ff161115610ca45760405162461bcd60e51b815260206004820152602d60248201527f474d204672656e733a20557020746f20313020474d204672656e732063616e2060448201526c313290383ab931b430b9b2b21760991b6064820152608401610859565b601454610cb49060ff8316612be8565b3414610d155760405162461bcd60e51b815260206004820152602a60248201527f474d204672656e733a20596f75206e65656420746f207061792074686520657860448201526930b1ba10383934b1b29760b11b6064820152608401610859565b3360009081526017602052604081208054839290610d3790849060ff16612baf565b92506101000a81548160ff021916908360ff1602179055508060ff1660116000828254610d649190612b97565b90915550506040805133815260ff831660208201527f3ba60c1c710f2ec100a624408f910f88f5a4b177cd96629d541df02019fd8918910160405180910390a150565b610db8610db261187b565b826119fb565b610dd45760405162461bcd60e51b815260040161085990612acb565b6109a1838383611af2565b6000610dea83611196565b8210610e4c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610859565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610e7d61187b565b6001600160a01b0316610e98600d546001600160a01b031690565b6001600160a01b031614610ebe5760405162461bcd60e51b815260040161085990612a96565b6000601654601554610ecf60085490565b610ed99190612be8565b610ee39190612c07565b905047811115610ef05750475b600d546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610f2a573d6000803e3d6000fd5b508060166000828254610f3d9190612b97565b909155505050565b6109a1838383604051806020016040528060008152506113e3565b610f6861187b565b6001600160a01b0316610f83600d546001600160a01b031690565b6001600160a01b031614610fa95760405162461bcd60e51b815260040161085990612a96565b601291909155601355565b6000610fbf60085490565b82106110225760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610859565b6008828154811061103557611035612d39565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061074c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610859565b6013544210156110e05760405162461bcd60e51b815260040161085990612b1c565b6010548160ff166011546110f49190612b97565b11156110ff57600080fd5b33600090815260176020526040902054601e9061111f9060ff1683612baf565b60ff1611156111865760405162461bcd60e51b815260206004820152602d60248201527f474d204672656e733a20557020746f20333020474d204672656e732063616e2060448201526c313290383ab931b430b9b2b21760991b6064820152608401610859565b601554610cb49060ff8316612be8565b60006001600160a01b0382166112015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610859565b506001600160a01b031660009081526003602052604090205490565b61122561187b565b6001600160a01b0316611240600d546001600160a01b031690565b6001600160a01b0316146112665760405162461bcd60e51b815260040161085990612a96565b6112706000611c9d565b565b60606001805461076190612c6d565b61128961187b565b6001600160a01b03166112a4600d546001600160a01b031690565b6001600160a01b0316146112ca5760405162461bcd60e51b815260040161085990612a96565b80516112dd90600e9060208401906123f1565b5050565b6112e961187b565b6001600160a01b0316826001600160a01b0316141561134a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610859565b806005600061135761187b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561139b61187b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113d7911515815260200190565b60405180910390a35050565b6113f46113ee61187b565b836119fb565b6114105760405162461bcd60e51b815260040161085990612acb565b61141c84848484611cef565b50505050565b6013544210156114445760405162461bcd60e51b815260040161085990612b1c565b60005b81518110156112dd5760006018600084848151811061146857611468612d39565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060009054906101000a900460ff16601760008585815181106114b4576114b4612d39565b6020908102919091018101516001600160a01b03168252810191909152604001600020546114e5919060ff16612c1e565b905060008160ff16116114f757600080fd5b806018600085858151811061150e5761150e612d39565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060008282829054906101000a900460ff166115519190612baf565b92506101000a81548160ff021916908360ff16021790555061158c83838151811061157e5761157e612d39565b602002602001015182611d22565b508061159781612ca8565b915050611447565b6060600e6115ac83611d64565b6040516020016115bd929190612921565b6040516020818303038152906040529050919050565b600e80546115e090612c6d565b80601f016020809104026020016040519081016040528092919081815260200182805461160c90612c6d565b80156116595780601f1061162e57610100808354040283529160200191611659565b820191906000526020600020905b81548152906001019060200180831161163c57829003601f168201915b505050505081565b61166961187b565b6001600160a01b0316611684600d546001600160a01b031690565b6001600160a01b0316146116aa5760405162461bcd60e51b815260040161085990612a96565b6001600160a01b03811661170f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610859565b61171881611c9d565b50565b61172361187b565b6001600160a01b031661173e600d546001600160a01b031690565b6001600160a01b0316146117645760405162461bcd60e51b815260040161085990612a96565b60005b81518110156117ba57600061177a611e62565b905061179f83838151811061179157611791612d39565b602002602001015182611e73565b6117a7611fc1565b50806117b281612ca8565b915050611767565b50805160116000828254610f3d9190612b97565b60003330141561182557600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506118289050565b50335b90565b60006001600160e01b031982166380ac58cd60e01b148061185c57506001600160e01b03198216635b5e139f60e01b145b8061074c57506301ffc9a760e01b6001600160e01b031983161461074c565b60006118856117ce565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118bf82611047565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661195e5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201526424a3a722a960d91b6064820152608401610859565b600161197161196c87611fe8565b612065565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156119bf573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006119f48284612b97565b9392505050565b6000818152600260205260408120546001600160a01b0316611a745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610859565b6000611a7f83611047565b9050806001600160a01b0316846001600160a01b03161480611aba5750836001600160a01b0316611aaf846107e4565b6001600160a01b0316145b80611aea57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611b0582611047565b6001600160a01b031614611b6d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610859565b6001600160a01b038216611bcf5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610859565b611bda838383612095565b611be560008261188a565b6001600160a01b0383166000908152600360205260408120805460019290611c0e908490612c07565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c3c908490612b97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611cfa848484611af2565b611d068484848461214d565b61141c5760405162461bcd60e51b815260040161085990612a44565b60005b8160ff168160ff1610156109a1576000611d3d611e62565b9050611d498482611e73565b611d51611fc1565b5080611d5c81612cc3565b915050611d25565b606081611d885750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611db25780611d9c81612ca8565b9150611dab9050600a83612bd4565b9150611d8c565b60008167ffffffffffffffff811115611dcd57611dcd612d4f565b6040519080825280601f01601f191660200182016040528015611df7576020820181803683370190505b5090505b8415611aea57611e0c600183612c07565b9150611e19600a86612ce3565b611e24906030612b97565b60f81b818381518110611e3957611e39612d39565b60200101906001600160f81b031916908160001a905350611e5b600a86612bd4565b9450611dfb565b600f546000906118859060016119e8565b6001600160a01b038216611ec95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610859565b6000818152600260205260409020546001600160a01b031615611f2e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610859565b611f3a60008383612095565b6001600160a01b0382166000908152600360205260408120805460019290611f63908490612b97565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b601054600f5410611fd157600080fd5b600f8054906000611fe183612ca8565b9190505550565b6000604051806080016040528060438152602001612d7c6043913980516020918201208351848301516040808701518051908601209051612048950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b6000612070600b5490565b60405161190160f01b6020820152602281019190915260428101839052606201612048565b6001600160a01b0383166120f0576120eb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612113565b816001600160a01b0316836001600160a01b031614612113576121138382612261565b6001600160a01b03821661212a576109a1816122fe565b826001600160a01b0316826001600160a01b0316146109a1576109a182826123ad565b60006001600160a01b0384163b1561225657836001600160a01b031663150b7a0261217661187b565b8786866040518563ffffffff1660e01b815260040161219894939291906129f4565b602060405180830381600087803b1580156121b257600080fd5b505af19250505080156121e2575060408051601f3d908101601f191682019092526121df918101906127ca565b60015b61223c573d808015612210576040519150601f19603f3d011682016040523d82523d6000602084013e612215565b606091505b5080516122345760405162461bcd60e51b815260040161085990612a44565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aea565b506001949350505050565b6000600161226e84611196565b6122789190612c07565b6000838152600760205260409020549091508082146122cb576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061231090600190612c07565b6000838152600960205260408120546008805493945090928490811061233857612338612d39565b90600052602060002001549050806008838154811061235957612359612d39565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061239157612391612d23565b6001900381819060005260206000200160009055905550505050565b60006123b883611196565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546123fd90612c6d565b90600052602060002090601f01602090048101928261241f5760008555612465565b82601f1061243857805160ff1916838001178555612465565b82800160010185558215612465579182015b8281111561246557825182559160200191906001019061244a565b50612471929150612475565b5090565b5b808211156124715760008155600101612476565b600067ffffffffffffffff8311156124a4576124a4612d4f565b6124b7601f8401601f1916602001612b66565b90508281528383830111156124cb57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146124f957600080fd5b919050565b600082601f83011261250f57600080fd5b6119f48383356020850161248a565b803560ff811681146124f957600080fd5b60006020828403121561254157600080fd5b6119f4826124e2565b6000806040838503121561255d57600080fd5b612566836124e2565b9150612574602084016124e2565b90509250929050565b60008060006060848603121561259257600080fd5b61259b846124e2565b92506125a9602085016124e2565b9150604084013590509250925092565b600080600080608085870312156125cf57600080fd5b6125d8856124e2565b93506125e6602086016124e2565b925060408501359150606085013567ffffffffffffffff81111561260957600080fd5b612615878288016124fe565b91505092959194509250565b6000806040838503121561263457600080fd5b61263d836124e2565b91506020830135801515811461265257600080fd5b809150509250929050565b600080600080600060a0868803121561267557600080fd5b61267e866124e2565b9450602086013567ffffffffffffffff81111561269a57600080fd5b6126a6888289016124fe565b94505060408601359250606086013591506126c36080870161251e565b90509295509295909350565b600080604083850312156126e257600080fd5b6126eb836124e2565b946020939093013593505050565b6000602080838503121561270c57600080fd5b823567ffffffffffffffff8082111561272457600080fd5b818501915085601f83011261273857600080fd5b81358181111561274a5761274a612d4f565b8060051b915061275b848301612b66565b8181528481019084860184860187018a101561277657600080fd5b600095505b838610156127a05761278c816124e2565b83526001959095019491860191860161277b565b5098975050505050505050565b6000602082840312156127bf57600080fd5b81356119f481612d65565b6000602082840312156127dc57600080fd5b81516119f481612d65565b6000602082840312156127f957600080fd5b813567ffffffffffffffff81111561281057600080fd5b8201601f8101841361282157600080fd5b611aea8482356020840161248a565b60006020828403121561284257600080fd5b5035919050565b6000806040838503121561285c57600080fd5b50508035926020909101359150565b60006020828403121561287d57600080fd5b6119f48261251e565b6000815180845261289e816020860160208601612c41565b601f01601f19169290920160200192915050565b600081516128c4818560208601612c41565b9290920192915050565b600082516128e0818460208701612c41565b9190910192915050565b600083516128fc818460208801612c41565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b600080845481600182811c91508083168061293d57607f831692505b602080841082141561295d57634e487b7160e01b86526022600452602486fd5b8180156129715760018114612982576129af565b60ff198616895284890196506129af565b60008b81526020902060005b868110156129a75781548b82015290850190830161298e565b505084890196505b5050505050506129bf81856128b2565b95945050505050565b6001600160a01b038481168252831660208201526060604082018190526000906129bf90830184612886565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a2790830184612886565b9695505050505050565b6020815260006119f46020830184612886565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602a908201527f474d204672656e733a205075626c69632073616c6520686173206e6f742079656040820152693a1039ba30b93a32b21760b11b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612b8f57612b8f612d4f565b604052919050565b60008219821115612baa57612baa612cf7565b500190565b600060ff821660ff84168060ff03821115612bcc57612bcc612cf7565b019392505050565b600082612be357612be3612d0d565b500490565b6000816000190483118215151615612c0257612c02612cf7565b500290565b600082821015612c1957612c19612cf7565b500390565b600060ff821660ff841680821015612c3857612c38612cf7565b90039392505050565b60005b83811015612c5c578181015183820152602001612c44565b8381111561141c5750506000910152565b600181811c90821680612c8157607f821691505b60208210811415612ca257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612cbc57612cbc612cf7565b5060010190565b600060ff821660ff811415612cda57612cda612cf7565b60010192915050565b600082612cf257612cf2612d0d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461171857600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a264697066735822122037d6bc3fe07c3d06b1c2a6f8a399b6d49a83f738e1862bac884b7fc65369605764736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c54686520474d204672656e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002474d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f676d2e746865676d6672656e732e636f6d2f6170692f6672656e732f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): The GM Frens
Arg [1] : _symbol (string): GM
Arg [2] : _uri (string): https://gm.thegmfrens.com/api/frens/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 54686520474d204672656e730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 474d000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [8] : 68747470733a2f2f676d2e746865676d6672656e732e636f6d2f6170692f6672
Arg [9] : 656e732f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

871:4419:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1241:39;;;;;;;;;;;;;;;;;;;10609:25:19;;;10597:2;10582:18;1241:39:7;;;;;;;;909:290:6;;;;;;;;;;-1:-1:-1;909:290:6;;;;;:::i;:::-;;:::i;:::-;;;10436:14:19;;10429:22;10411:41;;10399:2;10384:18;909:290:6;10271:187:19;2549:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4182:295::-;;;;;;;;;;-1:-1:-1;4182:295:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8990:32:19;;;8972:51;;8960:2;8945:18;4182:295:5;8826:203:19;3720:401:5;;;;;;;;;;-1:-1:-1;3720:401:5;;;;;:::i;:::-;;:::i;:::-;;966:1117:15;;;;;;:::i;:::-;;:::i;288:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;288:43:3;;;;;2041:684:7;;;;;;:::i;:::-;;:::i;1680:111:6:-;;;;;;;;;;-1:-1:-1;1767:10:6;:17;1680:111;;1254:99:3;;;;;;;;;;-1:-1:-1;1331:15:3;;1254:99;;1193:42:7;;;;;;;;;;;;;;;;1358:47;;;;;;;;;;-1:-1:-1;1358:47:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22305:4:19;22293:17;;;22275:36;;22263:2;22248:18;1358:47:7;22133:184:19;5196:364:5;;;;;;;;;;-1:-1:-1;5196:364:5;;;;;:::i;:::-;;:::i;2491:105:15:-;;;;;;;;;;-1:-1:-1;2491:105:15;;;;;:::i;:::-;-1:-1:-1;;;;;2577:12:15;2544:13;2577:12;;;:6;:12;;;;;;;2491:105;1278:331:6;;;;;;;;;;-1:-1:-1;1278:331:6;;;;;:::i;:::-;;:::i;1359:155:3:-;;;;;;;;;;-1:-1:-1;1470:9:3;1359:155;;1411:44:7;;;;;;;;;;-1:-1:-1;1411:44:7;;;;;:::i;:::-;;;;;;;;;;;;;;;;4987:301;;;;;;;;;;;;;:::i;5626:179:5:-;;;;;;;;;;-1:-1:-1;5626:179:5;;;;;:::i;:::-;;:::i;4441:191:7:-;;;;;;;;;;-1:-1:-1;4441:191:7;;;;;:::i;:::-;;:::i;1863:308:6:-;;;;;;;;;;-1:-1:-1;1863:308:6;;;;;:::i;:::-;;:::i;2174:313:5:-;;;;;;;;;;-1:-1:-1;2174:313:5;;;;;:::i;:::-;;:::i;2731:661:7:-;;;;;;:::i;:::-;;:::i;1834:283:5:-;;;;;;;;;;-1:-1:-1;1834:283:5;;;;;:::i;:::-;;:::i;1620:92:16:-;;;;;;;;;;;;;:::i;988:85::-;;;;;;;;;;-1:-1:-1;1060:6:16;;-1:-1:-1;;;;;1060:6:16;988:85;;2711:102:5;;;;;;;;;;;;;:::i;1286:42:7:-;;;;;;;;;;;;;;;;4340:95;;;;;;;;;;-1:-1:-1;4340:95:7;;;;;:::i;:::-;;:::i;4544:318:5:-;;;;;;;;;;-1:-1:-1;4544:318:5;;;;;:::i;:::-;;:::i;5871:354::-;;;;;;;;;;-1:-1:-1;5871:354:5;;;;;:::i;:::-;;:::i;3398:457:7:-;;;;;;;;;;-1:-1:-1;3398:457:7;;;;;:::i;:::-;;:::i;1148:39::-;;;;;;;;;;;;;;;;1113:28;;;;;;;;;;;;;;;;4638:219;;;;;;;;;;-1:-1:-1;4638:219:7;;;;;:::i;:::-;;:::i;1009:26::-;;;;;;;;;;;;;:::i;4928:206:5:-;;;;;;;;;;-1:-1:-1;4928:206:5;;;;;:::i;:::-;-1:-1:-1;;;;;5092:25:5;;;5065:4;5092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4928:206;1861:223:16;;;;;;;;;;-1:-1:-1;1861:223:16;;;;;:::i;:::-;;:::i;1716:319:7:-;;;;;;;;;;-1:-1:-1;1716:319:7;;;;;:::i;:::-;;:::i;909:290:6:-;1051:4;-1:-1:-1;;;;;;1090:50:6;;-1:-1:-1;;;1090:50:6;;:102;;;1156:36;1180:11;1156:23;:36::i;:::-;1071:121;909:290;-1:-1:-1;;909:290:6:o;2549:98:5:-;2603:13;2635:5;2628:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2549:98;:::o;4182:295::-;4298:7;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:5;4321:107;;;;-1:-1:-1;;;4321:107:5;;18102:2:19;4321:107:5;;;18084:21:19;18141:2;18121:18;;;18114:30;18180:34;18160:18;;;18153:62;-1:-1:-1;;;18231:18:19;;;18224:42;18283:19;;4321:107:5;;;;;;;;;-1:-1:-1;4446:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4446:24:5;;4182:295::o;3720:401::-;3800:13;3816:23;3831:7;3816:14;:23::i;:::-;3800:39;;3863:5;-1:-1:-1;;;;;3857:11:5;:2;-1:-1:-1;;;;;3857:11:5;;;3849:57;;;;-1:-1:-1;;;3849:57:5;;19688:2:19;3849:57:5;;;19670:21:19;19727:2;19707:18;;;19700:30;19766:34;19746:18;;;19739:62;-1:-1:-1;;;19817:18:19;;;19810:31;19858:19;;3849:57:5;19486:397:19;3849:57:5;3954:5;-1:-1:-1;;;;;3938:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3938:21:5;;:62;;;;3963:37;3980:5;3987:12;:10;:12::i;3963:37::-;3917:165;;;;-1:-1:-1;;;3917:165:5;;16081:2:19;3917:165:5;;;16063:21:19;16120:2;16100:18;;;16093:30;16159:34;16139:18;;;16132:62;16230:26;16210:18;;;16203:54;16274:19;;3917:165:5;15879:420:19;3917:165:5;4093:21;4102:2;4106:7;4093:8;:21::i;:::-;3790:331;3720:401;;:::o;966:1117:15:-;1217:148;;;1161:12;1217:148;;;;;-1:-1:-1;;;;;1254:19:15;;1185:29;1254:19;;;:6;:19;;;;;;;;;1217:148;;;;;;;;;;;1397:45;1261:11;1217:148;1425:4;1431;1437;1397:6;:45::i;:::-;1376:125;;;;-1:-1:-1;;;1376:125:15;;19286:2:19;1376:125:15;;;19268:21:19;19325:2;19305:18;;;19298:30;19364:34;19344:18;;;19337:62;-1:-1:-1;;;19415:18:19;;;19408:31;19456:19;;1376:125:15;19084:397:19;1376:125:15;-1:-1:-1;;;;;1587:19:15;;;;;;:6;:19;;;;;;:26;;1611:1;1587:23;:26::i;:::-;-1:-1:-1;;;;;1565:19:15;;;;;;:6;:19;;;;;;;:48;;;;1629:122;;;;;1572:11;;1699:10;;1724:17;;1629:122;:::i;:::-;;;;;;;;1859:12;1873:23;1908:4;-1:-1:-1;;;;;1900:18:15;1949:17;1968:11;1932:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1932:48:15;;;;;;;;;;1900:90;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1858:132;;;;2008:7;2000:48;;;;-1:-1:-1;;;2000:48:15;;13378:2:19;2000:48:15;;;13360:21:19;13417:2;13397:18;;;13390:30;13456;13436:18;;;13429:58;13504:18;;2000:48:15;13176:352:19;2000:48:15;2066:10;966:1117;-1:-1:-1;;;;;;;;966:1117:15:o;2041:684:7:-;2143:11;;2124:15;:30;;:66;;;;;2176:14;;2158:15;:32;2124:66;2103:151;;;;-1:-1:-1;;;2103:151:7;;21746:2:19;2103:151:7;;;21728:21:19;21785:2;21765:18;;;21758:30;21824:34;21804:18;;;21797:62;-1:-1:-1;;;21875:18:19;;;21868:36;21921:19;;2103:151:7;21544:402:19;2103:151:7;2304:10;;2296:3;2288:12;;2272:13;;:28;;;;:::i;:::-;:42;;2264:51;;;;;;2368:10;2353:26;;;;:14;:26;;;;;;2384:2;;2347:32;;2353:26;;2347:3;:32;:::i;:::-;2346:40;;;;2325:132;;;;-1:-1:-1;;;2325:132:7;;20090:2:19;2325:132:7;;;20072:21:19;20129:2;20109:18;;;20102:30;20168:34;20148:18;;;20141:62;-1:-1:-1;;;20219:18:19;;;20212:43;20272:19;;2325:132:7;19888:409:19;2325:132:7;2516:12;;2501:27;;:12;;;:27;:::i;:::-;2488:9;:40;2467:129;;;;-1:-1:-1;;;2467:129:7;;15264:2:19;2467:129:7;;;15246:21:19;15303:2;15283:18;;;15276:30;15342:34;15322:18;;;15315:62;-1:-1:-1;;;15393:18:19;;;15386:40;15443:19;;2467:129:7;15062:406:19;2467:129:7;2621:10;2606:26;;;;:14;:26;;;;;:33;;2636:3;;2606:26;:33;;2636:3;;2606:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2674:3;2666:12;;2649:13;;:29;;;;;;;:::i;:::-;;;;-1:-1:-1;;2693:25:7;;;2702:10;10155:51:19;;10254:4;10242:17;;10237:2;10222:18;;10215:45;2693:25:7;;10128:18:19;2693:25:7;;;;;;;2041:684;:::o;5196:364:5:-;5398:41;5417:12;:10;:12::i;:::-;5431:7;5398:18;:41::i;:::-;5377:137;;;;-1:-1:-1;;;5377:137:5;;;;;;;:::i;:::-;5525:28;5535:4;5541:2;5545:7;5525:9;:28::i;1278:331:6:-;1415:7;1467:23;1484:5;1467:16;:23::i;:::-;1459:5;:31;1438:121;;;;-1:-1:-1;;;1438:121:6;;12140:2:19;1438:121:6;;;12122:21:19;12179:2;12159:18;;;12152:30;12218:34;12198:18;;;12191:62;-1:-1:-1;;;12269:18:19;;;12262:41;12320:19;;1438:121:6;11938:407:19;1438:121:6;-1:-1:-1;;;;;;1576:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1278:331::o;4987:301:7:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;5036:19:7::1;5092:9;;5074:15;;5058:13;1767:10:6::0;:17;;1680:111;5058:13:7::1;:31;;;;:::i;:::-;:43;;;;:::i;:::-;5036:65;;5129:21;5115:11;:35;5111:88;;;-1:-1:-1::0;5178:21:7::1;5111:88;1060:6:16::0;;5209:38:7::1;::::0;-1:-1:-1;;;;;1060:6:16;;;;5209:38:7;::::1;;;::::0;5235:11;;5209:38:::1;::::0;;;5235:11;1060:6:16;5209:38:7;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5270:11;5257:9;;:24;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;4987:301:7:o;5626:179:5:-;5759:39;5776:4;5782:2;5786:7;5759:39;;;;;;;;;;;;:16;:39::i;4441:191:7:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;4557:11:7::1;:26:::0;;;;4593:14:::1;:32:::0;4441:191::o;1863:308:6:-;1978:7;2030:30;1767:10;:17;;1680:111;2030:30;2022:5;:38;2001:129;;;;-1:-1:-1;;;2001:129:6;;21333:2:19;2001:129:6;;;21315:21:19;21372:2;21352:18;;;21345:30;21411:34;21391:18;;;21384:62;-1:-1:-1;;;21462:18:19;;;21455:42;21514:19;;2001:129:6;21131:408:19;2001:129:6;2147:10;2158:5;2147:17;;;;;;;;:::i;:::-;;;;;;;;;2140:24;;1863:308;;;:::o;2174:313:5:-;2286:7;2325:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2325:16:5;2372:19;2351:107;;;;-1:-1:-1;;;2351:107:5;;16917:2:19;2351:107:5;;;16899:21:19;16956:2;16936:18;;;16929:30;16995:34;16975:18;;;16968:62;-1:-1:-1;;;17046:18:19;;;17039:39;17095:19;;2351:107:5;16715:405:19;2731:661:7;2836:14;;2817:15;:33;;2796:122;;;;-1:-1:-1;;;2796:122:7;;;;;;;:::i;:::-;2968:10;;2960:3;2952:12;;2936:13;;:28;;;;:::i;:::-;:42;;2928:51;;;;;;3032:10;3017:26;;;;:14;:26;;;;;;3048:2;;3011:32;;3017:26;;3011:3;:32;:::i;:::-;3010:40;;;;2989:132;;;;-1:-1:-1;;;2989:132:7;;17327:2:19;2989:132:7;;;17309:21:19;17366:2;17346:18;;;17339:30;17405:34;17385:18;;;17378:62;-1:-1:-1;;;17456:18:19;;;17449:43;17509:19;;2989:132:7;17125:409:19;2989:132:7;3180:15;;3165:30;;:12;;;:30;:::i;1834:283:5:-;1946:7;-1:-1:-1;;;;;1990:19:5;;1969:108;;;;-1:-1:-1;;;1969:108:5;;16506:2:19;1969:108:5;;;16488:21:19;16545:2;16525:18;;;16518:30;16584:34;16564:18;;;16557:62;-1:-1:-1;;;16635:18:19;;;16628:40;16685:19;;1969:108:5;16304:406:19;1969:108:5;-1:-1:-1;;;;;;2094:16:5;;;;;:9;:16;;;;;;;1834:283::o;1620:92:16:-;1211:12;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;1684:21:::1;1702:1;1684:9;:21::i;:::-;1620:92::o:0;2711:102:5:-;2767:13;2799:7;2792:14;;;;;:::i;4340:95:7:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;4409:19:7;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4340:95:::0;:::o;4544:318:5:-;4686:12;:10;:12::i;:::-;-1:-1:-1;;;;;4674:24:5;:8;-1:-1:-1;;;;;4674:24:5;;;4666:62;;;;-1:-1:-1;;;4666:62:5;;14497:2:19;4666:62:5;;;14479:21:19;14536:2;14516:18;;;14509:30;14575:27;14555:18;;;14548:55;14620:18;;4666:62:5;14295:349:19;4666:62:5;4784:8;4739:18;:32;4758:12;:10;:12::i;:::-;-1:-1:-1;;;;;4739:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4739:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4739:53:5;;;;;;;;;;;4822:12;:10;:12::i;:::-;-1:-1:-1;;;;;4807:48:5;;4846:8;4807:48;;;;10436:14:19;10429:22;10411:41;;10399:2;10384:18;;10271:187;4807:48:5;;;;;;;;4544:318;;:::o;5871:354::-;6053:41;6072:12;:10;:12::i;:::-;6086:7;6053:18;:41::i;:::-;6032:137;;;;-1:-1:-1;;;6032:137:5;;;;;;;:::i;:::-;6179:39;6193:4;6199:2;6203:7;6212:5;6179:13;:39::i;:::-;5871:354;;;;:::o;3398:457:7:-;3505:14;;3486:15;:33;;3465:122;;;;-1:-1:-1;;;3465:122:7;;;;;;;:::i;:::-;3602:9;3597:252;3621:5;:12;3617:1;:16;3597:252;;;3654:12;3696:11;:21;3708:5;3714:1;3708:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;3696:21:7;-1:-1:-1;;;;;3696:21:7;;;;;;;;;;;;;;;;;;;;;;3669:14;:24;3684:5;3690:1;3684:8;;;;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;3669:24:7;;;;;;;;;;;-1:-1:-1;3669:24:7;;:48;;;:24;;:48;:::i;:::-;3654:63;;3748:1;3739:6;:10;;;3731:19;;;;;;3789:6;3764:11;:21;3776:5;3782:1;3776:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1;;;;;3764:21:7;-1:-1:-1;;;;;3764:21:7;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3809:29;3821:5;3827:1;3821:8;;;;;;;;:::i;:::-;;;;;;;3831:6;3809:11;:29::i;:::-;-1:-1:-1;3635:3:7;;;;:::i;:::-;;;;3597:252;;4638:219;4736:13;4808:12;4822:26;4839:8;4822:16;:26::i;:::-;4791:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4765:85;;4638:219;;;:::o;1009:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1861:223:16:-;1211:12;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;-1:-1:-1;;;;;1962:22:16;::::1;1941:107;;;::::0;-1:-1:-1;;;1941:107:16;;12971:2:19;1941:107:16::1;::::0;::::1;12953:21:19::0;13010:2;12990:18;;;12983:30;13049:34;13029:18;;;13022:62;-1:-1:-1;;;13100:18:19;;;13093:36;13146:19;;1941:107:16::1;12769:402:19::0;1941:107:16::1;2058:19;2068:8;2058:9;:19::i;:::-;1861:223:::0;:::o;1716:319:7:-;1211:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1200:23:16;:7;1060:6;;-1:-1:-1;;;;;1060:6:16;;988:85;1200:7;-1:-1:-1;;;;;1200:23:16;;1192:68;;;;-1:-1:-1;;;1192:68:16;;;;;;;:::i;:::-;1800:9:7::1;1795:190;1819:10;:17;1815:1;:21;1795:190;;;1857:18;1878:17;:15;:17::i;:::-;1857:38;;1909:32;1915:10;1926:1;1915:13;;;;;;;;:::i;:::-;;;;;;;1930:10;1909:5;:32::i;:::-;1955:19;:17;:19::i;:::-;-1:-1:-1::0;1838:3:7;::::1;::::0;::::1;:::i;:::-;;;;1795:190;;;;2011:10;:17;1994:13;;:34;;;;;;;:::i;264:603::-:0;308:22;346:10;368:4;346:27;342:496;;;389:18;410:8;;389:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;448:8:7;655:17;649:24;-1:-1:-1;;;;;624:131:7;;-1:-1:-1;342:496:7;;-1:-1:-1;342:496:7;;-1:-1:-1;816:10:7;342:496;264:603;:::o;1431:344:5:-;1573:4;-1:-1:-1;;;;;;1612:40:5;;-1:-1:-1;;;1612:40:5;;:104;;-1:-1:-1;;;;;;;1668:48:5;;-1:-1:-1;;;1668:48:5;1612:104;:156;;;-1:-1:-1;;;;;;;;;;915:40:4;;;1732:36:5;763:199:4;4863:118:7;4917:14;4950:24;:22;:24::i;:::-;4943:31;;4863:118;:::o;11710:171:5:-;11784:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11784:29:5;-1:-1:-1;;;;;11784:29:5;;;;;;;;:24;;11837:23;11784:24;11837:14;:23::i;:::-;-1:-1:-1;;;;;11828:46:5;;;;;;;;;;;11710:171;;:::o;2602:470:15:-;2774:4;-1:-1:-1;;;;;2798:20:15;;2790:70;;;;-1:-1:-1;;;2790:70:15;;15675:2:19;2790:70:15;;;15657:21:19;15714:2;15694:18;;;15687:30;15753:34;15733:18;;;15726:62;-1:-1:-1;;;15804:18:19;;;15797:35;15849:19;;2790:70:15;15473:401:19;2790:70:15;2911:154;2938:47;2957:27;2977:6;2957:19;:27::i;:::-;2938:18;:47::i;:::-;2911:154;;;;;;;;;;;;11294:25:19;;;;11367:4;11355:17;;11335:18;;;11328:45;11389:18;;;11382:34;;;11432:18;;;11425:34;;;11266:19;;2911:154:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2889:176:15;:6;-1:-1:-1;;;;;2889:176:15;;2870:195;;2602:470;;;;;;;:::o;2812:96:17:-;2870:7;2896:5;2900:1;2896;:5;:::i;:::-;2889:12;2812:96;-1:-1:-1;;;2812:96:17:o;8014:438:5:-;8139:4;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:5;8159:107;;;;-1:-1:-1;;;8159:107:5;;14851:2:19;8159:107:5;;;14833:21:19;14890:2;14870:18;;;14863:30;14929:34;14909:18;;;14902:62;-1:-1:-1;;;14980:18:19;;;14973:42;15032:19;;8159:107:5;14649:408:19;8159:107:5;8276:13;8292:23;8307:7;8292:14;:23::i;:::-;8276:39;;8344:5;-1:-1:-1;;;;;8333:16:5;:7;-1:-1:-1;;;;;8333:16:5;;:63;;;;8389:7;-1:-1:-1;;;;;8365:31:5;:20;8377:7;8365:11;:20::i;:::-;-1:-1:-1;;;;;8365:31:5;;8333:63;:111;;;-1:-1:-1;;;;;;5092:25:5;;;5065:4;5092:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8412:32;8325:120;8014:438;-1:-1:-1;;;;8014:438:5:o;11005:594::-;11172:4;-1:-1:-1;;;;;11145:31:5;:23;11160:7;11145:14;:23::i;:::-;-1:-1:-1;;;;;11145:31:5;;11124:119;;;;-1:-1:-1;;;11124:119:5;;18876:2:19;11124:119:5;;;18858:21:19;18915:2;18895:18;;;18888:30;18954:34;18934:18;;;18927:62;-1:-1:-1;;;19005:18:19;;;18998:39;19054:19;;11124:119:5;18674:405:19;11124:119:5;-1:-1:-1;;;;;11261:16:5;;11253:65;;;;-1:-1:-1;;;11253:65:5;;14092:2:19;11253:65:5;;;14074:21:19;14131:2;14111:18;;;14104:30;14170:34;14150:18;;;14143:62;-1:-1:-1;;;14221:18:19;;;14214:34;14265:19;;11253:65:5;13890:400:19;11253:65:5;11329:39;11350:4;11356:2;11360:7;11329:20;:39::i;:::-;11430:29;11447:1;11451:7;11430:8;:29::i;:::-;-1:-1:-1;;;;;11470:15:5;;;;;;:9;:15;;;;;:20;;11489:1;;11470:15;:20;;11489:1;;11470:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11500:13:5;;;;;;:9;:13;;;;;:18;;11517:1;;11500:13;:18;;11517:1;;11500:18;:::i;:::-;;;;-1:-1:-1;;11528:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11528:21:5;-1:-1:-1;;;;;11528:21:5;;;;;;;;;11565:27;;11528:16;;11565:27;;;;;;;11005:594;;;:::o;2090:169:16:-;2164:6;;;-1:-1:-1;;;;;2180:17:16;;;-1:-1:-1;;;;;;2180:17:16;;;;;;;2212:40;;2164:6;;;2180:17;2164:6;;2212:40;;2145:16;;2212:40;2135:124;2090:169;:::o;7087:341:5:-;7238:28;7248:4;7254:2;7258:7;7238:9;:28::i;:::-;7297:48;7320:4;7326:2;7330:7;7339:5;7297:22;:48::i;:::-;7276:145;;;;-1:-1:-1;;;7276:145:5;;;;;;;:::i;3861:239:7:-;3932:7;3927:167;3949:4;3945:8;;:1;:8;;;3927:167;;;3974:18;3995:17;:15;:17::i;:::-;3974:38;;4026:24;4032:5;4039:10;4026:5;:24::i;:::-;4064:19;:17;:19::i;:::-;-1:-1:-1;3955:3:7;;;;:::i;:::-;;;;3927:167;;275:703:18;331:13;548:10;544:51;;-1:-1:-1;;574:10:18;;;;;;;;;;;;-1:-1:-1;;;574:10:18;;;;;275:703::o;544:51::-;619:5;604:12;658:75;665:9;;658:75;;690:8;;;;:::i;:::-;;-1:-1:-1;712:10:18;;-1:-1:-1;720:2:18;712:10;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;764:17:18;;742:39;;791:150;798:10;;791:150;;824:11;834:1;824:11;;:::i;:::-;;-1:-1:-1;892:10:18;900:2;892:5;:10;:::i;:::-;879:24;;:2;:24;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;849:56:18;;;;;;;;-1:-1:-1;919:11:18;928:2;919:11;;:::i;:::-;;;791:150;;4106:104:7;4181:15;;4155:7;;4181:22;;4201:1;4181:19;:22::i;9744:372:5:-;-1:-1:-1;;;;;9823:16:5;;9815:61;;;;-1:-1:-1;;;9815:61:5;;17741:2:19;9815:61:5;;;17723:21:19;;;17760:18;;;17753:30;17819:34;17799:18;;;17792:62;17871:18;;9815:61:5;17539:356:19;9815:61:5;7796:4;7819:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7819:16:5;:30;9886:58;;;;-1:-1:-1;;;9886:58:5;;13735:2:19;9886:58:5;;;13717:21:19;13774:2;13754:18;;;13747:30;13813;13793:18;;;13786:58;13861:18;;9886:58:5;13533:352:19;9886:58:5;9955:45;9984:1;9988:2;9992:7;9955:20;:45::i;:::-;-1:-1:-1;;;;;10011:13:5;;;;;;:9;:13;;;;;:18;;10028:1;;10011:13;:18;;10028:1;;10011:18;:::i;:::-;;;;-1:-1:-1;;10039:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10039:21:5;-1:-1:-1;;;;;10039:21:5;;;;;;;;10076:33;;10039:16;;;10076:33;;10039:16;;10076:33;9744:372;;:::o;4216:118:7:-;4289:10;;4271:15;;:28;4263:37;;;;;;4310:15;:17;;;:15;:17;;;:::i;:::-;;;;;;4216:118::o;2089:396:15:-;2196:7;312:106;;;;;;;;;;;;;;;;;289:139;;;;;;;2344:12;;2378:11;;;;2421:24;;;;;2411:35;;;;;;2265:199;;;;;10876:25:19;;;10932:2;10917:18;;10910:34;;;;-1:-1:-1;;;;;10980:32:19;10975:2;10960:18;;10953:60;11044:2;11029:18;;11022:34;10863:3;10848:19;;10645:417;2265:199:15;;;;;;;;;;;;;2238:240;;;;;;2219:259;;2089:396;;;:::o;1874:249:3:-;1970:7;2068:20;1331:15;;;1254:99;2068:20;2039:63;;-1:-1:-1;;;2039:63:3;;;8687:27:19;8730:11;;;8723:27;;;;8766:12;;;8759:28;;;8803:12;;2039:63:3;8429:392:19;2767:572:6;-1:-1:-1;;;;;2966:18:6;;2962:183;;3000:40;3032:7;4148:10;:17;;4121:24;;;;:15;:24;;;;;:44;;;4175:24;;;;;;;;;;;;4045:161;3000:40;2962:183;;;3069:2;-1:-1:-1;;;;;3061:10:6;:4;-1:-1:-1;;;;;3061:10:6;;3057:88;;3087:47;3120:4;3126:7;3087:32;:47::i;:::-;-1:-1:-1;;;;;3158:16:6;;3154:179;;3190:45;3227:7;3190:36;:45::i;3154:179::-;3262:4;-1:-1:-1;;;;;3256:10:6;:2;-1:-1:-1;;;;;3256:10:6;;3252:81;;3282:40;3310:2;3314:7;3282:27;:40::i;12434:950:5:-;12584:4;-1:-1:-1;;;;;12604:13:5;;1034:20:0;1080:8;12600:778:5;;12671:2;-1:-1:-1;;;;;12655:36:5;;12713:12;:10;:12::i;:::-;12747:4;12773:7;12802:5;12655:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12655:170:5;;;;;;;;-1:-1:-1;;12655:170:5;;;;;;;;;;;;:::i;:::-;;;12635:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13004:13:5;;13000:312;;13046:106;;-1:-1:-1;;;13046:106:5;;;;;;;:::i;13000:312::-;13264:6;13258:13;13249:6;13245:2;13241:15;13234:38;12635:691;-1:-1:-1;;;;;;12887:51:5;-1:-1:-1;;;12887:51:5;;-1:-1:-1;12880:58:5;;12600:778;-1:-1:-1;13363:4:5;12434:950;;;;;;:::o;4823:982:6:-;5097:22;5147:1;5122:22;5139:4;5122:16;:22::i;:::-;:26;;;;:::i;:::-;5158:18;5179:26;;;:17;:26;;;;;;5097:51;;-1:-1:-1;5309:28:6;;;5305:323;;-1:-1:-1;;;;;5375:18:6;;5353:19;5375:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5424:30;;;;;;:44;;;5540:30;;:17;:30;;;;;:43;;;5305:323;-1:-1:-1;5721:26:6;;;;:17;:26;;;;;;;;5714:33;;;-1:-1:-1;;;;;5764:18:6;;;;;:12;:18;;;;;:34;;;;;;;5757:41;4823:982::o;6093:1061::-;6367:10;:17;6342:22;;6367:21;;6387:1;;6367:21;:::i;:::-;6398:18;6419:24;;;:15;:24;;;;;;6787:10;:26;;6342:46;;-1:-1:-1;6419:24:6;;6342:46;;6787:26;;;;;;:::i;:::-;;;;;;;;;6765:48;;6849:11;6824:10;6835;6824:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6928:28;;;:15;:28;;;;;;;:41;;;7097:24;;;;;7090:31;7131:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6164:990;;;6093:1061;:::o;3633:217::-;3717:14;3734:20;3751:2;3734:16;:20::i;:::-;-1:-1:-1;;;;;3764:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3808:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3633:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:19;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:19;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:19;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:220::-;645:5;698:3;691:4;683:6;679:17;675:27;665:55;;716:1;713;706:12;665:55;738:79;813:3;804:6;791:20;784:4;776:6;772:17;738:79;:::i;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:537::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;2205:18;2197:6;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:49;2301:7;2292:6;2281:9;2277:22;2260:49;:::i;:::-;2250:59;;;1778:537;;;;;;;:::o;2320:347::-;2385:6;2393;2446:2;2434:9;2425:7;2421:23;2417:32;2414:52;;;2462:1;2459;2452:12;2414:52;2485:29;2504:9;2485:29;:::i;:::-;2475:39;;2564:2;2553:9;2549:18;2536:32;2611:5;2604:13;2597:21;2590:5;2587:32;2577:60;;2633:1;2630;2623:12;2577:60;2656:5;2646:15;;;2320:347;;;;;:::o;2672:602::-;2774:6;2782;2790;2798;2806;2859:3;2847:9;2838:7;2834:23;2830:33;2827:53;;;2876:1;2873;2866:12;2827:53;2899:29;2918:9;2899:29;:::i;:::-;2889:39;;2979:2;2968:9;2964:18;2951:32;3006:18;2998:6;2995:30;2992:50;;;3038:1;3035;3028:12;2992:50;3061:49;3102:7;3093:6;3082:9;3078:22;3061:49;:::i;:::-;3051:59;;;3157:2;3146:9;3142:18;3129:32;3119:42;;3208:2;3197:9;3193:18;3180:32;3170:42;;3231:37;3263:3;3252:9;3248:19;3231:37;:::i;:::-;3221:47;;2672:602;;;;;;;;:::o;3279:254::-;3347:6;3355;3408:2;3396:9;3387:7;3383:23;3379:32;3376:52;;;3424:1;3421;3414:12;3376:52;3447:29;3466:9;3447:29;:::i;:::-;3437:39;3523:2;3508:18;;;;3495:32;;-1:-1:-1;;;3279:254:19:o;3538:963::-;3622:6;3653:2;3696;3684:9;3675:7;3671:23;3667:32;3664:52;;;3712:1;3709;3702:12;3664:52;3752:9;3739:23;3781:18;3822:2;3814:6;3811:14;3808:34;;;3838:1;3835;3828:12;3808:34;3876:6;3865:9;3861:22;3851:32;;3921:7;3914:4;3910:2;3906:13;3902:27;3892:55;;3943:1;3940;3933:12;3892:55;3979:2;3966:16;4001:2;3997;3994:10;3991:36;;;4007:18;;:::i;:::-;4053:2;4050:1;4046:10;4036:20;;4076:28;4100:2;4096;4092:11;4076:28;:::i;:::-;4138:15;;;4169:12;;;;4201:11;;;4231;;;4227:20;;4224:33;-1:-1:-1;4221:53:19;;;4270:1;4267;4260:12;4221:53;4292:1;4283:10;;4302:169;4316:2;4313:1;4310:9;4302:169;;;4373:23;4392:3;4373:23;:::i;:::-;4361:36;;4334:1;4327:9;;;;;4417:12;;;;4449;;4302:169;;;-1:-1:-1;4490:5:19;3538:963;-1:-1:-1;;;;;;;;3538:963:19:o;4506:245::-;4564:6;4617:2;4605:9;4596:7;4592:23;4588:32;4585:52;;;4633:1;4630;4623:12;4585:52;4672:9;4659:23;4691:30;4715:5;4691:30;:::i;4756:249::-;4825:6;4878:2;4866:9;4857:7;4853:23;4849:32;4846:52;;;4894:1;4891;4884:12;4846:52;4926:9;4920:16;4945:30;4969:5;4945:30;:::i;5010:450::-;5079:6;5132:2;5120:9;5111:7;5107:23;5103:32;5100:52;;;5148:1;5145;5138:12;5100:52;5188:9;5175:23;5221:18;5213:6;5210:30;5207:50;;;5253:1;5250;5243:12;5207:50;5276:22;;5329:4;5321:13;;5317:27;-1:-1:-1;5307:55:19;;5358:1;5355;5348:12;5307:55;5381:73;5446:7;5441:2;5428:16;5423:2;5419;5415:11;5381:73;:::i;5465:180::-;5524:6;5577:2;5565:9;5556:7;5552:23;5548:32;5545:52;;;5593:1;5590;5583:12;5545:52;-1:-1:-1;5616:23:19;;5465:180;-1:-1:-1;5465:180:19:o;5650:248::-;5718:6;5726;5779:2;5767:9;5758:7;5754:23;5750:32;5747:52;;;5795:1;5792;5785:12;5747:52;-1:-1:-1;;5818:23:19;;;5888:2;5873:18;;;5860:32;;-1:-1:-1;5650:248:19:o;5903:182::-;5960:6;6013:2;6001:9;5992:7;5988:23;5984:32;5981:52;;;6029:1;6026;6019:12;5981:52;6052:27;6069:9;6052:27;:::i;6090:268::-;6142:3;6180:5;6174:12;6207:6;6202:3;6195:19;6223:63;6279:6;6272:4;6267:3;6263:14;6256:4;6249:5;6245:16;6223:63;:::i;:::-;6340:2;6319:15;-1:-1:-1;;6315:29:19;6306:39;;;;6347:4;6302:50;;6090:268;-1:-1:-1;;6090:268:19:o;6363:184::-;6404:3;6442:5;6436:12;6457:52;6502:6;6497:3;6490:4;6483:5;6479:16;6457:52;:::i;:::-;6525:16;;;;;6363:184;-1:-1:-1;;6363:184:19:o;6552:274::-;6681:3;6719:6;6713:13;6735:53;6781:6;6776:3;6769:4;6761:6;6757:17;6735:53;:::i;:::-;6804:16;;;;;6552:274;-1:-1:-1;;6552:274:19:o;6831:415::-;6988:3;7026:6;7020:13;7042:53;7088:6;7083:3;7076:4;7068:6;7064:17;7042:53;:::i;:::-;7164:2;7160:15;;;;-1:-1:-1;;7156:53:19;7117:16;;;;7142:68;;;7237:2;7226:14;;6831:415;-1:-1:-1;;6831:415:19:o;7251:1173::-;7427:3;7456:1;7489:6;7483:13;7519:3;7541:1;7569:9;7565:2;7561:18;7551:28;;7629:2;7618:9;7614:18;7651;7641:61;;7695:4;7687:6;7683:17;7673:27;;7641:61;7721:2;7769;7761:6;7758:14;7738:18;7735:38;7732:165;;;-1:-1:-1;;;7796:33:19;;7852:4;7849:1;7842:15;7882:4;7803:3;7870:17;7732:165;7913:18;7940:104;;;;8058:1;8053:320;;;;7906:467;;7940:104;-1:-1:-1;;7973:24:19;;7961:37;;8018:16;;;;-1:-1:-1;7940:104:19;;8053:320;22675:1;22668:14;;;22712:4;22699:18;;8148:1;8162:165;8176:6;8173:1;8170:13;8162:165;;;8254:14;;8241:11;;;8234:35;8297:16;;;;8191:10;;8162:165;;;8166:3;;8356:6;8351:3;8347:16;8340:23;;7906:467;;;;;;;8389:29;8414:3;8406:6;8389:29;:::i;:::-;8382:36;7251:1173;-1:-1:-1;;;;;7251:1173:19:o;9034:442::-;-1:-1:-1;;;;;9291:15:19;;;9273:34;;9343:15;;9338:2;9323:18;;9316:43;9395:2;9390;9375:18;;9368:30;;;9216:4;;9415:55;;9451:18;;9443:6;9415:55;:::i;9481:499::-;-1:-1:-1;;;;;9750:15:19;;;9732:34;;9802:15;;9797:2;9782:18;;9775:43;9849:2;9834:18;;9827:34;;;9897:3;9892:2;9877:18;;9870:31;;;9675:4;;9918:56;;9954:19;;9946:6;9918:56;:::i;:::-;9910:64;9481:499;-1:-1:-1;;;;;;9481:499:19:o;11470:228::-;11617:2;11606:9;11599:21;11580:4;11637:55;11688:2;11677:9;11673:18;11665:6;11637:55;:::i;12350:414::-;12552:2;12534:21;;;12591:2;12571:18;;;12564:30;12630:34;12625:2;12610:18;;12603:62;-1:-1:-1;;;12696:2:19;12681:18;;12674:48;12754:3;12739:19;;12350:414::o;18313:356::-;18515:2;18497:21;;;18534:18;;;18527:30;18593:34;18588:2;18573:18;;18566:62;18660:2;18645:18;;18313:356::o;20302:413::-;20504:2;20486:21;;;20543:2;20523:18;;;20516:30;20582:34;20577:2;20562:18;;20555:62;-1:-1:-1;;;20648:2:19;20633:18;;20626:47;20705:3;20690:19;;20302:413::o;20720:406::-;20922:2;20904:21;;;20961:2;20941:18;;;20934:30;21000:34;20995:2;20980:18;;20973:62;-1:-1:-1;;;21066:2:19;21051:18;;21044:40;21116:3;21101:19;;20720:406::o;22322:275::-;22393:2;22387:9;22458:2;22439:13;;-1:-1:-1;;22435:27:19;22423:40;;22493:18;22478:34;;22514:22;;;22475:62;22472:88;;;22540:18;;:::i;:::-;22576:2;22569:22;22322:275;;-1:-1:-1;22322:275:19:o;22728:128::-;22768:3;22799:1;22795:6;22792:1;22789:13;22786:39;;;22805:18;;:::i;:::-;-1:-1:-1;22841:9:19;;22728:128::o;22861:204::-;22899:3;22935:4;22932:1;22928:12;22967:4;22964:1;22960:12;23002:3;22996:4;22992:14;22987:3;22984:23;22981:49;;;23010:18;;:::i;:::-;23046:13;;22861:204;-1:-1:-1;;;22861:204:19:o;23070:120::-;23110:1;23136;23126:35;;23141:18;;:::i;:::-;-1:-1:-1;23175:9:19;;23070:120::o;23195:168::-;23235:7;23301:1;23297;23293:6;23289:14;23286:1;23283:21;23278:1;23271:9;23264:17;23260:45;23257:71;;;23308:18;;:::i;:::-;-1:-1:-1;23348:9:19;;23195:168::o;23368:125::-;23408:4;23436:1;23433;23430:8;23427:34;;;23441:18;;:::i;:::-;-1:-1:-1;23478:9:19;;23368:125::o;23498:195::-;23536:4;23573;23570:1;23566:12;23605:4;23602:1;23598:12;23630:3;23625;23622:12;23619:38;;;23637:18;;:::i;:::-;23674:13;;;23498:195;-1:-1:-1;;;23498:195:19:o;23698:258::-;23770:1;23780:113;23794:6;23791:1;23788:13;23780:113;;;23870:11;;;23864:18;23851:11;;;23844:39;23816:2;23809:10;23780:113;;;23911:6;23908:1;23905:13;23902:48;;;-1:-1:-1;;23946:1:19;23928:16;;23921:27;23698:258::o;23961:380::-;24040:1;24036:12;;;;24083;;;24104:61;;24158:4;24150:6;24146:17;24136:27;;24104:61;24211:2;24203:6;24200:14;24180:18;24177:38;24174:161;;;24257:10;24252:3;24248:20;24245:1;24238:31;24292:4;24289:1;24282:15;24320:4;24317:1;24310:15;24174:161;;23961:380;;;:::o;24346:135::-;24385:3;-1:-1:-1;;24406:17:19;;24403:43;;;24426:18;;:::i;:::-;-1:-1:-1;24473:1:19;24462:13;;24346:135::o;24486:175::-;24523:3;24567:4;24560:5;24556:16;24596:4;24587:7;24584:17;24581:43;;;24604:18;;:::i;:::-;24653:1;24640:15;;24486:175;-1:-1:-1;;24486:175:19:o;24666:112::-;24698:1;24724;24714:35;;24729:18;;:::i;:::-;-1:-1:-1;24763:9:19;;24666:112::o;24783:127::-;24844:10;24839:3;24835:20;24832:1;24825:31;24875:4;24872:1;24865:15;24899:4;24896:1;24889:15;24915:127;24976:10;24971:3;24967:20;24964:1;24957:31;25007:4;25004:1;24997:15;25031:4;25028:1;25021:15;25047:127;25108:10;25103:3;25099:20;25096:1;25089:31;25139:4;25136:1;25129:15;25163:4;25160:1;25153:15;25179:127;25240:10;25235:3;25231:20;25228:1;25221:31;25271:4;25268:1;25261:15;25295:4;25292:1;25285:15;25311:127;25372:10;25367:3;25363:20;25360:1;25353:31;25403:4;25400:1;25393:15;25427:4;25424:1;25417:15;25443:131;-1:-1:-1;;;;;;25517:32:19;;25507:43;;25497:71;;25564:1;25561;25554:12

Swarm Source

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