ETH Price: $3,157.11 (+2.82%)
Gas: 1 Gwei

Token

KRYPTO GANGSTERS (GANGSTERS)
 

Overview

Max Total Supply

0 GANGSTERS

Holders

165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
intr1cate.eth
Balance
1 GANGSTERS
0x7096f35c640cd0edfde78094c8a72f3d08179ad7
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:
kryptoGangsters

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

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;
    }
}
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    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);
            }
        }
    }
}
pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    struct slice {
        uint _len;
        uint _ptr;
    }

    /**
     * @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);
    }

    /*
     * @dev Returns a slice containing the entire string.
     * @param self The string to make a slice from.
     * @return A newly allocated slice containing the entire string.
     */
    function toSlice(string memory self) internal pure returns (slice memory) {
        uint ptr;
        assembly {
            ptr := add(self, 0x20)
        }
        return slice(bytes(self).length, ptr);
    }

    /*
     * @dev Returns a newly allocated string containing the concatenation of
     *      `self` and `other`.
     * @param self The first slice to concatenate.
     * @param other The second slice to concatenate.
     * @return The concatenation of the two strings.
     */
    function concat(slice memory self, slice memory other) internal pure returns (string memory) {
        string memory ret = new string(self._len + other._len);
        uint retptr;
        assembly { retptr := add(ret, 32) }
        memcpy(retptr, self._ptr, self._len);
        memcpy(retptr + self._len, other._ptr, other._len);
        return ret;
    }

    function memcpy(uint dest, uint src, uint len) private pure {
        // Copy word-length chunks while possible
        for(; len >= 32; len -= 32) {
            assembly {
                mstore(dest, mload(src))
            }
            dest += 32;
            src += 32;
        }

        // Copy remaining bytes
        uint mask = 256 ** (32 - len) - 1;
        assembly {
            let srcpart := and(mload(src), not(mask))
            let destpart := and(mload(dest), mask)
            mstore(dest, or(destpart, srcpart))
        }
    }
}
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 *;

    // 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().toSlice().concat('.json'.toSlice())))
                : "";
    }

    /**
     * @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 {}
}
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);
    }
}

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

contract kryptoGangsters is Ownable, ERC721 {
    using Counters for Counters.Counter;
    using Strings for *;
    Counters.Counter public _tokenIDs;

    mapping(address => bool) public isAdmin;
    mapping(address => bool) public isWhiteListed;
    mapping(address => uint256) public tokenCounters;

    string public baseTokenURI;
    uint256 private mintAmount = 0.1 ether;
    uint256 private mintWhitelistAmount = 0.08 ether;

    constructor() ERC721("KRYPTO GANGSTERS", "GANGSTERS") {
    }

    modifier onlyMinter() {
        require(
            isAdmin[_msgSender()] ||
                owner() == _msgSender() ||
                isWhiteListed[_msgSender()],
            " caller has no minting right!!!"
        );
        _;
    }
    modifier onlyAdmin() {
        require(
            isAdmin[_msgSender()] || owner() == _msgSender(),
            " caller has no minting right!!!"
        );
        _;
    }

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

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

    function createItem(uint256 amount) public payable {
        require(_tokenIDs.current() + amount <= 10000, "Max mint amount is reached");
        require(
            tokenCounters[msg.sender] + amount <= 20,
            "Regular member can only 20 NFT tokens at max"
        );
        if (isWhiteListed[msg.sender]){
            require(amount * mintWhitelistAmount == msg.value, "You sent the incorrect amount of tokens");
        }else{
            require(amount * mintAmount == msg.value, "You sent the incorrect amount of tokens");
        }
        for (uint256 i = 0; i < amount; i++) {
            _tokenIDs.increment();
            uint256 newItemID = _tokenIDs.current();
            _safeMint(msg.sender , newItemID);
        }
        tokenCounters[msg.sender] = tokenCounters[msg.sender] + amount;
    }

    function createTeamItem(address owner) private {
        for (uint256 i = 0; i < 5; i++) {
            require(_tokenIDs.current() <= 10000, "Max mint amount is reached");
            _tokenIDs.increment();
            uint256 newItemID = _tokenIDs.current();
            _safeMint(owner , newItemID);
        }
        tokenCounters[owner] = 5;
    }

    function addAdmin(address adminAddress) public onlyOwner {
        require(
            adminAddress != address(0),
            " admin Address is the zero address"
        );
        isAdmin[adminAddress] = true;
    }

    function removeAdmin(address adminAddress) public onlyOwner {
        require(
            adminAddress != address(0),
            " admin Address is the zero address"
        );
        isAdmin[adminAddress] = false;
    }

    function blackListAddress(address userAddress) public onlyAdmin {
        require(userAddress != address(0), " userAddress is the zero address");
        isWhiteListed[userAddress] = false;
    }

    function setRevealOpenSea(string memory baseURI) public onlyAdmin {
        baseTokenURI = baseURI;
    }

    function withdraw() public onlyAdmin {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function batchMintTeam(address[] memory teamList) public onlyAdmin {
        for (uint256 i = 0; i < teamList.length; i++) {
          createTeamItem(teamList[i]);
        }
    }

    function batchWhiteListAddress(address[] memory userAddresses) public onlyAdmin {
        for (uint i = 0; i < userAddresses.length; i++) {
            isWhiteListed[userAddresses[i]] = true;
        }
    }

    function setMintAmount(uint256 amount) public onlyOwner {
        mintAmount = amount;
    }

    function setMintWhitelistAmount(uint256 amount) public onlyOwner {
        mintWhitelistAmount = amount;
    }

    function uintToString(uint256 v) internal pure returns (string memory str) {
        uint maxlength = 100;
        bytes memory reversed = new bytes(maxlength);
        uint i = 0;
        while (v != 0) {
            uint remainder = v % 10;
            v = v / 10;
            reversed[i++] = bytes1(uint8(48 + remainder));
        }
        bytes memory s = new bytes(i + 1);
        for (uint j = 0; j <= i; j++) {
            s[j] = reversed[i - j];
        }
        str = string(s);
        return str;
    }
}

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":"_tokenIDs","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adminAddress","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"teamList","type":"address[]"}],"name":"batchMintTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userAddresses","type":"address[]"}],"name":"batchWhiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"blackListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createItem","outputs":[],"stateMutability":"payable","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":"","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"adminAddress","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMintWhitelistAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setRevealOpenSea","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":"address","name":"","type":"address"}],"name":"tokenCounters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a0000600c5567011c37937e080000600d553480156200002957600080fd5b506040518060400160405280601081526020016f4b525950544f2047414e47535445525360801b8152506040518060400160405280600981526020016847414e47535445525360b81b8152506200008f62000089620000c360201b60201c565b620000c7565b8151620000a490600190602085019062000117565b508051620000ba90600290602084019062000117565b505050620001fa565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200012590620001bd565b90600052602060002090601f01602090048101928262000149576000855562000194565b82601f106200016457805160ff191683800117855562000194565b8280016001018555821562000194579182015b828111156200019457825182559160200191906001019062000177565b50620001a2929150620001a6565b5090565b5b80821115620001a25760008155600101620001a7565b600181811c90821680620001d257607f821691505b60208210811415620001f457634e487b7160e01b600052602260045260246000fd5b50919050565b61256c806200020a6000396000f3fe6080604052600436106101e35760003560e01c80637048027511610102578063c555246d11610095578063d7a5d5d311610064578063d7a5d5d31461059d578063dbd7eb7a146105b0578063e985e9c5146105d0578063f2fde38b146105f057600080fd5b8063c555246d14610528578063c7cd997f14610548578063c87b56dd14610568578063d547cfb71461058857600080fd5b806395d89b41116100d157806395d89b41146104a6578063a22cb465146104bb578063b88d4fde146104db578063b9cd1539146104fb57600080fd5b8063704802751461043357806370a0823114610453578063715018a6146104735780638da5cb5b1461048857600080fd5b80633b0e01331161017a57806355f804b31161014957806355f804b3146103a357806358962971146103c35780636352211e146103e35780636f9170f61461040357600080fd5b80633b0e0133146103295780633ccfd60b146103495780633f9bbc4f1461035e57806342842e0e1461038357600080fd5b8063095ea7b3116101b6578063095ea7b3146102995780631785f53c146102b957806323b872dd146102d957806324d7806c146102f957600080fd5b806301ffc9a7146101e857806305d335691461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611fd5565b610610565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004612058565b610662565b005b34801561024b57600080fd5b5061025461069a565b6040516102149190612109565b34801561026d57600080fd5b5061028161027c366004612058565b61072c565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611ef7565b6107c1565b3480156102c557600080fd5b5061023d6102d4366004611db5565b6108d7565b3480156102e557600080fd5b5061023d6102f4366004611e03565b610948565b34801561030557600080fd5b50610208610314366004611db5565b60086020526000908152604090205460ff1681565b34801561033557600080fd5b5061023d610344366004611db5565b610979565b34801561035557600080fd5b5061023d610a34565b34801561036a57600080fd5b506007546103759081565b604051908152602001610214565b34801561038f57600080fd5b5061023d61039e366004611e03565b610aab565b3480156103af57600080fd5b5061023d6103be36600461200f565b610ac6565b3480156103cf57600080fd5b5061023d6103de36600461200f565b610b03565b3480156103ef57600080fd5b506102816103fe366004612058565b610b47565b34801561040f57600080fd5b5061020861041e366004611db5565b60096020526000908152604090205460ff1681565b34801561043f57600080fd5b5061023d61044e366004611db5565b610bbe565b34801561045f57600080fd5b5061037561046e366004611db5565b610c32565b34801561047f57600080fd5b5061023d610cb9565b34801561049457600080fd5b506000546001600160a01b0316610281565b3480156104b257600080fd5b50610254610cef565b3480156104c757600080fd5b5061023d6104d6366004611ebb565b610cfe565b3480156104e757600080fd5b5061023d6104f6366004611e3f565b610dc3565b34801561050757600080fd5b50610375610516366004611db5565b600a6020526000908152604090205481565b34801561053457600080fd5b5061023d610543366004611f21565b610dfb565b34801561055457600080fd5b5061023d610563366004612058565b610ea7565b34801561057457600080fd5b50610254610583366004612058565b610ed6565b34801561059457600080fd5b5061025461102a565b61023d6105ab366004612058565b6110b8565b3480156105bc57600080fd5b5061023d6105cb366004611f21565b611285565b3480156105dc57600080fd5b506102086105eb366004611dd0565b611309565b3480156105fc57600080fd5b5061023d61060b366004611db5565b611337565b60006001600160e01b031982166380ac58cd60e01b148061064157506001600160e01b03198216635b5e139f60e01b145b8061065c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106955760405162461bcd60e51b815260040161068c906121b5565b60405180910390fd5b600d55565b6060600180546106a99061245e565b80601f01602080910402602001604051908101604052809291908181526020018280546106d59061245e565b80156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068c565b506000908152600560205260409020546001600160a01b031690565b60006107cc82610b47565b9050806001600160a01b0316836001600160a01b0316141561083a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068c565b336001600160a01b038216148061085657506108568133611309565b6108c85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068c565b6108d283836113d2565b505050565b6000546001600160a01b031633146109015760405162461bcd60e51b815260040161068c906121b5565b6001600160a01b0381166109275760405162461bcd60e51b815260040161068c9061223b565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6109523382611440565b61096e5760405162461bcd60e51b815260040161068c906121ea565b6108d2838383611517565b3360009081526008602052604090205460ff16806109a157506000546001600160a01b031633145b6109bd5760405162461bcd60e51b815260040161068c9061227d565b6001600160a01b038116610a135760405162461bcd60e51b815260206004820181905260248201527f20757365724164647265737320697320746865207a65726f2061646472657373604482015260640161068c565b6001600160a01b03166000908152600960205260409020805460ff19169055565b3360009081526008602052604090205460ff1680610a5c57506000546001600160a01b031633145b610a785760405162461bcd60e51b815260040161068c9061227d565b6040514790339082156108fc029083906000818181858888f19350505050158015610aa7573d6000803e3d6000fd5b5050565b6108d283838360405180602001604052806000815250610dc3565b6000546001600160a01b03163314610af05760405162461bcd60e51b815260040161068c906121b5565b8051610aa790600b906020840190611ca8565b3360009081526008602052604090205460ff1680610b2b57506000546001600160a01b031633145b610af05760405162461bcd60e51b815260040161068c9061227d565b6000818152600360205260408120546001600160a01b03168061065c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068c565b6000546001600160a01b03163314610be85760405162461bcd60e51b815260040161068c906121b5565b6001600160a01b038116610c0e5760405162461bcd60e51b815260040161068c9061223b565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006001600160a01b038216610c9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068c565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ce35760405162461bcd60e51b815260040161068c906121b5565b610ced60006116b7565b565b6060600280546106a99061245e565b6001600160a01b038216331415610d575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dcd3383611440565b610de95760405162461bcd60e51b815260040161068c906121ea565b610df584848484611707565b50505050565b3360009081526008602052604090205460ff1680610e2357506000546001600160a01b031633145b610e3f5760405162461bcd60e51b815260040161068c9061227d565b60005b8151811015610aa757600160096000848481518110610e6357610e636124f4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e9f81612499565b915050610e42565b6000546001600160a01b03163314610ed15760405162461bcd60e51b815260040161068c906121b5565b600c55565b6000818152600360205260409020546060906001600160a01b0316610f555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068c565b6000610f5f61173a565b90506000815111610f7f5760405180602001604052806000815250611023565b6040805180820182526005815264173539b7b760d91b60208083019182528351808501855260008082529082015283518085019094529151835290820152819061100290610ffc610fcf87611749565b60408051808201825260008082526020918201528151808301909252825182529182019181019190915290565b90611847565b60405160200161101392919061209d565b6040516020818303038152906040525b9392505050565b600b80546110379061245e565b80601f01602080910402602001604051908101604052809291908181526020018280546110639061245e565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b505050505081565b612710816110c560075490565b6110cf91906122e5565b111561111d5760405162461bcd60e51b815260206004820152601a60248201527f4d6178206d696e7420616d6f756e742069732072656163686564000000000000604482015260640161068c565b336000908152600a602052604090205460149061113b9083906122e5565b111561119e5760405162461bcd60e51b815260206004820152602c60248201527f526567756c6172206d656d6265722063616e206f6e6c79203230204e4654207460448201526b0ded6cadce640c2e840dac2f60a31b606482015260840161068c565b3360009081526009602052604090205460ff16156111e75734600d54826111c591906123fc565b146111e25760405162461bcd60e51b815260040161068c9061211c565b611213565b34600c54826111f691906123fc565b146112135760405162461bcd60e51b815260040161068c9061211c565b60005b818110156112565761122c600780546001019055565b600061123760075490565b905061124333826118df565b508061124e81612499565b915050611216565b50336000908152600a60205260409020546112729082906122e5565b336000908152600a602052604090205550565b3360009081526008602052604090205460ff16806112ad57506000546001600160a01b031633145b6112c95760405162461bcd60e51b815260040161068c9061227d565b60005b8151811015610aa7576112f78282815181106112ea576112ea6124f4565b60200260200101516118f9565b8061130181612499565b9150506112cc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146113615760405162461bcd60e51b815260040161068c906121b5565b6001600160a01b0381166113c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068c565b6113cf816116b7565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061140782610b47565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166114b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068c565b60006114c483610b47565b9050806001600160a01b0316846001600160a01b031614806114ff5750836001600160a01b03166114f48461072c565b6001600160a01b0316145b8061150f575061150f8185611309565b949350505050565b826001600160a01b031661152a82610b47565b6001600160a01b0316146115925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068c565b6001600160a01b0382166115f45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068c565b6115ff6000826113d2565b6001600160a01b038316600090815260046020526040812080546001929061162890849061241b565b90915550506001600160a01b03821660009081526004602052604081208054600192906116569084906122e5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611712848484611517565b61171e848484846119b5565b610df55760405162461bcd60e51b815260040161068c90612163565b6060600b80546106a99061245e565b60608161176d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611797578061178181612499565b91506117909050600a836122fd565b9150611771565b60008167ffffffffffffffff8111156117b2576117b261250a565b6040519080825280601f01601f1916602001820160405280156117dc576020820181803683370190505b5090505b841561150f576117f160018361241b565b91506117fe600a866124b4565b6118099060306122e5565b60f81b81838151811061181e5761181e6124f4565b60200101906001600160f81b031916908160001a905350611840600a866122fd565b94506117e0565b8051825160609160009161185b91906122e5565b67ffffffffffffffff8111156118735761187361250a565b6040519080825280601f01601f19166020018201604052801561189d576020820181803683370190505b50905060006020820190506118bb8186602001518760000151611ac2565b84516118d7906118cb90836122e5565b60208601518651611ac2565b509392505050565b610aa7828260405180602001604052806000815250611b33565b60005b60058110156119975761271061191160075490565b111561195f5760405162461bcd60e51b815260206004820152601a60248201527f4d6178206d696e7420616d6f756e742069732072656163686564000000000000604482015260640161068c565b61196d600780546001019055565b600061197860075490565b905061198483826118df565b508061198f81612499565b9150506118fc565b506001600160a01b03166000908152600a6020526040902060059055565b60006001600160a01b0384163b15611ab757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119f99033908990889088906004016120cc565b602060405180830381600087803b158015611a1357600080fd5b505af1925050508015611a43575060408051601f3d908101601f19168201909252611a4091810190611ff2565b60015b611a9d573d808015611a71576040519150601f19603f3d011682016040523d82523d6000602084013e611a76565b606091505b508051611a955760405162461bcd60e51b815260040161068c90612163565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150f565b506001949350505050565b60208110611afa5781518352611ad96020846122e5565b9250611ae66020836122e5565b9150611af360208261241b565b9050611ac2565b60006001611b0983602061241b565b611b1590610100612354565b611b1f919061241b565b925184518416931916929092179092525050565b611b3d8383611b66565b611b4a60008484846119b5565b6108d25760405162461bcd60e51b815260040161068c90612163565b6001600160a01b038216611bbc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068c565b6000818152600360205260409020546001600160a01b031615611c215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068c565b6001600160a01b0382166000908152600460205260408120805460019290611c4a9084906122e5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cb49061245e565b90600052602060002090601f016020900481019282611cd65760008555611d1c565b82601f10611cef57805160ff1916838001178555611d1c565b82800160010185558215611d1c579182015b82811115611d1c578251825591602001919060010190611d01565b50611d28929150611d2c565b5090565b5b80821115611d285760008155600101611d2d565b600067ffffffffffffffff831115611d5b57611d5b61250a565b611d6e601f8401601f19166020016122b4565b9050828152838383011115611d8257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611db057600080fd5b919050565b600060208284031215611dc757600080fd5b61102382611d99565b60008060408385031215611de357600080fd5b611dec83611d99565b9150611dfa60208401611d99565b90509250929050565b600080600060608486031215611e1857600080fd5b611e2184611d99565b9250611e2f60208501611d99565b9150604084013590509250925092565b60008060008060808587031215611e5557600080fd5b611e5e85611d99565b9350611e6c60208601611d99565b925060408501359150606085013567ffffffffffffffff811115611e8f57600080fd5b8501601f81018713611ea057600080fd5b611eaf87823560208401611d41565b91505092959194509250565b60008060408385031215611ece57600080fd5b611ed783611d99565b915060208301358015158114611eec57600080fd5b809150509250929050565b60008060408385031215611f0a57600080fd5b611f1383611d99565b946020939093013593505050565b60006020808385031215611f3457600080fd5b823567ffffffffffffffff80821115611f4c57600080fd5b818501915085601f830112611f6057600080fd5b813581811115611f7257611f7261250a565b8060051b9150611f838483016122b4565b8181528481019084860184860187018a1015611f9e57600080fd5b600095505b83861015611fc857611fb481611d99565b835260019590950194918601918601611fa3565b5098975050505050505050565b600060208284031215611fe757600080fd5b813561102381612520565b60006020828403121561200457600080fd5b815161102381612520565b60006020828403121561202157600080fd5b813567ffffffffffffffff81111561203857600080fd5b8201601f8101841361204957600080fd5b61150f84823560208401611d41565b60006020828403121561206a57600080fd5b5035919050565b60008151808452612089816020860160208601612432565b601f01601f19169290920160200192915050565b600083516120af818460208801612432565b8351908301906120c3818360208801612432565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ff90830184612071565b9695505050505050565b6020815260006110236020830184612071565b60208082526027908201527f596f752073656e742074686520696e636f727265637420616d6f756e74206f6660408201526620746f6b656e7360c81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526022908201527f2061646d696e204164647265737320697320746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601f908201527f2063616c6c657220686173206e6f206d696e74696e6720726967687421212100604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122dd576122dd61250a565b604052919050565b600082198211156122f8576122f86124c8565b500190565b60008261230c5761230c6124de565b500490565b600181815b8085111561234c578160001904821115612332576123326124c8565b8085161561233f57918102915b93841c9390800290612316565b509250929050565b6000611023838360008261236a5750600161065c565b816123775750600061065c565b816001811461238d5760028114612397576123b3565b600191505061065c565b60ff8411156123a8576123a86124c8565b50506001821b61065c565b5060208310610133831016604e8410600b84101617156123d6575081810a61065c565b6123e08383612311565b80600019048211156123f4576123f46124c8565b029392505050565b6000816000190483118215151615612416576124166124c8565b500290565b60008282101561242d5761242d6124c8565b500390565b60005b8381101561244d578181015183820152602001612435565b83811115610df55750506000910152565b600181811c9082168061247257607f821691505b6020821081141561249357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124ad576124ad6124c8565b5060010190565b6000826124c3576124c36124de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113cf57600080fdfea2646970667358221220af913ff3596aad4317f48b423f89ac3eac5cac2250fc9e2230af28cf273df36364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80637048027511610102578063c555246d11610095578063d7a5d5d311610064578063d7a5d5d31461059d578063dbd7eb7a146105b0578063e985e9c5146105d0578063f2fde38b146105f057600080fd5b8063c555246d14610528578063c7cd997f14610548578063c87b56dd14610568578063d547cfb71461058857600080fd5b806395d89b41116100d157806395d89b41146104a6578063a22cb465146104bb578063b88d4fde146104db578063b9cd1539146104fb57600080fd5b8063704802751461043357806370a0823114610453578063715018a6146104735780638da5cb5b1461048857600080fd5b80633b0e01331161017a57806355f804b31161014957806355f804b3146103a357806358962971146103c35780636352211e146103e35780636f9170f61461040357600080fd5b80633b0e0133146103295780633ccfd60b146103495780633f9bbc4f1461035e57806342842e0e1461038357600080fd5b8063095ea7b3116101b6578063095ea7b3146102995780631785f53c146102b957806323b872dd146102d957806324d7806c146102f957600080fd5b806301ffc9a7146101e857806305d335691461021d57806306fdde031461023f578063081812fc14610261575b600080fd5b3480156101f457600080fd5b50610208610203366004611fd5565b610610565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023d610238366004612058565b610662565b005b34801561024b57600080fd5b5061025461069a565b6040516102149190612109565b34801561026d57600080fd5b5061028161027c366004612058565b61072c565b6040516001600160a01b039091168152602001610214565b3480156102a557600080fd5b5061023d6102b4366004611ef7565b6107c1565b3480156102c557600080fd5b5061023d6102d4366004611db5565b6108d7565b3480156102e557600080fd5b5061023d6102f4366004611e03565b610948565b34801561030557600080fd5b50610208610314366004611db5565b60086020526000908152604090205460ff1681565b34801561033557600080fd5b5061023d610344366004611db5565b610979565b34801561035557600080fd5b5061023d610a34565b34801561036a57600080fd5b506007546103759081565b604051908152602001610214565b34801561038f57600080fd5b5061023d61039e366004611e03565b610aab565b3480156103af57600080fd5b5061023d6103be36600461200f565b610ac6565b3480156103cf57600080fd5b5061023d6103de36600461200f565b610b03565b3480156103ef57600080fd5b506102816103fe366004612058565b610b47565b34801561040f57600080fd5b5061020861041e366004611db5565b60096020526000908152604090205460ff1681565b34801561043f57600080fd5b5061023d61044e366004611db5565b610bbe565b34801561045f57600080fd5b5061037561046e366004611db5565b610c32565b34801561047f57600080fd5b5061023d610cb9565b34801561049457600080fd5b506000546001600160a01b0316610281565b3480156104b257600080fd5b50610254610cef565b3480156104c757600080fd5b5061023d6104d6366004611ebb565b610cfe565b3480156104e757600080fd5b5061023d6104f6366004611e3f565b610dc3565b34801561050757600080fd5b50610375610516366004611db5565b600a6020526000908152604090205481565b34801561053457600080fd5b5061023d610543366004611f21565b610dfb565b34801561055457600080fd5b5061023d610563366004612058565b610ea7565b34801561057457600080fd5b50610254610583366004612058565b610ed6565b34801561059457600080fd5b5061025461102a565b61023d6105ab366004612058565b6110b8565b3480156105bc57600080fd5b5061023d6105cb366004611f21565b611285565b3480156105dc57600080fd5b506102086105eb366004611dd0565b611309565b3480156105fc57600080fd5b5061023d61060b366004611db5565b611337565b60006001600160e01b031982166380ac58cd60e01b148061064157506001600160e01b03198216635b5e139f60e01b145b8061065c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146106955760405162461bcd60e51b815260040161068c906121b5565b60405180910390fd5b600d55565b6060600180546106a99061245e565b80601f01602080910402602001604051908101604052809291908181526020018280546106d59061245e565b80156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166107a55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068c565b506000908152600560205260409020546001600160a01b031690565b60006107cc82610b47565b9050806001600160a01b0316836001600160a01b0316141561083a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161068c565b336001600160a01b038216148061085657506108568133611309565b6108c85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161068c565b6108d283836113d2565b505050565b6000546001600160a01b031633146109015760405162461bcd60e51b815260040161068c906121b5565b6001600160a01b0381166109275760405162461bcd60e51b815260040161068c9061223b565b6001600160a01b03166000908152600860205260409020805460ff19169055565b6109523382611440565b61096e5760405162461bcd60e51b815260040161068c906121ea565b6108d2838383611517565b3360009081526008602052604090205460ff16806109a157506000546001600160a01b031633145b6109bd5760405162461bcd60e51b815260040161068c9061227d565b6001600160a01b038116610a135760405162461bcd60e51b815260206004820181905260248201527f20757365724164647265737320697320746865207a65726f2061646472657373604482015260640161068c565b6001600160a01b03166000908152600960205260409020805460ff19169055565b3360009081526008602052604090205460ff1680610a5c57506000546001600160a01b031633145b610a785760405162461bcd60e51b815260040161068c9061227d565b6040514790339082156108fc029083906000818181858888f19350505050158015610aa7573d6000803e3d6000fd5b5050565b6108d283838360405180602001604052806000815250610dc3565b6000546001600160a01b03163314610af05760405162461bcd60e51b815260040161068c906121b5565b8051610aa790600b906020840190611ca8565b3360009081526008602052604090205460ff1680610b2b57506000546001600160a01b031633145b610af05760405162461bcd60e51b815260040161068c9061227d565b6000818152600360205260408120546001600160a01b03168061065c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161068c565b6000546001600160a01b03163314610be85760405162461bcd60e51b815260040161068c906121b5565b6001600160a01b038116610c0e5760405162461bcd60e51b815260040161068c9061223b565b6001600160a01b03166000908152600860205260409020805460ff19166001179055565b60006001600160a01b038216610c9d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161068c565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ce35760405162461bcd60e51b815260040161068c906121b5565b610ced60006116b7565b565b6060600280546106a99061245e565b6001600160a01b038216331415610d575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161068c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dcd3383611440565b610de95760405162461bcd60e51b815260040161068c906121ea565b610df584848484611707565b50505050565b3360009081526008602052604090205460ff1680610e2357506000546001600160a01b031633145b610e3f5760405162461bcd60e51b815260040161068c9061227d565b60005b8151811015610aa757600160096000848481518110610e6357610e636124f4565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e9f81612499565b915050610e42565b6000546001600160a01b03163314610ed15760405162461bcd60e51b815260040161068c906121b5565b600c55565b6000818152600360205260409020546060906001600160a01b0316610f555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161068c565b6000610f5f61173a565b90506000815111610f7f5760405180602001604052806000815250611023565b6040805180820182526005815264173539b7b760d91b60208083019182528351808501855260008082529082015283518085019094529151835290820152819061100290610ffc610fcf87611749565b60408051808201825260008082526020918201528151808301909252825182529182019181019190915290565b90611847565b60405160200161101392919061209d565b6040516020818303038152906040525b9392505050565b600b80546110379061245e565b80601f01602080910402602001604051908101604052809291908181526020018280546110639061245e565b80156110b05780601f10611085576101008083540402835291602001916110b0565b820191906000526020600020905b81548152906001019060200180831161109357829003601f168201915b505050505081565b612710816110c560075490565b6110cf91906122e5565b111561111d5760405162461bcd60e51b815260206004820152601a60248201527f4d6178206d696e7420616d6f756e742069732072656163686564000000000000604482015260640161068c565b336000908152600a602052604090205460149061113b9083906122e5565b111561119e5760405162461bcd60e51b815260206004820152602c60248201527f526567756c6172206d656d6265722063616e206f6e6c79203230204e4654207460448201526b0ded6cadce640c2e840dac2f60a31b606482015260840161068c565b3360009081526009602052604090205460ff16156111e75734600d54826111c591906123fc565b146111e25760405162461bcd60e51b815260040161068c9061211c565b611213565b34600c54826111f691906123fc565b146112135760405162461bcd60e51b815260040161068c9061211c565b60005b818110156112565761122c600780546001019055565b600061123760075490565b905061124333826118df565b508061124e81612499565b915050611216565b50336000908152600a60205260409020546112729082906122e5565b336000908152600a602052604090205550565b3360009081526008602052604090205460ff16806112ad57506000546001600160a01b031633145b6112c95760405162461bcd60e51b815260040161068c9061227d565b60005b8151811015610aa7576112f78282815181106112ea576112ea6124f4565b60200260200101516118f9565b8061130181612499565b9150506112cc565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b031633146113615760405162461bcd60e51b815260040161068c906121b5565b6001600160a01b0381166113c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161068c565b6113cf816116b7565b50565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061140782610b47565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600360205260408120546001600160a01b03166114b95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161068c565b60006114c483610b47565b9050806001600160a01b0316846001600160a01b031614806114ff5750836001600160a01b03166114f48461072c565b6001600160a01b0316145b8061150f575061150f8185611309565b949350505050565b826001600160a01b031661152a82610b47565b6001600160a01b0316146115925760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161068c565b6001600160a01b0382166115f45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161068c565b6115ff6000826113d2565b6001600160a01b038316600090815260046020526040812080546001929061162890849061241b565b90915550506001600160a01b03821660009081526004602052604081208054600192906116569084906122e5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611712848484611517565b61171e848484846119b5565b610df55760405162461bcd60e51b815260040161068c90612163565b6060600b80546106a99061245e565b60608161176d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611797578061178181612499565b91506117909050600a836122fd565b9150611771565b60008167ffffffffffffffff8111156117b2576117b261250a565b6040519080825280601f01601f1916602001820160405280156117dc576020820181803683370190505b5090505b841561150f576117f160018361241b565b91506117fe600a866124b4565b6118099060306122e5565b60f81b81838151811061181e5761181e6124f4565b60200101906001600160f81b031916908160001a905350611840600a866122fd565b94506117e0565b8051825160609160009161185b91906122e5565b67ffffffffffffffff8111156118735761187361250a565b6040519080825280601f01601f19166020018201604052801561189d576020820181803683370190505b50905060006020820190506118bb8186602001518760000151611ac2565b84516118d7906118cb90836122e5565b60208601518651611ac2565b509392505050565b610aa7828260405180602001604052806000815250611b33565b60005b60058110156119975761271061191160075490565b111561195f5760405162461bcd60e51b815260206004820152601a60248201527f4d6178206d696e7420616d6f756e742069732072656163686564000000000000604482015260640161068c565b61196d600780546001019055565b600061197860075490565b905061198483826118df565b508061198f81612499565b9150506118fc565b506001600160a01b03166000908152600a6020526040902060059055565b60006001600160a01b0384163b15611ab757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119f99033908990889088906004016120cc565b602060405180830381600087803b158015611a1357600080fd5b505af1925050508015611a43575060408051601f3d908101601f19168201909252611a4091810190611ff2565b60015b611a9d573d808015611a71576040519150601f19603f3d011682016040523d82523d6000602084013e611a76565b606091505b508051611a955760405162461bcd60e51b815260040161068c90612163565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150f565b506001949350505050565b60208110611afa5781518352611ad96020846122e5565b9250611ae66020836122e5565b9150611af360208261241b565b9050611ac2565b60006001611b0983602061241b565b611b1590610100612354565b611b1f919061241b565b925184518416931916929092179092525050565b611b3d8383611b66565b611b4a60008484846119b5565b6108d25760405162461bcd60e51b815260040161068c90612163565b6001600160a01b038216611bbc5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161068c565b6000818152600360205260409020546001600160a01b031615611c215760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161068c565b6001600160a01b0382166000908152600460205260408120805460019290611c4a9084906122e5565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611cb49061245e565b90600052602060002090601f016020900481019282611cd65760008555611d1c565b82601f10611cef57805160ff1916838001178555611d1c565b82800160010185558215611d1c579182015b82811115611d1c578251825591602001919060010190611d01565b50611d28929150611d2c565b5090565b5b80821115611d285760008155600101611d2d565b600067ffffffffffffffff831115611d5b57611d5b61250a565b611d6e601f8401601f19166020016122b4565b9050828152838383011115611d8257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611db057600080fd5b919050565b600060208284031215611dc757600080fd5b61102382611d99565b60008060408385031215611de357600080fd5b611dec83611d99565b9150611dfa60208401611d99565b90509250929050565b600080600060608486031215611e1857600080fd5b611e2184611d99565b9250611e2f60208501611d99565b9150604084013590509250925092565b60008060008060808587031215611e5557600080fd5b611e5e85611d99565b9350611e6c60208601611d99565b925060408501359150606085013567ffffffffffffffff811115611e8f57600080fd5b8501601f81018713611ea057600080fd5b611eaf87823560208401611d41565b91505092959194509250565b60008060408385031215611ece57600080fd5b611ed783611d99565b915060208301358015158114611eec57600080fd5b809150509250929050565b60008060408385031215611f0a57600080fd5b611f1383611d99565b946020939093013593505050565b60006020808385031215611f3457600080fd5b823567ffffffffffffffff80821115611f4c57600080fd5b818501915085601f830112611f6057600080fd5b813581811115611f7257611f7261250a565b8060051b9150611f838483016122b4565b8181528481019084860184860187018a1015611f9e57600080fd5b600095505b83861015611fc857611fb481611d99565b835260019590950194918601918601611fa3565b5098975050505050505050565b600060208284031215611fe757600080fd5b813561102381612520565b60006020828403121561200457600080fd5b815161102381612520565b60006020828403121561202157600080fd5b813567ffffffffffffffff81111561203857600080fd5b8201601f8101841361204957600080fd5b61150f84823560208401611d41565b60006020828403121561206a57600080fd5b5035919050565b60008151808452612089816020860160208601612432565b601f01601f19169290920160200192915050565b600083516120af818460208801612432565b8351908301906120c3818360208801612432565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ff90830184612071565b9695505050505050565b6020815260006110236020830184612071565b60208082526027908201527f596f752073656e742074686520696e636f727265637420616d6f756e74206f6660408201526620746f6b656e7360c81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526022908201527f2061646d696e204164647265737320697320746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601f908201527f2063616c6c657220686173206e6f206d696e74696e6720726967687421212100604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156122dd576122dd61250a565b604052919050565b600082198211156122f8576122f86124c8565b500190565b60008261230c5761230c6124de565b500490565b600181815b8085111561234c578160001904821115612332576123326124c8565b8085161561233f57918102915b93841c9390800290612316565b509250929050565b6000611023838360008261236a5750600161065c565b816123775750600061065c565b816001811461238d5760028114612397576123b3565b600191505061065c565b60ff8411156123a8576123a86124c8565b50506001821b61065c565b5060208310610133831016604e8410600b84101617156123d6575081810a61065c565b6123e08383612311565b80600019048211156123f4576123f46124c8565b029392505050565b6000816000190483118215151615612416576124166124c8565b500290565b60008282101561242d5761242d6124c8565b500390565b60005b8381101561244d578181015183820152602001612435565b83811115610df55750506000910152565b600181811c9082168061247257607f821691505b6020821081141561249357634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124ad576124ad6124c8565b5060010190565b6000826124c3576124c36124de565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113cf57600080fdfea2646970667358221220af913ff3596aad4317f48b423f89ac3eac5cac2250fc9e2230af28cf273df36364736f6c63430008070033

Deployed Bytecode Sourcemap

39094:4511:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22283:355;;;;;;;;;;-1:-1:-1;22283:355:0;;;;;:::i;:::-;;:::i;:::-;;;6389:14:1;;6382:22;6364:41;;6352:2;6337:18;22283:355:0;;;;;;;;42952:112;;;;;;;;;;-1:-1:-1;42952:112:0;;;;;:::i;:::-;;:::i;:::-;;23452:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25181:308::-;;;;;;;;;;-1:-1:-1;25181:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5687:32:1;;;5669:51;;5657:2;5642:18;25181:308:0;5523:203:1;24704:411:0;;;;;;;;;;-1:-1:-1;24704:411:0;;;;;:::i;:::-;;:::i;41731:229::-;;;;;;;;;;-1:-1:-1;41731:229:0;;;;;:::i;:::-;;:::i;26240:376::-;;;;;;;;;;-1:-1:-1;26240:376:0;;;;;:::i;:::-;;:::i;39255:39::-;;;;;;;;;;-1:-1:-1;39255:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41968:198;;;;;;;;;;-1:-1:-1;41968:198:0;;;;;:::i;:::-;;:::i;42289:143::-;;;;;;;;;;;;;:::i;39213:33::-;;;;;;;;;;-1:-1:-1;39213:33:0;;;;;;;;;15468:25:1;;;15456:2;15441:18;39213:33:0;15322:177:1;26687:185:0;;;;;;;;;;-1:-1:-1;26687:185:0;;;;;:::i;:::-;;:::i;40178:101::-;;;;;;;;;;-1:-1:-1;40178:101:0;;;;;:::i;:::-;;:::i;42174:107::-;;;;;;;;;;-1:-1:-1;42174:107:0;;;;;:::i;:::-;;:::i;23059:326::-;;;;;;;;;;-1:-1:-1;23059:326:0;;;;;:::i;:::-;;:::i;39301:45::-;;;;;;;;;;-1:-1:-1;39301:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41498:225;;;;;;;;;;-1:-1:-1;41498:225:0;;;;;:::i;:::-;;:::i;22702:295::-;;;;;;;;;;-1:-1:-1;22702:295:0;;;;;:::i;:::-;;:::i;37017:94::-;;;;;;;;;;;;;:::i;36366:87::-;;;;;;;;;;-1:-1:-1;36412:7:0;36439:6;-1:-1:-1;;;;;36439:6:0;36366:87;;23621:104;;;;;;;;;;;;;:::i;25561:327::-;;;;;;;;;;-1:-1:-1;25561:327:0;;;;;:::i;:::-;;:::i;26943:365::-;;;;;;;;;;-1:-1:-1;26943:365:0;;;;;:::i;:::-;;:::i;39353:48::-;;;;;;;;;;-1:-1:-1;39353:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;42631:211;;;;;;;;;;-1:-1:-1;42631:211:0;;;;;:::i;:::-;;:::i;42850:94::-;;;;;;;;;;-1:-1:-1;42850:94:0;;;;;:::i;:::-;;:::i;23796:504::-;;;;;;;;;;-1:-1:-1;23796:504:0;;;;;:::i;:::-;;:::i;39410:26::-;;;;;;;;;;;;;:::i;40287:836::-;;;;;;:::i;:::-;;:::i;42440:183::-;;;;;;;;;;-1:-1:-1;42440:183:0;;;;;:::i;:::-;;:::i;25959:214::-;;;;;;;;;;-1:-1:-1;25959:214:0;;;;;:::i;:::-;;:::i;37266:229::-;;;;;;;;;;-1:-1:-1;37266:229:0;;;;;:::i;:::-;;:::i;22283:355::-;22430:4;-1:-1:-1;;;;;;22472:40:0;;-1:-1:-1;;;22472:40:0;;:105;;-1:-1:-1;;;;;;;22529:48:0;;-1:-1:-1;;;22529:48:0;22472:105;:158;;;-1:-1:-1;;;;;;;;;;11684:40:0;;;22594:36;22452:178;22283:355;-1:-1:-1;;22283:355:0:o;42952:112::-;36412:7;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;36586:23;36578:68;;;;-1:-1:-1;;;36578:68:0;;;;;;;:::i;:::-;;;;;;;;;43028:19:::1;:28:::0;42952:112::o;23452:100::-;23506:13;23539:5;23532:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23452:100;:::o;25181:308::-;25302:7;28944:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28944:16:0;25327:110;;;;-1:-1:-1;;;25327:110:0;;11573:2:1;25327:110:0;;;11555:21:1;11612:2;11592:18;;;11585:30;11651:34;11631:18;;;11624:62;-1:-1:-1;;;11702:18:1;;;11695:42;11754:19;;25327:110:0;11371:408:1;25327:110:0;-1:-1:-1;25457:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25457:24:0;;25181:308::o;24704:411::-;24785:13;24801:23;24816:7;24801:14;:23::i;:::-;24785:39;;24849:5;-1:-1:-1;;;;;24843:11:0;:2;-1:-1:-1;;;;;24843:11:0;;;24835:57;;;;-1:-1:-1;;;24835:57:0;;13586:2:1;24835:57:0;;;13568:21:1;13625:2;13605:18;;;13598:30;13664:34;13644:18;;;13637:62;-1:-1:-1;;;13715:18:1;;;13708:31;13756:19;;24835:57:0;13384:397:1;24835:57:0;717:10;-1:-1:-1;;;;;24927:21:0;;;;:62;;-1:-1:-1;24952:37:0;24969:5;717:10;25959:214;:::i;24952:37::-;24905:168;;;;-1:-1:-1;;;24905:168:0;;9966:2:1;24905:168:0;;;9948:21:1;10005:2;9985:18;;;9978:30;10044:34;10024:18;;;10017:62;10115:26;10095:18;;;10088:54;10159:19;;24905:168:0;9764:420:1;24905:168:0;25086:21;25095:2;25099:7;25086:8;:21::i;:::-;24774:341;24704:411;;:::o;41731:229::-;36412:7;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;36586:23;36578:68;;;;-1:-1:-1;;;36578:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41824:26:0;::::1;41802:110;;;;-1:-1:-1::0;;;41802:110:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41923:21:0::1;41947:5;41923:21:::0;;;:7:::1;:21;::::0;;;;:29;;-1:-1:-1;;41923:29:0::1;::::0;;41731:229::o;26240:376::-;26449:41;717:10;26482:7;26449:18;:41::i;:::-;26427:140;;;;-1:-1:-1;;;26427:140:0;;;;;;;:::i;:::-;26580:28;26590:4;26596:2;26600:7;26580:9;:28::i;41968:198::-;717:10;39922:21;;;;:7;:21;;;;;;;;;:48;;-1:-1:-1;36412:7:0;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;39947:23;39922:48;39900:129;;;;-1:-1:-1;;;39900:129:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42051:25:0;::::1;42043:70;;;::::0;-1:-1:-1;;;42043:70:0;;9605:2:1;42043:70:0::1;::::0;::::1;9587:21:1::0;;;9624:18;;;9617:30;9683:34;9663:18;;;9656:62;9735:18;;42043:70:0::1;9403:356:1::0;42043:70:0::1;-1:-1:-1::0;;;;;42124:26:0::1;42153:5;42124:26:::0;;;:13:::1;:26;::::0;;;;:34;;-1:-1:-1;;42124:34:0::1;::::0;;41968:198::o;42289:143::-;717:10;39922:21;;;;:7;:21;;;;;;;;;:48;;-1:-1:-1;36412:7:0;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;39947:23;39922:48;39900:129;;;;-1:-1:-1;;;39900:129:0;;;;;;;:::i;:::-;42387:37:::1;::::0;42355:21:::1;::::0;42395:10:::1;::::0;42387:37;::::1;;;::::0;42355:21;;42337:15:::1;42387:37:::0;42337:15;42387:37;42355:21;42395:10;42387:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42326:106;42289:143::o:0;26687:185::-;26825:39;26842:4;26848:2;26852:7;26825:39;;;;;;;;;;;;:16;:39::i;40178:101::-;36412:7;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;36586:23;36578:68;;;;-1:-1:-1;;;36578:68:0;;;;;;;:::i;:::-;40249:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;42174:107::-:0;717:10;39922:21;;;;:7;:21;;;;;;;;;:48;;-1:-1:-1;36412:7:0;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;39947:23;39922:48;39900:129;;;;-1:-1:-1;;;39900:129:0;;;;;;;:::i;23059:326::-;23176:7;23217:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23217:16:0;23266:19;23244:110;;;;-1:-1:-1;;;23244:110:0;;10802:2:1;23244:110:0;;;10784:21:1;10841:2;10821:18;;;10814:30;10880:34;10860:18;;;10853:62;-1:-1:-1;;;10931:18:1;;;10924:39;10980:19;;23244:110:0;10600:405:1;41498:225:0;36412:7;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;36586:23;36578:68;;;;-1:-1:-1;;;36578:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41588:26:0;::::1;41566:110;;;;-1:-1:-1::0;;;41566:110:0::1;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41687:21:0::1;;::::0;;;:7:::1;:21;::::0;;;;:28;;-1:-1:-1;;41687:28:0::1;41711:4;41687:28;::::0;;41498:225::o;22702:295::-;22819:7;-1:-1:-1;;;;;22866:19:0;;22844:111;;;;-1:-1:-1;;;22844:111:0;;10391:2:1;22844:111:0;;;10373:21:1;10430:2;10410:18;;;10403:30;10469:34;10449:18;;;10442:62;-1:-1:-1;;;10520:18:1;;;10513:40;10570:19;;22844:111:0;10189:406:1;22844:111:0;-1:-1:-1;;;;;;22973:16:0;;;;;:9;:16;;;;;;;22702:295::o;37017:94::-;36412:7;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;36586:23;36578:68;;;;-1:-1:-1;;;36578:68:0;;;;;;;:::i;:::-;37082:21:::1;37100:1;37082:9;:21::i;:::-;37017:94::o:0;23621:104::-;23677:13;23710:7;23703:14;;;;;:::i;25561:327::-;-1:-1:-1;;;;;25696:24:0;;717:10;25696:24;;25688:62;;;;-1:-1:-1;;;25688:62:0;;8838:2:1;25688:62:0;;;8820:21:1;8877:2;8857:18;;;8850:30;8916:27;8896:18;;;8889:55;8961:18;;25688:62:0;8636:349:1;25688:62:0;717:10;25763:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25763:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25763:53:0;;;;;;;;;;25832:48;;6364:41:1;;;25763:42:0;;717:10;25832:48;;6337:18:1;25832:48:0;;;;;;;25561:327;;:::o;26943:365::-;27132:41;717:10;27165:7;27132:18;:41::i;:::-;27110:140;;;;-1:-1:-1;;;27110:140:0;;;;;;;:::i;:::-;27261:39;27275:4;27281:2;27285:7;27294:5;27261:13;:39::i;:::-;26943:365;;;;:::o;42631:211::-;717:10;39922:21;;;;:7;:21;;;;;;;;;:48;;-1:-1:-1;36412:7:0;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;39947:23;39922:48;39900:129;;;;-1:-1:-1;;;39900:129:0;;;;;;;:::i;:::-;42727:6:::1;42722:113;42743:13;:20;42739:1;:24;42722:113;;;42819:4;42785:13;:31;42799:13;42813:1;42799:16;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;42785:31:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;42785:31:0;:38;;-1:-1:-1;;42785:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42765:3;::::1;::::0;::::1;:::i;:::-;;;;42722:113;;42850:94:::0;36412:7;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;36586:23;36578:68;;;;-1:-1:-1;;;36578:68:0;;;;;;;:::i;:::-;42917:10:::1;:19:::0;42850:94::o;23796:504::-;28920:4;28944:16;;;:7;:16;;;;;;23914:13;;-1:-1:-1;;;;;28944:16:0;23945:113;;;;-1:-1:-1;;;23945:113:0;;13170:2:1;23945:113:0;;;13152:21:1;13209:2;13189:18;;;13182:30;13248:34;13228:18;;;13221:62;-1:-1:-1;;;13299:18:1;;;13292:45;13354:19;;23945:113:0;12968:411:1;23945:113:0;24071:21;24095:10;:8;:10::i;:::-;24071:34;;24160:1;24142:7;24136:21;:25;:156;;;;;;;;;;;;;;;;;24250:15;;;;;;;;;;;-1:-1:-1;;;24250:15:0;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;19761:30:0;;;;;;;;19767:18;;19761:30;;;;;;24205:7;;24214:54;;:28;:18;:7;:16;:18::i;:::-;-1:-1:-1;;;;;;;;;;;;;;;;;19761:30:0;;;;;;;;19767:18;;19761:30;;19718:15;;;19761:30;;;;;;;;19583:216;24214:28;:35;;:54::i;:::-;24188:81;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24136:156;24116:176;23796:504;-1:-1:-1;;;23796:504:0:o;39410:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40287:836::-;40389:5;40379:6;40357:19;:9;38533:14;;38441:114;40357:19;:28;;;;:::i;:::-;:37;;40349:76;;;;-1:-1:-1;;;40349:76:0;;14406:2:1;40349:76:0;;;14388:21:1;14445:2;14425:18;;;14418:30;14484:28;14464:18;;;14457:56;14530:18;;40349:76:0;14204:350:1;40349:76:0;40472:10;40458:25;;;;:13;:25;;;;;;40496:2;;40458:34;;40486:6;;40458:34;:::i;:::-;:40;;40436:134;;;;-1:-1:-1;;;40436:134:0;;11986:2:1;40436:134:0;;;11968:21:1;12025:2;12005:18;;;11998:30;12064:34;12044:18;;;12037:62;-1:-1:-1;;;12115:18:1;;;12108:42;12167:19;;40436:134:0;11784:408:1;40436:134:0;40599:10;40585:25;;;;:13;:25;;;;;;;;40581:265;;;40666:9;40643:19;;40634:6;:28;;;;:::i;:::-;:41;40626:93;;;;-1:-1:-1;;;40626:93:0;;;;;;;:::i;:::-;40581:265;;;40781:9;40767:10;;40758:6;:19;;;;:::i;:::-;:32;40750:84;;;;-1:-1:-1;;;40750:84:0;;;;;;;:::i;:::-;40861:9;40856:187;40880:6;40876:1;:10;40856:187;;;40908:21;:9;38652:19;;38670:1;38652:19;;;38563:127;40908:21;40944:17;40964:19;:9;38533:14;;38441:114;40964:19;40944:39;;40998:33;41008:10;41021:9;40998;:33::i;:::-;-1:-1:-1;40888:3:0;;;;:::i;:::-;;;;40856:187;;;-1:-1:-1;41095:10:0;41081:25;;;;:13;:25;;;;;;:34;;41109:6;;41081:34;:::i;:::-;41067:10;41053:25;;;;:13;:25;;;;;:62;-1:-1:-1;40287:836:0:o;42440:183::-;717:10;39922:21;;;;:7;:21;;;;;;;;;:48;;-1:-1:-1;36412:7:0;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;39947:23;39922:48;39900:129;;;;-1:-1:-1;;;39900:129:0;;;;;;;:::i;:::-;42523:9:::1;42518:98;42542:8;:15;42538:1;:19;42518:98;;;42577:27;42592:8;42601:1;42592:11;;;;;;;;:::i;:::-;;;;;;;42577:14;:27::i;:::-;42559:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42518:98;;25959:214:::0;-1:-1:-1;;;;;26130:25:0;;;26101:4;26130:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25959:214::o;37266:229::-;36412:7;36439:6;-1:-1:-1;;;;;36439:6:0;717:10;36586:23;36578:68;;;;-1:-1:-1;;;36578:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37369:22:0;::::1;37347:110;;;::::0;-1:-1:-1;;;37347:110:0;;7669:2:1;37347:110:0::1;::::0;::::1;7651:21:1::0;7708:2;7688:18;;;7681:30;7747:34;7727:18;;;7720:62;-1:-1:-1;;;7798:18:1;;;7791:36;7844:19;;37347:110:0::1;7467:402:1::0;37347:110:0::1;37468:19;37478:8;37468:9;:19::i;:::-;37266:229:::0;:::o;32978:174::-;33053:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33053:29:0;-1:-1:-1;;;;;33053:29:0;;;;;;;;:24;;33107:23;33053:24;33107:14;:23::i;:::-;-1:-1:-1;;;;;33098:46:0;;;;;;;;;;;32978:174;;:::o;29149:452::-;29278:4;28944:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28944:16:0;29300:110;;;;-1:-1:-1;;;29300:110:0;;9192:2:1;29300:110:0;;;9174:21:1;9231:2;9211:18;;;9204:30;9270:34;9250:18;;;9243:62;-1:-1:-1;;;9321:18:1;;;9314:42;9373:19;;29300:110:0;8990:408:1;29300:110:0;29421:13;29437:23;29452:7;29437:14;:23::i;:::-;29421:39;;29490:5;-1:-1:-1;;;;;29479:16:0;:7;-1:-1:-1;;;;;29479:16:0;;:64;;;;29536:7;-1:-1:-1;;;;;29512:31:0;:20;29524:7;29512:11;:20::i;:::-;-1:-1:-1;;;;;29512:31:0;;29479:64;:113;;;;29560:32;29577:5;29584:7;29560:16;:32::i;:::-;29471:122;29149:452;-1:-1:-1;;;;29149:452:0:o;32245:615::-;32418:4;-1:-1:-1;;;;;32391:31:0;:23;32406:7;32391:14;:23::i;:::-;-1:-1:-1;;;;;32391:31:0;;32369:122;;;;-1:-1:-1;;;32369:122:0;;12760:2:1;32369:122:0;;;12742:21:1;12799:2;12779:18;;;12772:30;12838:34;12818:18;;;12811:62;-1:-1:-1;;;12889:18:1;;;12882:39;12938:19;;32369:122:0;12558:405:1;32369:122:0;-1:-1:-1;;;;;32510:16:0;;32502:65;;;;-1:-1:-1;;;32502:65:0;;8433:2:1;32502:65:0;;;8415:21:1;8472:2;8452:18;;;8445:30;8511:34;8491:18;;;8484:62;-1:-1:-1;;;8562:18:1;;;8555:34;8606:19;;32502:65:0;8231:400:1;32502:65:0;32684:29;32701:1;32705:7;32684:8;:29::i;:::-;-1:-1:-1;;;;;32726:15:0;;;;;;:9;:15;;;;;:20;;32745:1;;32726:15;:20;;32745:1;;32726:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32757:13:0;;;;;;:9;:13;;;;;:18;;32774:1;;32757:13;:18;;32774:1;;32757:18;:::i;:::-;;;;-1:-1:-1;;32786:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32786:21:0;-1:-1:-1;;;;;32786:21:0;;;;;;;;;32825:27;;32786:16;;32825:27;;;;;;;32245:615;;;:::o;37503:173::-;37559:16;37578:6;;-1:-1:-1;;;;;37595:17:0;;;-1:-1:-1;;;;;;37595:17:0;;;;;;37628:40;;37578:6;;;;;;;37628:40;;37559:16;37628:40;37548:128;37503:173;:::o;28190:352::-;28347:28;28357:4;28363:2;28367:7;28347:9;:28::i;:::-;28408:48;28431:4;28437:2;28441:7;28450:5;28408:22;:48::i;:::-;28386:148;;;;-1:-1:-1;;;28386:148:0;;;;;;;:::i;40057:113::-;40117:13;40150:12;40143:19;;;;;:::i;17592:723::-;17648:13;17869:10;17865:53;;-1:-1:-1;;17896:10:0;;;;;;;;;;;;-1:-1:-1;;;17896:10:0;;;;;17592:723::o;17865:53::-;17943:5;17928:12;17984:78;17991:9;;17984:78;;18017:8;;;;:::i;:::-;;-1:-1:-1;18040:10:0;;-1:-1:-1;18048:2:0;18040:10;;:::i;:::-;;;17984:78;;;18072:19;18104:6;18094:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18094:17:0;;18072:39;;18122:154;18129:10;;18122:154;;18156:11;18166:1;18156:11;;:::i;:::-;;-1:-1:-1;18225:10:0;18233:2;18225:5;:10;:::i;:::-;18212:24;;:2;:24;:::i;:::-;18199:39;;18182:6;18189;18182:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18182:56:0;;;;;;;;-1:-1:-1;18253:11:0;18262:2;18253:11;;:::i;:::-;;;18122:154;;20095:362;20242:10;;20230:9;;20173:13;;20199:17;;20230:22;;20242:10;20230:22;:::i;:::-;20219:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20219:34:0;;20199:54;;20264:11;20316:2;20311:3;20307:12;20297:22;;20331:36;20338:6;20346:4;:9;;;20357:4;:9;;;20331:6;:36::i;:::-;20394:9;;20378:50;;20385:18;;:6;:18;:::i;:::-;20405:10;;;;20417;;20378:6;:50::i;:::-;-1:-1:-1;20446:3:0;20095:362;-1:-1:-1;;;20095:362:0:o;29943:110::-;30019:26;30029:2;30033:7;30019:26;;;;;;;;;;;;:9;:26::i;41131:359::-;41194:9;41189:259;41213:1;41209;:5;41189:259;;;41267:5;41244:19;:9;38533:14;;38441:114;41244:19;:28;;41236:67;;;;-1:-1:-1;;;41236:67:0;;14406:2:1;41236:67:0;;;14388:21:1;14445:2;14425:18;;;14418:30;14484:28;14464:18;;;14457:56;14530:18;;41236:67:0;14204:350:1;41236:67:0;41318:21;:9;38652:19;;38670:1;38652:19;;;38563:127;41318:21;41354:17;41374:19;:9;38533:14;;38441:114;41374:19;41354:39;;41408:28;41418:5;41426:9;41408;:28::i;:::-;-1:-1:-1;41216:3:0;;;;:::i;:::-;;;;41189:259;;;-1:-1:-1;;;;;;41458:20:0;;;;;:13;:20;;;;;41481:1;41458:24;;41131:359::o;33717:984::-;33872:4;-1:-1:-1;;;;;33893:13:0;;1880:20;1928:8;33889:805;;33946:175;;-1:-1:-1;;;33946:175:0;;-1:-1:-1;;;;;33946:36:0;;;;;:175;;717:10;;34040:4;;34067:7;;34097:5;;33946:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33946:175:0;;;;;;;;-1:-1:-1;;33946:175:0;;;;;;;;;;;;:::i;:::-;;;33925:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34308:13:0;;34304:320;;34351:108;;-1:-1:-1;;;34351:108:0;;;;;;;:::i;34304:320::-;34574:6;34568:13;34559:6;34555:2;34551:15;34544:38;33925:714;-1:-1:-1;;;;;;34185:55:0;-1:-1:-1;;;34185:55:0;;-1:-1:-1;34178:62:0;;33889:805;-1:-1:-1;34678:4:0;33717:984;;;;;;:::o;20465:565::-;20600:2;20593:3;:9;20587:170;;20671:10;;20658:24;;20711:10;20719:2;20665:4;20711:10;:::i;:::-;;-1:-1:-1;20736:9:0;20743:2;20736:9;;:::i;:::-;;-1:-1:-1;20604:9:0;20611:2;20604:9;;:::i;:::-;;;20587:170;;;20802:9;20834:1;20822:8;20827:3;20822:2;:8;:::i;:::-;20814:17;;:3;:17;:::i;:::-;:21;;;;:::i;:::-;20889:10;;20945:11;;20941:22;;20901:9;;20885:26;20990:21;;;;20977:35;;;-1:-1:-1;;20465:565:0:o;30280:321::-;30410:18;30416:2;30420:7;30410:5;:18::i;:::-;30461:54;30492:1;30496:2;30500:7;30509:5;30461:22;:54::i;:::-;30439:154;;;;-1:-1:-1;;;30439:154:0;;;;;;;:::i;30937:382::-;-1:-1:-1;;;;;31017:16:0;;31009:61;;;;-1:-1:-1;;;31009:61:0;;11212:2:1;31009:61:0;;;11194:21:1;;;11231:18;;;11224:30;11290:34;11270:18;;;11263:62;11342:18;;31009:61:0;11010:356:1;31009:61:0;28920:4;28944:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28944:16:0;:30;31081:58;;;;-1:-1:-1;;;31081:58:0;;8076:2:1;31081:58:0;;;8058:21:1;8115:2;8095:18;;;8088:30;8154;8134:18;;;8127:58;8202:18;;31081:58:0;7874:352:1;31081:58:0;-1:-1:-1;;;;;31210:13:0;;;;;;:9;:13;;;;;:18;;31227:1;;31210:13;:18;;31227:1;;31210:18;:::i;:::-;;;;-1:-1:-1;;31239:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31239:21:0;-1:-1:-1;;;;;31239:21:0;;;;;;;;31278:33;;31239:16;;;31278:33;;31239:16;;31278:33;30937:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:180::-;4660:6;4713:2;4701:9;4692:7;4688:23;4684:32;4681:52;;;4729:1;4726;4719:12;4681:52;-1:-1:-1;4752:23:1;;4601:180;-1:-1:-1;4601:180:1:o;4786:257::-;4827:3;4865:5;4859:12;4892:6;4887:3;4880:19;4908:63;4964:6;4957:4;4952:3;4948:14;4941:4;4934:5;4930:16;4908:63;:::i;:::-;5025:2;5004:15;-1:-1:-1;;5000:29:1;4991:39;;;;5032:4;4987:50;;4786:257;-1:-1:-1;;4786:257:1:o;5048:470::-;5227:3;5265:6;5259:13;5281:53;5327:6;5322:3;5315:4;5307:6;5303:17;5281:53;:::i;:::-;5397:13;;5356:16;;;;5419:57;5397:13;5356:16;5453:4;5441:17;;5419:57;:::i;:::-;5492:20;;5048:470;-1:-1:-1;;;;5048:470:1:o;5731:488::-;-1:-1:-1;;;;;6000:15:1;;;5982:34;;6052:15;;6047:2;6032:18;;6025:43;6099:2;6084:18;;6077:34;;;6147:3;6142:2;6127:18;;6120:31;;;5925:4;;6168:45;;6193:19;;6185:6;6168:45;:::i;:::-;6160:53;5731:488;-1:-1:-1;;;;;;5731:488:1:o;6416:219::-;6565:2;6554:9;6547:21;6528:4;6585:44;6625:2;6614:9;6610:18;6602:6;6585:44;:::i;6640:403::-;6842:2;6824:21;;;6881:2;6861:18;;;6854:30;6920:34;6915:2;6900:18;;6893:62;-1:-1:-1;;;6986:2:1;6971:18;;6964:37;7033:3;7018:19;;6640:403::o;7048:414::-;7250:2;7232:21;;;7289:2;7269:18;;;7262:30;7328:34;7323:2;7308:18;;7301:62;-1:-1:-1;;;7394:2:1;7379:18;;7372:48;7452:3;7437:19;;7048:414::o;12197:356::-;12399:2;12381:21;;;12418:18;;;12411:30;12477:34;12472:2;12457:18;;12450:62;12544:2;12529:18;;12197:356::o;13786:413::-;13988:2;13970:21;;;14027:2;14007:18;;;14000:30;14066:34;14061:2;14046:18;;14039:62;-1:-1:-1;;;14132:2:1;14117:18;;14110:47;14189:3;14174:19;;13786:413::o;14559:398::-;14761:2;14743:21;;;14800:2;14780:18;;;14773:30;14839:34;14834:2;14819:18;;14812:62;-1:-1:-1;;;14905:2:1;14890:18;;14883:32;14947:3;14932:19;;14559:398::o;14962:355::-;15164:2;15146:21;;;15203:2;15183:18;;;15176:30;15242:33;15237:2;15222:18;;15215:61;15308:2;15293:18;;14962:355::o;15504:275::-;15575:2;15569:9;15640:2;15621:13;;-1:-1:-1;;15617:27:1;15605:40;;15675:18;15660:34;;15696:22;;;15657:62;15654:88;;;15722:18;;:::i;:::-;15758:2;15751:22;15504:275;;-1:-1:-1;15504:275:1:o;15784:128::-;15824:3;15855:1;15851:6;15848:1;15845:13;15842:39;;;15861:18;;:::i;:::-;-1:-1:-1;15897:9:1;;15784:128::o;15917:120::-;15957:1;15983;15973:35;;15988:18;;:::i;:::-;-1:-1:-1;16022:9:1;;15917:120::o;16042:422::-;16131:1;16174:5;16131:1;16188:270;16209:7;16199:8;16196:21;16188:270;;;16268:4;16264:1;16260:6;16256:17;16250:4;16247:27;16244:53;;;16277:18;;:::i;:::-;16327:7;16317:8;16313:22;16310:55;;;16347:16;;;;16310:55;16426:22;;;;16386:15;;;;16188:270;;;16192:3;16042:422;;;;;:::o;16469:131::-;16529:5;16558:36;16585:8;16579:4;16654:5;16684:8;16674:80;;-1:-1:-1;16725:1:1;16739:5;;16674:80;16773:4;16763:76;;-1:-1:-1;16810:1:1;16824:5;;16763:76;16855:4;16873:1;16868:59;;;;16941:1;16936:130;;;;16848:218;;16868:59;16898:1;16889:10;;16912:5;;;16936:130;16973:3;16963:8;16960:17;16957:43;;;16980:18;;:::i;:::-;-1:-1:-1;;17036:1:1;17022:16;;17051:5;;16848:218;;17150:2;17140:8;17137:16;17131:3;17125:4;17122:13;17118:36;17112:2;17102:8;17099:16;17094:2;17088:4;17085:12;17081:35;17078:77;17075:159;;;-1:-1:-1;17187:19:1;;;17219:5;;17075:159;17266:34;17291:8;17285:4;17266:34;:::i;:::-;17336:6;17332:1;17328:6;17324:19;17315:7;17312:32;17309:58;;;17347:18;;:::i;:::-;17385:20;;16605:806;-1:-1:-1;;;16605:806:1:o;17416:168::-;17456:7;17522:1;17518;17514:6;17510:14;17507:1;17504:21;17499:1;17492:9;17485:17;17481:45;17478:71;;;17529:18;;:::i;:::-;-1:-1:-1;17569:9:1;;17416:168::o;17589:125::-;17629:4;17657:1;17654;17651:8;17648:34;;;17662:18;;:::i;:::-;-1:-1:-1;17699:9:1;;17589:125::o;17719:258::-;17791:1;17801:113;17815:6;17812:1;17809:13;17801:113;;;17891:11;;;17885:18;17872:11;;;17865:39;17837:2;17830:10;17801:113;;;17932:6;17929:1;17926:13;17923:48;;;-1:-1:-1;;17967:1:1;17949:16;;17942:27;17719:258::o;17982:380::-;18061:1;18057:12;;;;18104;;;18125:61;;18179:4;18171:6;18167:17;18157:27;;18125:61;18232:2;18224:6;18221:14;18201:18;18198:38;18195:161;;;18278:10;18273:3;18269:20;18266:1;18259:31;18313:4;18310:1;18303:15;18341:4;18338:1;18331:15;18195:161;;17982:380;;;:::o;18367:135::-;18406:3;-1:-1:-1;;18427:17:1;;18424:43;;;18447:18;;:::i;:::-;-1:-1:-1;18494:1:1;18483:13;;18367:135::o;18507:112::-;18539:1;18565;18555:35;;18570:18;;:::i;:::-;-1:-1:-1;18604:9:1;;18507:112::o;18624:127::-;18685:10;18680:3;18676:20;18673:1;18666:31;18716:4;18713:1;18706:15;18740:4;18737:1;18730:15;18756:127;18817:10;18812:3;18808:20;18805:1;18798:31;18848:4;18845:1;18838:15;18872:4;18869:1;18862:15;18888:127;18949:10;18944:3;18940:20;18937:1;18930:31;18980:4;18977:1;18970:15;19004:4;19001:1;18994:15;19020:127;19081:10;19076:3;19072:20;19069:1;19062:31;19112:4;19109:1;19102:15;19136:4;19133:1;19126:15;19152:131;-1:-1:-1;;;;;;19226:32:1;;19216:43;;19206:71;;19273:1;19270;19263:12

Swarm Source

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