ETH Price: $3,423.81 (+5.17%)
Gas: 7 Gwei

Token

It's Cold AF (ColdAF)
 

Overview

Max Total Supply

1,200 ColdAF

Holders

550

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ColdAF
0x9C5b0835EBD7E646a975f06d4050753355958949
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:
coldAF

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: repos/smart-contracts/rtp/contracts/Address.sol

pragma solidity ^0.8.6;

library Address {
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }
}
// File: @openzeppelin/contracts/utils/Strings.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

// File: repos/smart-contracts/rtp/contracts/ERC721.sol

pragma solidity ^0.8.7;

abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    string private _name;
    string private _symbol;

    // Mapping from token ID to owner address
    address[] internal _owners;

    mapping(uint256 => address) private _tokenApprovals;
    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"
        );

        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) ++count;
        }
        return count;
    }

    /**
     * @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 {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 tokenId < _owners.length && _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);
        _owners.push(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);
        _owners[tokenId] = address(0);

        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);
        _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: repos/smart-contracts/rtp/contracts/ERC721Enumerable.sol

pragma solidity ^0.8.7;

/**
 * @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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    /**
     * @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-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

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

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

        uint256 count;
        for (uint256 i; i < _owners.length; i++) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else count++;
            }
        }

        revert("ERC721Enumerable: owner index out of bounds");
    }
}
// File: @openzeppelin/contracts/access/Ownable.sol

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: repos/smart-contracts/rtp/contracts/rtp.sol

pragma solidity ^0.8.7;

/**
 * Hiya
 * This smart contract we have taken every measure possible to
 * keep the costs of gas managable every step along the way.
 *
 * In this contract we've used several different methods to keep costs down.
 * If you came here worried because gas is so low or you don't have to pay that pesky
 * OpenSea approval fee; rejoice!

 * Contract by: _granto for SmeistyCo
 * Based on the work of solidity geniuses: nftchance & masonnft & squeebo_nft

       ____
           !
     !     !
     !      `-  _ _    _
     |              ```  !
_____!                   !
\,      Made in Texas     \
  l    _                  ;
   \ _/  \.              /
           \           .’
            .       ./’
             `.    ,
               \   ;
                 ``’

 */

contract coldAF is ERC721Enumerable, Ownable {
    string public baseURI;

    address public proxyRegistryAddress;
    address public treasuryAccount;

    uint256 public MAX_SUPPLY = 1200;

    uint256 public constant MAX_PER_TX = 2;
    uint256 public constant RESERVES = 24;
    uint256 public priceInWei = 0.000 ether;
    bool public publicSaleActive = false;

    mapping(address => bool) public projectProxy;
    mapping(address => uint256) public addressToMinted;

    constructor(string memory _baseURI, address _treasuryAccount)
        ERC721("It's Cold AF", "ColdAF")
    {
        baseURI = _baseURI;
        proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
        treasuryAccount = _treasuryAccount;
    }

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token does not exist.");
        return string(abi.encodePacked(baseURI, Strings.toString(_tokenId)));
    }

    function setProxyRegistryAddress(address _proxyRegistryAddress)
        external
        onlyOwner
    {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function flipProxyState(address proxyAddress) public onlyOwner {
        projectProxy[proxyAddress] = !projectProxy[proxyAddress];
    }

    function unlockXMore(uint256 x) public onlyOwner {
        MAX_SUPPLY = MAX_SUPPLY + x;
    }

    function setPriceInWei(uint256 _priceInWei) public onlyOwner {
        priceInWei = _priceInWei;
    }

    function togglePublicSaleActive() external onlyOwner {
        publicSaleActive = !publicSaleActive;
    }

    function collectReserves() external onlyOwner {
        require(_owners.length == 0, "Reserves already taken.");
        for (uint256 i; i < RESERVES; i++) _mint(_msgSender(), i);
    }

    function mint(uint256 count) public payable {
        uint256 totalSupply = _owners.length;
        require(publicSaleActive, "Public sale is not active.");
        require(totalSupply + count < MAX_SUPPLY + 1, "Excedes max supply.");
        require(count < MAX_PER_TX + 1, "Exceeds max per transaction.");
        require(count * priceInWei == msg.value, "Invalid funds provided.");

        for (uint256 i; i < count; i++) {
            _mint(_msgSender(), totalSupply + i);
        }
    }

    function burn(uint256 tokenId) public {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "Not approved to burn."
        );
        _burn(tokenId);
    }

    function withdraw() public {
        (bool success, ) = treasuryAccount.call{value: address(this).balance}(
            ""
        );
        require(success, "Failed to send to treasury.");
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) return new uint256[](0);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function batchTransferFrom(
        address _from,
        address _to,
        uint256[] memory _tokenIds
    ) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            transferFrom(_from, _to, _tokenIds[i]);
        }
    }

    function batchSafeTransferFrom(
        address _from,
        address _to,
        uint256[] memory _tokenIds,
        bytes memory data_
    ) public {
        for (uint256 i = 0; i < _tokenIds.length; i++) {
            safeTransferFrom(_from, _to, _tokenIds[i], data_);
        }
    }

    function isOwnerOf(address account, uint256[] calldata _tokenIds)
        external
        view
        returns (bool)
    {
        for (uint256 i; i < _tokenIds.length; ++i) {
            if (_owners[_tokenIds[i]] != account) return false;
        }

        return true;
    }

    function isApprovedForAll(address _owner, address operator)
        public
        view
        override
        returns (bool)
    {
        OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(
            proxyRegistryAddress
        );
        if (
            address(proxyRegistry.proxies(_owner)) == operator ||
            projectProxy[operator]
        ) return true;
        return super.isApprovedForAll(_owner, operator);
    }

    function _mint(address to, uint256 tokenId) internal virtual override {
        _owners.push(to);
        emit Transfer(address(0), to, tokenId);
    }
}

