ETH Price: $3,394.41 (+6.16%)
Gas: 29 Gwei

Token

Flash Mints (Ricky Powell - Genesis Collection) (FLASHMINTS-RICKYPOWELL)
 

Overview

Max Total Supply

2,021 FLASHMINTS-RICKYPOWELL

Holders

160

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
quezer.eth
Balance
1 FLASHMINTS-RICKYPOWELL
0xe0a15f73cf155384307d67b2f28719b1fc301519
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:
FlashMintsRickyPowell

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-17
*/

/**
 *Submitted for verification at Etherscan.io on 2021-12-10
*/

/**
 *Submitted for verification at Etherscan.io on 2021-11-18
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/utils/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: @openzeppelin/contracts/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/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/ERC721.sol

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).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: @openzeppelin/contracts/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/ERC721Enumerable.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

contract FlashMintsRickyPowell is ERC721, Ownable {
    bool public saleActive = false;

    string internal baseTokenURI;

    uint256 public price = 0.1 ether;
    uint256 public totalSupply = 2021;
    uint256 public nonce = 0;
    uint256 public maxTx = 10;

    address public m1 = 0x7D58e81CeCf7F1B0071580CAB07d53EDE7858B17;
    address public m2 = 0x4f95219f13dC43641645B5ebE5259b040e38b281;
    address public m3 = 0x70184259C8CbF0B85C96e2A84ad74EB097759aeE;
    address public m4 = 0xdeF4274dA60CEF85402731F0013E5C67fC3D5c2e;
    address public m5 = 0x2027e0fE56278f671D174CbE4BCd7A42D25cc6a3;
    address public m6 = 0x57ccEFe8fDD9F2B17B9dD148061ae9a5f3a7e767;
    address public m7 = 0x80f039085f78fFF512a1edE6d25eC64927392888;

    address public a1 = 0x1E815a8188F1b84564577C1c998f7E6B4706B752;
    address public a2 = 0x607502216Cfe3bFe8407Ee5Ef62e9A4cFEfcb66C;
    address public a3 = 0xE071Ba238e5C062013D2F7fc5790706d8D464208;

    constructor() ERC721("Flash Mints (Ricky Powell - Genesis Collection)", "FLASHMINTS-RICKYPOWELL") {}

    function _baseURI() internal override view returns (string memory) {
        return baseTokenURI;
    }

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    function setBaseTokenURI(string calldata uri) external onlyOwner {
        baseTokenURI = uri;
    }

    function setTotalSupply(uint256 newSupply) external onlyOwner {
        totalSupply = newSupply;
    }

    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    function setMembersAddresses(address[] memory _a) public onlyOwner {
        m1 = _a[0];
        m2 = _a[1];
        m3 = _a[2];
        m4 = _a[3];
        m5 = _a[4];
        m6 = _a[5];
        m7 = _a[6];
        a1 = _a[7];
        a2 = _a[8];
        a3 = _a[9];
    }

    function setMaxTx(uint256 newMax) external onlyOwner {
        maxTx = newMax;
    }

    function giveaway(address to, uint256 qty) external onlyOwner {
        require(qty + nonce <= totalSupply, "Value exceeds total supply");
        for (uint256 i = 0; i < qty; i++) {
            nonce++;
            uint256 tokenId = nonce;
            _safeMint(to, tokenId);
        }
    }

    function mint(uint256 qty) external payable {
        require(saleActive, "Sale isn't active");
        require(qty <= maxTx && qty > 0, "Qty of mints not allowed");
        require(qty + nonce <= totalSupply, "Value exceeds total supply");
        require(msg.value == price * qty, "Invalid value");
        for (uint256 i = 0; i < qty; i++) {
            nonce++;
            uint256 tokenId = nonce;
            _safeMint(msg.sender, tokenId);
        }
    }

    function withdrawTeam() external onlyOwner {
        uint256 balance = address(this).balance;
        uint256 mbTeam = (balance * 4) / 100;

        require(payable(m1).send((mbTeam * 5) / 100));
        require(payable(m2).send((mbTeam * 5) / 100));
        require(payable(m3).send((mbTeam * 5) / 100));
        require(payable(m4).send((mbTeam * 5) / 100));
        require(payable(m5).send((mbTeam * 5) / 100));
        require(payable(m6).send((mbTeam * 20) / 100));
        require(payable(m7).send((mbTeam * 55) / 100));

        require(payable(a1).send((balance * 75) / 1000));
        require(payable(a2).send((balance * 10) / 100));
        require(payable(a3).send((balance * 785) / 1000));
    }

    function withdrawOwner() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m6","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"m7","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setMembersAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526006805460ff60a01b1916905567016345785d8a00006008556107e56009556000600a908155600b55600c80546001600160a01b0319908116737d58e81cecf7f1b0071580cab07d53ede7858b1717909155600d80548216734f95219f13dc43641645b5ebe5259b040e38b281179055600e805482167370184259c8cbf0b85c96e2a84ad74eb097759aee179055600f8054821673def4274da60cef85402731f0013e5c67fc3d5c2e179055601080548216732027e0fe56278f671d174cbe4bcd7a42d25cc6a31790556011805482167357ccefe8fdd9f2b17b9dd148061ae9a5f3a7e7671790556012805482167380f039085f78fff512a1ede6d25ec64927392888179055601380548216731e815a8188f1b84564577c1c998f7e6b4706b75217905560148054821673607502216cfe3bfe8407ee5ef62e9a4cfefcb66c1790556015805490911673e071ba238e5c062013d2f7fc5790706d8d4642081790553480156200017257600080fd5b506040518060600160405280602f815260200162002961602f91396040518060400160405280601681526020017f464c4153484d494e54532d5249434b59504f57454c4c000000000000000000008152508160009080519060200190620001db9291906200026a565b508051620001f19060019060208401906200026a565b5050506200020e620002086200021460201b60201c565b62000218565b6200034d565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620002789062000310565b90600052602060002090601f0160209004810192826200029c5760008555620002e7565b82601f10620002b757805160ff1916838001178555620002e7565b82800160010185558215620002e7579182015b82811115620002e7578251825591602001919060010190620002ca565b50620002f5929150620002f9565b5090565b5b80821115620002f55760008155600101620002fa565b600181811c908216806200032557607f821691505b602082108114156200034757634e487b7160e01b600052602260045260246000fd5b50919050565b612604806200035d6000396000f3fe6080604052600436106102465760003560e01c806387599f6e11610139578063a22cb465116100b6578063bc3371821161007a578063bc33718214610693578063c87b56dd146106b3578063e8cc00ad146106d3578063e985e9c5146106e8578063f2fde38b14610731578063f7ea7a3d1461075157600080fd5b8063a22cb46514610608578063a77f92ff14610628578063affed0e014610648578063b88d4fde1461065e578063bb51f32d1461067e57600080fd5b806395d89b41116100fd57806395d89b411461058a578063969e9d0c1461059f578063a0230b4f146105bf578063a035b1fe146105df578063a0712d68146105f557600080fd5b806387599f6e146104ec5780638da5cb5b1461050c57806391aa69ca1461052a57806391b7f5ed1461054a5780639426eef81461056a57600080fd5b806342842e0e116101c757806368428a1b1161018b57806368428a1b1461046057806370a0823114610481578063715018a6146104a15780637437681e146104b6578063841718a6146104cc57600080fd5b806342842e0e146103c057806343970161146103e057806361928084146104005780636352211e1461042057806367755adf1461044057600080fd5b8063119552a11161020e578063119552a11461031c57806318160ddd1461033c57806323b872dd1461036057806330176e1314610380578063325c50b4146103a057600080fd5b806301ffc9a71461024b578063050225ea1461028057806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046121ef565b610771565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b3660046120f6565b6107c3565b005b3480156102ae57600080fd5b506102b7610899565b604051610277919061234c565b3480156102d057600080fd5b506102e46102df36600461229b565b61092b565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a06103173660046120f6565b6109c0565b34801561032857600080fd5b506013546102e4906001600160a01b031681565b34801561034857600080fd5b5061035260095481565b604051908152602001610277565b34801561036c57600080fd5b506102a061037b366004611fd0565b610ad1565b34801561038c57600080fd5b506102a061039b366004612229565b610b02565b3480156103ac57600080fd5b506011546102e4906001600160a01b031681565b3480156103cc57600080fd5b506102a06103db366004611fd0565b610b38565b3480156103ec57600080fd5b506102a06103fb366004612120565b610b53565b34801561040c57600080fd5b50600f546102e4906001600160a01b031681565b34801561042c57600080fd5b506102e461043b36600461229b565b610e0a565b34801561044c57600080fd5b506010546102e4906001600160a01b031681565b34801561046c57600080fd5b5060065461026b90600160a01b900460ff1681565b34801561048d57600080fd5b5061035261049c366004611f82565b610e81565b3480156104ad57600080fd5b506102a0610f08565b3480156104c257600080fd5b50610352600b5481565b3480156104d857600080fd5b506102a06104e73660046121d4565b610f3e565b3480156104f857600080fd5b506012546102e4906001600160a01b031681565b34801561051857600080fd5b506006546001600160a01b03166102e4565b34801561053657600080fd5b50600d546102e4906001600160a01b031681565b34801561055657600080fd5b506102a061056536600461229b565b610f86565b34801561057657600080fd5b506015546102e4906001600160a01b031681565b34801561059657600080fd5b506102b7610fb5565b3480156105ab57600080fd5b506014546102e4906001600160a01b031681565b3480156105cb57600080fd5b50600e546102e4906001600160a01b031681565b3480156105eb57600080fd5b5061035260085481565b6102a061060336600461229b565b610fc4565b34801561061457600080fd5b506102a06106233660046120cc565b61115d565b34801561063457600080fd5b50600c546102e4906001600160a01b031681565b34801561065457600080fd5b50610352600a5481565b34801561066a57600080fd5b506102a061067936600461200c565b611222565b34801561068a57600080fd5b506102a061125a565b34801561069f57600080fd5b506102a06106ae36600461229b565b611560565b3480156106bf57600080fd5b506102b76106ce36600461229b565b61158f565b3480156106df57600080fd5b506102a061166a565b3480156106f457600080fd5b5061026b610703366004611f9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073d57600080fd5b506102a061074c366004611f82565b6116c3565b34801561075d57600080fd5b506102a061076c36600461229b565b61175b565b60006001600160e01b031982166380ac58cd60e01b14806107a257506001600160e01b03198216635b5e139f60e01b145b806107bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146107f65760405162461bcd60e51b81526004016107ed906123b1565b60405180910390fd5b600954600a546108069083612468565b11156108545760405162461bcd60e51b815260206004820152601a60248201527f56616c7565206578636565647320746f74616c20737570706c7900000000000060448201526064016107ed565b60005b8181101561089457600a805490600061086f83612531565b9091555050600a54610881848261178a565b508061088c81612531565b915050610857565b505050565b6060600080546108a8906124f6565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906124f6565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ed565b506000908152600460205260409020546001600160a01b031690565b60006109cb82610e0a565b9050806001600160a01b0316836001600160a01b03161415610a395760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ed565b336001600160a01b0382161480610a555750610a558133610703565b610ac75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ed565b61089483836117a4565b610adb3382611812565b610af75760405162461bcd60e51b81526004016107ed906123e6565b610894838383611909565b6006546001600160a01b03163314610b2c5760405162461bcd60e51b81526004016107ed906123b1565b61089460078383611ebd565b61089483838360405180602001604052806000815250611222565b6006546001600160a01b03163314610b7d5760405162461bcd60e51b81526004016107ed906123b1565b80600081518110610b9057610b9061258c565b6020026020010151600c60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600181518110610bd157610bd161258c565b6020026020010151600d60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600281518110610c1257610c1261258c565b6020026020010151600e60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600381518110610c5357610c5361258c565b6020026020010151600f60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600481518110610c9457610c9461258c565b6020026020010151601060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600581518110610cd557610cd561258c565b6020026020010151601160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600681518110610d1657610d1661258c565b6020026020010151601260006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600781518110610d5757610d5761258c565b6020026020010151601360006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600881518110610d9857610d9861258c565b6020026020010151601460006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600981518110610dd957610dd961258c565b6020026020010151601560006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6000818152600260205260408120546001600160a01b0316806107bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ed565b60006001600160a01b038216610eec5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ed565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f325760405162461bcd60e51b81526004016107ed906123b1565b610f3c6000611aa9565b565b6006546001600160a01b03163314610f685760405162461bcd60e51b81526004016107ed906123b1565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6006546001600160a01b03163314610fb05760405162461bcd60e51b81526004016107ed906123b1565b600855565b6060600180546108a8906124f6565b600654600160a01b900460ff166110115760405162461bcd60e51b815260206004820152601160248201527053616c652069736e27742061637469766560781b60448201526064016107ed565b600b5481111580156110235750600081115b61106f5760405162461bcd60e51b815260206004820152601860248201527f517479206f66206d696e7473206e6f7420616c6c6f776564000000000000000060448201526064016107ed565b600954600a5461107f9083612468565b11156110cd5760405162461bcd60e51b815260206004820152601a60248201527f56616c7565206578636565647320746f74616c20737570706c7900000000000060448201526064016107ed565b806008546110db9190612494565b34146111195760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b60448201526064016107ed565b60005b8181101561115957600a805490600061113483612531565b9091555050600a54611146338261178a565b508061115181612531565b91505061111c565b5050565b6001600160a01b0382163314156111b65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ed565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61122c3383611812565b6112485760405162461bcd60e51b81526004016107ed906123e6565b61125484848484611afb565b50505050565b6006546001600160a01b031633146112845760405162461bcd60e51b81526004016107ed906123b1565b4760006064611294836004612494565b61129e9190612480565b600c549091506001600160a01b03166108fc60646112bd846005612494565b6112c79190612480565b6040518115909202916000818181858888f193505050506112e757600080fd5b600d546001600160a01b03166108fc6064611303846005612494565b61130d9190612480565b6040518115909202916000818181858888f1935050505061132d57600080fd5b600e546001600160a01b03166108fc6064611349846005612494565b6113539190612480565b6040518115909202916000818181858888f1935050505061137357600080fd5b600f546001600160a01b03166108fc606461138f846005612494565b6113999190612480565b6040518115909202916000818181858888f193505050506113b957600080fd5b6010546001600160a01b03166108fc60646113d5846005612494565b6113df9190612480565b6040518115909202916000818181858888f193505050506113ff57600080fd5b6011546001600160a01b03166108fc606461141b846014612494565b6114259190612480565b6040518115909202916000818181858888f1935050505061144557600080fd5b6012546001600160a01b03166108fc6064611461846037612494565b61146b9190612480565b6040518115909202916000818181858888f1935050505061148b57600080fd5b6013546001600160a01b03166108fc6103e86114a885604b612494565b6114b29190612480565b6040518115909202916000818181858888f193505050506114d257600080fd5b6014546001600160a01b03166108fc60646114ee85600a612494565b6114f89190612480565b6040518115909202916000818181858888f1935050505061151857600080fd5b6015546001600160a01b03166108fc6103e861153685610311612494565b6115409190612480565b6040518115909202916000818181858888f1935050505061115957600080fd5b6006546001600160a01b0316331461158a5760405162461bcd60e51b81526004016107ed906123b1565b600b55565b6000818152600260205260409020546060906001600160a01b031661160e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ed565b6000611618611b2e565b905060008151116116385760405180602001604052806000815250611663565b8061164284611b3d565b6040516020016116539291906122e0565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146116945760405162461bcd60e51b81526004016107ed906123b1565b60405133904780156108fc02916000818181858888f193505050501580156116c0573d6000803e3d6000fd5b50565b6006546001600160a01b031633146116ed5760405162461bcd60e51b81526004016107ed906123b1565b6001600160a01b0381166117525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b6116c081611aa9565b6006546001600160a01b031633146117855760405162461bcd60e51b81526004016107ed906123b1565b600955565b611159828260405180602001604052806000815250611c3b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117d982610e0a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661188b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ed565b600061189683610e0a565b9050806001600160a01b0316846001600160a01b031614806118d15750836001600160a01b03166118c68461092b565b6001600160a01b0316145b8061190157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661191c82610e0a565b6001600160a01b0316146119845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ed565b6001600160a01b0382166119e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ed565b6119f16000826117a4565b6001600160a01b0383166000908152600360205260408120805460019290611a1a9084906124b3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a48908490612468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b06848484611909565b611b1284848484611c6e565b6112545760405162461bcd60e51b81526004016107ed9061235f565b6060600780546108a8906124f6565b606081611b615750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b8b5780611b7581612531565b9150611b849050600a83612480565b9150611b65565b60008167ffffffffffffffff811115611ba657611ba66125a2565b6040519080825280601f01601f191660200182016040528015611bd0576020820181803683370190505b5090505b841561190157611be56001836124b3565b9150611bf2600a8661254c565b611bfd906030612468565b60f81b818381518110611c1257611c1261258c565b60200101906001600160f81b031916908160001a905350611c34600a86612480565b9450611bd4565b611c458383611d7b565b611c526000848484611c6e565b6108945760405162461bcd60e51b81526004016107ed9061235f565b60006001600160a01b0384163b15611d7057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cb290339089908890889060040161230f565b602060405180830381600087803b158015611ccc57600080fd5b505af1925050508015611cfc575060408051601f3d908101601f19168201909252611cf99181019061220c565b60015b611d56573d808015611d2a576040519150601f19603f3d011682016040523d82523d6000602084013e611d2f565b606091505b508051611d4e5760405162461bcd60e51b81526004016107ed9061235f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611901565b506001949350505050565b6001600160a01b038216611dd15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ed565b6000818152600260205260409020546001600160a01b031615611e365760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ed565b6001600160a01b0382166000908152600360205260408120805460019290611e5f908490612468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ec9906124f6565b90600052602060002090601f016020900481019282611eeb5760008555611f31565b82601f10611f045782800160ff19823516178555611f31565b82800160010185558215611f31579182015b82811115611f31578235825591602001919060010190611f16565b50611f3d929150611f41565b5090565b5b80821115611f3d5760008155600101611f42565b80356001600160a01b0381168114611f6d57600080fd5b919050565b80358015158114611f6d57600080fd5b600060208284031215611f9457600080fd5b61166382611f56565b60008060408385031215611fb057600080fd5b611fb983611f56565b9150611fc760208401611f56565b90509250929050565b600080600060608486031215611fe557600080fd5b611fee84611f56565b9250611ffc60208501611f56565b9150604084013590509250925092565b6000806000806080858703121561202257600080fd5b61202b85611f56565b9350602061203a818701611f56565b935060408601359250606086013567ffffffffffffffff8082111561205e57600080fd5b818801915088601f83011261207257600080fd5b813581811115612084576120846125a2565b612096601f8201601f19168501612437565b915080825289848285010111156120ac57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156120df57600080fd5b6120e883611f56565b9150611fc760208401611f72565b6000806040838503121561210957600080fd5b61211283611f56565b946020939093013593505050565b6000602080838503121561213357600080fd5b823567ffffffffffffffff8082111561214b57600080fd5b818501915085601f83011261215f57600080fd5b813581811115612171576121716125a2565b8060051b9150612182848301612437565b8181528481019084860184860187018a101561219d57600080fd5b600095505b838610156121c7576121b381611f56565b8352600195909501949186019186016121a2565b5098975050505050505050565b6000602082840312156121e657600080fd5b61166382611f72565b60006020828403121561220157600080fd5b8135611663816125b8565b60006020828403121561221e57600080fd5b8151611663816125b8565b6000806020838503121561223c57600080fd5b823567ffffffffffffffff8082111561225457600080fd5b818501915085601f83011261226857600080fd5b81358181111561227757600080fd5b86602082850101111561228957600080fd5b60209290920196919550909350505050565b6000602082840312156122ad57600080fd5b5035919050565b600081518084526122cc8160208601602086016124ca565b601f01601f19169290920160200192915050565b600083516122f28184602088016124ca565b8351908301906123068183602088016124ca565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612342908301846122b4565b9695505050505050565b60208152600061166360208301846122b4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612460576124606125a2565b604052919050565b6000821982111561247b5761247b612560565b500190565b60008261248f5761248f612576565b500490565b60008160001904831182151516156124ae576124ae612560565b500290565b6000828210156124c5576124c5612560565b500390565b60005b838110156124e55781810151838201526020016124cd565b838111156112545750506000910152565b600181811c9082168061250a57607f821691505b6020821081141561252b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561254557612545612560565b5060010190565b60008261255b5761255b612576565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116c057600080fdfea26469706673582212203f9545a5911fd66201a18194f45c74f481991c2d6454c7aefef5e057f8211d5164736f6c63430008070033466c617368204d696e747320285269636b7920506f77656c6c202d2047656e6573697320436f6c6c656374696f6e29

Deployed Bytecode

0x6080604052600436106102465760003560e01c806387599f6e11610139578063a22cb465116100b6578063bc3371821161007a578063bc33718214610693578063c87b56dd146106b3578063e8cc00ad146106d3578063e985e9c5146106e8578063f2fde38b14610731578063f7ea7a3d1461075157600080fd5b8063a22cb46514610608578063a77f92ff14610628578063affed0e014610648578063b88d4fde1461065e578063bb51f32d1461067e57600080fd5b806395d89b41116100fd57806395d89b411461058a578063969e9d0c1461059f578063a0230b4f146105bf578063a035b1fe146105df578063a0712d68146105f557600080fd5b806387599f6e146104ec5780638da5cb5b1461050c57806391aa69ca1461052a57806391b7f5ed1461054a5780639426eef81461056a57600080fd5b806342842e0e116101c757806368428a1b1161018b57806368428a1b1461046057806370a0823114610481578063715018a6146104a15780637437681e146104b6578063841718a6146104cc57600080fd5b806342842e0e146103c057806343970161146103e057806361928084146104005780636352211e1461042057806367755adf1461044057600080fd5b8063119552a11161020e578063119552a11461031c57806318160ddd1461033c57806323b872dd1461036057806330176e1314610380578063325c50b4146103a057600080fd5b806301ffc9a71461024b578063050225ea1461028057806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046121ef565b610771565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b506102a061029b3660046120f6565b6107c3565b005b3480156102ae57600080fd5b506102b7610899565b604051610277919061234c565b3480156102d057600080fd5b506102e46102df36600461229b565b61092b565b6040516001600160a01b039091168152602001610277565b34801561030857600080fd5b506102a06103173660046120f6565b6109c0565b34801561032857600080fd5b506013546102e4906001600160a01b031681565b34801561034857600080fd5b5061035260095481565b604051908152602001610277565b34801561036c57600080fd5b506102a061037b366004611fd0565b610ad1565b34801561038c57600080fd5b506102a061039b366004612229565b610b02565b3480156103ac57600080fd5b506011546102e4906001600160a01b031681565b3480156103cc57600080fd5b506102a06103db366004611fd0565b610b38565b3480156103ec57600080fd5b506102a06103fb366004612120565b610b53565b34801561040c57600080fd5b50600f546102e4906001600160a01b031681565b34801561042c57600080fd5b506102e461043b36600461229b565b610e0a565b34801561044c57600080fd5b506010546102e4906001600160a01b031681565b34801561046c57600080fd5b5060065461026b90600160a01b900460ff1681565b34801561048d57600080fd5b5061035261049c366004611f82565b610e81565b3480156104ad57600080fd5b506102a0610f08565b3480156104c257600080fd5b50610352600b5481565b3480156104d857600080fd5b506102a06104e73660046121d4565b610f3e565b3480156104f857600080fd5b506012546102e4906001600160a01b031681565b34801561051857600080fd5b506006546001600160a01b03166102e4565b34801561053657600080fd5b50600d546102e4906001600160a01b031681565b34801561055657600080fd5b506102a061056536600461229b565b610f86565b34801561057657600080fd5b506015546102e4906001600160a01b031681565b34801561059657600080fd5b506102b7610fb5565b3480156105ab57600080fd5b506014546102e4906001600160a01b031681565b3480156105cb57600080fd5b50600e546102e4906001600160a01b031681565b3480156105eb57600080fd5b5061035260085481565b6102a061060336600461229b565b610fc4565b34801561061457600080fd5b506102a06106233660046120cc565b61115d565b34801561063457600080fd5b50600c546102e4906001600160a01b031681565b34801561065457600080fd5b50610352600a5481565b34801561066a57600080fd5b506102a061067936600461200c565b611222565b34801561068a57600080fd5b506102a061125a565b34801561069f57600080fd5b506102a06106ae36600461229b565b611560565b3480156106bf57600080fd5b506102b76106ce36600461229b565b61158f565b3480156106df57600080fd5b506102a061166a565b3480156106f457600080fd5b5061026b610703366004611f9d565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073d57600080fd5b506102a061074c366004611f82565b6116c3565b34801561075d57600080fd5b506102a061076c36600461229b565b61175b565b60006001600160e01b031982166380ac58cd60e01b14806107a257506001600160e01b03198216635b5e139f60e01b145b806107bd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146107f65760405162461bcd60e51b81526004016107ed906123b1565b60405180910390fd5b600954600a546108069083612468565b11156108545760405162461bcd60e51b815260206004820152601a60248201527f56616c7565206578636565647320746f74616c20737570706c7900000000000060448201526064016107ed565b60005b8181101561089457600a805490600061086f83612531565b9091555050600a54610881848261178a565b508061088c81612531565b915050610857565b505050565b6060600080546108a8906124f6565b80601f01602080910402602001604051908101604052809291908181526020018280546108d4906124f6565b80156109215780601f106108f657610100808354040283529160200191610921565b820191906000526020600020905b81548152906001019060200180831161090457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109a45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ed565b506000908152600460205260409020546001600160a01b031690565b60006109cb82610e0a565b9050806001600160a01b0316836001600160a01b03161415610a395760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107ed565b336001600160a01b0382161480610a555750610a558133610703565b610ac75760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ed565b61089483836117a4565b610adb3382611812565b610af75760405162461bcd60e51b81526004016107ed906123e6565b610894838383611909565b6006546001600160a01b03163314610b2c5760405162461bcd60e51b81526004016107ed906123b1565b61089460078383611ebd565b61089483838360405180602001604052806000815250611222565b6006546001600160a01b03163314610b7d5760405162461bcd60e51b81526004016107ed906123b1565b80600081518110610b9057610b9061258c565b6020026020010151600c60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600181518110610bd157610bd161258c565b6020026020010151600d60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600281518110610c1257610c1261258c565b6020026020010151600e60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600381518110610c5357610c5361258c565b6020026020010151600f60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600481518110610c9457610c9461258c565b6020026020010151601060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600581518110610cd557610cd561258c565b6020026020010151601160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600681518110610d1657610d1661258c565b6020026020010151601260006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600781518110610d5757610d5761258c565b6020026020010151601360006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600881518110610d9857610d9861258c565b6020026020010151601460006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600981518110610dd957610dd961258c565b6020026020010151601560006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6000818152600260205260408120546001600160a01b0316806107bd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107ed565b60006001600160a01b038216610eec5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107ed565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f325760405162461bcd60e51b81526004016107ed906123b1565b610f3c6000611aa9565b565b6006546001600160a01b03163314610f685760405162461bcd60e51b81526004016107ed906123b1565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6006546001600160a01b03163314610fb05760405162461bcd60e51b81526004016107ed906123b1565b600855565b6060600180546108a8906124f6565b600654600160a01b900460ff166110115760405162461bcd60e51b815260206004820152601160248201527053616c652069736e27742061637469766560781b60448201526064016107ed565b600b5481111580156110235750600081115b61106f5760405162461bcd60e51b815260206004820152601860248201527f517479206f66206d696e7473206e6f7420616c6c6f776564000000000000000060448201526064016107ed565b600954600a5461107f9083612468565b11156110cd5760405162461bcd60e51b815260206004820152601a60248201527f56616c7565206578636565647320746f74616c20737570706c7900000000000060448201526064016107ed565b806008546110db9190612494565b34146111195760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b60448201526064016107ed565b60005b8181101561115957600a805490600061113483612531565b9091555050600a54611146338261178a565b508061115181612531565b91505061111c565b5050565b6001600160a01b0382163314156111b65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ed565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61122c3383611812565b6112485760405162461bcd60e51b81526004016107ed906123e6565b61125484848484611afb565b50505050565b6006546001600160a01b031633146112845760405162461bcd60e51b81526004016107ed906123b1565b4760006064611294836004612494565b61129e9190612480565b600c549091506001600160a01b03166108fc60646112bd846005612494565b6112c79190612480565b6040518115909202916000818181858888f193505050506112e757600080fd5b600d546001600160a01b03166108fc6064611303846005612494565b61130d9190612480565b6040518115909202916000818181858888f1935050505061132d57600080fd5b600e546001600160a01b03166108fc6064611349846005612494565b6113539190612480565b6040518115909202916000818181858888f1935050505061137357600080fd5b600f546001600160a01b03166108fc606461138f846005612494565b6113999190612480565b6040518115909202916000818181858888f193505050506113b957600080fd5b6010546001600160a01b03166108fc60646113d5846005612494565b6113df9190612480565b6040518115909202916000818181858888f193505050506113ff57600080fd5b6011546001600160a01b03166108fc606461141b846014612494565b6114259190612480565b6040518115909202916000818181858888f1935050505061144557600080fd5b6012546001600160a01b03166108fc6064611461846037612494565b61146b9190612480565b6040518115909202916000818181858888f1935050505061148b57600080fd5b6013546001600160a01b03166108fc6103e86114a885604b612494565b6114b29190612480565b6040518115909202916000818181858888f193505050506114d257600080fd5b6014546001600160a01b03166108fc60646114ee85600a612494565b6114f89190612480565b6040518115909202916000818181858888f1935050505061151857600080fd5b6015546001600160a01b03166108fc6103e861153685610311612494565b6115409190612480565b6040518115909202916000818181858888f1935050505061115957600080fd5b6006546001600160a01b0316331461158a5760405162461bcd60e51b81526004016107ed906123b1565b600b55565b6000818152600260205260409020546060906001600160a01b031661160e5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107ed565b6000611618611b2e565b905060008151116116385760405180602001604052806000815250611663565b8061164284611b3d565b6040516020016116539291906122e0565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146116945760405162461bcd60e51b81526004016107ed906123b1565b60405133904780156108fc02916000818181858888f193505050501580156116c0573d6000803e3d6000fd5b50565b6006546001600160a01b031633146116ed5760405162461bcd60e51b81526004016107ed906123b1565b6001600160a01b0381166117525760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ed565b6116c081611aa9565b6006546001600160a01b031633146117855760405162461bcd60e51b81526004016107ed906123b1565b600955565b611159828260405180602001604052806000815250611c3b565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117d982610e0a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661188b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ed565b600061189683610e0a565b9050806001600160a01b0316846001600160a01b031614806118d15750836001600160a01b03166118c68461092b565b6001600160a01b0316145b8061190157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661191c82610e0a565b6001600160a01b0316146119845760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107ed565b6001600160a01b0382166119e65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107ed565b6119f16000826117a4565b6001600160a01b0383166000908152600360205260408120805460019290611a1a9084906124b3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a48908490612468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b06848484611909565b611b1284848484611c6e565b6112545760405162461bcd60e51b81526004016107ed9061235f565b6060600780546108a8906124f6565b606081611b615750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b8b5780611b7581612531565b9150611b849050600a83612480565b9150611b65565b60008167ffffffffffffffff811115611ba657611ba66125a2565b6040519080825280601f01601f191660200182016040528015611bd0576020820181803683370190505b5090505b841561190157611be56001836124b3565b9150611bf2600a8661254c565b611bfd906030612468565b60f81b818381518110611c1257611c1261258c565b60200101906001600160f81b031916908160001a905350611c34600a86612480565b9450611bd4565b611c458383611d7b565b611c526000848484611c6e565b6108945760405162461bcd60e51b81526004016107ed9061235f565b60006001600160a01b0384163b15611d7057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cb290339089908890889060040161230f565b602060405180830381600087803b158015611ccc57600080fd5b505af1925050508015611cfc575060408051601f3d908101601f19168201909252611cf99181019061220c565b60015b611d56573d808015611d2a576040519150601f19603f3d011682016040523d82523d6000602084013e611d2f565b606091505b508051611d4e5760405162461bcd60e51b81526004016107ed9061235f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611901565b506001949350505050565b6001600160a01b038216611dd15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ed565b6000818152600260205260409020546001600160a01b031615611e365760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ed565b6001600160a01b0382166000908152600360205260408120805460019290611e5f908490612468565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ec9906124f6565b90600052602060002090601f016020900481019282611eeb5760008555611f31565b82601f10611f045782800160ff19823516178555611f31565b82800160010185558215611f31579182015b82811115611f31578235825591602001919060010190611f16565b50611f3d929150611f41565b5090565b5b80821115611f3d5760008155600101611f42565b80356001600160a01b0381168114611f6d57600080fd5b919050565b80358015158114611f6d57600080fd5b600060208284031215611f9457600080fd5b61166382611f56565b60008060408385031215611fb057600080fd5b611fb983611f56565b9150611fc760208401611f56565b90509250929050565b600080600060608486031215611fe557600080fd5b611fee84611f56565b9250611ffc60208501611f56565b9150604084013590509250925092565b6000806000806080858703121561202257600080fd5b61202b85611f56565b9350602061203a818701611f56565b935060408601359250606086013567ffffffffffffffff8082111561205e57600080fd5b818801915088601f83011261207257600080fd5b813581811115612084576120846125a2565b612096601f8201601f19168501612437565b915080825289848285010111156120ac57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156120df57600080fd5b6120e883611f56565b9150611fc760208401611f72565b6000806040838503121561210957600080fd5b61211283611f56565b946020939093013593505050565b6000602080838503121561213357600080fd5b823567ffffffffffffffff8082111561214b57600080fd5b818501915085601f83011261215f57600080fd5b813581811115612171576121716125a2565b8060051b9150612182848301612437565b8181528481019084860184860187018a101561219d57600080fd5b600095505b838610156121c7576121b381611f56565b8352600195909501949186019186016121a2565b5098975050505050505050565b6000602082840312156121e657600080fd5b61166382611f72565b60006020828403121561220157600080fd5b8135611663816125b8565b60006020828403121561221e57600080fd5b8151611663816125b8565b6000806020838503121561223c57600080fd5b823567ffffffffffffffff8082111561225457600080fd5b818501915085601f83011261226857600080fd5b81358181111561227757600080fd5b86602082850101111561228957600080fd5b60209290920196919550909350505050565b6000602082840312156122ad57600080fd5b5035919050565b600081518084526122cc8160208601602086016124ca565b601f01601f19169290920160200192915050565b600083516122f28184602088016124ca565b8351908301906123068183602088016124ca565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612342908301846122b4565b9695505050505050565b60208152600061166360208301846122b4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612460576124606125a2565b604052919050565b6000821982111561247b5761247b612560565b500190565b60008261248f5761248f612576565b500490565b60008160001904831182151516156124ae576124ae612560565b500290565b6000828210156124c5576124c5612560565b500390565b60005b838110156124e55781810151838201526020016124cd565b838111156112545750506000910152565b600181811c9082168061250a57607f821691505b6020821081141561252b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561254557612545612560565b5060010190565b60008261255b5761255b612576565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146116c057600080fdfea26469706673582212203f9545a5911fd66201a18194f45c74f481991c2d6454c7aefef5e057f8211d5164736f6c63430008070033

Deployed Bytecode Sourcemap

44912:3627:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21145:355;;;;;;;;;;-1:-1:-1;21145:355:0;;;;;:::i;:::-;;:::i;:::-;;;6691:14:1;;6684:22;6666:41;;6654:2;6639:18;21145:355:0;;;;;;;;46904:299;;;;;;;;;;-1:-1:-1;46904:299:0;;;;;:::i;:::-;;:::i;:::-;;22314:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24007:308::-;;;;;;;;;;-1:-1:-1;24007:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5989:32:1;;;5971:51;;5959:2;5944:18;24007:308:0;5825:203:1;23530:411:0;;;;;;;;;;-1:-1:-1;23530:411:0;;;;;:::i;:::-;;:::i;45674:62::-;;;;;;;;;;-1:-1:-1;45674:62:0;;;;-1:-1:-1;;;;;45674:62:0;;;45084:33;;;;;;;;;;;;;;;;;;;14866:25:1;;;14854:2;14839:18;45084:33:0;14720:177:1;25066:376:0;;;;;;;;;;-1:-1:-1;25066:376:0;;;;;:::i;:::-;;:::i;46202:102::-;;;;;;;;;;-1:-1:-1;46202:102:0;;;;;:::i;:::-;;:::i;45534:62::-;;;;;;;;;;-1:-1:-1;45534:62:0;;;;-1:-1:-1;;;;;45534:62:0;;;25513:185;;;;;;;;;;-1:-1:-1;25513:185:0;;;;;:::i;:::-;;:::i;46517:285::-;;;;;;;;;;-1:-1:-1;46517:285:0;;;;;:::i;:::-;;:::i;45396:62::-;;;;;;;;;;-1:-1:-1;45396:62:0;;;;-1:-1:-1;;;;;45396:62:0;;;21921:326;;;;;;;;;;-1:-1:-1;21921:326:0;;;;;:::i;:::-;;:::i;45465:62::-;;;;;;;;;;-1:-1:-1;45465:62:0;;;;-1:-1:-1;;;;;45465:62:0;;;44969:30;;;;;;;;;;-1:-1:-1;44969:30:0;;;;-1:-1:-1;;;44969:30:0;;;;;;21564:295;;;;;;;;;;-1:-1:-1;21564:295:0;;;;;:::i;:::-;;:::i;44246:94::-;;;;;;;;;;;;;:::i;45155:25::-;;;;;;;;;;;;;;;;46424:85;;;;;;;;;;-1:-1:-1;46424:85:0;;;;;:::i;:::-;;:::i;45603:62::-;;;;;;;;;;-1:-1:-1;45603:62:0;;;;-1:-1:-1;;;;;45603:62:0;;;43595:87;;;;;;;;;;-1:-1:-1;43668:6:0;;-1:-1:-1;;;;;43668:6:0;43595:87;;45258:62;;;;;;;;;;-1:-1:-1;45258:62:0;;;;-1:-1:-1;;;;;45258:62:0;;;46104:90;;;;;;;;;;-1:-1:-1;46104:90:0;;;;;:::i;:::-;;:::i;45812:62::-;;;;;;;;;;-1:-1:-1;45812:62:0;;;;-1:-1:-1;;;;;45812:62:0;;;22483:104;;;;;;;;;;;;;:::i;45743:62::-;;;;;;;;;;-1:-1:-1;45743:62:0;;;;-1:-1:-1;;;;;45743:62:0;;;45327;;;;;;;;;;-1:-1:-1;45327:62:0;;;;-1:-1:-1;;;;;45327:62:0;;;45045:32;;;;;;;;;;;;;;;;47211:472;;;;;;:::i;:::-;;:::i;24387:327::-;;;;;;;;;;-1:-1:-1;24387:327:0;;;;;:::i;:::-;;:::i;45189:62::-;;;;;;;;;;-1:-1:-1;45189:62:0;;;;-1:-1:-1;;;;;45189:62:0;;;45124:24;;;;;;;;;;;;;;;;25769:365;;;;;;;;;;-1:-1:-1;25769:365:0;;;;;:::i;:::-;;:::i;47691:723::-;;;;;;;;;;;;;:::i;46810:86::-;;;;;;;;;;-1:-1:-1;46810:86:0;;;;;:::i;:::-;;:::i;22658:468::-;;;;;;;;;;-1:-1:-1;22658:468:0;;;;;:::i;:::-;;:::i;48422:114::-;;;;;;;;;;;;;:::i;24785:214::-;;;;;;;;;;-1:-1:-1;24785:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;24956:25:0;;;24927:4;24956:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24785:214;44495:229;;;;;;;;;;-1:-1:-1;44495:229:0;;;;;:::i;:::-;;:::i;46312:104::-;;;;;;;;;;-1:-1:-1;46312:104:0;;;;;:::i;:::-;;:::i;21145:355::-;21292:4;-1:-1:-1;;;;;;21334:40:0;;-1:-1:-1;;;21334:40:0;;:105;;-1:-1:-1;;;;;;;21391:48:0;;-1:-1:-1;;;21391:48:0;21334:105;:158;;;-1:-1:-1;;;;;;;;;;19776:40:0;;;21456:36;21314:178;21145:355;-1:-1:-1;;21145:355:0:o;46904:299::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;;;;;;;;;47000:11:::1;::::0;46991:5:::1;::::0;46985:11:::1;::::0;:3;:11:::1;:::i;:::-;:26;;46977:65;;;::::0;-1:-1:-1;;;46977:65:0;;14149:2:1;46977:65:0::1;::::0;::::1;14131:21:1::0;14188:2;14168:18;;;14161:30;14227:28;14207:18;;;14200:56;14273:18;;46977:65:0::1;13947:350:1::0;46977:65:0::1;47058:9;47053:143;47077:3;47073:1;:7;47053:143;;;47102:5;:7:::0;;;:5:::1;:7;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;47142:5:0::1;::::0;47162:22:::1;47172:2:::0;47142:5;47162:9:::1;:22::i;:::-;-1:-1:-1::0;47082:3:0;::::1;::::0;::::1;:::i;:::-;;;;47053:143;;;;46904:299:::0;;:::o;22314:100::-;22368:13;22401:5;22394:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22314:100;:::o;24007:308::-;24128:7;27770:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27770:16:0;24153:110;;;;-1:-1:-1;;;24153:110:0;;11459:2:1;24153:110:0;;;11441:21:1;11498:2;11478:18;;;11471:30;11537:34;11517:18;;;11510:62;-1:-1:-1;;;11588:18:1;;;11581:42;11640:19;;24153:110:0;11257:408:1;24153:110:0;-1:-1:-1;24283:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24283:24:0;;24007:308::o;23530:411::-;23611:13;23627:23;23642:7;23627:14;:23::i;:::-;23611:39;;23675:5;-1:-1:-1;;;;;23669:11:0;:2;-1:-1:-1;;;;;23669:11:0;;;23661:57;;;;-1:-1:-1;;;23661:57:0;;13747:2:1;23661:57:0;;;13729:21:1;13786:2;13766:18;;;13759:30;13825:34;13805:18;;;13798:62;-1:-1:-1;;;13876:18:1;;;13869:31;13917:19;;23661:57:0;13545:397:1;23661:57:0;16593:10;-1:-1:-1;;;;;23753:21:0;;;;:62;;-1:-1:-1;23778:37:0;23795:5;16593:10;24785:214;:::i;23778:37::-;23731:168;;;;-1:-1:-1;;;23731:168:0;;9852:2:1;23731:168:0;;;9834:21:1;9891:2;9871:18;;;9864:30;9930:34;9910:18;;;9903:62;10001:26;9981:18;;;9974:54;10045:19;;23731:168:0;9650:420:1;23731:168:0;23912:21;23921:2;23925:7;23912:8;:21::i;25066:376::-;25275:41;16593:10;25308:7;25275:18;:41::i;:::-;25253:140;;;;-1:-1:-1;;;25253:140:0;;;;;;;:::i;:::-;25406:28;25416:4;25422:2;25426:7;25406:9;:28::i;46202:102::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;46278:18:::1;:12;46293:3:::0;;46278:18:::1;:::i;25513:185::-:0;25651:39;25668:4;25674:2;25678:7;25651:39;;;;;;;;;;;;:16;:39::i;46517:285::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;46600:2:::1;46603:1;46600:5;;;;;;;;:::i;:::-;;;;;;;46595:2;;:10;;;;;-1:-1:-1::0;;;;;46595:10:0::1;;;;;-1:-1:-1::0;;;;;46595:10:0::1;;;;;;46621:2;46624:1;46621:5;;;;;;;;:::i;:::-;;;;;;;46616:2;;:10;;;;;-1:-1:-1::0;;;;;46616:10:0::1;;;;;-1:-1:-1::0;;;;;46616:10:0::1;;;;;;46642:2;46645:1;46642:5;;;;;;;;:::i;:::-;;;;;;;46637:2;;:10;;;;;-1:-1:-1::0;;;;;46637:10:0::1;;;;;-1:-1:-1::0;;;;;46637:10:0::1;;;;;;46663:2;46666:1;46663:5;;;;;;;;:::i;:::-;;;;;;;46658:2;;:10;;;;;-1:-1:-1::0;;;;;46658:10:0::1;;;;;-1:-1:-1::0;;;;;46658:10:0::1;;;;;;46684:2;46687:1;46684:5;;;;;;;;:::i;:::-;;;;;;;46679:2;;:10;;;;;-1:-1:-1::0;;;;;46679:10:0::1;;;;;-1:-1:-1::0;;;;;46679:10:0::1;;;;;;46705:2;46708:1;46705:5;;;;;;;;:::i;:::-;;;;;;;46700:2;;:10;;;;;-1:-1:-1::0;;;;;46700:10:0::1;;;;;-1:-1:-1::0;;;;;46700:10:0::1;;;;;;46726:2;46729:1;46726:5;;;;;;;;:::i;:::-;;;;;;;46721:2;;:10;;;;;-1:-1:-1::0;;;;;46721:10:0::1;;;;;-1:-1:-1::0;;;;;46721:10:0::1;;;;;;46747:2;46750:1;46747:5;;;;;;;;:::i;:::-;;;;;;;46742:2;;:10;;;;;-1:-1:-1::0;;;;;46742:10:0::1;;;;;-1:-1:-1::0;;;;;46742:10:0::1;;;;;;46768:2;46771:1;46768:5;;;;;;;;:::i;:::-;;;;;;;46763:2;;:10;;;;;-1:-1:-1::0;;;;;46763:10:0::1;;;;;-1:-1:-1::0;;;;;46763:10:0::1;;;;;;46789:2;46792:1;46789:5;;;;;;;;:::i;:::-;;;;;;;46784:2;;:10;;;;;-1:-1:-1::0;;;;;46784:10:0::1;;;;;-1:-1:-1::0;;;;;46784:10:0::1;;;;;;46517:285:::0;:::o;21921:326::-;22038:7;22079:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22079:16:0;22128:19;22106:110;;;;-1:-1:-1;;;22106:110:0;;10688:2:1;22106:110:0;;;10670:21:1;10727:2;10707:18;;;10700:30;10766:34;10746:18;;;10739:62;-1:-1:-1;;;10817:18:1;;;10810:39;10866:19;;22106:110:0;10486:405:1;21564:295:0;21681:7;-1:-1:-1;;;;;21728:19:0;;21706:111;;;;-1:-1:-1;;;21706:111:0;;10277:2:1;21706:111:0;;;10259:21:1;10316:2;10296:18;;;10289:30;10355:34;10335:18;;;10328:62;-1:-1:-1;;;10406:18:1;;;10399:40;10456:19;;21706:111:0;10075:406:1;21706:111:0;-1:-1:-1;;;;;;21835:16:0;;;;;:9;:16;;;;;;;21564:295::o;44246:94::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;44311:21:::1;44329:1;44311:9;:21::i;:::-;44246:94::o:0;46424:85::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;46485:10:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;46485:16:0::1;-1:-1:-1::0;;;;46485:16:0;;::::1;::::0;;;::::1;::::0;;46424:85::o;46104:90::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;46170:5:::1;:16:::0;46104:90::o;22483:104::-;22539:13;22572:7;22565:14;;;;;:::i;47211:472::-;47274:10;;-1:-1:-1;;;47274:10:0;;;;47266:40;;;;-1:-1:-1;;;47266:40:0;;13401:2:1;47266:40:0;;;13383:21:1;13440:2;13420:18;;;13413:30;-1:-1:-1;;;13459:18:1;;;13452:47;13516:18;;47266:40:0;13199:341:1;47266:40:0;47332:5;;47325:3;:12;;:23;;;;;47347:1;47341:3;:7;47325:23;47317:60;;;;-1:-1:-1;;;47317:60:0;;9499:2:1;47317:60:0;;;9481:21:1;9538:2;9518:18;;;9511:30;9577:26;9557:18;;;9550:54;9621:18;;47317:60:0;9297:348:1;47317:60:0;47411:11;;47402:5;;47396:11;;:3;:11;:::i;:::-;:26;;47388:65;;;;-1:-1:-1;;;47388:65:0;;14149:2:1;47388:65:0;;;14131:21:1;14188:2;14168:18;;;14161:30;14227:28;14207:18;;;14200:56;14273:18;;47388:65:0;13947:350:1;47388:65:0;47493:3;47485:5;;:11;;;;:::i;:::-;47472:9;:24;47464:50;;;;-1:-1:-1;;;47464:50:0;;12643:2:1;47464:50:0;;;12625:21:1;12682:2;12662:18;;;12655:30;-1:-1:-1;;;12701:18:1;;;12694:43;12754:18;;47464:50:0;12441:337:1;47464:50:0;47530:9;47525:151;47549:3;47545:1;:7;47525:151;;;47574:5;:7;;;:5;:7;;;:::i;:::-;;;;-1:-1:-1;;47614:5:0;;47634:30;47644:10;47614:5;47634:9;:30::i;:::-;-1:-1:-1;47554:3:0;;;;:::i;:::-;;;;47525:151;;;;47211:472;:::o;24387:327::-;-1:-1:-1;;;;;24522:24:0;;16593:10;24522:24;;24514:62;;;;-1:-1:-1;;;24514:62:0;;8732:2:1;24514:62:0;;;8714:21:1;8771:2;8751:18;;;8744:30;8810:27;8790:18;;;8783:55;8855:18;;24514:62:0;8530:349:1;24514:62:0;16593:10;24589:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24589:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24589:53:0;;;;;;;;;;24658:48;;6666:41:1;;;24589:42:0;;16593:10;24658:48;;6639:18:1;24658:48:0;;;;;;;24387:327;;:::o;25769:365::-;25958:41;16593:10;25991:7;25958:18;:41::i;:::-;25936:140;;;;-1:-1:-1;;;25936:140:0;;;;;;;:::i;:::-;26087:39;26101:4;26107:2;26111:7;26120:5;26087:13;:39::i;:::-;25769:365;;;;:::o;47691:723::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;47763:21:::1;47745:15;47828:3;47813:11;47763:21:::0;47823:1:::1;47813:11;:::i;:::-;47812:19;;;;:::i;:::-;47860:2;::::0;47795:36;;-1:-1:-1;;;;;;47860:2:0::1;47852:36;47884:3;47870:10;47795:36:::0;47879:1:::1;47870:10;:::i;:::-;47869:18;;;;:::i;:::-;47852:36;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;47844:45;;;::::0;::::1;;47916:2;::::0;-1:-1:-1;;;;;47916:2:0::1;47908:36;47940:3;47926:10;:6:::0;47935:1:::1;47926:10;:::i;:::-;47925:18;;;;:::i;:::-;47908:36;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;47900:45;;;::::0;::::1;;47972:2;::::0;-1:-1:-1;;;;;47972:2:0::1;47964:36;47996:3;47982:10;:6:::0;47991:1:::1;47982:10;:::i;:::-;47981:18;;;;:::i;:::-;47964:36;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;47956:45;;;::::0;::::1;;48028:2;::::0;-1:-1:-1;;;;;48028:2:0::1;48020:36;48052:3;48038:10;:6:::0;48047:1:::1;48038:10;:::i;:::-;48037:18;;;;:::i;:::-;48020:36;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48012:45;;;::::0;::::1;;48084:2;::::0;-1:-1:-1;;;;;48084:2:0::1;48076:36;48108:3;48094:10;:6:::0;48103:1:::1;48094:10;:::i;:::-;48093:18;;;;:::i;:::-;48076:36;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48068:45;;;::::0;::::1;;48140:2;::::0;-1:-1:-1;;;;;48140:2:0::1;48132:37;48165:3;48150:11;:6:::0;48159:2:::1;48150:11;:::i;:::-;48149:19;;;;:::i;:::-;48132:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48124:46;;;::::0;::::1;;48197:2;::::0;-1:-1:-1;;;;;48197:2:0::1;48189:37;48222:3;48207:11;:6:::0;48216:2:::1;48207:11;:::i;:::-;48206:19;;;;:::i;:::-;48189:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48181:46;;;::::0;::::1;;48256:2;::::0;-1:-1:-1;;;;;48256:2:0::1;48248:39;48282:4;48266:12;:7:::0;48276:2:::1;48266:12;:::i;:::-;48265:21;;;;:::i;:::-;48248:39;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48240:48;;;::::0;::::1;;48315:2;::::0;-1:-1:-1;;;;;48315:2:0::1;48307:38;48341:3;48325:12;:7:::0;48335:2:::1;48325:12;:::i;:::-;48324:20;;;;:::i;:::-;48307:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48299:47;;;::::0;::::1;;48373:2;::::0;-1:-1:-1;;;;;48373:2:0::1;48365:40;48400:4;48383:13;:7:::0;48393:3:::1;48383:13;:::i;:::-;48382:22;;;;:::i;:::-;48365:40;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48357:49;;;::::0;::::1;46810:86:::0;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;46874:5:::1;:14:::0;46810:86::o;22658:468::-;27746:4;27770:16;;;:7;:16;;;;;;22776:13;;-1:-1:-1;;;;;27770:16:0;22807:113;;;;-1:-1:-1;;;22807:113:0;;12985:2:1;22807:113:0;;;12967:21:1;13024:2;13004:18;;;12997:30;13063:34;13043:18;;;13036:62;-1:-1:-1;;;13114:18:1;;;13107:45;13169:19;;22807:113:0;12783:411:1;22807:113:0;22933:21;22957:10;:8;:10::i;:::-;22933:34;;23022:1;23004:7;22998:21;:25;:120;;;;;;;;;;;;;;;;;23067:7;23076:18;:7;:16;:18::i;:::-;23050:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22998:120;22978:140;22658:468;-1:-1:-1;;;22658:468:0:o;48422:114::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;48477:51:::1;::::0;48485:10:::1;::::0;48506:21:::1;48477:51:::0;::::1;;;::::0;::::1;::::0;;;48506:21;48485:10;48477:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48422:114::o:0;44495:229::-;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44598:22:0;::::1;44576:110;;;::::0;-1:-1:-1;;;44576:110:0;;7563:2:1;44576:110:0::1;::::0;::::1;7545:21:1::0;7602:2;7582:18;;;7575:30;7641:34;7621:18;;;7614:62;-1:-1:-1;;;7692:18:1;;;7685:36;7738:19;;44576:110:0::1;7361:402:1::0;44576:110:0::1;44697:19;44707:8;44697:9;:19::i;46312:104::-:0;43668:6;;-1:-1:-1;;;;;43668:6:0;16593:10;43815:23;43807:68;;;;-1:-1:-1;;;43807:68:0;;;;;;;:::i;:::-;46385:11:::1;:23:::0;46312:104::o;28769:110::-;28845:26;28855:2;28859:7;28845:26;;;;;;;;;;;;:9;:26::i;31804:174::-;31879:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31879:29:0;-1:-1:-1;;;;;31879:29:0;;;;;;;;:24;;31933:23;31879:24;31933:14;:23::i;:::-;-1:-1:-1;;;;;31924:46:0;;;;;;;;;;;31804:174;;:::o;27975:452::-;28104:4;27770:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27770:16:0;28126:110;;;;-1:-1:-1;;;28126:110:0;;9086:2:1;28126:110:0;;;9068:21:1;9125:2;9105:18;;;9098:30;9164:34;9144:18;;;9137:62;-1:-1:-1;;;9215:18:1;;;9208:42;9267:19;;28126:110:0;8884:408:1;28126:110:0;28247:13;28263:23;28278:7;28263:14;:23::i;:::-;28247:39;;28316:5;-1:-1:-1;;;;;28305:16:0;:7;-1:-1:-1;;;;;28305:16:0;;:64;;;;28362:7;-1:-1:-1;;;;;28338:31:0;:20;28350:7;28338:11;:20::i;:::-;-1:-1:-1;;;;;28338:31:0;;28305:64;:113;;;-1:-1:-1;;;;;;24956:25:0;;;24927:4;24956:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28386:32;28297:122;27975:452;-1:-1:-1;;;;27975:452:0:o;31071:615::-;31244:4;-1:-1:-1;;;;;31217:31:0;:23;31232:7;31217:14;:23::i;:::-;-1:-1:-1;;;;;31217:31:0;;31195:122;;;;-1:-1:-1;;;31195:122:0;;12233:2:1;31195:122:0;;;12215:21:1;12272:2;12252:18;;;12245:30;12311:34;12291:18;;;12284:62;-1:-1:-1;;;12362:18:1;;;12355:39;12411:19;;31195:122:0;12031:405:1;31195:122:0;-1:-1:-1;;;;;31336:16:0;;31328:65;;;;-1:-1:-1;;;31328:65:0;;8327:2:1;31328:65:0;;;8309:21:1;8366:2;8346:18;;;8339:30;8405:34;8385:18;;;8378:62;-1:-1:-1;;;8456:18:1;;;8449:34;8500:19;;31328:65:0;8125:400:1;31328:65:0;31510:29;31527:1;31531:7;31510:8;:29::i;:::-;-1:-1:-1;;;;;31552:15:0;;;;;;:9;:15;;;;;:20;;31571:1;;31552:15;:20;;31571:1;;31552:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31583:13:0;;;;;;:9;:13;;;;;:18;;31600:1;;31583:13;:18;;31600:1;;31583:18;:::i;:::-;;;;-1:-1:-1;;31612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31612:21:0;-1:-1:-1;;;;;31612:21:0;;;;;;;;;31651:27;;31612:16;;31651:27;;;;;;;31071:615;;;:::o;44732:173::-;44807:6;;;-1:-1:-1;;;;;44824:17:0;;;-1:-1:-1;;;;;;44824:17:0;;;;;;;44857:40;;44807:6;;;44824:17;44807:6;;44857:40;;44788:16;;44857:40;44777:128;44732:173;:::o;27016:352::-;27173:28;27183:4;27189:2;27193:7;27173:9;:28::i;:::-;27234:48;27257:4;27263:2;27267:7;27276:5;27234:22;:48::i;:::-;27212:148;;;;-1:-1:-1;;;27212:148:0;;;;;;;:::i;45991:105::-;46043:13;46076:12;46069:19;;;;;:::i;17034:723::-;17090:13;17311:10;17307:53;;-1:-1:-1;;17338:10:0;;;;;;;;;;;;-1:-1:-1;;;17338:10:0;;;;;17034:723::o;17307:53::-;17385:5;17370:12;17426:78;17433:9;;17426:78;;17459:8;;;;:::i;:::-;;-1:-1:-1;17482:10:0;;-1:-1:-1;17490:2:0;17482:10;;:::i;:::-;;;17426:78;;;17514:19;17546:6;17536:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17536:17:0;;17514:39;;17564:154;17571:10;;17564:154;;17598:11;17608:1;17598:11;;:::i;:::-;;-1:-1:-1;17667:10:0;17675:2;17667:5;:10;:::i;:::-;17654:24;;:2;:24;:::i;:::-;17641:39;;17624:6;17631;17624:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17624:56:0;;;;;;;;-1:-1:-1;17695:11:0;17704:2;17695:11;;:::i;:::-;;;17564:154;;29106:321;29236:18;29242:2;29246:7;29236:5;:18::i;:::-;29287:54;29318:1;29322:2;29326:7;29335:5;29287:22;:54::i;:::-;29265:154;;;;-1:-1:-1;;;29265:154:0;;;;;;;:::i;32543:984::-;32698:4;-1:-1:-1;;;;;32719:13:0;;8635:20;8683:8;32715:805;;32772:175;;-1:-1:-1;;;32772:175:0;;-1:-1:-1;;;;;32772:36:0;;;;;:175;;16593:10;;32866:4;;32893:7;;32923:5;;32772:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32772:175:0;;;;;;;;-1:-1:-1;;32772:175:0;;;;;;;;;;;;:::i;:::-;;;32751:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33134:13:0;;33130:320;;33177:108;;-1:-1:-1;;;33177:108:0;;;;;;;:::i;33130:320::-;33400:6;33394:13;33385:6;33381:2;33377:15;33370:38;32751:714;-1:-1:-1;;;;;;33011:55:0;-1:-1:-1;;;33011:55:0;;-1:-1:-1;33004:62:0;;32715:805;-1:-1:-1;33504:4:0;32543:984;;;;;;:::o;29763:382::-;-1:-1:-1;;;;;29843:16:0;;29835:61;;;;-1:-1:-1;;;29835:61:0;;11098:2:1;29835:61:0;;;11080:21:1;;;11117:18;;;11110:30;11176:34;11156:18;;;11149:62;11228:18;;29835:61:0;10896:356:1;29835:61:0;27746:4;27770:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27770:16:0;:30;29907:58;;;;-1:-1:-1;;;29907:58:0;;7970:2:1;29907:58:0;;;7952:21:1;8009:2;7989:18;;;7982:30;8048;8028:18;;;8021:58;8096:18;;29907:58:0;7768:352:1;29907:58:0;-1:-1:-1;;;;;30036:13:0;;;;;;:9;:13;;;;;:18;;30053:1;;30036:13;:18;;30053:1;;30036:18;:::i;:::-;;;;-1:-1:-1;;30065:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30065:21:0;-1:-1:-1;;;;;30065:21:0;;;;;;;;30104:33;;30065:16;;;30104:33;;30065:16;;30104:33;29763:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:980::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:2;1427:38;1461:2;1450:9;1446:18;1427:38;:::i;:::-;1417:48;;1512:2;1501:9;1497:18;1484:32;1474:42;;1567:2;1556:9;1552:18;1539:32;1590:18;1631:2;1623:6;1620:14;1617:34;;;1647:1;1644;1637:12;1617:34;1685:6;1674:9;1670:22;1660:32;;1730:7;1723:4;1719:2;1715:13;1711:27;1701:55;;1752:1;1749;1742:12;1701:55;1788:2;1775:16;1810:2;1806;1803:10;1800:36;;;1816:18;;:::i;:::-;1858:53;1901:2;1882:13;;-1:-1:-1;;1878:27:1;1874:36;;1858:53;:::i;:::-;1845:66;;1934:2;1927:5;1920:17;1974:7;1969:2;1964;1960;1956:11;1952:20;1949:33;1946:53;;;1995:1;1992;1985:12;1946:53;2050:2;2045;2041;2037:11;2032:2;2025:5;2021:14;2008:45;2094:1;2089:2;2084;2077:5;2073:14;2069:23;2062:34;;2115:5;2105:15;;;;;1146:980;;;;;;;:::o;2131:254::-;2196:6;2204;2257:2;2245:9;2236:7;2232:23;2228:32;2225:52;;;2273:1;2270;2263:12;2225:52;2296:29;2315:9;2296:29;:::i;:::-;2286:39;;2344:35;2375:2;2364:9;2360:18;2344:35;:::i;2390:254::-;2458:6;2466;2519:2;2507:9;2498:7;2494:23;2490:32;2487:52;;;2535:1;2532;2525:12;2487:52;2558:29;2577:9;2558:29;:::i;:::-;2548:39;2634:2;2619:18;;;;2606:32;;-1:-1:-1;;;2390:254:1:o;2649:963::-;2733:6;2764:2;2807;2795:9;2786:7;2782:23;2778:32;2775:52;;;2823:1;2820;2813:12;2775:52;2863:9;2850:23;2892:18;2933:2;2925:6;2922:14;2919:34;;;2949:1;2946;2939:12;2919:34;2987:6;2976:9;2972:22;2962:32;;3032:7;3025:4;3021:2;3017:13;3013:27;3003:55;;3054:1;3051;3044:12;3003:55;3090:2;3077:16;3112:2;3108;3105:10;3102:36;;;3118:18;;:::i;:::-;3164:2;3161:1;3157:10;3147:20;;3187:28;3211:2;3207;3203:11;3187:28;:::i;:::-;3249:15;;;3280:12;;;;3312:11;;;3342;;;3338:20;;3335:33;-1:-1:-1;3332:53:1;;;3381:1;3378;3371:12;3332:53;3403:1;3394:10;;3413:169;3427:2;3424:1;3421:9;3413:169;;;3484:23;3503:3;3484:23;:::i;:::-;3472:36;;3445:1;3438:9;;;;;3528:12;;;;3560;;3413:169;;;-1:-1:-1;3601:5:1;2649:963;-1:-1:-1;;;;;;;;2649:963:1:o;3617:180::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:26;3781:9;3765:26;:::i;3802:245::-;3860:6;3913:2;3901:9;3892:7;3888:23;3884:32;3881:52;;;3929:1;3926;3919:12;3881:52;3968:9;3955:23;3987:30;4011:5;3987:30;:::i;4052:249::-;4121:6;4174:2;4162:9;4153:7;4149:23;4145:32;4142:52;;;4190:1;4187;4180:12;4142:52;4222:9;4216:16;4241:30;4265:5;4241:30;:::i;4306:592::-;4377:6;4385;4438:2;4426:9;4417:7;4413:23;4409:32;4406:52;;;4454:1;4451;4444:12;4406:52;4494:9;4481:23;4523:18;4564:2;4556:6;4553:14;4550:34;;;4580:1;4577;4570:12;4550:34;4618:6;4607:9;4603:22;4593:32;;4663:7;4656:4;4652:2;4648:13;4644:27;4634:55;;4685:1;4682;4675:12;4634:55;4725:2;4712:16;4751:2;4743:6;4740:14;4737:34;;;4767:1;4764;4757:12;4737:34;4812:7;4807:2;4798:6;4794:2;4790:15;4786:24;4783:37;4780:57;;;4833:1;4830;4823:12;4780:57;4864:2;4856:11;;;;;4886:6;;-1:-1:-1;4306:592:1;;-1:-1:-1;;;;4306:592:1:o;4903:180::-;4962:6;5015:2;5003:9;4994:7;4990:23;4986:32;4983:52;;;5031:1;5028;5021:12;4983:52;-1:-1:-1;5054:23:1;;4903:180;-1:-1:-1;4903:180:1:o;5088:257::-;5129:3;5167:5;5161:12;5194:6;5189:3;5182:19;5210:63;5266:6;5259:4;5254:3;5250:14;5243:4;5236:5;5232:16;5210:63;:::i;:::-;5327:2;5306:15;-1:-1:-1;;5302:29:1;5293:39;;;;5334:4;5289:50;;5088:257;-1:-1:-1;;5088:257:1:o;5350:470::-;5529:3;5567:6;5561:13;5583:53;5629:6;5624:3;5617:4;5609:6;5605:17;5583:53;:::i;:::-;5699:13;;5658:16;;;;5721:57;5699:13;5658:16;5755:4;5743:17;;5721:57;:::i;:::-;5794:20;;5350:470;-1:-1:-1;;;;5350:470:1:o;6033:488::-;-1:-1:-1;;;;;6302:15:1;;;6284:34;;6354:15;;6349:2;6334:18;;6327:43;6401:2;6386:18;;6379:34;;;6449:3;6444:2;6429:18;;6422:31;;;6227:4;;6470:45;;6495:19;;6487:6;6470:45;:::i;:::-;6462:53;6033:488;-1:-1:-1;;;;;;6033:488:1:o;6718:219::-;6867:2;6856:9;6849:21;6830:4;6887:44;6927:2;6916:9;6912:18;6904:6;6887:44;:::i;6942:414::-;7144:2;7126:21;;;7183:2;7163:18;;;7156:30;7222:34;7217:2;7202:18;;7195:62;-1:-1:-1;;;7288:2:1;7273:18;;7266:48;7346:3;7331:19;;6942:414::o;11670:356::-;11872:2;11854:21;;;11891:18;;;11884:30;11950:34;11945:2;11930:18;;11923:62;12017:2;12002:18;;11670:356::o;14302:413::-;14504:2;14486:21;;;14543:2;14523:18;;;14516:30;14582:34;14577:2;14562:18;;14555:62;-1:-1:-1;;;14648:2:1;14633:18;;14626:47;14705:3;14690:19;;14302:413::o;14902:275::-;14973:2;14967:9;15038:2;15019:13;;-1:-1:-1;;15015:27:1;15003:40;;15073:18;15058:34;;15094:22;;;15055:62;15052:88;;;15120:18;;:::i;:::-;15156:2;15149:22;14902:275;;-1:-1:-1;14902:275:1:o;15182:128::-;15222:3;15253:1;15249:6;15246:1;15243:13;15240:39;;;15259:18;;:::i;:::-;-1:-1:-1;15295:9:1;;15182:128::o;15315:120::-;15355:1;15381;15371:35;;15386:18;;:::i;:::-;-1:-1:-1;15420:9:1;;15315:120::o;15440:168::-;15480:7;15546:1;15542;15538:6;15534:14;15531:1;15528:21;15523:1;15516:9;15509:17;15505:45;15502:71;;;15553:18;;:::i;:::-;-1:-1:-1;15593:9:1;;15440:168::o;15613:125::-;15653:4;15681:1;15678;15675:8;15672:34;;;15686:18;;:::i;:::-;-1:-1:-1;15723:9:1;;15613:125::o;15743:258::-;15815:1;15825:113;15839:6;15836:1;15833:13;15825:113;;;15915:11;;;15909:18;15896:11;;;15889:39;15861:2;15854:10;15825:113;;;15956:6;15953:1;15950:13;15947:48;;;-1:-1:-1;;15991:1:1;15973:16;;15966:27;15743:258::o;16006:380::-;16085:1;16081:12;;;;16128;;;16149:61;;16203:4;16195:6;16191:17;16181:27;;16149:61;16256:2;16248:6;16245:14;16225:18;16222:38;16219:161;;;16302:10;16297:3;16293:20;16290:1;16283:31;16337:4;16334:1;16327:15;16365:4;16362:1;16355:15;16219:161;;16006:380;;;:::o;16391:135::-;16430:3;-1:-1:-1;;16451:17:1;;16448:43;;;16471:18;;:::i;:::-;-1:-1:-1;16518:1:1;16507:13;;16391:135::o;16531:112::-;16563:1;16589;16579:35;;16594:18;;:::i;:::-;-1:-1:-1;16628:9:1;;16531:112::o;16648:127::-;16709:10;16704:3;16700:20;16697:1;16690:31;16740:4;16737:1;16730:15;16764:4;16761:1;16754:15;16780:127;16841:10;16836:3;16832:20;16829:1;16822:31;16872:4;16869:1;16862:15;16896:4;16893:1;16886:15;16912:127;16973:10;16968:3;16964:20;16961:1;16954:31;17004:4;17001:1;16994:15;17028:4;17025:1;17018:15;17044:127;17105:10;17100:3;17096:20;17093:1;17086:31;17136:4;17133:1;17126:15;17160:4;17157:1;17150:15;17176:131;-1:-1:-1;;;;;;17250:32:1;;17240:43;;17230:71;;17297:1;17294;17287:12

Swarm Source

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