contract OwnableDelegateProxy {}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"address","name":"_treasuryAccount","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"flipProxyState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceInWei","type":"uint256"}],"name":"setPriceInWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryAccount","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"x","type":"uint256"}],"name":"unlockXMore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526104b06009556000600a55600b805460ff191690553480156200002657600080fd5b5060405162002b0b38038062002b0b833981016040819052620000499162000246565b604080518082018252600c81526b24ba13b99021b7b6321020a360a11b60208083019182528351808501909452600684526521b7b63220a360d11b9084015281519192916200009b9160009162000183565b508051620000b190600190602084019062000183565b505050620000ce620000c86200012d60201b60201c565b62000131565b8151620000e390600690602085019062000183565b506007805473a5409ec958c83c3f309868babaca7c86dcb077c16001600160a01b031991821617909155600880549091166001600160a01b0392909216919091179055506200038a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001919062000337565b90600052602060002090601f016020900481019282620001b5576000855562000200565b82601f10620001d057805160ff191683800117855562000200565b8280016001018555821562000200579182015b8281111562000200578251825591602001919060010190620001e3565b506200020e92915062000212565b5090565b5b808211156200020e576000815560010162000213565b80516001600160a01b03811681146200024157600080fd5b919050565b600080604083850312156200025a57600080fd5b82516001600160401b03808211156200027257600080fd5b818501915085601f8301126200028757600080fd5b8151818111156200029c576200029c62000374565b604051601f8201601f19908116603f01168101908382118183101715620002c757620002c762000374565b81604052828152602093508884848701011115620002e457600080fd5b600091505b82821015620003085784820184015181830185015290830190620002e9565b828211156200031a5760008484830101525b95506200032c91505085820162000229565b925050509250929050565b600181811c908216806200034c57607f821691505b602082108114156200036e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612771806200039a6000396000f3fe60806040526004361061025c5760003560e01c80635bab26e211610144578063a22cb465116100b6578063d26ea6c01161007a578063d26ea6c0146106e9578063e985e9c514610709578063f2fde38b14610729578063f3993d1114610749578063f43a22dc14610769578063f73c814b1461077e57600080fd5b8063a22cb4651461064f578063b88d4fde1461066f578063bc8893b41461068f578063c87b56dd146106a9578063cd7c0326146106c957600080fd5b80638774e5d0116101085780638774e5d01461059c5780638da5cb5b146105bc57806395d89b41146105da5780639c9f2942146105ef5780639ec00c951461060f578063a0712d681461063c57600080fd5b80635bab26e2146105025780636352211e146105325780636c0360eb1461055257806370a0823114610567578063715018a61461058757600080fd5b806332cb6b0c116101dd57806342966c68116101a157806342966c6814610435578063438b6300146104555780634d44660c146104825780634f6ccce7146104a257806355f804b3146104c25780635a4fee30146104e257600080fd5b806332cb6b0c146103b4578063339b2cff146103ca5780633c8da588146103ea5780633ccfd60b1461040057806342842e0e1461041557600080fd5b8063095ea7b311610224578063095ea7b31461032a5780630c894cfe1461034a57806318160ddd1461035f57806323b872dd146103745780632f745c591461039457600080fd5b806301ffc9a714610261578063029877b61461029657806306fdde03146102ad578063081812fc146102cf5780630922f9c514610307575b600080fd5b34801561026d57600080fd5b5061028161027c366004612230565b61079e565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c9565b005b3480156102b957600080fd5b506102c2610877565b60405161028d9190612459565b3480156102db57600080fd5b506102ef6102ea3660046122d0565b610909565b6040516001600160a01b03909116815260200161028d565b34801561031357600080fd5b5061031c601881565b60405190815260200161028d565b34801561033657600080fd5b506102ab610345366004612204565b610991565b34801561035657600080fd5b506102ab610aa7565b34801561036b57600080fd5b5060025461031c565b34801561038057600080fd5b506102ab61038f3660046120a8565b610ae5565b3480156103a057600080fd5b5061031c6103af366004612204565b610b17565b3480156103c057600080fd5b5061031c60095481565b3480156103d657600080fd5b506008546102ef906001600160a01b031681565b3480156103f657600080fd5b5061031c600a5481565b34801561040c57600080fd5b506102ab610bca565b34801561042157600080fd5b506102ab6104303660046120a8565b610c6d565b34801561044157600080fd5b506102ab6104503660046122d0565b610c88565b34801561046157600080fd5b50610475610470366004611f67565b610cde565b60405161028d9190612415565b34801561048e57600080fd5b5061028161049d366004612149565b610d97565b3480156104ae57600080fd5b5061031c6104bd3660046122d0565b610e19565b3480156104ce57600080fd5b506102ab6104dd366004612287565b610e86565b3480156104ee57600080fd5b506102ab6104fd36600461201f565b610ec7565b34801561050e57600080fd5b5061028161051d366004611f67565b600c6020526000908152604090205460ff1681565b34801561053e57600080fd5b506102ef61054d3660046122d0565b610f11565b34801561055e57600080fd5b506102c2610f9d565b34801561057357600080fd5b5061031c610582366004611f67565b61102b565b34801561059357600080fd5b506102ab6110f9565b3480156105a857600080fd5b506102ab6105b73660046122d0565b61112f565b3480156105c857600080fd5b506005546001600160a01b03166102ef565b3480156105e657600080fd5b506102c261115e565b3480156105fb57600080fd5b506102ab61060a3660046122d0565b61116d565b34801561061b57600080fd5b5061031c61062a366004611f67565b600d6020526000908152604090205481565b6102ab61064a3660046122d0565b6111ab565b34801561065b57600080fd5b506102ab61066a3660046121d1565b611341565b34801561067b57600080fd5b506102ab61068a3660046120e9565b611406565b34801561069b57600080fd5b50600b546102819060ff1681565b3480156106b557600080fd5b506102c26106c43660046122d0565b61143e565b3480156106d557600080fd5b506007546102ef906001600160a01b031681565b3480156106f557600080fd5b506102ab610704366004611f67565b6114bf565b34801561071557600080fd5b50610281610724366004611f84565b61150b565b34801561073557600080fd5b506102ab610744366004611f67565b6115fe565b34801561075557600080fd5b506102ab610764366004611fbd565b611696565b34801561077557600080fd5b5061031c600281565b34801561078a57600080fd5b506102ab610799366004611f67565b6116d8565b60006001600160e01b0319821663780e9d6360e01b14806107c357506107c38261172b565b92915050565b6005546001600160a01b031633146107fc5760405162461bcd60e51b81526004016107f390612509565b60405180910390fd5b6002541561084c5760405162461bcd60e51b815260206004820152601760248201527f526573657276657320616c72656164792074616b656e2e00000000000000000060448201526064016107f3565b60005b601881101561087457610862338261177b565b8061086c81612689565b91505061084f565b50565b6060600080546108869061264e565b80601f01602080910402602001604051908101604052809291908181526020018280546108b29061264e565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b6000610914826117f7565b6109755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f3565b506000908152600360205260409020546001600160a01b031690565b600061099c82610f11565b9050806001600160a01b0316836001600160a01b03161415610a0a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f3565b336001600160a01b0382161480610a265750610a26813361150b565b610a985760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f3565b610aa28383611841565b505050565b6005546001600160a01b03163314610ad15760405162461bcd60e51b81526004016107f390612509565b600b805460ff19811660ff90911615179055565b610af0335b826118af565b610b0c5760405162461bcd60e51b81526004016107f39061253e565b610aa2838383611971565b6000610b228361102b565b8210610b405760405162461bcd60e51b81526004016107f39061246c565b6000805b600254811015610bb15760028181548110610b6157610b616126e4565b6000918252602090912001546001600160a01b0386811691161415610b9f5783821415610b915791506107c39050565b81610b9b81612689565b9250505b80610ba981612689565b915050610b44565b5060405162461bcd60e51b81526004016107f39061246c565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610c17576040519150601f19603f3d011682016040523d82523d6000602084013e610c1c565b606091505b50509050806108745760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2073656e6420746f2074726561737572792e000000000060448201526064016107f3565b610aa283838360405180602001604052806000815250611406565b610c9133610aea565b610cd55760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b60448201526064016107f3565b61087481611ac7565b60606000610ceb8361102b565b905080610d0c5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610d2757610d276126fa565b604051908082528060200260200182016040528015610d50578160200160208202803683370190505b50905060005b82811015610d0457610d688582610b17565b828281518110610d7a57610d7a6126e4565b602090810291909101015280610d8f81612689565b915050610d56565b6000805b82811015610e0c57846001600160a01b03166002858584818110610dc157610dc16126e4565b9050602002013581548110610dd857610dd86126e4565b6000918252602090912001546001600160a01b031614610dfc576000915050610e12565b610e0581612689565b9050610d9b565b50600190505b9392505050565b6002546000908210610e825760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f3565b5090565b6005546001600160a01b03163314610eb05760405162461bcd60e51b81526004016107f390612509565b8051610ec3906006906020840190611dd9565b5050565b60005b8251811015610f0a57610ef88585858481518110610eea57610eea6126e4565b602002602001015185611406565b80610f0281612689565b915050610eca565b5050505050565b60008060028381548110610f2757610f276126e4565b6000918252602090912001546001600160a01b03169050806107c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f3565b60068054610faa9061264e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd69061264e565b80156110235780601f10610ff857610100808354040283529160200191611023565b820191906000526020600020905b81548152906001019060200180831161100657829003601f168201915b505050505081565b60006001600160a01b0382166110965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f3565b6000805b6002548110156110f257600281815481106110b7576110b76126e4565b6000918252602090912001546001600160a01b03858116911614156110e2576110df82612689565b91505b6110eb81612689565b905061109a565b5092915050565b6005546001600160a01b031633146111235760405162461bcd60e51b81526004016107f390612509565b61112d6000611b49565b565b6005546001600160a01b031633146111595760405162461bcd60e51b81526004016107f390612509565b600a55565b6060600180546108869061264e565b6005546001600160a01b031633146111975760405162461bcd60e51b81526004016107f390612509565b806009546111a591906125c0565b60095550565b600254600b5460ff166112005760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e00000000000060448201526064016107f3565b60095461120e9060016125c0565b61121883836125c0565b1061125b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016107f3565b611267600260016125c0565b82106112b55760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016107f3565b34600a54836112c491906125ec565b146113115760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e00000000000000000060448201526064016107f3565b60005b82811015610aa25761132f3361132a83856125c0565b61177b565b8061133981612689565b915050611314565b6001600160a01b03821633141561139a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f3565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61141033836118af565b61142c5760405162461bcd60e51b81526004016107f39061253e565b61143884848484611b9b565b50505050565b6060611449826117f7565b61148d5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107f3565b600661149883611bce565b6040516020016114a9929190612331565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146114e95760405162461bcd60e51b81526004016107f390612509565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60075460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561155857600080fd5b505afa15801561156c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611590919061226a565b6001600160a01b031614806115bd57506001600160a01b0383166000908152600c602052604090205460ff165b156115cc5760019150506107c3565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146116285760405162461bcd60e51b81526004016107f390612509565b6001600160a01b03811661168d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f3565b61087481611b49565b60005b8151811015611438576116c684848484815181106116b9576116b96126e4565b6020026020010151610ae5565b806116d081612689565b915050611699565b6005546001600160a01b031633146117025760405162461bcd60e51b81526004016107f390612509565b6001600160a01b03166000908152600c60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061175c57506001600160e01b03198216635b5e139f60e01b145b806107c357506301ffc9a760e01b6001600160e01b03198316146107c3565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600254600090821080156107c3575060006001600160a01b031660028381548110611824576118246126e4565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187682610f11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118ba826117f7565b61191b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f3565b600061192683610f11565b9050806001600160a01b0316846001600160a01b031614806119615750836001600160a01b031661195684610909565b6001600160a01b0316145b806115f657506115f6818561150b565b826001600160a01b031661198482610f11565b6001600160a01b0316146119ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f3565b6001600160a01b038216611a4e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f3565b611a59600082611841565b8160028281548110611a6d57611a6d6126e4565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611ad282610f11565b9050611adf600083611841565b600060028381548110611af457611af46126e4565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ba6848484611971565b611bb284848484611ccc565b6114385760405162461bcd60e51b81526004016107f3906124b7565b606081611bf25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c1c5780611c0681612689565b9150611c159050600a836125d8565b9150611bf6565b60008167ffffffffffffffff811115611c3757611c376126fa565b6040519080825280601f01601f191660200182016040528015611c61576020820181803683370190505b5090505b84156115f657611c7660018361260b565b9150611c83600a866126a4565b611c8e9060306125c0565b60f81b818381518110611ca357611ca36126e4565b60200101906001600160f81b031916908160001a905350611cc5600a866125d8565b9450611c65565b60006001600160a01b0384163b15611dce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d109033908990889088906004016123d8565b602060405180830381600087803b158015611d2a57600080fd5b505af1925050508015611d5a575060408051601f3d908101601f19168201909252611d579181019061224d565b60015b611db4573d808015611d88576040519150601f19603f3d011682016040523d82523d6000602084013e611d8d565b606091505b508051611dac5760405162461bcd60e51b81526004016107f3906124b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f6565b506001949350505050565b828054611de59061264e565b90600052602060002090601f016020900481019282611e075760008555611e4d565b82601f10611e2057805160ff1916838001178555611e4d565b82800160010185558215611e4d579182015b82811115611e4d578251825591602001919060010190611e32565b50610e829291505b80821115610e825760008155600101611e55565b600067ffffffffffffffff831115611e8357611e836126fa565b611e96601f8401601f191660200161258f565b9050828152838383011115611eaa57600080fd5b828260208301376000602084830101529392505050565b600082601f830112611ed257600080fd5b8135602067ffffffffffffffff821115611eee57611eee6126fa565b8160051b611efd82820161258f565b838152828101908684018388018501891015611f1857600080fd5b600093505b85841015611f3b578035835260019390930192918401918401611f1d565b50979650505050505050565b600082601f830112611f5857600080fd5b610e1283833560208501611e69565b600060208284031215611f7957600080fd5b8135610e1281612710565b60008060408385031215611f9757600080fd5b8235611fa281612710565b91506020830135611fb281612710565b809150509250929050565b600080600060608486031215611fd257600080fd5b8335611fdd81612710565b92506020840135611fed81612710565b9150604084013567ffffffffffffffff81111561200957600080fd5b61201586828701611ec1565b9150509250925092565b6000806000806080858703121561203557600080fd5b843561204081612710565b9350602085013561205081612710565b9250604085013567ffffffffffffffff8082111561206d57600080fd5b61207988838901611ec1565b9350606087013591508082111561208f57600080fd5b5061209c87828801611f47565b91505092959194509250565b6000806000606084860312156120bd57600080fd5b83356120c881612710565b925060208401356120d881612710565b929592945050506040919091013590565b600080600080608085870312156120ff57600080fd5b843561210a81612710565b9350602085013561211a81612710565b925060408501359150606085013567ffffffffffffffff81111561213d57600080fd5b61209c87828801611f47565b60008060006040848603121561215e57600080fd5b833561216981612710565b9250602084013567ffffffffffffffff8082111561218657600080fd5b818601915086601f83011261219a57600080fd5b8135818111156121a957600080fd5b8760208260051b85010111156121be57600080fd5b6020830194508093505050509250925092565b600080604083850312156121e457600080fd5b82356121ef81612710565b915060208301358015158114611fb257600080fd5b6000806040838503121561221757600080fd5b823561222281612710565b946020939093013593505050565b60006020828403121561224257600080fd5b8135610e1281612725565b60006020828403121561225f57600080fd5b8151610e1281612725565b60006020828403121561227c57600080fd5b8151610e1281612710565b60006020828403121561229957600080fd5b813567ffffffffffffffff8111156122b057600080fd5b8201601f810184136122c157600080fd5b6115f684823560208401611e69565b6000602082840312156122e257600080fd5b5035919050565b60008151808452612301816020860160208601612622565b601f01601f19169290920160200192915050565b60008151612327818560208601612622565b9290920192915050565b600080845481600182811c91508083168061234d57607f831692505b602080841082141561236d57634e487b7160e01b86526022600452602486fd5b8180156123815760018114612392576123bf565b60ff198616895284890196506123bf565b60008b81526020902060005b868110156123b75781548b82015290850190830161239e565b505084890196505b5050505050506123cf8185612315565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240b908301846122e9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561244d57835183529284019291840191600101612431565b50909695505050505050565b602081526000610e1260208301846122e9565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156125b8576125b86126fa565b604052919050565b600082198211156125d3576125d36126b8565b500190565b6000826125e7576125e76126ce565b500490565b6000816000190483118215151615612606576126066126b8565b500290565b60008282101561261d5761261d6126b8565b500390565b60005b8381101561263d578181015183820152602001612625565b838111156114385750506000910152565b600181811c9082168061266257607f821691505b6020821081141561268357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561269d5761269d6126b8565b5060010190565b6000826126b3576126b36126ce565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461087457600080fd5b6001600160e01b03198116811461087457600080fdfea2646970667358221220c06c0cf59d48a85bc8f41fb545f857cf5bb615492fe5a8c0325df04dcf2d334b64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eeb66c5895e85230ef7b607ddbeb5b623d4e9538000000000000000000000000000000000000000000000000000000000000001268747470733a2f2f676f6f676c652e636f6d0000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80635bab26e211610144578063a22cb465116100b6578063d26ea6c01161007a578063d26ea6c0146106e9578063e985e9c514610709578063f2fde38b14610729578063f3993d1114610749578063f43a22dc14610769578063f73c814b1461077e57600080fd5b8063a22cb4651461064f578063b88d4fde1461066f578063bc8893b41461068f578063c87b56dd146106a9578063cd7c0326146106c957600080fd5b80638774e5d0116101085780638774e5d01461059c5780638da5cb5b146105bc57806395d89b41146105da5780639c9f2942146105ef5780639ec00c951461060f578063a0712d681461063c57600080fd5b80635bab26e2146105025780636352211e146105325780636c0360eb1461055257806370a0823114610567578063715018a61461058757600080fd5b806332cb6b0c116101dd57806342966c68116101a157806342966c6814610435578063438b6300146104555780634d44660c146104825780634f6ccce7146104a257806355f804b3146104c25780635a4fee30146104e257600080fd5b806332cb6b0c146103b4578063339b2cff146103ca5780633c8da588146103ea5780633ccfd60b1461040057806342842e0e1461041557600080fd5b8063095ea7b311610224578063095ea7b31461032a5780630c894cfe1461034a57806318160ddd1461035f57806323b872dd146103745780632f745c591461039457600080fd5b806301ffc9a714610261578063029877b61461029657806306fdde03146102ad578063081812fc146102cf5780630922f9c514610307575b600080fd5b34801561026d57600080fd5b5061028161027c366004612230565b61079e565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c9565b005b3480156102b957600080fd5b506102c2610877565b60405161028d9190612459565b3480156102db57600080fd5b506102ef6102ea3660046122d0565b610909565b6040516001600160a01b03909116815260200161028d565b34801561031357600080fd5b5061031c601881565b60405190815260200161028d565b34801561033657600080fd5b506102ab610345366004612204565b610991565b34801561035657600080fd5b506102ab610aa7565b34801561036b57600080fd5b5060025461031c565b34801561038057600080fd5b506102ab61038f3660046120a8565b610ae5565b3480156103a057600080fd5b5061031c6103af366004612204565b610b17565b3480156103c057600080fd5b5061031c60095481565b3480156103d657600080fd5b506008546102ef906001600160a01b031681565b3480156103f657600080fd5b5061031c600a5481565b34801561040c57600080fd5b506102ab610bca565b34801561042157600080fd5b506102ab6104303660046120a8565b610c6d565b34801561044157600080fd5b506102ab6104503660046122d0565b610c88565b34801561046157600080fd5b50610475610470366004611f67565b610cde565b60405161028d9190612415565b34801561048e57600080fd5b5061028161049d366004612149565b610d97565b3480156104ae57600080fd5b5061031c6104bd3660046122d0565b610e19565b3480156104ce57600080fd5b506102ab6104dd366004612287565b610e86565b3480156104ee57600080fd5b506102ab6104fd36600461201f565b610ec7565b34801561050e57600080fd5b5061028161051d366004611f67565b600c6020526000908152604090205460ff1681565b34801561053e57600080fd5b506102ef61054d3660046122d0565b610f11565b34801561055e57600080fd5b506102c2610f9d565b34801561057357600080fd5b5061031c610582366004611f67565b61102b565b34801561059357600080fd5b506102ab6110f9565b3480156105a857600080fd5b506102ab6105b73660046122d0565b61112f565b3480156105c857600080fd5b506005546001600160a01b03166102ef565b3480156105e657600080fd5b506102c261115e565b3480156105fb57600080fd5b506102ab61060a3660046122d0565b61116d565b34801561061b57600080fd5b5061031c61062a366004611f67565b600d6020526000908152604090205481565b6102ab61064a3660046122d0565b6111ab565b34801561065b57600080fd5b506102ab61066a3660046121d1565b611341565b34801561067b57600080fd5b506102ab61068a3660046120e9565b611406565b34801561069b57600080fd5b50600b546102819060ff1681565b3480156106b557600080fd5b506102c26106c43660046122d0565b61143e565b3480156106d557600080fd5b506007546102ef906001600160a01b031681565b3480156106f557600080fd5b506102ab610704366004611f67565b6114bf565b34801561071557600080fd5b50610281610724366004611f84565b61150b565b34801561073557600080fd5b506102ab610744366004611f67565b6115fe565b34801561075557600080fd5b506102ab610764366004611fbd565b611696565b34801561077557600080fd5b5061031c600281565b34801561078a57600080fd5b506102ab610799366004611f67565b6116d8565b60006001600160e01b0319821663780e9d6360e01b14806107c357506107c38261172b565b92915050565b6005546001600160a01b031633146107fc5760405162461bcd60e51b81526004016107f390612509565b60405180910390fd5b6002541561084c5760405162461bcd60e51b815260206004820152601760248201527f526573657276657320616c72656164792074616b656e2e00000000000000000060448201526064016107f3565b60005b601881101561087457610862338261177b565b8061086c81612689565b91505061084f565b50565b6060600080546108869061264e565b80601f01602080910402602001604051908101604052809291908181526020018280546108b29061264e565b80156108ff5780601f106108d4576101008083540402835291602001916108ff565b820191906000526020600020905b8154815290600101906020018083116108e257829003601f168201915b5050505050905090565b6000610914826117f7565b6109755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f3565b506000908152600360205260409020546001600160a01b031690565b600061099c82610f11565b9050806001600160a01b0316836001600160a01b03161415610a0a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107f3565b336001600160a01b0382161480610a265750610a26813361150b565b610a985760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107f3565b610aa28383611841565b505050565b6005546001600160a01b03163314610ad15760405162461bcd60e51b81526004016107f390612509565b600b805460ff19811660ff90911615179055565b610af0335b826118af565b610b0c5760405162461bcd60e51b81526004016107f39061253e565b610aa2838383611971565b6000610b228361102b565b8210610b405760405162461bcd60e51b81526004016107f39061246c565b6000805b600254811015610bb15760028181548110610b6157610b616126e4565b6000918252602090912001546001600160a01b0386811691161415610b9f5783821415610b915791506107c39050565b81610b9b81612689565b9250505b80610ba981612689565b915050610b44565b5060405162461bcd60e51b81526004016107f39061246c565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610c17576040519150601f19603f3d011682016040523d82523d6000602084013e610c1c565b606091505b50509050806108745760405162461bcd60e51b815260206004820152601b60248201527f4661696c656420746f2073656e6420746f2074726561737572792e000000000060448201526064016107f3565b610aa283838360405180602001604052806000815250611406565b610c9133610aea565b610cd55760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b60448201526064016107f3565b61087481611ac7565b60606000610ceb8361102b565b905080610d0c5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610d2757610d276126fa565b604051908082528060200260200182016040528015610d50578160200160208202803683370190505b50905060005b82811015610d0457610d688582610b17565b828281518110610d7a57610d7a6126e4565b602090810291909101015280610d8f81612689565b915050610d56565b6000805b82811015610e0c57846001600160a01b03166002858584818110610dc157610dc16126e4565b9050602002013581548110610dd857610dd86126e4565b6000918252602090912001546001600160a01b031614610dfc576000915050610e12565b610e0581612689565b9050610d9b565b50600190505b9392505050565b6002546000908210610e825760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107f3565b5090565b6005546001600160a01b03163314610eb05760405162461bcd60e51b81526004016107f390612509565b8051610ec3906006906020840190611dd9565b5050565b60005b8251811015610f0a57610ef88585858481518110610eea57610eea6126e4565b602002602001015185611406565b80610f0281612689565b915050610eca565b5050505050565b60008060028381548110610f2757610f276126e4565b6000918252602090912001546001600160a01b03169050806107c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107f3565b60068054610faa9061264e565b80601f0160208091040260200160405190810160405280929190818152602001828054610fd69061264e565b80156110235780601f10610ff857610100808354040283529160200191611023565b820191906000526020600020905b81548152906001019060200180831161100657829003601f168201915b505050505081565b60006001600160a01b0382166110965760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107f3565b6000805b6002548110156110f257600281815481106110b7576110b76126e4565b6000918252602090912001546001600160a01b03858116911614156110e2576110df82612689565b91505b6110eb81612689565b905061109a565b5092915050565b6005546001600160a01b031633146111235760405162461bcd60e51b81526004016107f390612509565b61112d6000611b49565b565b6005546001600160a01b031633146111595760405162461bcd60e51b81526004016107f390612509565b600a55565b6060600180546108869061264e565b6005546001600160a01b031633146111975760405162461bcd60e51b81526004016107f390612509565b806009546111a591906125c0565b60095550565b600254600b5460ff166112005760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f74206163746976652e00000000000060448201526064016107f3565b60095461120e9060016125c0565b61121883836125c0565b1061125b5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016107f3565b611267600260016125c0565b82106112b55760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016107f3565b34600a54836112c491906125ec565b146113115760405162461bcd60e51b815260206004820152601760248201527f496e76616c69642066756e64732070726f76696465642e00000000000000000060448201526064016107f3565b60005b82811015610aa25761132f3361132a83856125c0565b61177b565b8061133981612689565b915050611314565b6001600160a01b03821633141561139a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107f3565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61141033836118af565b61142c5760405162461bcd60e51b81526004016107f39061253e565b61143884848484611b9b565b50505050565b6060611449826117f7565b61148d5760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b60448201526064016107f3565b600661149883611bce565b6040516020016114a9929190612331565b6040516020818303038152906040529050919050565b6005546001600160a01b031633146114e95760405162461bcd60e51b81526004016107f390612509565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60075460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561155857600080fd5b505afa15801561156c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611590919061226a565b6001600160a01b031614806115bd57506001600160a01b0383166000908152600c602052604090205460ff165b156115cc5760019150506107c3565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b031633146116285760405162461bcd60e51b81526004016107f390612509565b6001600160a01b03811661168d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107f3565b61087481611b49565b60005b8151811015611438576116c684848484815181106116b9576116b96126e4565b6020026020010151610ae5565b806116d081612689565b915050611699565b6005546001600160a01b031633146117025760405162461bcd60e51b81526004016107f390612509565b6001600160a01b03166000908152600c60205260409020805460ff19811660ff90911615179055565b60006001600160e01b031982166380ac58cd60e01b148061175c57506001600160e01b03198216635b5e139f60e01b145b806107c357506301ffc9a760e01b6001600160e01b03198316146107c3565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600254600090821080156107c3575060006001600160a01b031660028381548110611824576118246126e4565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187682610f11565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006118ba826117f7565b61191b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107f3565b600061192683610f11565b9050806001600160a01b0316846001600160a01b031614806119615750836001600160a01b031661195684610909565b6001600160a01b0316145b806115f657506115f6818561150b565b826001600160a01b031661198482610f11565b6001600160a01b0316146119ec5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107f3565b6001600160a01b038216611a4e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107f3565b611a59600082611841565b8160028281548110611a6d57611a6d6126e4565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000611ad282610f11565b9050611adf600083611841565b600060028381548110611af457611af46126e4565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611ba6848484611971565b611bb284848484611ccc565b6114385760405162461bcd60e51b81526004016107f3906124b7565b606081611bf25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c1c5780611c0681612689565b9150611c159050600a836125d8565b9150611bf6565b60008167ffffffffffffffff811115611c3757611c376126fa565b6040519080825280601f01601f191660200182016040528015611c61576020820181803683370190505b5090505b84156115f657611c7660018361260b565b9150611c83600a866126a4565b611c8e9060306125c0565b60f81b818381518110611ca357611ca36126e4565b60200101906001600160f81b031916908160001a905350611cc5600a866125d8565b9450611c65565b60006001600160a01b0384163b15611dce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d109033908990889088906004016123d8565b602060405180830381600087803b158015611d2a57600080fd5b505af1925050508015611d5a575060408051601f3d908101601f19168201909252611d579181019061224d565b60015b611db4573d808015611d88576040519150601f19603f3d011682016040523d82523d6000602084013e611d8d565b606091505b508051611dac5760405162461bcd60e51b81526004016107f3906124b7565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506115f6565b506001949350505050565b828054611de59061264e565b90600052602060002090601f016020900481019282611e075760008555611e4d565b82601f10611e2057805160ff1916838001178555611e4d565b82800160010185558215611e4d579182015b82811115611e4d578251825591602001919060010190611e32565b50610e829291505b80821115610e825760008155600101611e55565b600067ffffffffffffffff831115611e8357611e836126fa565b611e96601f8401601f191660200161258f565b9050828152838383011115611eaa57600080fd5b828260208301376000602084830101529392505050565b600082601f830112611ed257600080fd5b8135602067ffffffffffffffff821115611eee57611eee6126fa565b8160051b611efd82820161258f565b838152828101908684018388018501891015611f1857600080fd5b600093505b85841015611f3b578035835260019390930192918401918401611f1d565b50979650505050505050565b600082601f830112611f5857600080fd5b610e1283833560208501611e69565b600060208284031215611f7957600080fd5b8135610e1281612710565b60008060408385031215611f9757600080fd5b8235611fa281612710565b91506020830135611fb281612710565b809150509250929050565b600080600060608486031215611fd257600080fd5b8335611fdd81612710565b92506020840135611fed81612710565b9150604084013567ffffffffffffffff81111561200957600080fd5b61201586828701611ec1565b9150509250925092565b6000806000806080858703121561203557600080fd5b843561204081612710565b9350602085013561205081612710565b9250604085013567ffffffffffffffff8082111561206d57600080fd5b61207988838901611ec1565b9350606087013591508082111561208f57600080fd5b5061209c87828801611f47565b91505092959194509250565b6000806000606084860312156120bd57600080fd5b83356120c881612710565b925060208401356120d881612710565b929592945050506040919091013590565b600080600080608085870312156120ff57600080fd5b843561210a81612710565b9350602085013561211a81612710565b925060408501359150606085013567ffffffffffffffff81111561213d57600080fd5b61209c87828801611f47565b60008060006040848603121561215e57600080fd5b833561216981612710565b9250602084013567ffffffffffffffff8082111561218657600080fd5b818601915086601f83011261219a57600080fd5b8135818111156121a957600080fd5b8760208260051b85010111156121be57600080fd5b6020830194508093505050509250925092565b600080604083850312156121e457600080fd5b82356121ef81612710565b915060208301358015158114611fb257600080fd5b6000806040838503121561221757600080fd5b823561222281612710565b946020939093013593505050565b60006020828403121561224257600080fd5b8135610e1281612725565b60006020828403121561225f57600080fd5b8151610e1281612725565b60006020828403121561227c57600080fd5b8151610e1281612710565b60006020828403121561229957600080fd5b813567ffffffffffffffff8111156122b057600080fd5b8201601f810184136122c157600080fd5b6115f684823560208401611e69565b6000602082840312156122e257600080fd5b5035919050565b60008151808452612301816020860160208601612622565b601f01601f19169290920160200192915050565b60008151612327818560208601612622565b9290920192915050565b600080845481600182811c91508083168061234d57607f831692505b602080841082141561236d57634e487b7160e01b86526022600452602486fd5b8180156123815760018114612392576123bf565b60ff198616895284890196506123bf565b60008b81526020902060005b868110156123b75781548b82015290850190830161239e565b505084890196505b5050505050506123cf8185612315565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240b908301846122e9565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561244d57835183529284019291840191600101612431565b50909695505050505050565b602081526000610e1260208301846122e9565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156125b8576125b86126fa565b604052919050565b600082198211156125d3576125d36126b8565b500190565b6000826125e7576125e76126ce565b500490565b6000816000190483118215151615612606576126066126b8565b500290565b60008282101561261d5761261d6126b8565b500390565b60005b8381101561263d578181015183820152602001612625565b838111156114385750506000910152565b600181811c9082168061266257607f821691505b6020821081141561268357634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561269d5761269d6126b8565b5060010190565b6000826126b3576126b36126ce565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461087457600080fd5b6001600160e01b03198116811461087457600080fdfea2646970667358221220c06c0cf59d48a85bc8f41fb545f857cf5bb615492fe5a8c0325df04dcf2d334b64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000eeb66c5895e85230ef7b607ddbeb5b623d4e9538000000000000000000000000000000000000000000000000000000000000001268747470733a2f2f676f6f676c652e636f6d0000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseURI (string): https://google.com
Arg [1] : _treasuryAccount (address): 0xeeb66C5895E85230eF7B607DDbEB5b623D4e9538

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000eeb66c5895e85230ef7b607ddbeb5b623d4e9538
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 68747470733a2f2f676f6f676c652e636f6d0000000000000000000000000000


Deployed Bytecode Sourcemap

31893:4854:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26882:300;;;;;;;;;;-1:-1:-1;26882:300:0;;;;;:::i;:::-;;:::i;:::-;;;10901:14:1;;10894:22;10876:41;;10864:2;10849:18;26882:300:0;;;;;;;;33701:188;;;;;;;;;;;;;:::i;:::-;;15432:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;16244:308::-;;;;;;;;;;-1:-1:-1;16244:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9562:32:1;;;9544:51;;9532:2;9517:18;16244:308:0;9398:203:1;32142:37:0;;;;;;;;;;;;32177:2;32142:37;;;;;20191:25:1;;;20179:2;20164:18;32142:37:0;20045:177:1;15767:411:0;;;;;;;;;;-1:-1:-1;15767:411:0;;;;;:::i;:::-;;:::i;33585:108::-;;;;;;;;;;;;;:::i;27258:110::-;;;;;;;;;;-1:-1:-1;27346:7:0;:14;27258:110;;17303:376;;;;;;;;;;-1:-1:-1;17303:376:0;;;;;:::i;:::-;;:::i;27821:588::-;;;;;;;;;;-1:-1:-1;27821:588:0;;;;;:::i;:::-;;:::i;32056:32::-;;;;;;;;;;;;;;;;32017:30;;;;;;;;;;-1:-1:-1;32017:30:0;;;;-1:-1:-1;;;;;32017:30:0;;;32186:39;;;;;;;;;;;;;;;;34610:201;;;;;;;;;;;;;:::i;17750:185::-;;;;;;;;;;-1:-1:-1;17750:185:0;;;;;:::i;:::-;;:::i;34408:194::-;;;;;;;;;;-1:-1:-1;34408:194:0;;;;;:::i;:::-;;:::i;34819:432::-;;;;;;;;;;-1:-1:-1;34819:432:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;35827:289::-;;;;;;;;;;-1:-1:-1;35827:289:0;;;;;:::i;:::-;;:::i;27445:292::-;;;;;;;;;;-1:-1:-1;27445:292:0;;;;;:::i;:::-;;:::i;32662:98::-;;;;;;;;;;-1:-1:-1;32662:98:0;;;;;:::i;:::-;;:::i;35521:298::-;;;;;;;;;;-1:-1:-1;35521:298:0;;;;;:::i;:::-;;:::i;32277:44::-;;;;;;;;;;-1:-1:-1;32277:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;15039:326;;;;;;;;;;-1:-1:-1;15039:326:0;;;;;:::i;:::-;;:::i;31945:21::-;;;;;;;;;;;;;:::i;14557:420::-;;;;;;;;;;-1:-1:-1;14557:420:0;;;;;:::i;:::-;;:::i;30148:103::-;;;;;;;;;;;;;:::i;33473:104::-;;;;;;;;;;-1:-1:-1;33473:104:0;;;;;:::i;:::-;;:::i;29497:87::-;;;;;;;;;;-1:-1:-1;29570:6:0;;-1:-1:-1;;;;;29570:6:0;29497:87;;15601:104;;;;;;;;;;;;;:::i;33370:95::-;;;;;;;;;;-1:-1:-1;33370:95:0;;;;;:::i;:::-;;:::i;32328:50::-;;;;;;;;;;-1:-1:-1;32328:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;33897:503;;;;;;:::i;:::-;;:::i;16624:327::-;;;;;;;;;;-1:-1:-1;16624:327:0;;;;;:::i;:::-;;:::i;18006:365::-;;;;;;;;;;-1:-1:-1;18006:365:0;;;;;:::i;:::-;;:::i;32232:36::-;;;;;;;;;;-1:-1:-1;32232:36:0;;;;;;;;32768:271;;;;;;;;;;-1:-1:-1;32768:271:0;;;;;:::i;:::-;;:::i;31975:35::-;;;;;;;;;;-1:-1:-1;31975:35:0;;;;-1:-1:-1;;;;;31975:35:0;;;33047:169;;;;;;;;;;-1:-1:-1;33047:169:0;;;;;:::i;:::-;;:::i;36124:458::-;;;;;;;;;;-1:-1:-1;36124:458:0;;;;;:::i;:::-;;:::i;30406:238::-;;;;;;;;;;-1:-1:-1;30406:238:0;;;;;:::i;:::-;;:::i;35259:254::-;;;;;;;;;;-1:-1:-1;35259:254:0;;;;;:::i;:::-;;:::i;32097:38::-;;;;;;;;;;;;32134:1;32097:38;;33224:138;;;;;;;;;;-1:-1:-1;33224:138:0;;;;;:::i;:::-;;:::i;26882:300::-;27029:4;-1:-1:-1;;;;;;27071:50:0;;-1:-1:-1;;;27071:50:0;;:103;;;27138:36;27162:11;27138:23;:36::i;:::-;27051:123;26882:300;-1:-1:-1;;26882:300:0:o;33701:188::-;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;;;;;;;;;33766:7:::1;:14:::0;:19;33758:55:::1;;;::::0;-1:-1:-1;;;33758:55:0;;18707:2:1;33758:55:0::1;::::0;::::1;18689:21:1::0;18746:2;18726:18;;;18719:30;18785:25;18765:18;;;18758:53;18828:18;;33758:55:0::1;18505:347:1::0;33758:55:0::1;33829:9;33824:57;32177:2;33840:1;:12;33824:57;;;33859:22;13193:10:::0;33879:1:::1;33859:5;:22::i;:::-;33854:3:::0;::::1;::::0;::::1;:::i;:::-;;;;33824:57;;;;33701:188::o:0;15432:100::-;15486:13;15519:5;15512:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15432:100;:::o;16244:308::-;16365:7;16412:16;16420:7;16412;:16::i;:::-;16390:110;;;;-1:-1:-1;;;16390:110:0;;16771:2:1;16390:110:0;;;16753:21:1;16810:2;16790:18;;;16783:30;16849:34;16829:18;;;16822:62;-1:-1:-1;;;16900:18:1;;;16893:42;16952:19;;16390:110:0;16569:408:1;16390:110:0;-1:-1:-1;16520:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;16520:24:0;;16244:308::o;15767:411::-;15848:13;15864:23;15879:7;15864:14;:23::i;:::-;15848:39;;15912:5;-1:-1:-1;;;;;15906:11:0;:2;-1:-1:-1;;;;;15906:11:0;;;15898:57;;;;-1:-1:-1;;;15898:57:0;;18305:2:1;15898:57:0;;;18287:21:1;18344:2;18324:18;;;18317:30;18383:34;18363:18;;;18356:62;-1:-1:-1;;;18434:18:1;;;18427:31;18475:19;;15898:57:0;18103:397:1;15898:57:0;13193:10;-1:-1:-1;;;;;15990:21:0;;;;:62;;-1:-1:-1;16015:37:0;16032:5;13193:10;36124:458;:::i;16015:37::-;15968:168;;;;-1:-1:-1;;;15968:168:0;;14823:2:1;15968:168:0;;;14805:21:1;14862:2;14842:18;;;14835:30;14901:34;14881:18;;;14874:62;14972:26;14952:18;;;14945:54;15016:19;;15968:168:0;14621:420:1;15968:168:0;16149:21;16158:2;16162:7;16149:8;:21::i;:::-;15837:341;15767:411;;:::o;33585:108::-;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;33669:16:::1;::::0;;-1:-1:-1;;33649:36:0;::::1;33669:16;::::0;;::::1;33668:17;33649:36;::::0;;33585:108::o;17303:376::-;17512:41;13193:10;17531:12;17545:7;17512:18;:41::i;:::-;17490:140;;;;-1:-1:-1;;;17490:140:0;;;;;;;:::i;:::-;17643:28;17653:4;17659:2;17663:7;17643:9;:28::i;27821:588::-;27963:15;28026:16;28036:5;28026:9;:16::i;:::-;28018:5;:24;27996:117;;;;-1:-1:-1;;;27996:117:0;;;;;;;:::i;:::-;28126:13;28155:9;28150:186;28170:7;:14;28166:18;;28150:186;;;28219:7;28227:1;28219:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;28210:19:0;;;28219:10;;28210:19;28206:119;;;28263:5;28254;:14;28250:59;;;28277:1;-1:-1:-1;28270:8:0;;-1:-1:-1;28270:8:0;28250:59;28302:7;;;;:::i;:::-;;;;28250:59;28186:3;;;;:::i;:::-;;;;28150:186;;;;28348:53;;-1:-1:-1;;;28348:53:0;;;;;;;:::i;34610:201::-;34667:15;;:78;;34649:12;;-1:-1:-1;;;;;34667:15:0;;34695:21;;34649:12;34667:78;34649:12;34667:78;34695:21;34667:15;:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34648:97;;;34764:7;34756:47;;;;-1:-1:-1;;;34756:47:0;;11702:2:1;34756:47:0;;;11684:21:1;11741:2;11721:18;;;11714:30;11780:29;11760:18;;;11753:57;11827:18;;34756:47:0;11500:351:1;17750:185:0;17888:39;17905:4;17911:2;17915:7;17888:39;;;;;;;;;;;;:16;:39::i;34408:194::-;34479:41;13193:10;34498:12;13113:98;34479:41;34457:112;;;;-1:-1:-1;;;34457:112:0;;17955:2:1;34457:112:0;;;17937:21:1;17994:2;17974:18;;;17967:30;-1:-1:-1;;;18013:18:1;;;18006:51;18074:18;;34457:112:0;17753:345:1;34457:112:0;34580:14;34586:7;34580:5;:14::i;34819:432::-;34906:16;34940:18;34961:17;34971:6;34961:9;:17::i;:::-;34940:38;-1:-1:-1;34993:15:0;34989:44;;35017:16;;;35031:1;35017:16;;;;;;;;;;;-1:-1:-1;35010:23:0;34819:432;-1:-1:-1;;;34819:432:0:o;34989:44::-;35046:25;35088:10;35074:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35074:25:0;;35046:53;;35115:9;35110:108;35130:10;35126:1;:14;35110:108;;;35176:30;35196:6;35204:1;35176:19;:30::i;:::-;35162:8;35171:1;35162:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;35142:3;;;;:::i;:::-;;;;35110:108;;35827:289;35943:4;35970:9;35965:120;35981:20;;;35965:120;;;36052:7;-1:-1:-1;;;;;36027:32:0;:7;36035:9;;36045:1;36035:12;;;;;;;:::i;:::-;;;;;;;36027:21;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;36027:21:0;:32;36023:50;;36068:5;36061:12;;;;;36023:50;36003:3;;;:::i;:::-;;;35965:120;;;;36104:4;36097:11;;35827:289;;;;;;:::o;27445:292::-;27620:7;:14;27565:7;;27612:22;;27590:116;;;;-1:-1:-1;;;27590:116:0;;19834:2:1;27590:116:0;;;19816:21:1;19873:2;19853:18;;;19846:30;19912:34;19892:18;;;19885:62;-1:-1:-1;;;19963:18:1;;;19956:42;20015:19;;27590:116:0;19632:408:1;27590:116:0;-1:-1:-1;27724:5:0;27445:292::o;32662:98::-;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;32734:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;32662:98:::0;:::o;35521:298::-;35694:9;35689:123;35713:9;:16;35709:1;:20;35689:123;;;35751:49;35768:5;35775:3;35780:9;35790:1;35780:12;;;;;;;;:::i;:::-;;;;;;;35794:5;35751:16;:49::i;:::-;35731:3;;;;:::i;:::-;;;;35689:123;;;;35521:298;;;;:::o;15039:326::-;15156:7;15181:13;15197:7;15205;15197:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;15197:16:0;;-1:-1:-1;15246:19:0;15224:110;;;;-1:-1:-1;;;15224:110:0;;15659:2:1;15224:110:0;;;15641:21:1;15698:2;15678:18;;;15671:30;15737:34;15717:18;;;15710:62;-1:-1:-1;;;15788:18:1;;;15781:39;15837:19;;15224:110:0;15457:405:1;31945:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14557:420::-;14674:7;-1:-1:-1;;;;;14721:19:0;;14699:111;;;;-1:-1:-1;;;14699:111:0;;15248:2:1;14699:111:0;;;15230:21:1;15287:2;15267:18;;;15260:30;15326:34;15306:18;;;15299:62;-1:-1:-1;;;15377:18:1;;;15370:40;15427:19;;14699:111:0;15046:406:1;14699:111:0;14823:13;14852:9;14847:100;14867:7;:14;14863:18;;14847:100;;;14916:7;14924:1;14916:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;14907:19:0;;;14916:10;;14907:19;14903:32;;;14928:7;;;:::i;:::-;;;14903:32;14883:3;;;:::i;:::-;;;14847:100;;;-1:-1:-1;14964:5:0;14557:420;-1:-1:-1;;14557:420:0:o;30148:103::-;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;30213:30:::1;30240:1;30213:18;:30::i;:::-;30148:103::o:0;33473:104::-;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;33545:10:::1;:24:::0;33473:104::o;15601:::-;15657:13;15690:7;15683:14;;;;;:::i;33370:95::-;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;33456:1:::1;33443:10;;:14;;;;:::i;:::-;33430:10;:27:::0;-1:-1:-1;33370:95:0:o;33897:503::-;33974:7;:14;34007:16;;;;33999:55;;;;-1:-1:-1;;;33999:55:0;;13296:2:1;33999:55:0;;;13278:21:1;13335:2;13315:18;;;13308:30;13374:28;13354:18;;;13347:56;13420:18;;33999:55:0;13094:350:1;33999:55:0;34095:10;;:14;;34108:1;34095:14;:::i;:::-;34073:19;34087:5;34073:11;:19;:::i;:::-;:36;34065:68;;;;-1:-1:-1;;;34065:68:0;;11354:2:1;34065:68:0;;;11336:21:1;11393:2;11373:18;;;11366:30;-1:-1:-1;;;11412:18:1;;;11405:49;11471:18;;34065:68:0;11152:343:1;34065:68:0;34160:14;32134:1;34173;34160:14;:::i;:::-;34152:5;:22;34144:63;;;;-1:-1:-1;;;34144:63:0;;19477:2:1;34144:63:0;;;19459:21:1;19516:2;19496:18;;;19489:30;19555;19535:18;;;19528:58;19603:18;;34144:63:0;19275:352:1;34144:63:0;34248:9;34234:10;;34226:5;:18;;;;:::i;:::-;:31;34218:67;;;;-1:-1:-1;;;34218:67:0;;16069:2:1;34218:67:0;;;16051:21:1;16108:2;16088:18;;;16081:30;16147:25;16127:18;;;16120:53;16190:18;;34218:67:0;15867:347:1;34218:67:0;34303:9;34298:95;34318:5;34314:1;:9;34298:95;;;34345:36;13193:10;34365:15;34379:1;34365:11;:15;:::i;:::-;34345:5;:36::i;:::-;34325:3;;;;:::i;:::-;;;;34298:95;;16624:327;-1:-1:-1;;;;;16759:24:0;;13193:10;16759:24;;16751:62;;;;-1:-1:-1;;;16751:62:0;;14056:2:1;16751:62:0;;;14038:21:1;14095:2;14075:18;;;14068:30;14134:27;14114:18;;;14107:55;14179:18;;16751:62:0;13854:349:1;16751:62:0;13193:10;16826:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;16826:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;16826:53:0;;;;;;;;;;16895:48;;10876:41:1;;;16826:42:0;;13193:10;16895:48;;10849:18:1;16895:48:0;;;;;;;16624:327;;:::o;18006:365::-;18195:41;13193:10;18228:7;18195:18;:41::i;:::-;18173:140;;;;-1:-1:-1;;;18173:140:0;;;;;;;:::i;:::-;18324:39;18338:4;18344:2;18348:7;18357:5;18324:13;:39::i;:::-;18006:365;;;;:::o;32768:271::-;32870:13;32909:17;32917:8;32909:7;:17::i;:::-;32901:51;;;;-1:-1:-1;;;32901:51:0;;16421:2:1;32901:51:0;;;16403:21:1;16460:2;16440:18;;;16433:30;-1:-1:-1;;;16479:18:1;;;16472:51;16540:18;;32901:51:0;16219:345:1;32901:51:0;32994:7;33003:26;33020:8;33003:16;:26::i;:::-;32977:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32963:68;;32768:271;;;:::o;33047:169::-;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;33164:20:::1;:44:::0;;-1:-1:-1;;;;;;33164:44:0::1;-1:-1:-1::0;;;;;33164:44:0;;;::::1;::::0;;;::::1;::::0;;33047:169::o;36124:458::-;36344:20;;36412:29;;-1:-1:-1;;;36412:29:0;;-1:-1:-1;;;;;9562:32:1;;;36412:29:0;;;9544:51:1;36250:4:0;;36344:20;;;36404:50;;;;36344:20;;36412:21;;9517:18:1;;36412:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;36404:50:0;;:89;;;-1:-1:-1;;;;;;36471:22:0;;;;;;:12;:22;;;;;;;;36404:89;36386:130;;;36512:4;36505:11;;;;;36386:130;-1:-1:-1;;;;;17193:25:0;;;17164:4;17193:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;36534:40;36527:47;36124:458;-1:-1:-1;;;;36124:458:0:o;30406:238::-;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30509:22:0;::::1;30487:110;;;::::0;-1:-1:-1;;;30487:110:0;;12889:2:1;30487:110:0::1;::::0;::::1;12871:21:1::0;12928:2;12908:18;;;12901:30;12967:34;12947:18;;;12940:62;-1:-1:-1;;;13018:18:1;;;13011:36;13064:19;;30487:110:0::1;12687:402:1::0;30487:110:0::1;30608:28;30627:8;30608:18;:28::i;35259:254::-:0;35399:9;35394:112;35418:9;:16;35414:1;:20;35394:112;;;35456:38;35469:5;35476:3;35481:9;35491:1;35481:12;;;;;;;;:::i;:::-;;;;;;;35456;:38::i;:::-;35436:3;;;;:::i;:::-;;;;35394:112;;33224:138;29570:6;;-1:-1:-1;;;;;29570:6:0;13193:10;29717:23;29709:68;;;;-1:-1:-1;;;29709:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33328:26:0::1;;::::0;;;:12:::1;:26;::::0;;;;;;-1:-1:-1;;33298:56:0;::::1;33328:26;::::0;;::::1;33327:27;33298:56;::::0;;33224:138::o;14138:355::-;14285:4;-1:-1:-1;;;;;;14327:40:0;;-1:-1:-1;;;14327:40:0;;:105;;-1:-1:-1;;;;;;;14384:48:0;;-1:-1:-1;;;14384:48:0;14327:105;:158;;;-1:-1:-1;;;;;;;;;;5462:40:0;;;14449:36;5303:207;36590:154;36671:7;:16;;;;;;;-1:-1:-1;36671:16:0;;;;;;;-1:-1:-1;;;;;;36671:16:0;-1:-1:-1;;;;;36671:16:0;;;;;;;;36703:33;;36728:7;;-1:-1:-1;36703:33:0;;-1:-1:-1;;36703:33:0;36590:154;;:::o;19918:155::-;20017:7;:14;19983:4;;20007:24;;:58;;;;;20063:1;-1:-1:-1;;;;;20035:30:0;:7;20043;20035:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;20035:16:0;:30;;20000:65;19918:155;-1:-1:-1;;19918:155:0:o;23943:174::-;24018:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;24018:29:0;-1:-1:-1;;;;;24018:29:0;;;;;;;;:24;;24072:23;24018:24;24072:14;:23::i;:::-;-1:-1:-1;;;;;24063:46:0;;;;;;;;;;;23943:174;;:::o;20240:452::-;20369:4;20413:16;20421:7;20413;:16::i;:::-;20391:110;;;;-1:-1:-1;;;20391:110:0;;14410:2:1;20391:110:0;;;14392:21:1;14449:2;14429:18;;;14422:30;14488:34;14468:18;;;14461:62;-1:-1:-1;;;14539:18:1;;;14532:42;14591:19;;20391:110:0;14208:408:1;20391:110:0;20512:13;20528:23;20543:7;20528:14;:23::i;:::-;20512:39;;20581:5;-1:-1:-1;;;;;20570:16:0;:7;-1:-1:-1;;;;;20570:16:0;;:64;;;;20627:7;-1:-1:-1;;;;;20603:31:0;:20;20615:7;20603:11;:20::i;:::-;-1:-1:-1;;;;;20603:31:0;;20570:64;:113;;;;20651:32;20668:5;20675:7;20651:16;:32::i;23272:553::-;23445:4;-1:-1:-1;;;;;23418:31:0;:23;23433:7;23418:14;:23::i;:::-;-1:-1:-1;;;;;23418:31:0;;23396:122;;;;-1:-1:-1;;;23396:122:0;;17545:2:1;23396:122:0;;;17527:21:1;17584:2;17564:18;;;17557:30;17623:34;17603:18;;;17596:62;-1:-1:-1;;;17674:18:1;;;17667:39;17723:19;;23396:122:0;17343:405:1;23396:122:0;-1:-1:-1;;;;;23537:16:0;;23529:65;;;;-1:-1:-1;;;23529:65:0;;13651:2:1;23529:65:0;;;13633:21:1;13690:2;13670:18;;;13663:30;13729:34;13709:18;;;13702:62;-1:-1:-1;;;13780:18:1;;;13773:34;13824:19;;23529:65:0;13449:400:1;23529:65:0;23711:29;23728:1;23732:7;23711:8;:29::i;:::-;23770:2;23751:7;23759;23751:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;23751:21:0;-1:-1:-1;;;;;23751:21:0;;;;;;23790:27;;23809:7;;23790:27;;;;;;;;;;23751:16;23790:27;23272:553;;;:::o;22603:332::-;22663:13;22679:23;22694:7;22679:14;:23::i;:::-;22663:39;;22804:29;22821:1;22825:7;22804:8;:29::i;:::-;22871:1;22844:7;22852;22844:16;;;;;;;;:::i;:::-;;;;;;;;;:29;;-1:-1:-1;;;;;;22844:29:0;-1:-1:-1;;;;;22844:29:0;;;;;;22891:36;;22919:7;;22891:36;;;;;22844:16;;22891:36;22652:283;22603:332;:::o;30804:191::-;30897:6;;;-1:-1:-1;;;;;30914:17:0;;;-1:-1:-1;;;;;;30914:17:0;;;;;;;30947:40;;30897:6;;;30914:17;30897:6;;30947:40;;30878:16;;30947:40;30867:128;30804:191;:::o;19253:352::-;19410:28;19420:4;19426:2;19430:7;19410:9;:28::i;:::-;19471:48;19494:4;19500:2;19504:7;19513:5;19471:22;:48::i;:::-;19449:148;;;;-1:-1:-1;;;19449:148:0;;;;;;;:::i;707:723::-;763:13;984:10;980:53;;-1:-1:-1;;1011:10:0;;;;;;;;;;;;-1:-1:-1;;;1011:10:0;;;;;707:723::o;980:53::-;1058:5;1043:12;1099:78;1106:9;;1099:78;;1132:8;;;;:::i;:::-;;-1:-1:-1;1155:10:0;;-1:-1:-1;1163:2:0;1155:10;;:::i;:::-;;;1099:78;;;1187:19;1219:6;1209:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1209:17:0;;1187:39;;1237:154;1244:10;;1237:154;;1271:11;1281:1;1271:11;;:::i;:::-;;-1:-1:-1;1340:10:0;1348:2;1340:5;:10;:::i;:::-;1327:24;;:2;:24;:::i;:::-;1314:39;;1297:6;1304;1297:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1297:56:0;;;;;;;;-1:-1:-1;1368:11:0;1377:2;1368:11;;:::i;:::-;;;1237:154;;24682:980;24837:4;-1:-1:-1;;;;;24858:13:0;;275:20;323:8;24854:801;;24911:175;;-1:-1:-1;;;24911:175:0;;-1:-1:-1;;;;;24911:36:0;;;;;:175;;13193:10;;25005:4;;25032:7;;25062:5;;24911:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;24911:175:0;;;;;;;;-1:-1:-1;;24911:175:0;;;;;;;;;;;;:::i;:::-;;;24890:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25269:13:0;;25265:320;;25312:108;;-1:-1:-1;;;25312:108:0;;;;;;;:::i;25265:320::-;25535:6;25529:13;25520:6;25516:2;25512:15;25505:38;24890:710;-1:-1:-1;;;;;;25150:51:0;-1:-1:-1;;;25150:51:0;;-1:-1:-1;25143:58:0;;24854:801;-1:-1:-1;25639:4:0;24682:980;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;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:723::-;479:5;532:3;525:4;517:6;513:17;509:27;499:55;;550:1;547;540:12;499:55;586:6;573:20;612:4;635:18;631:2;628:26;625:52;;;657:18;;:::i;:::-;703:2;700:1;696:10;726:28;750:2;746;742:11;726:28;:::i;:::-;788:15;;;819:12;;;;851:15;;;885;;;881:24;;878:33;-1:-1:-1;875:53:1;;;924:1;921;914:12;875:53;946:1;937:10;;956:163;970:2;967:1;964:9;956:163;;;1027:17;;1015:30;;988:1;981:9;;;;;1065:12;;;;1097;;956:163;;;-1:-1:-1;1137:5:1;425:723;-1:-1:-1;;;;;;;425:723:1:o;1153:220::-;1195:5;1248:3;1241:4;1233:6;1229:17;1225:27;1215:55;;1266:1;1263;1256:12;1215:55;1288:79;1363:3;1354:6;1341:20;1334:4;1326:6;1322:17;1288:79;:::i;1378:247::-;1437:6;1490:2;1478:9;1469:7;1465:23;1461:32;1458:52;;;1506:1;1503;1496:12;1458:52;1545:9;1532:23;1564:31;1589:5;1564:31;:::i;1630:388::-;1698:6;1706;1759:2;1747:9;1738:7;1734:23;1730:32;1727:52;;;1775:1;1772;1765:12;1727:52;1814:9;1801:23;1833:31;1858:5;1833:31;:::i;:::-;1883:5;-1:-1:-1;1940:2:1;1925:18;;1912:32;1953:33;1912:32;1953:33;:::i;:::-;2005:7;1995:17;;;1630:388;;;;;:::o;2023:624::-;2125:6;2133;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2249:9;2236:23;2268:31;2293:5;2268:31;:::i;:::-;2318:5;-1:-1:-1;2375:2:1;2360:18;;2347:32;2388:33;2347:32;2388:33;:::i;:::-;2440:7;-1:-1:-1;2498:2:1;2483:18;;2470:32;2525:18;2514:30;;2511:50;;;2557:1;2554;2547:12;2511:50;2580:61;2633:7;2624:6;2613:9;2609:22;2580:61;:::i;:::-;2570:71;;;2023:624;;;;;:::o;2652:844::-;2772:6;2780;2788;2796;2849:3;2837:9;2828:7;2824:23;2820:33;2817:53;;;2866:1;2863;2856:12;2817:53;2905:9;2892:23;2924:31;2949:5;2924:31;:::i;:::-;2974:5;-1:-1:-1;3031:2:1;3016:18;;3003:32;3044:33;3003:32;3044:33;:::i;:::-;3096:7;-1:-1:-1;3154:2:1;3139:18;;3126:32;3177:18;3207:14;;;3204:34;;;3234:1;3231;3224:12;3204:34;3257:61;3310:7;3301:6;3290:9;3286:22;3257:61;:::i;:::-;3247:71;;3371:2;3360:9;3356:18;3343:32;3327:48;;3400:2;3390:8;3387:16;3384:36;;;3416:1;3413;3406:12;3384:36;;3439:51;3482:7;3471:8;3460:9;3456:24;3439:51;:::i;:::-;3429:61;;;2652:844;;;;;;;:::o;3501:456::-;3578:6;3586;3594;3647:2;3635:9;3626:7;3622:23;3618:32;3615:52;;;3663:1;3660;3653:12;3615:52;3702:9;3689:23;3721:31;3746:5;3721:31;:::i;:::-;3771:5;-1:-1:-1;3828:2:1;3813:18;;3800:32;3841:33;3800:32;3841:33;:::i;:::-;3501:456;;3893:7;;-1:-1:-1;;;3947:2:1;3932:18;;;;3919:32;;3501:456::o;3962:665::-;4057:6;4065;4073;4081;4134:3;4122:9;4113:7;4109:23;4105:33;4102:53;;;4151:1;4148;4141:12;4102:53;4190:9;4177:23;4209:31;4234:5;4209:31;:::i;:::-;4259:5;-1:-1:-1;4316:2:1;4301:18;;4288:32;4329:33;4288:32;4329:33;:::i;:::-;4381:7;-1:-1:-1;4435:2:1;4420:18;;4407:32;;-1:-1:-1;4490:2:1;4475:18;;4462:32;4517:18;4506:30;;4503:50;;;4549:1;4546;4539:12;4503:50;4572:49;4613:7;4604:6;4593:9;4589:22;4572:49;:::i;4632:750::-;4727:6;4735;4743;4796:2;4784:9;4775:7;4771:23;4767:32;4764:52;;;4812:1;4809;4802:12;4764:52;4851:9;4838:23;4870:31;4895:5;4870:31;:::i;:::-;4920:5;-1:-1:-1;4976:2:1;4961:18;;4948:32;4999:18;5029:14;;;5026:34;;;5056:1;5053;5046:12;5026:34;5094:6;5083:9;5079:22;5069:32;;5139:7;5132:4;5128:2;5124:13;5120:27;5110:55;;5161:1;5158;5151:12;5110:55;5201:2;5188:16;5227:2;5219:6;5216:14;5213:34;;;5243:1;5240;5233:12;5213:34;5296:7;5291:2;5281:6;5278:1;5274:14;5270:2;5266:23;5262:32;5259:45;5256:65;;;5317:1;5314;5307:12;5256:65;5348:2;5344;5340:11;5330:21;;5370:6;5360:16;;;;;4632:750;;;;;:::o;5387:416::-;5452:6;5460;5513:2;5501:9;5492:7;5488:23;5484:32;5481:52;;;5529:1;5526;5519:12;5481:52;5568:9;5555:23;5587:31;5612:5;5587:31;:::i;:::-;5637:5;-1:-1:-1;5694:2:1;5679:18;;5666:32;5736:15;;5729:23;5717:36;;5707:64;;5767:1;5764;5757:12;5808:315;5876:6;5884;5937:2;5925:9;5916:7;5912:23;5908:32;5905:52;;;5953:1;5950;5943:12;5905:52;5992:9;5979:23;6011:31;6036:5;6011:31;:::i;:::-;6061:5;6113:2;6098:18;;;;6085:32;;-1:-1:-1;;;5808:315:1:o;6128:245::-;6186:6;6239:2;6227:9;6218:7;6214:23;6210:32;6207:52;;;6255:1;6252;6245:12;6207:52;6294:9;6281:23;6313:30;6337:5;6313:30;:::i;6378:249::-;6447:6;6500:2;6488:9;6479:7;6475:23;6471:32;6468:52;;;6516:1;6513;6506:12;6468:52;6548:9;6542:16;6567:30;6591:5;6567:30;:::i;6632:280::-;6731:6;6784:2;6772:9;6763:7;6759:23;6755:32;6752:52;;;6800:1;6797;6790:12;6752:52;6832:9;6826:16;6851:31;6876:5;6851:31;:::i;6917:450::-;6986:6;7039:2;7027:9;7018:7;7014:23;7010:32;7007:52;;;7055:1;7052;7045:12;7007:52;7095:9;7082:23;7128:18;7120:6;7117:30;7114:50;;;7160:1;7157;7150:12;7114:50;7183:22;;7236:4;7228:13;;7224:27;-1:-1:-1;7214:55:1;;7265:1;7262;7255:12;7214:55;7288:73;7353:7;7348:2;7335:16;7330:2;7326;7322:11;7288:73;:::i;7372:180::-;7431:6;7484:2;7472:9;7463:7;7459:23;7455:32;7452:52;;;7500:1;7497;7490:12;7452:52;-1:-1:-1;7523:23:1;;7372:180;-1:-1:-1;7372:180:1:o;7557:257::-;7598:3;7636:5;7630:12;7663:6;7658:3;7651:19;7679:63;7735:6;7728:4;7723:3;7719:14;7712:4;7705:5;7701:16;7679:63;:::i;:::-;7796:2;7775:15;-1:-1:-1;;7771:29:1;7762:39;;;;7803:4;7758:50;;7557:257;-1:-1:-1;;7557:257:1:o;7819:185::-;7861:3;7899:5;7893:12;7914:52;7959:6;7954:3;7947:4;7940:5;7936:16;7914:52;:::i;:::-;7982:16;;;;;7819:185;-1:-1:-1;;7819:185:1:o;8009:1174::-;8185:3;8214:1;8247:6;8241:13;8277:3;8299:1;8327:9;8323:2;8319:18;8309:28;;8387:2;8376:9;8372:18;8409;8399:61;;8453:4;8445:6;8441:17;8431:27;;8399:61;8479:2;8527;8519:6;8516:14;8496:18;8493:38;8490:165;;;-1:-1:-1;;;8554:33:1;;8610:4;8607:1;8600:15;8640:4;8561:3;8628:17;8490:165;8671:18;8698:104;;;;8816:1;8811:320;;;;8664:467;;8698:104;-1:-1:-1;;8731:24:1;;8719:37;;8776:16;;;;-1:-1:-1;8698:104:1;;8811:320;20580:1;20573:14;;;20617:4;20604:18;;8906:1;8920:165;8934:6;8931:1;8928:13;8920:165;;;9012:14;;8999:11;;;8992:35;9055:16;;;;8949:10;;8920:165;;;8924:3;;9114:6;9109:3;9105:16;9098:23;;8664:467;;;;;;;9147:30;9173:3;9165:6;9147:30;:::i;:::-;9140:37;8009:1174;-1:-1:-1;;;;;8009:1174:1:o;9606:488::-;-1:-1:-1;;;;;9875:15:1;;;9857:34;;9927:15;;9922:2;9907:18;;9900:43;9974:2;9959:18;;9952:34;;;10022:3;10017:2;10002:18;;9995:31;;;9800:4;;10043:45;;10068:19;;10060:6;10043:45;:::i;:::-;10035:53;9606:488;-1:-1:-1;;;;;;9606:488:1:o;10099:632::-;10270:2;10322:21;;;10392:13;;10295:18;;;10414:22;;;10241:4;;10270:2;10493:15;;;;10467:2;10452:18;;;10241:4;10536:169;10550:6;10547:1;10544:13;10536:169;;;10611:13;;10599:26;;10680:15;;;;10645:12;;;;10572:1;10565:9;10536:169;;;-1:-1:-1;10722:3:1;;10099:632;-1:-1:-1;;;;;;10099:632:1:o;10928:219::-;11077:2;11066:9;11059:21;11040:4;11097:44;11137:2;11126:9;11122:18;11114:6;11097:44;:::i;11856:407::-;12058:2;12040:21;;;12097:2;12077:18;;;12070:30;12136:34;12131:2;12116:18;;12109:62;-1:-1:-1;;;12202:2:1;12187:18;;12180:41;12253:3;12238:19;;11856:407::o;12268:414::-;12470:2;12452:21;;;12509:2;12489:18;;;12482:30;12548:34;12543:2;12528:18;;12521:62;-1:-1:-1;;;12614:2:1;12599:18;;12592:48;12672:3;12657:19;;12268:414::o;16982:356::-;17184:2;17166:21;;;17203:18;;;17196:30;17262:34;17257:2;17242:18;;17235:62;17329:2;17314:18;;16982:356::o;18857:413::-;19059:2;19041:21;;;19098:2;19078:18;;;19071:30;19137:34;19132:2;19117:18;;19110:62;-1:-1:-1;;;19203:2:1;19188:18;;19181:47;19260:3;19245:19;;18857:413::o;20227:275::-;20298:2;20292:9;20363:2;20344:13;;-1:-1:-1;;20340:27:1;20328:40;;20398:18;20383:34;;20419:22;;;20380:62;20377:88;;;20445:18;;:::i;:::-;20481:2;20474:22;20227:275;;-1:-1:-1;20227:275:1:o;20633:128::-;20673:3;20704:1;20700:6;20697:1;20694:13;20691:39;;;20710:18;;:::i;:::-;-1:-1:-1;20746:9:1;;20633:128::o;20766:120::-;20806:1;20832;20822:35;;20837:18;;:::i;:::-;-1:-1:-1;20871:9:1;;20766:120::o;20891:168::-;20931:7;20997:1;20993;20989:6;20985:14;20982:1;20979:21;20974:1;20967:9;20960:17;20956:45;20953:71;;;21004:18;;:::i;:::-;-1:-1:-1;21044:9:1;;20891:168::o;21064:125::-;21104:4;21132:1;21129;21126:8;21123:34;;;21137:18;;:::i;:::-;-1:-1:-1;21174:9:1;;21064:125::o;21194:258::-;21266:1;21276:113;21290:6;21287:1;21284:13;21276:113;;;21366:11;;;21360:18;21347:11;;;21340:39;21312:2;21305:10;21276:113;;;21407:6;21404:1;21401:13;21398:48;;;-1:-1:-1;;21442:1:1;21424:16;;21417:27;21194:258::o;21457:380::-;21536:1;21532:12;;;;21579;;;21600:61;;21654:4;21646:6;21642:17;21632:27;;21600:61;21707:2;21699:6;21696:14;21676:18;21673:38;21670:161;;;21753:10;21748:3;21744:20;21741:1;21734:31;21788:4;21785:1;21778:15;21816:4;21813:1;21806:15;21670:161;;21457:380;;;:::o;21842:135::-;21881:3;-1:-1:-1;;21902:17:1;;21899:43;;;21922:18;;:::i;:::-;-1:-1:-1;21969:1:1;21958:13;;21842:135::o;21982:112::-;22014:1;22040;22030:35;;22045:18;;:::i;:::-;-1:-1:-1;22079:9:1;;21982:112::o;22099:127::-;22160:10;22155:3;22151:20;22148:1;22141:31;22191:4;22188:1;22181:15;22215:4;22212:1;22205:15;22231:127;22292:10;22287:3;22283:20;22280:1;22273:31;22323:4;22320:1;22313:15;22347:4;22344:1;22337:15;22363:127;22424:10;22419:3;22415:20;22412:1;22405:31;22455:4;22452:1;22445:15;22479:4;22476:1;22469:15;22495:127;22556:10;22551:3;22547:20;22544:1;22537:31;22587:4;22584:1;22577:15;22611:4;22608:1;22601:15;22627:131;-1:-1:-1;;;;;22702:31:1;;22692:42;;22682:70;;22748:1;22745;22738:12;22763:131;-1:-1:-1;;;;;;22837:32:1;;22827:43;;22817:71;;22884:1;22881;22874:12

Swarm Source

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