ETH Price: $2,063.27 (-0.65%)

Token

Sminem NFT (SMIN)
 

Overview

Max Total Supply

43 SMIN

Holders

24

Transfers

-
0

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
SminemNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-01-21
*/

// SPDX-License-Identifier: MIT


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


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: SminemNFT.sol
// By EvolveNFTs.com


pragma solidity >=0.7.0 <0.9.0;

contract SminemNFT is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.07 ether;
  uint256 public maxSupply = 12288;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public nftPerAddressLimit = 1;

  bool public paused = true;
  bool public revealed = false;

  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;


  constructor() ERC721("Sminem NFT", "SMIN") {
    setHiddenMetadataUri("ipfs://QmejWaXqUt69oshQ6rXVVweP7xWP4Ui2QFhLUTJZHws6c5/");
  }

//ensures minting security

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }

  function mintFromWhiteList(uint256 _mintAmount) public mintCompliance(_mintAmount) {
    require(!paused, "contract is paused");
    require(isWhitelisted(msg.sender), "User is not whitelisted");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
      }
    _mintLoop(msg.sender, _mintAmount);
  } 
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

//returns an array of NFT owners wallets and amounts

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

//hide and unhide metadata

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

//set cost of minting in wei 

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setLimit(uint256 _nftPerAddressLimit) public onlyOwner {
      nftPerAddressLimit = _nftPerAddressLimit;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

//takes a string updates metadata

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

//updates the metadata used before reveal

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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


  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

//checks if a message sender is whitelisted 
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

//whitelist a users if they won a giveaway
  function whiteListUsers(address[] calldata _users) public onlyOwner(){
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

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

function withdraw() external onlyOwner {
        address[4] memory addresses = [
            0x6E9075da365BE17041e704A16d39652a7a54b862,
            0x3577ee30ef3e818FA07b25ac5F3A6Ff9cea1Fc3D,
            0xff39c27b5eAC4a31636ae4Bb2be121f2CD96b2a4,
            0xAc84e43AafDBc3b35C529bcB83492faA8d8083aC
        ];

        uint32[4] memory shares = [
            uint32(1150),
            uint32(200),
            uint32(650),
            uint32(8000)
        ];

        uint256 balance = address(this).balance;

        for (uint32 i = 0; i < addresses.length; i++) {
            uint256 amount = i == addresses.length - 1 ? address(this).balance : balance * shares[i] / 10000;
            payable(addresses[i]).transfer(amount);
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintFromWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftPerAddressLimit","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whiteListUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600891620001fd565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600991620001fd565b5066f8b0a10e470000600b55613000600c556014600d556001600e819055600f805461ffff191690911790553480156200008357600080fd5b50604080518082018252600a81526914db5a5b995b4813919560b21b60208083019182528351808501909452600484526329a6a4a760e11b908401528151919291620000d291600091620001fd565b508051620000e8906001906020840190620001fd565b50505062000105620000ff6200012f60201b60201c565b62000133565b6200012960405180606001604052806036815260200162002b916036913962000185565b620002e0565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001e45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001f990600a906020840190620001fd565b5050565b8280546200020b90620002a3565b90600052602060002090601f0160209004810192826200022f57600085556200027a565b82601f106200024a57805160ff19168380011785556200027a565b828001600101855582156200027a579182015b828111156200027a5782518255916020019190600101906200025d565b50620002889291506200028c565b5090565b5b808211156200028857600081556001016200028d565b600181811c90821680620002b857607f821691505b60208210811415620002da57634e487b7160e01b600052602260045260246000fd5b50919050565b6128a180620002f06000396000f3fe60806040526004361061025c5760003560e01c806362b99ad411610144578063a45ba8e7116100b6578063c87b56dd1161007a578063c87b56dd146106d9578063d5abeb01146106f9578063e0a808531461070f578063e985e9c51461072f578063efbd73f414610778578063f2fde38b1461079857600080fd5b8063a45ba8e71461064e578063b071401b14610663578063b88d4fde14610683578063ba4e5c49146106a3578063ba7d2c76146106c357600080fd5b80638da5cb5b116101085780638da5cb5b146105b25780638e758be0146105d057806394354fd0146105f057806395d89b4114610606578063a0712d681461061b578063a22cb4651461062e57600080fd5b806362b99ad4146105285780636352211e1461053d57806370a082311461055d578063715018a61461057d5780637ec4a6591461059257600080fd5b806327ea6f2b116101dd57806344a0d68a116101a157806344a0d68a1461047a578063475fda0e1461049a5780634fdd43cb146104ba57806351830227146104da5780635503a0e8146104f95780635c975abb1461050e57600080fd5b806327ea6f2b146103d85780633af32abf146103f85780633ccfd60b1461041857806342842e0e1461042d578063438b63001461044d57600080fd5b806316ba10e01161022457806316ba10e01461033657806316c38b3c1461035657806318160ddd1461037657806318cae2691461038b57806323b872dd146103b857600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806313faede614610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612389565b6107b8565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab61080a565b60405161028d91906125b0565b3480156102c457600080fd5b506102d86102d3366004612407565b61089c565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046122d6565b610936565b005b34801561031e57600080fd5b50610328600b5481565b60405190815260200161028d565b34801561034257600080fd5b506103106103513660046123c1565b610a4c565b34801561036257600080fd5b5061031061037136600461236f565b610a8d565b34801561038257600080fd5b50610328610aca565b34801561039757600080fd5b506103286103a63660046121ad565b60116020526000908152604090205481565b3480156103c457600080fd5b506103106103d33660046121f9565b610ada565b3480156103e457600080fd5b506103106103f3366004612407565b610b0b565b34801561040457600080fd5b506102816104133660046121ad565b610b3a565b34801561042457600080fd5b50610310610bb2565b34801561043957600080fd5b506103106104483660046121f9565b610d79565b34801561045957600080fd5b5061046d6104683660046121ad565b610d94565b60405161028d919061256c565b34801561048657600080fd5b50610310610495366004612407565b610e91565b3480156104a657600080fd5b506103106104b53660046122ff565b610ec0565b3480156104c657600080fd5b506103106104d53660046123c1565b610f02565b3480156104e657600080fd5b50600f5461028190610100900460ff1681565b34801561050557600080fd5b506102ab610f3f565b34801561051a57600080fd5b50600f546102819060ff1681565b34801561053457600080fd5b506102ab610fcd565b34801561054957600080fd5b506102d8610558366004612407565b610fda565b34801561056957600080fd5b506103286105783660046121ad565b611051565b34801561058957600080fd5b506103106110d8565b34801561059e57600080fd5b506103106105ad3660046123c1565b61110e565b3480156105be57600080fd5b506006546001600160a01b03166102d8565b3480156105dc57600080fd5b506103106105eb366004612407565b61114b565b3480156105fc57600080fd5b50610328600d5481565b34801561061257600080fd5b506102ab6112ff565b610310610629366004612407565b61130e565b34801561063a57600080fd5b506103106106493660046122ad565b611422565b34801561065a57600080fd5b506102ab6114e7565b34801561066f57600080fd5b5061031061067e366004612407565b6114f4565b34801561068f57600080fd5b5061031061069e366004612234565b611523565b3480156106af57600080fd5b506102d86106be366004612407565b611555565b3480156106cf57600080fd5b50610328600e5481565b3480156106e557600080fd5b506102ab6106f4366004612407565b61157f565b34801561070557600080fd5b50610328600c5481565b34801561071b57600080fd5b5061031061072a36600461236f565b6116fe565b34801561073b57600080fd5b5061028161074a3660046121c7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078457600080fd5b5061031061079336600461241f565b611742565b3480156107a457600080fd5b506103106107b33660046121ad565b6117da565b60006001600160e01b031982166380ac58cd60e01b14806107e957506001600160e01b03198216635b5e139f60e01b145b8061080457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461081990612785565b80601f016020809104026020016040519081016040528092919081815260200182805461084590612785565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061094182610fda565b9050806001600160a01b0316836001600160a01b031614156109af5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610911565b336001600160a01b03821614806109cb57506109cb813361074a565b610a3d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610911565b610a478383611875565b505050565b6006546001600160a01b03163314610a765760405162461bcd60e51b815260040161091190612643565b8051610a89906009906020840190612001565b5050565b6006546001600160a01b03163314610ab75760405162461bcd60e51b815260040161091190612643565b600f805460ff1916911515919091179055565b6000610ad560075490565b905090565b610ae433826118e3565b610b005760405162461bcd60e51b8152600401610911906126a6565b610a478383836119da565b6006546001600160a01b03163314610b355760405162461bcd60e51b815260040161091190612643565b600e55565b6000805b601054811015610ba957826001600160a01b031660108281548110610b7357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b975750600192915050565b80610ba1816127c0565b915050610b3e565b50600092915050565b6006546001600160a01b03163314610bdc5760405162461bcd60e51b815260040161091190612643565b6040805160808082018352736e9075da365be17041e704a16d39652a7a54b8628252733577ee30ef3e818fa07b25ac5f3a6ff9cea1fc3d60208084019190915273ff39c27b5eac4a31636ae4bb2be121f2cd96b2a48385015273ac84e43aafdbc3b35c529bcb83492faa8d8083ac6060808501919091528451928301855261047e835260c89183019190915261028a93820193909352611f4092810192909252904760005b60048163ffffffff161015610d73576000610c9e60016004612742565b8263ffffffff1614610cf757612710848363ffffffff1660048110610cd357634e487b7160e01b600052603260045260246000fd5b6020020151610ce89063ffffffff1685612723565b610cf2919061270f565b610cf9565b475b9050848263ffffffff1660048110610d2157634e487b7160e01b600052603260045260246000fd5b60200201516001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610d5e573d6000803e3d6000fd5b50508080610d6b906127db565b915050610c81565b50505050565b610a4783838360405180602001604052806000815250611523565b60606000610da183611051565b905060008167ffffffffffffffff811115610dcc57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610df5578160200160208202803683370190505b509050600160005b8381108015610e0e5750600c548211155b15610e87576000610e1e83610fda565b9050866001600160a01b0316816001600160a01b03161415610e745782848381518110610e5b57634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610e70816127c0565b9250505b82610e7e816127c0565b93505050610dfd565b5090949350505050565b6006546001600160a01b03163314610ebb5760405162461bcd60e51b815260040161091190612643565b600b55565b6006546001600160a01b03163314610eea5760405162461bcd60e51b815260040161091190612643565b610ef660106000612085565b610a47601083836120a3565b6006546001600160a01b03163314610f2c5760405162461bcd60e51b815260040161091190612643565b8051610a8990600a906020840190612001565b60098054610f4c90612785565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7890612785565b8015610fc55780601f10610f9a57610100808354040283529160200191610fc5565b820191906000526020600020905b815481529060010190602001808311610fa857829003601f168201915b505050505081565b60088054610f4c90612785565b6000818152600260205260408120546001600160a01b0316806108045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610911565b60006001600160a01b0382166110bc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610911565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111025760405162461bcd60e51b815260040161091190612643565b61110c6000611b7a565b565b6006546001600160a01b031633146111385760405162461bcd60e51b815260040161091190612643565b8051610a89906008906020840190612001565b8060008111801561115e5750600d548111155b61117a5760405162461bcd60e51b815260040161091190612615565b600c548161118760075490565b61119191906126f7565b11156111af5760405162461bcd60e51b815260040161091190612678565b600f5460ff16156111f75760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610911565b61120033610b3a565b61124c5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610911565b33600090815260116020526040902054600e5461126984836126f7565b11156112b75760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610911565b60015b8381116112f4573360009081526011602052604081208054916112dc836127c0565b919050555080806112ec906127c0565b9150506112ba565b50610a473384611bcc565b60606001805461081990612785565b806000811180156113215750600d548111155b61133d5760405162461bcd60e51b815260040161091190612615565b600c548161134a60075490565b61135491906126f7565b11156113725760405162461bcd60e51b815260040161091190612678565b600f5460ff16156113c55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610911565b81600b546113d39190612723565b3410156114185760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610911565b610a893383611bcc565b6001600160a01b03821633141561147b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610911565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a8054610f4c90612785565b6006546001600160a01b0316331461151e5760405162461bcd60e51b815260040161091190612643565b600d55565b61152d33836118e3565b6115495760405162461bcd60e51b8152600401610911906126a6565b610d7384848484611c09565b6010818154811061156557600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166115fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610911565b600f54610100900460ff1661169f57600a805461161a90612785565b80601f016020809104026020016040519081016040528092919081815260200182805461164690612785565b80156116935780601f1061166857610100808354040283529160200191611693565b820191906000526020600020905b81548152906001019060200180831161167657829003601f168201915b50505050509050919050565b60006116a9611c3c565b905060008151116116c957604051806020016040528060008152506116f7565b806116d384611c4b565b60096040516020016116e79392919061246d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146117285760405162461bcd60e51b815260040161091190612643565b600f80549115156101000261ff0019909216919091179055565b816000811180156117555750600d548111155b6117715760405162461bcd60e51b815260040161091190612615565b600c548161177e60075490565b61178891906126f7565b11156117a65760405162461bcd60e51b815260040161091190612678565b6006546001600160a01b031633146117d05760405162461bcd60e51b815260040161091190612643565b610a478284611bcc565b6006546001600160a01b031633146118045760405162461bcd60e51b815260040161091190612643565b6001600160a01b0381166118695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610911565b61187281611b7a565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118aa82610fda565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661195c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610911565b600061196783610fda565b9050806001600160a01b0316846001600160a01b031614806119a25750836001600160a01b03166119978461089c565b6001600160a01b0316145b806119d257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119ed82610fda565b6001600160a01b031614611a555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610911565b6001600160a01b038216611ab75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610911565b611ac2600082611875565b6001600160a01b0383166000908152600360205260408120805460019290611aeb908490612742565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b199084906126f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a4757611be5600780546001019055565b611bf783611bf260075490565b611d65565b80611c01816127c0565b915050611bcf565b611c148484846119da565b611c2084848484611d7f565b610d735760405162461bcd60e51b8152600401610911906125c3565b60606008805461081990612785565b606081611c6f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c995780611c83816127c0565b9150611c929050600a8361270f565b9150611c73565b60008167ffffffffffffffff811115611cc257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cec576020820181803683370190505b5090505b84156119d257611d01600183612742565b9150611d0e600a866127ff565b611d199060306126f7565b60f81b818381518110611d3c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d5e600a8661270f565b9450611cf0565b610a89828260405180602001604052806000815250611e8c565b60006001600160a01b0384163b15611e8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dc390339089908890889060040161252f565b602060405180830381600087803b158015611ddd57600080fd5b505af1925050508015611e0d575060408051601f3d908101601f19168201909252611e0a918101906123a5565b60015b611e67573d808015611e3b576040519150601f19603f3d011682016040523d82523d6000602084013e611e40565b606091505b508051611e5f5760405162461bcd60e51b8152600401610911906125c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119d2565b506001949350505050565b611e968383611ebf565b611ea36000848484611d7f565b610a475760405162461bcd60e51b8152600401610911906125c3565b6001600160a01b038216611f155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610911565b6000818152600260205260409020546001600160a01b031615611f7a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610911565b6001600160a01b0382166000908152600360205260408120805460019290611fa39084906126f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461200d90612785565b90600052602060002090601f01602090048101928261202f5760008555612075565b82601f1061204857805160ff1916838001178555612075565b82800160010185558215612075579182015b8281111561207557825182559160200191906001019061205a565b506120819291506120f6565b5090565b508054600082559060005260206000209081019061187291906120f6565b828054828255906000526020600020908101928215612075579160200282015b828111156120755781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120c3565b5b8082111561208157600081556001016120f7565b600067ffffffffffffffff808411156121265761212661283f565b604051601f8501601f19908116603f0116810190828211818310171561214e5761214e61283f565b8160405280935085815286868601111561216757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461219857600080fd5b919050565b8035801515811461219857600080fd5b6000602082840312156121be578081fd5b6116f782612181565b600080604083850312156121d9578081fd5b6121e283612181565b91506121f060208401612181565b90509250929050565b60008060006060848603121561220d578081fd5b61221684612181565b925061222460208501612181565b9150604084013590509250925092565b60008060008060808587031215612249578081fd5b61225285612181565b935061226060208601612181565b925060408501359150606085013567ffffffffffffffff811115612282578182fd5b8501601f81018713612292578182fd5b6122a18782356020840161210b565b91505092959194509250565b600080604083850312156122bf578182fd5b6122c883612181565b91506121f06020840161219d565b600080604083850312156122e8578182fd5b6122f183612181565b946020939093013593505050565b60008060208385031215612311578182fd5b823567ffffffffffffffff80821115612328578384fd5b818501915085601f83011261233b578384fd5b813581811115612349578485fd5b8660208260051b850101111561235d578485fd5b60209290920196919550909350505050565b600060208284031215612380578081fd5b6116f78261219d565b60006020828403121561239a578081fd5b81356116f781612855565b6000602082840312156123b6578081fd5b81516116f781612855565b6000602082840312156123d2578081fd5b813567ffffffffffffffff8111156123e8578182fd5b8201601f810184136123f8578182fd5b6119d28482356020840161210b565b600060208284031215612418578081fd5b5035919050565b60008060408385031215612431578182fd5b823591506121f060208401612181565b60008151808452612459816020860160208601612759565b601f01601f19169290920160200192915050565b6000845160206124808285838a01612759565b8551918401916124938184848a01612759565b85549201918390600181811c90808316806124af57607f831692505b8583108114156124cd57634e487b7160e01b88526022600452602488fd5b8080156124e157600181146124f25761251e565b60ff1985168852838801955061251e565b60008b815260209020895b858110156125165781548a8201529084019088016124fd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256290830184612441565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125a457835183529284019291840191600101612588565b50909695505050505050565b6020815260006116f76020830184612441565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561270a5761270a612813565b500190565b60008261271e5761271e612829565b500490565b600081600019048311821515161561273d5761273d612813565b500290565b60008282101561275457612754612813565b500390565b60005b8381101561277457818101518382015260200161275c565b83811115610d735750506000910152565b600181811c9082168061279957607f821691505b602082108114156127ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127d4576127d4612813565b5060010190565b600063ffffffff808316818114156127f5576127f5612813565b6001019392505050565b60008261280e5761280e612829565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461187257600080fdfea2646970667358221220b4bd6106c439a1db72ab70d133049b905200f1213eae66bf4dc32712705b583264736f6c63430008040033697066733a2f2f516d656a57615871557436396f736851367258565677655037785750345569325146684c55544a5a4877733663352f

Deployed Bytecode

0x60806040526004361061025c5760003560e01c806362b99ad411610144578063a45ba8e7116100b6578063c87b56dd1161007a578063c87b56dd146106d9578063d5abeb01146106f9578063e0a808531461070f578063e985e9c51461072f578063efbd73f414610778578063f2fde38b1461079857600080fd5b8063a45ba8e71461064e578063b071401b14610663578063b88d4fde14610683578063ba4e5c49146106a3578063ba7d2c76146106c357600080fd5b80638da5cb5b116101085780638da5cb5b146105b25780638e758be0146105d057806394354fd0146105f057806395d89b4114610606578063a0712d681461061b578063a22cb4651461062e57600080fd5b806362b99ad4146105285780636352211e1461053d57806370a082311461055d578063715018a61461057d5780637ec4a6591461059257600080fd5b806327ea6f2b116101dd57806344a0d68a116101a157806344a0d68a1461047a578063475fda0e1461049a5780634fdd43cb146104ba57806351830227146104da5780635503a0e8146104f95780635c975abb1461050e57600080fd5b806327ea6f2b146103d85780633af32abf146103f85780633ccfd60b1461041857806342842e0e1461042d578063438b63001461044d57600080fd5b806316ba10e01161022457806316ba10e01461033657806316c38b3c1461035657806318160ddd1461037657806318cae2691461038b57806323b872dd146103b857600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806313faede614610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612389565b6107b8565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab61080a565b60405161028d91906125b0565b3480156102c457600080fd5b506102d86102d3366004612407565b61089c565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b3660046122d6565b610936565b005b34801561031e57600080fd5b50610328600b5481565b60405190815260200161028d565b34801561034257600080fd5b506103106103513660046123c1565b610a4c565b34801561036257600080fd5b5061031061037136600461236f565b610a8d565b34801561038257600080fd5b50610328610aca565b34801561039757600080fd5b506103286103a63660046121ad565b60116020526000908152604090205481565b3480156103c457600080fd5b506103106103d33660046121f9565b610ada565b3480156103e457600080fd5b506103106103f3366004612407565b610b0b565b34801561040457600080fd5b506102816104133660046121ad565b610b3a565b34801561042457600080fd5b50610310610bb2565b34801561043957600080fd5b506103106104483660046121f9565b610d79565b34801561045957600080fd5b5061046d6104683660046121ad565b610d94565b60405161028d919061256c565b34801561048657600080fd5b50610310610495366004612407565b610e91565b3480156104a657600080fd5b506103106104b53660046122ff565b610ec0565b3480156104c657600080fd5b506103106104d53660046123c1565b610f02565b3480156104e657600080fd5b50600f5461028190610100900460ff1681565b34801561050557600080fd5b506102ab610f3f565b34801561051a57600080fd5b50600f546102819060ff1681565b34801561053457600080fd5b506102ab610fcd565b34801561054957600080fd5b506102d8610558366004612407565b610fda565b34801561056957600080fd5b506103286105783660046121ad565b611051565b34801561058957600080fd5b506103106110d8565b34801561059e57600080fd5b506103106105ad3660046123c1565b61110e565b3480156105be57600080fd5b506006546001600160a01b03166102d8565b3480156105dc57600080fd5b506103106105eb366004612407565b61114b565b3480156105fc57600080fd5b50610328600d5481565b34801561061257600080fd5b506102ab6112ff565b610310610629366004612407565b61130e565b34801561063a57600080fd5b506103106106493660046122ad565b611422565b34801561065a57600080fd5b506102ab6114e7565b34801561066f57600080fd5b5061031061067e366004612407565b6114f4565b34801561068f57600080fd5b5061031061069e366004612234565b611523565b3480156106af57600080fd5b506102d86106be366004612407565b611555565b3480156106cf57600080fd5b50610328600e5481565b3480156106e557600080fd5b506102ab6106f4366004612407565b61157f565b34801561070557600080fd5b50610328600c5481565b34801561071b57600080fd5b5061031061072a36600461236f565b6116fe565b34801561073b57600080fd5b5061028161074a3660046121c7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561078457600080fd5b5061031061079336600461241f565b611742565b3480156107a457600080fd5b506103106107b33660046121ad565b6117da565b60006001600160e01b031982166380ac58cd60e01b14806107e957506001600160e01b03198216635b5e139f60e01b145b8061080457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461081990612785565b80601f016020809104026020016040519081016040528092919081815260200182805461084590612785565b80156108925780601f1061086757610100808354040283529160200191610892565b820191906000526020600020905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661091a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061094182610fda565b9050806001600160a01b0316836001600160a01b031614156109af5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610911565b336001600160a01b03821614806109cb57506109cb813361074a565b610a3d5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610911565b610a478383611875565b505050565b6006546001600160a01b03163314610a765760405162461bcd60e51b815260040161091190612643565b8051610a89906009906020840190612001565b5050565b6006546001600160a01b03163314610ab75760405162461bcd60e51b815260040161091190612643565b600f805460ff1916911515919091179055565b6000610ad560075490565b905090565b610ae433826118e3565b610b005760405162461bcd60e51b8152600401610911906126a6565b610a478383836119da565b6006546001600160a01b03163314610b355760405162461bcd60e51b815260040161091190612643565b600e55565b6000805b601054811015610ba957826001600160a01b031660108281548110610b7357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610b975750600192915050565b80610ba1816127c0565b915050610b3e565b50600092915050565b6006546001600160a01b03163314610bdc5760405162461bcd60e51b815260040161091190612643565b6040805160808082018352736e9075da365be17041e704a16d39652a7a54b8628252733577ee30ef3e818fa07b25ac5f3a6ff9cea1fc3d60208084019190915273ff39c27b5eac4a31636ae4bb2be121f2cd96b2a48385015273ac84e43aafdbc3b35c529bcb83492faa8d8083ac6060808501919091528451928301855261047e835260c89183019190915261028a93820193909352611f4092810192909252904760005b60048163ffffffff161015610d73576000610c9e60016004612742565b8263ffffffff1614610cf757612710848363ffffffff1660048110610cd357634e487b7160e01b600052603260045260246000fd5b6020020151610ce89063ffffffff1685612723565b610cf2919061270f565b610cf9565b475b9050848263ffffffff1660048110610d2157634e487b7160e01b600052603260045260246000fd5b60200201516001600160a01b03166108fc829081150290604051600060405180830381858888f19350505050158015610d5e573d6000803e3d6000fd5b50508080610d6b906127db565b915050610c81565b50505050565b610a4783838360405180602001604052806000815250611523565b60606000610da183611051565b905060008167ffffffffffffffff811115610dcc57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610df5578160200160208202803683370190505b509050600160005b8381108015610e0e5750600c548211155b15610e87576000610e1e83610fda565b9050866001600160a01b0316816001600160a01b03161415610e745782848381518110610e5b57634e487b7160e01b600052603260045260246000fd5b602090810291909101015281610e70816127c0565b9250505b82610e7e816127c0565b93505050610dfd565b5090949350505050565b6006546001600160a01b03163314610ebb5760405162461bcd60e51b815260040161091190612643565b600b55565b6006546001600160a01b03163314610eea5760405162461bcd60e51b815260040161091190612643565b610ef660106000612085565b610a47601083836120a3565b6006546001600160a01b03163314610f2c5760405162461bcd60e51b815260040161091190612643565b8051610a8990600a906020840190612001565b60098054610f4c90612785565b80601f0160208091040260200160405190810160405280929190818152602001828054610f7890612785565b8015610fc55780601f10610f9a57610100808354040283529160200191610fc5565b820191906000526020600020905b815481529060010190602001808311610fa857829003601f168201915b505050505081565b60088054610f4c90612785565b6000818152600260205260408120546001600160a01b0316806108045760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610911565b60006001600160a01b0382166110bc5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610911565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146111025760405162461bcd60e51b815260040161091190612643565b61110c6000611b7a565b565b6006546001600160a01b031633146111385760405162461bcd60e51b815260040161091190612643565b8051610a89906008906020840190612001565b8060008111801561115e5750600d548111155b61117a5760405162461bcd60e51b815260040161091190612615565b600c548161118760075490565b61119191906126f7565b11156111af5760405162461bcd60e51b815260040161091190612678565b600f5460ff16156111f75760405162461bcd60e51b815260206004820152601260248201527118dbdb9d1c9858dd081a5cc81c185d5cd95960721b6044820152606401610911565b61120033610b3a565b61124c5760405162461bcd60e51b815260206004820152601760248201527f55736572206973206e6f742077686974656c69737465640000000000000000006044820152606401610911565b33600090815260116020526040902054600e5461126984836126f7565b11156112b75760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610911565b60015b8381116112f4573360009081526011602052604081208054916112dc836127c0565b919050555080806112ec906127c0565b9150506112ba565b50610a473384611bcc565b60606001805461081990612785565b806000811180156113215750600d548111155b61133d5760405162461bcd60e51b815260040161091190612615565b600c548161134a60075490565b61135491906126f7565b11156113725760405162461bcd60e51b815260040161091190612678565b600f5460ff16156113c55760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610911565b81600b546113d39190612723565b3410156114185760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610911565b610a893383611bcc565b6001600160a01b03821633141561147b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610911565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a8054610f4c90612785565b6006546001600160a01b0316331461151e5760405162461bcd60e51b815260040161091190612643565b600d55565b61152d33836118e3565b6115495760405162461bcd60e51b8152600401610911906126a6565b610d7384848484611c09565b6010818154811061156557600080fd5b6000918252602090912001546001600160a01b0316905081565b6000818152600260205260409020546060906001600160a01b03166115fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610911565b600f54610100900460ff1661169f57600a805461161a90612785565b80601f016020809104026020016040519081016040528092919081815260200182805461164690612785565b80156116935780601f1061166857610100808354040283529160200191611693565b820191906000526020600020905b81548152906001019060200180831161167657829003601f168201915b50505050509050919050565b60006116a9611c3c565b905060008151116116c957604051806020016040528060008152506116f7565b806116d384611c4b565b60096040516020016116e79392919061246d565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146117285760405162461bcd60e51b815260040161091190612643565b600f80549115156101000261ff0019909216919091179055565b816000811180156117555750600d548111155b6117715760405162461bcd60e51b815260040161091190612615565b600c548161177e60075490565b61178891906126f7565b11156117a65760405162461bcd60e51b815260040161091190612678565b6006546001600160a01b031633146117d05760405162461bcd60e51b815260040161091190612643565b610a478284611bcc565b6006546001600160a01b031633146118045760405162461bcd60e51b815260040161091190612643565b6001600160a01b0381166118695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610911565b61187281611b7a565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118aa82610fda565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661195c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610911565b600061196783610fda565b9050806001600160a01b0316846001600160a01b031614806119a25750836001600160a01b03166119978461089c565b6001600160a01b0316145b806119d257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119ed82610fda565b6001600160a01b031614611a555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610911565b6001600160a01b038216611ab75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610911565b611ac2600082611875565b6001600160a01b0383166000908152600360205260408120805460019290611aeb908490612742565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b199084906126f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610a4757611be5600780546001019055565b611bf783611bf260075490565b611d65565b80611c01816127c0565b915050611bcf565b611c148484846119da565b611c2084848484611d7f565b610d735760405162461bcd60e51b8152600401610911906125c3565b60606008805461081990612785565b606081611c6f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c995780611c83816127c0565b9150611c929050600a8361270f565b9150611c73565b60008167ffffffffffffffff811115611cc257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611cec576020820181803683370190505b5090505b84156119d257611d01600183612742565b9150611d0e600a866127ff565b611d199060306126f7565b60f81b818381518110611d3c57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d5e600a8661270f565b9450611cf0565b610a89828260405180602001604052806000815250611e8c565b60006001600160a01b0384163b15611e8157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611dc390339089908890889060040161252f565b602060405180830381600087803b158015611ddd57600080fd5b505af1925050508015611e0d575060408051601f3d908101601f19168201909252611e0a918101906123a5565b60015b611e67573d808015611e3b576040519150601f19603f3d011682016040523d82523d6000602084013e611e40565b606091505b508051611e5f5760405162461bcd60e51b8152600401610911906125c3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119d2565b506001949350505050565b611e968383611ebf565b611ea36000848484611d7f565b610a475760405162461bcd60e51b8152600401610911906125c3565b6001600160a01b038216611f155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610911565b6000818152600260205260409020546001600160a01b031615611f7a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610911565b6001600160a01b0382166000908152600360205260408120805460019290611fa39084906126f7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461200d90612785565b90600052602060002090601f01602090048101928261202f5760008555612075565b82601f1061204857805160ff1916838001178555612075565b82800160010185558215612075579182015b8281111561207557825182559160200191906001019061205a565b506120819291506120f6565b5090565b508054600082559060005260206000209081019061187291906120f6565b828054828255906000526020600020908101928215612075579160200282015b828111156120755781546001600160a01b0319166001600160a01b038435161782556020909201916001909101906120c3565b5b8082111561208157600081556001016120f7565b600067ffffffffffffffff808411156121265761212661283f565b604051601f8501601f19908116603f0116810190828211818310171561214e5761214e61283f565b8160405280935085815286868601111561216757600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461219857600080fd5b919050565b8035801515811461219857600080fd5b6000602082840312156121be578081fd5b6116f782612181565b600080604083850312156121d9578081fd5b6121e283612181565b91506121f060208401612181565b90509250929050565b60008060006060848603121561220d578081fd5b61221684612181565b925061222460208501612181565b9150604084013590509250925092565b60008060008060808587031215612249578081fd5b61225285612181565b935061226060208601612181565b925060408501359150606085013567ffffffffffffffff811115612282578182fd5b8501601f81018713612292578182fd5b6122a18782356020840161210b565b91505092959194509250565b600080604083850312156122bf578182fd5b6122c883612181565b91506121f06020840161219d565b600080604083850312156122e8578182fd5b6122f183612181565b946020939093013593505050565b60008060208385031215612311578182fd5b823567ffffffffffffffff80821115612328578384fd5b818501915085601f83011261233b578384fd5b813581811115612349578485fd5b8660208260051b850101111561235d578485fd5b60209290920196919550909350505050565b600060208284031215612380578081fd5b6116f78261219d565b60006020828403121561239a578081fd5b81356116f781612855565b6000602082840312156123b6578081fd5b81516116f781612855565b6000602082840312156123d2578081fd5b813567ffffffffffffffff8111156123e8578182fd5b8201601f810184136123f8578182fd5b6119d28482356020840161210b565b600060208284031215612418578081fd5b5035919050565b60008060408385031215612431578182fd5b823591506121f060208401612181565b60008151808452612459816020860160208601612759565b601f01601f19169290920160200192915050565b6000845160206124808285838a01612759565b8551918401916124938184848a01612759565b85549201918390600181811c90808316806124af57607f831692505b8583108114156124cd57634e487b7160e01b88526022600452602488fd5b8080156124e157600181146124f25761251e565b60ff1985168852838801955061251e565b60008b815260209020895b858110156125165781548a8201529084019088016124fd565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061256290830184612441565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125a457835183529284019291840191600101612588565b50909695505050505050565b6020815260006116f76020830184612441565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561270a5761270a612813565b500190565b60008261271e5761271e612829565b500490565b600081600019048311821515161561273d5761273d612813565b500290565b60008282101561275457612754612813565b500390565b60005b8381101561277457818101518382015260200161275c565b83811115610d735750506000910152565b600181811c9082168061279957607f821691505b602082108114156127ba57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127d4576127d4612813565b5060010190565b600063ffffffff808316818114156127f5576127f5612813565b6001019392505050565b60008261280e5761280e612829565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461187257600080fdfea2646970667358221220b4bd6106c439a1db72ab70d133049b905200f1213eae66bf4dc32712705b583264736f6c63430008040033

Deployed Bytecode Sourcemap

36631:5818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24423:305;;;;;;;;;;-1:-1:-1;24423:305:0;;;;;:::i;:::-;;:::i;:::-;;;8693:14:1;;8686:22;8668:41;;8656:2;8641:18;24423:305:0;;;;;;;;25368:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26927:221::-;;;;;;;;;;-1:-1:-1;26927:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7351:32:1;;;7333:51;;7321:2;7306:18;26927:221:0;7288:102:1;26450:411:0;;;;;;;;;;-1:-1:-1;26450:411:0;;;;;:::i;:::-;;:::i;:::-;;36895:32;;;;;;;;;;;;;;;;;;;17926:25:1;;;17914:2;17899:18;36895:32:0;17881:76:1;40682:100:0;;;;;;;;;;-1:-1:-1;40682:100:0;;;;;:::i;:::-;;:::i;40788:77::-;;;;;;;;;;-1:-1:-1;40788:77:0;;;;;:::i;:::-;;:::i;37637:89::-;;;;;;;;;;;;;:::i;37163:55::-;;;;;;;;;;-1:-1:-1;37163:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;27817:339;;;;;;;;;;-1:-1:-1;27817:339:0;;;;;:::i;:::-;;:::i;40095:119::-;;;;;;;;;;-1:-1:-1;40095:119:0;;;;;:::i;:::-;;:::i;41129:239::-;;;;;;;;;;-1:-1:-1;41129:239:0;;;;;:::i;:::-;;:::i;41677:769::-;;;;;;;;;;;;;:::i;28227:185::-;;;;;;;;;;-1:-1:-1;28227:185:0;;;;;:::i;:::-;;:::i;38724:635::-;;;;;;;;;;-1:-1:-1;38724:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40015:74::-;;;;;;;;;;-1:-1:-1;40015:74:0;;;;;:::i;:::-;;:::i;41418:145::-;;;;;;;;;;-1:-1:-1;41418:145:0;;;;;:::i;:::-;;:::i;40393:132::-;;;;;;;;;;-1:-1:-1;40393:132:0;;;;;:::i;:::-;;:::i;37086:28::-;;;;;;;;;;-1:-1:-1;37086:28:0;;;;;;;;;;;36817:33;;;;;;;;;;;;;:::i;37056:25::-;;;;;;;;;;-1:-1:-1;37056:25:0;;;;;;;;36784:28;;;;;;;;;;;;;:::i;25062:239::-;;;;;;;;;;-1:-1:-1;25062:239:0;;;;;:::i;:::-;;:::i;24792:208::-;;;;;;;;;;-1:-1:-1;24792:208:0;;;;;:::i;:::-;;:::i;6058:94::-;;;;;;;;;;;;;:::i;40576:100::-;;;;;;;;;;-1:-1:-1;40576:100:0;;;;;:::i;:::-;;:::i;5407:87::-;;;;;;;;;;-1:-1:-1;5480:6:0;;-1:-1:-1;;;;;5480:6:0;5407:87;;37985:513;;;;;;;;;;-1:-1:-1;37985:513:0;;;;;:::i;:::-;;:::i;36969:38::-;;;;;;;;;;;;;;;;25537:104;;;;;;;;;;;;;:::i;37732:247::-;;;;;;:::i;:::-;;:::i;27220:295::-;;;;;;;;;;-1:-1:-1;27220:295:0;;;;;:::i;:::-;;:::i;36855:31::-;;;;;;;;;;;;;:::i;40220:130::-;;;;;;;;;;-1:-1:-1;40220:130:0;;;;;:::i;:::-;;:::i;28483:328::-;;;;;;;;;;-1:-1:-1;28483:328:0;;;;;:::i;:::-;;:::i;37121:37::-;;;;;;;;;;-1:-1:-1;37121:37:0;;;;;:::i;:::-;;:::i;37012:::-;;;;;;;;;;;;;;;;39365:494;;;;;;;;;;-1:-1:-1;39365:494:0;;;;;:::i;:::-;;:::i;36932:32::-;;;;;;;;;;;;;;;;39895:81;;;;;;;;;;-1:-1:-1;39895:81:0;;;;;:::i;:::-;;:::i;27586:164::-;;;;;;;;;;-1:-1:-1;27586:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27707:25:0;;;27683:4;27707:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27586:164;38507:155;;;;;;;;;;-1:-1:-1;38507:155:0;;;;;:::i;:::-;;:::i;6307:192::-;;;;;;;;;;-1:-1:-1;6307:192:0;;;;;:::i;:::-;;:::i;24423:305::-;24525:4;-1:-1:-1;;;;;;24562:40:0;;-1:-1:-1;;;24562:40:0;;:105;;-1:-1:-1;;;;;;;24619:48:0;;-1:-1:-1;;;24619:48:0;24562:105;:158;;;-1:-1:-1;;;;;;;;;;17502:40:0;;;24684:36;24542:178;24423:305;-1:-1:-1;;24423:305:0:o;25368:100::-;25422:13;25455:5;25448:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25368:100;:::o;26927:221::-;27003:7;30410:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30410:16:0;27023:73;;;;-1:-1:-1;;;27023:73:0;;14513:2:1;27023:73:0;;;14495:21:1;14552:2;14532:18;;;14525:30;14591:34;14571:18;;;14564:62;-1:-1:-1;;;14642:18:1;;;14635:42;14694:19;;27023:73:0;;;;;;;;;-1:-1:-1;27116:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27116:24:0;;26927:221::o;26450:411::-;26531:13;26547:23;26562:7;26547:14;:23::i;:::-;26531:39;;26595:5;-1:-1:-1;;;;;26589:11:0;:2;-1:-1:-1;;;;;26589:11:0;;;26581:57;;;;-1:-1:-1;;;26581:57:0;;16465:2:1;26581:57:0;;;16447:21:1;16504:2;16484:18;;;16477:30;16543:34;16523:18;;;16516:62;-1:-1:-1;;;16594:18:1;;;16587:31;16635:19;;26581:57:0;16437:223:1;26581:57:0;4275:10;-1:-1:-1;;;;;26673:21:0;;;;:62;;-1:-1:-1;26698:37:0;26715:5;4275:10;27586:164;:::i;26698:37::-;26651:168;;;;-1:-1:-1;;;26651:168:0;;12906:2:1;26651:168:0;;;12888:21:1;12945:2;12925:18;;;12918:30;12984:34;12964:18;;;12957:62;13055:26;13035:18;;;13028:54;13099:19;;26651:168:0;12878:246:1;26651:168:0;26832:21;26841:2;26845:7;26832:8;:21::i;:::-;26450:411;;;:::o;40682:100::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;40754:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40682:100:::0;:::o;40788:77::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;40844:6:::1;:15:::0;;-1:-1:-1;;40844:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40788:77::o;37637:89::-;37681:7;37704:16;:6;1001:14;;909:114;37704:16;37697:23;;37637:89;:::o;27817:339::-;28012:41;4275:10;28045:7;28012:18;:41::i;:::-;28004:103;;;;-1:-1:-1;;;28004:103:0;;;;;;;:::i;:::-;28120:28;28130:4;28136:2;28140:7;28120:9;:28::i;40095:119::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;40168:18:::1;:40:::0;40095:119::o;41129:239::-;41188:4;;41201:143;41222:20;:27;41218:31;;41201:143;;;41296:5;-1:-1:-1;;;;;41269:32:0;:20;41290:1;41269:23;;;;;;-1:-1:-1;;;41269:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41269:23:0;:32;41265:72;;;-1:-1:-1;41323:4:0;;41129:239;-1:-1:-1;;41129:239:0:o;41265:72::-;41251:3;;;;:::i;:::-;;;;41201:143;;;-1:-1:-1;41357:5:0;;41129:239;-1:-1:-1;;41129:239:0:o;41677:769::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;41727:269:::1;::::0;;::::1;::::0;;::::1;::::0;;41772:42:::1;41727:269:::0;;41829:42:::1;41727:269;::::0;;::::1;::::0;;;;41886:42:::1;41727:269:::0;;;;41943:42:::1;41727:269:::0;;;;;;;;42009:143;;;;::::1;::::0;;42057:4:::1;42009:143:::0;;42084:3:::1;42009:143:::0;;::::1;::::0;;;;42110:3:::1;42009:143:::0;;;;;;;42136:4:::1;42009:143:::0;;;;;;;41727:269;42183:21:::1;41727:27;42217:222;42240:16;42236:1;:20;;;42217:222;;;42278:14;42300:20;42319:1;42300:16;:20;:::i;:::-;42295:1;:25;;;:79;;42369:5;42357:6;42364:1;42357:9;;;;;;;-1:-1:-1::0;;;42357:9:0::1;;;;;;;;;;;;::::0;42347:19:::1;::::0;::::1;;:7:::0;:19:::1;:::i;:::-;:27;;;;:::i;:::-;42295:79;;;42323:21;42295:79;42278:96;;42397:9;42407:1;42397:12;;;;;;;-1:-1:-1::0;;;42397:12:0::1;;;;;;;;;;;;;-1:-1:-1::0;;;;;42389:30:0::1;:38;42420:6;42389:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;42217:222;42258:3;;;;;:::i;:::-;;;;42217:222;;;;5698:1;;;41677:769::o:0;28227:185::-;28365:39;28382:4;28388:2;28392:7;28365:39;;;;;;;;;;;;:16;:39::i;38724:635::-;38799:16;38827:23;38853:17;38863:6;38853:9;:17::i;:::-;38827:43;;38877:30;38924:15;38910:30;;;;;;-1:-1:-1;;;38910:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38910:30:0;-1:-1:-1;38877:63:0;-1:-1:-1;38972:1:0;38947:22;39016:309;39041:15;39023;:33;:64;;;;;39078:9;;39060:14;:27;;39023:64;39016:309;;;39098:25;39126:23;39134:14;39126:7;:23::i;:::-;39098:51;;39185:6;-1:-1:-1;;;;;39164:27:0;:17;-1:-1:-1;;;;;39164:27:0;;39160:131;;;39237:14;39204:13;39218:15;39204:30;;;;;;-1:-1:-1;;;39204:30:0;;;;;;;;;;;;;;;;;;:47;39264:17;;;;:::i;:::-;;;;39160:131;39301:16;;;;:::i;:::-;;;;39016:309;;;;-1:-1:-1;39340:13:0;;38724:635;-1:-1:-1;;;;38724:635:0:o;40015:74::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;40071:4:::1;:12:::0;40015:74::o;41418:145::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;41494:27:::1;41501:20;;41494:27;:::i;:::-;41528:29;:20;41551:6:::0;;41528:29:::1;:::i;40393:132::-:0;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;40481:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;36817:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36784:28::-;;;;;;;:::i;25062:239::-;25134:7;25170:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25170:16:0;25205:19;25197:73;;;;-1:-1:-1;;;25197:73:0;;13742:2:1;25197:73:0;;;13724:21:1;13781:2;13761:18;;;13754:30;13820:34;13800:18;;;13793:62;-1:-1:-1;;;13871:18:1;;;13864:39;13920:19;;25197:73:0;13714:231:1;24792:208:0;24864:7;-1:-1:-1;;;;;24892:19:0;;24884:74;;;;-1:-1:-1;;;24884:74:0;;13331:2:1;24884:74:0;;;13313:21:1;13370:2;13350:18;;;13343:30;13409:34;13389:18;;;13382:62;-1:-1:-1;;;13460:18:1;;;13453:40;13510:19;;24884:74:0;13303:232:1;24884:74:0;-1:-1:-1;;;;;;24976:16:0;;;;;:9;:16;;;;;;;24792:208::o;6058:94::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;6123:21:::1;6141:1;6123:9;:21::i;:::-;6058:94::o:0;40576:100::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;40648:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;37985:513::-:0;38055:11;37471:1;37457:11;:15;:52;;;;;37491:18;;37476:11;:33;;37457:52;37449:85;;;;-1:-1:-1;;;37449:85:0;;;;;;;:::i;:::-;37583:9;;37568:11;37549:16;:6;1001:14;;909:114;37549:16;:30;;;;:::i;:::-;:43;;37541:76;;;;-1:-1:-1;;;37541:76:0;;;;;;;:::i;:::-;38084:6:::1;::::0;::::1;;38083:7;38075:38;;;::::0;-1:-1:-1;;;38075:38:0;;11035:2:1;38075:38:0::1;::::0;::::1;11017:21:1::0;11074:2;11054:18;;;11047:30;-1:-1:-1;;;11093:18:1;;;11086:48;11151:18;;38075:38:0::1;11007:168:1::0;38075:38:0::1;38128:25;38142:10;38128:13;:25::i;:::-;38120:61;;;::::0;-1:-1:-1;;;38120:61:0;;12554:2:1;38120:61:0::1;::::0;::::1;12536:21:1::0;12593:2;12573:18;;;12566:30;12632:25;12612:18;;;12605:53;12675:18;;38120:61:0::1;12526:173:1::0;38120:61:0::1;38236:10;38188:24;38215:32:::0;;;:20:::1;:32;::::0;;;;;38296:18:::1;::::0;38262:30:::1;38281:11:::0;38215:32;38262:30:::1;:::i;:::-;:52;;38254:93;;;::::0;-1:-1:-1;;;38254:93:0;;10678:2:1;38254:93:0::1;::::0;::::1;10660:21:1::0;10717:2;10697:18;;;10690:30;10756;10736:18;;;10729:58;10804:18;;38254:93:0::1;10650:178:1::0;38254:93:0::1;38371:1;38354:98;38379:11;38374:1;:16;38354:98;;38429:10;38408:32;::::0;;;:20:::1;:32;::::0;;;;:34;;;::::1;::::0;::::1;:::i;:::-;;;;;;38392:3;;;;;:::i;:::-;;;;38354:98;;;;38458:34;38468:10;38480:11;38458:9;:34::i;25537:104::-:0;25593:13;25626:7;25619:14;;;;;:::i;37732:247::-;37797:11;37471:1;37457:11;:15;:52;;;;;37491:18;;37476:11;:33;;37457:52;37449:85;;;;-1:-1:-1;;;37449:85:0;;;;;;;:::i;:::-;37583:9;;37568:11;37549:16;:6;1001:14;;909:114;37549:16;:30;;;;:::i;:::-;:43;;37541:76;;;;-1:-1:-1;;;37541:76:0;;;;;;;:::i;:::-;37826:6:::1;::::0;::::1;;37825:7;37817:43;;;::::0;-1:-1:-1;;;37817:43:0;;15287:2:1;37817:43:0::1;::::0;::::1;15269:21:1::0;15326:2;15306:18;;;15299:30;15365:25;15345:18;;;15338:53;15408:18;;37817:43:0::1;15259:173:1::0;37817:43:0::1;37895:11;37888:4;;:18;;;;:::i;:::-;37875:9;:31;;37867:63;;;::::0;-1:-1:-1;;;37867:63:0;;17634:2:1;37867:63:0::1;::::0;::::1;17616:21:1::0;17673:2;17653:18;;;17646:30;-1:-1:-1;;;17692:18:1;;;17685:49;17751:18;;37867:63:0::1;17606:169:1::0;37867:63:0::1;37939:34;37949:10;37961:11;37939:9;:34::i;27220:295::-:0;-1:-1:-1;;;;;27323:24:0;;4275:10;27323:24;;27315:62;;;;-1:-1:-1;;;27315:62:0;;11787:2:1;27315:62:0;;;11769:21:1;11826:2;11806:18;;;11799:30;11865:27;11845:18;;;11838:55;11910:18;;27315:62:0;11759:175:1;27315:62:0;4275:10;27390:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27390:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27390:53:0;;;;;;;;;;27459:48;;8668:41:1;;;27390:42:0;;4275:10;27459:48;;8641:18:1;27459:48:0;;;;;;;27220:295;;:::o;36855:31::-;;;;;;;:::i;40220:130::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;40304:18:::1;:40:::0;40220:130::o;28483:328::-;28658:41;4275:10;28691:7;28658:18;:41::i;:::-;28650:103;;;;-1:-1:-1;;;28650:103:0;;;;;;;:::i;:::-;28764:39;28778:4;28784:2;28788:7;28797:5;28764:13;:39::i;37121:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37121:37:0;;-1:-1:-1;37121:37:0;:::o;39365:494::-;30386:4;30410:16;;;:7;:16;;;;;;39464:13;;-1:-1:-1;;;;;30410:16:0;39489:98;;;;-1:-1:-1;;;39489:98:0;;16049:2:1;39489:98:0;;;16031:21:1;16088:2;16068:18;;;16061:30;16127:34;16107:18;;;16100:62;-1:-1:-1;;;16178:18:1;;;16171:45;16233:19;;39489:98:0;16021:237:1;39489:98:0;39600:8;;;;;;;39596:64;;39635:17;39628:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39365:494;;;:::o;39596:64::-;39668:28;39699:10;:8;:10::i;:::-;39668:41;;39754:1;39729:14;39723:28;:32;:130;;;;;;;;;;;;;;;;;39791:14;39807:19;:8;:17;:19::i;:::-;39828:9;39774:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39723:130;39716:137;39365:494;-1:-1:-1;;;39365:494:0:o;39895:81::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;39953:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;39953:17:0;;::::1;::::0;;;::::1;::::0;;39895:81::o;38507:155::-;38593:11;37471:1;37457:11;:15;:52;;;;;37491:18;;37476:11;:33;;37457:52;37449:85;;;;-1:-1:-1;;;37449:85:0;;;;;;;:::i;:::-;37583:9;;37568:11;37549:16;:6;1001:14;;909:114;37549:16;:30;;;;:::i;:::-;:43;;37541:76;;;;-1:-1:-1;;;37541:76:0;;;;;;;:::i;:::-;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23:::1;5619:68;;;;-1:-1:-1::0;;;5619:68:0::1;;;;;;;:::i;:::-;38623:33:::2;38633:9;38644:11;38623:9;:33::i;6307:192::-:0;5480:6;;-1:-1:-1;;;;;5480:6:0;4275:10;5627:23;5619:68;;;;-1:-1:-1;;;5619:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6396:22:0;::::1;6388:73;;;::::0;-1:-1:-1;;;6388:73:0;;9565:2:1;6388:73:0::1;::::0;::::1;9547:21:1::0;9604:2;9584:18;;;9577:30;9643:34;9623:18;;;9616:62;-1:-1:-1;;;9694:18:1;;;9687:36;9740:19;;6388:73:0::1;9537:228:1::0;6388:73:0::1;6472:19;6482:8;6472:9;:19::i;:::-;6307:192:::0;:::o;34303:174::-;34378:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34378:29:0;-1:-1:-1;;;;;34378:29:0;;;;;;;;:24;;34432:23;34378:24;34432:14;:23::i;:::-;-1:-1:-1;;;;;34423:46:0;;;;;;;;;;;34303:174;;:::o;30615:348::-;30708:4;30410:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30410:16:0;30725:73;;;;-1:-1:-1;;;30725:73:0;;12141:2:1;30725:73:0;;;12123:21:1;12180:2;12160:18;;;12153:30;12219:34;12199:18;;;12192:62;-1:-1:-1;;;12270:18:1;;;12263:42;12322:19;;30725:73:0;12113:234:1;30725:73:0;30809:13;30825:23;30840:7;30825:14;:23::i;:::-;30809:39;;30878:5;-1:-1:-1;;;;;30867:16:0;:7;-1:-1:-1;;;;;30867:16:0;;:51;;;;30911:7;-1:-1:-1;;;;;30887:31:0;:20;30899:7;30887:11;:20::i;:::-;-1:-1:-1;;;;;30887:31:0;;30867:51;:87;;;-1:-1:-1;;;;;;27707:25:0;;;27683:4;27707:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30922:32;30859:96;30615:348;-1:-1:-1;;;;30615:348:0:o;33607:578::-;33766:4;-1:-1:-1;;;;;33739:31:0;:23;33754:7;33739:14;:23::i;:::-;-1:-1:-1;;;;;33739:31:0;;33731:85;;;;-1:-1:-1;;;33731:85:0;;15639:2:1;33731:85:0;;;15621:21:1;15678:2;15658:18;;;15651:30;15717:34;15697:18;;;15690:62;-1:-1:-1;;;15768:18:1;;;15761:39;15817:19;;33731:85:0;15611:231:1;33731:85:0;-1:-1:-1;;;;;33835:16:0;;33827:65;;;;-1:-1:-1;;;33827:65:0;;11382:2:1;33827:65:0;;;11364:21:1;11421:2;11401:18;;;11394:30;11460:34;11440:18;;;11433:62;-1:-1:-1;;;11511:18:1;;;11504:34;11555:19;;33827:65:0;11354:226:1;33827:65:0;34009:29;34026:1;34030:7;34009:8;:29::i;:::-;-1:-1:-1;;;;;34051:15:0;;;;;;:9;:15;;;;;:20;;34070:1;;34051:15;:20;;34070:1;;34051:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34082:13:0;;;;;;:9;:13;;;;;:18;;34099:1;;34082:13;:18;;34099:1;;34082:18;:::i;:::-;;;;-1:-1:-1;;34111:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34111:21:0;-1:-1:-1;;;;;34111:21:0;;;;;;;;;34150:27;;34111:16;;34150:27;;;;;;;33607:578;;;:::o;6507:173::-;6582:6;;;-1:-1:-1;;;;;6599:17:0;;;-1:-1:-1;;;;;;6599:17:0;;;;;;;6632:40;;6582:6;;;6599:17;6582:6;;6632:40;;6563:16;;6632:40;6507:173;;:::o;40873:204::-;40953:9;40948:124;40972:11;40968:1;:15;40948:124;;;40999:18;:6;1120:19;;1138:1;1120:19;;;1031:127;40999:18;41026:38;41036:9;41047:16;:6;1001:14;;909:114;41047:16;41026:9;:38::i;:::-;40985:3;;;;:::i;:::-;;;;40948:124;;29693:315;29850:28;29860:4;29866:2;29870:7;29850:9;:28::i;:::-;29897:48;29920:4;29926:2;29930:7;29939:5;29897:22;:48::i;:::-;29889:111;;;;-1:-1:-1;;;29889:111:0;;;;;;;:::i;41569:104::-;41629:13;41658:9;41651:16;;;;;:::i;1811:723::-;1867:13;2088:10;2084:53;;-1:-1:-1;;2115:10:0;;;;;;;;;;;;-1:-1:-1;;;2115:10:0;;;;;1811:723::o;2084:53::-;2162:5;2147:12;2203:78;2210:9;;2203:78;;2236:8;;;;:::i;:::-;;-1:-1:-1;2259:10:0;;-1:-1:-1;2267:2:0;2259:10;;:::i;:::-;;;2203:78;;;2291:19;2323:6;2313:17;;;;;;-1:-1:-1;;;2313:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2313:17:0;;2291:39;;2341:154;2348:10;;2341:154;;2375:11;2385:1;2375:11;;:::i;:::-;;-1:-1:-1;2444:10:0;2452:2;2444:5;:10;:::i;:::-;2431:24;;:2;:24;:::i;:::-;2418:39;;2401:6;2408;2401:14;;;;;;-1:-1:-1;;;2401:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2401:56:0;;;;;;;;-1:-1:-1;2472:11:0;2481:2;2472:11;;:::i;:::-;;;2341:154;;31305:110;31381:26;31391:2;31395:7;31381:26;;;;;;;;;;;;:9;:26::i;35042:799::-;35197:4;-1:-1:-1;;;;;35218:13:0;;7776:20;7824:8;35214:620;;35254:72;;-1:-1:-1;;;35254:72:0;;-1:-1:-1;;;;;35254:36:0;;;;;:72;;4275:10;;35305:4;;35311:7;;35320:5;;35254:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35254:72:0;;;;;;;;-1:-1:-1;;35254:72:0;;;;;;;;;;;;:::i;:::-;;;35250:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35496:13:0;;35492:272;;35539:60;;-1:-1:-1;;;35539:60:0;;;;;;;:::i;35492:272::-;35714:6;35708:13;35699:6;35695:2;35691:15;35684:38;35250:529;-1:-1:-1;;;;;;35377:51:0;-1:-1:-1;;;35377:51:0;;-1:-1:-1;35370:58:0;;35214:620;-1:-1:-1;35818:4:0;35042:799;;;;;;:::o;31642:321::-;31772:18;31778:2;31782:7;31772:5;:18::i;:::-;31823:54;31854:1;31858:2;31862:7;31871:5;31823:22;:54::i;:::-;31801:154;;;;-1:-1:-1;;;31801:154:0;;;;;;;:::i;32299:382::-;-1:-1:-1;;;;;32379:16:0;;32371:61;;;;-1:-1:-1;;;32371:61:0;;14152:2:1;32371:61:0;;;14134:21:1;;;14171:18;;;14164:30;14230:34;14210:18;;;14203:62;14282:18;;32371:61:0;14124:182:1;32371:61:0;30386:4;30410:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30410:16:0;:30;32443:58;;;;-1:-1:-1;;;32443:58:0;;9972:2:1;32443:58:0;;;9954:21:1;10011:2;9991:18;;;9984:30;10050;10030:18;;;10023:58;10098:18;;32443:58:0;9944:178:1;32443:58:0;-1:-1:-1;;;;;32572:13:0;;;;;;:9;:13;;;;;:18;;32589:1;;32572:13;:18;;32589:1;;32572:18;:::i;:::-;;;;-1:-1:-1;;32601:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32601:21:0;-1:-1:-1;;;;;32601:21:0;;;;;;;;32640:33;;32601:16;;;32640:33;;32601:16;;32640:33;32299:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:196;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1126:6;1118;1111:22;1073:2;1154:29;1173:9;1154:29;:::i;1194:270::-;1262:6;1270;1323:2;1311:9;1302:7;1298:23;1294:32;1291:2;;;1344:6;1336;1329:22;1291:2;1372:29;1391:9;1372:29;:::i;:::-;1362:39;;1420:38;1454:2;1443:9;1439:18;1420:38;:::i;:::-;1410:48;;1281:183;;;;;:::o;1469:338::-;1546:6;1554;1562;1615:2;1603:9;1594:7;1590:23;1586:32;1583:2;;;1636:6;1628;1621:22;1583:2;1664:29;1683:9;1664:29;:::i;:::-;1654:39;;1712:38;1746:2;1735:9;1731:18;1712:38;:::i;:::-;1702:48;;1797:2;1786:9;1782:18;1769:32;1759:42;;1573:234;;;;;:::o;1812:696::-;1907:6;1915;1923;1931;1984:3;1972:9;1963:7;1959:23;1955:33;1952:2;;;2006:6;1998;1991:22;1952:2;2034:29;2053:9;2034:29;:::i;:::-;2024:39;;2082:38;2116:2;2105:9;2101:18;2082:38;:::i;:::-;2072:48;;2167:2;2156:9;2152:18;2139:32;2129:42;;2222:2;2211:9;2207:18;2194:32;2249:18;2241:6;2238:30;2235:2;;;2286:6;2278;2271:22;2235:2;2314:22;;2367:4;2359:13;;2355:27;-1:-1:-1;2345:2:1;;2401:6;2393;2386:22;2345:2;2429:73;2494:7;2489:2;2476:16;2471:2;2467;2463:11;2429:73;:::i;:::-;2419:83;;;1942:566;;;;;;;:::o;2513:264::-;2578:6;2586;2639:2;2627:9;2618:7;2614:23;2610:32;2607:2;;;2660:6;2652;2645:22;2607:2;2688:29;2707:9;2688:29;:::i;:::-;2678:39;;2736:35;2767:2;2756:9;2752:18;2736:35;:::i;2782:264::-;2850:6;2858;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:29;2979:9;2960:29;:::i;:::-;2950:39;3036:2;3021:18;;;;3008:32;;-1:-1:-1;;;2869:177:1:o;3051:665::-;3137:6;3145;3198:2;3186:9;3177:7;3173:23;3169:32;3166:2;;;3219:6;3211;3204:22;3166:2;3264:9;3251:23;3293:18;3334:2;3326:6;3323:14;3320:2;;;3355:6;3347;3340:22;3320:2;3398:6;3387:9;3383:22;3373:32;;3443:7;3436:4;3432:2;3428:13;3424:27;3414:2;;3470:6;3462;3455:22;3414:2;3515;3502:16;3541:2;3533:6;3530:14;3527:2;;;3562:6;3554;3547:22;3527:2;3620:7;3615:2;3605:6;3602:1;3598:14;3594:2;3590:23;3586:32;3583:45;3580:2;;;3646:6;3638;3631:22;3580:2;3682;3674:11;;;;;3704:6;;-1:-1:-1;3156:560:1;;-1:-1:-1;;;;3156:560:1:o;3721:190::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:2;;;3851:6;3843;3836:22;3798:2;3879:26;3895:9;3879:26;:::i;3916:255::-;3974:6;4027:2;4015:9;4006:7;4002:23;3998:32;3995:2;;;4048:6;4040;4033:22;3995:2;4092:9;4079:23;4111:30;4135:5;4111:30;:::i;4176:259::-;4245:6;4298:2;4286:9;4277:7;4273:23;4269:32;4266:2;;;4319:6;4311;4304:22;4266:2;4356:9;4350:16;4375:30;4399:5;4375:30;:::i;4440:480::-;4509:6;4562:2;4550:9;4541:7;4537:23;4533:32;4530:2;;;4583:6;4575;4568:22;4530:2;4628:9;4615:23;4661:18;4653:6;4650:30;4647:2;;;4698:6;4690;4683:22;4647:2;4726:22;;4779:4;4771:13;;4767:27;-1:-1:-1;4757:2:1;;4813:6;4805;4798:22;4757:2;4841:73;4906:7;4901:2;4888:16;4883:2;4879;4875:11;4841:73;:::i;4925:190::-;4984:6;5037:2;5025:9;5016:7;5012:23;5008:32;5005:2;;;5058:6;5050;5043:22;5005:2;-1:-1:-1;5086:23:1;;4995:120;-1:-1:-1;4995:120:1:o;5120:264::-;5188:6;5196;5249:2;5237:9;5228:7;5224:23;5220:32;5217:2;;;5270:6;5262;5255:22;5217:2;5311:9;5298:23;5288:33;;5340:38;5374:2;5363:9;5359:18;5340:38;:::i;5389:257::-;5430:3;5468:5;5462:12;5495:6;5490:3;5483:19;5511:63;5567:6;5560:4;5555:3;5551:14;5544:4;5537:5;5533:16;5511:63;:::i;:::-;5628:2;5607:15;-1:-1:-1;;5603:29:1;5594:39;;;;5635:4;5590:50;;5438:208;-1:-1:-1;;5438:208:1:o;5651:1531::-;5875:3;5913:6;5907:13;5939:4;5952:51;5996:6;5991:3;5986:2;5978:6;5974:15;5952:51;:::i;:::-;6066:13;;6025:16;;;;6088:55;6066:13;6025:16;6110:15;;;6088:55;:::i;:::-;6234:13;;6165:20;;;6205:3;;6294:1;6316:18;;;;6369;;;;6396:2;;6474:4;6464:8;6460:19;6448:31;;6396:2;6537;6527:8;6524:16;6504:18;6501:40;6498:2;;;-1:-1:-1;;;6564:33:1;;6620:4;6617:1;6610:15;6650:4;6571:3;6638:17;6498:2;6681:18;6708:110;;;;6832:1;6827:330;;;;6674:483;;6708:110;-1:-1:-1;;6743:24:1;;6729:39;;6788:20;;;;-1:-1:-1;6708:110:1;;6827:330;18009:4;18028:17;;;18078:4;18062:21;;6922:3;6938:169;6952:8;6949:1;6946:15;6938:169;;;7034:14;;7019:13;;;7012:37;7077:16;;;;6969:10;;6938:169;;;6942:3;;7138:8;7131:5;7127:20;7120:27;;6674:483;-1:-1:-1;7173:3:1;;5883:1299;-1:-1:-1;;;;;;;;;;;5883:1299:1:o;7395:488::-;-1:-1:-1;;;;;7664:15:1;;;7646:34;;7716:15;;7711:2;7696:18;;7689:43;7763:2;7748:18;;7741:34;;;7811:3;7806:2;7791:18;;7784:31;;;7589:4;;7832:45;;7857:19;;7849:6;7832:45;:::i;:::-;7824:53;7598:285;-1:-1:-1;;;;;;7598:285:1:o;7888:635::-;8059:2;8111:21;;;8181:13;;8084:18;;;8203:22;;;8030:4;;8059:2;8282:15;;;;8256:2;8241:18;;;8030:4;8328:169;8342:6;8339:1;8336:13;8328:169;;;8403:13;;8391:26;;8472:15;;;;8437:12;;;;8364:1;8357:9;8328:169;;;-1:-1:-1;8514:3:1;;8039:484;-1:-1:-1;;;;;;8039:484:1:o;8720:219::-;8869:2;8858:9;8851:21;8832:4;8889:44;8929:2;8918:9;8914:18;8906:6;8889:44;:::i;8944:414::-;9146:2;9128:21;;;9185:2;9165:18;;;9158:30;9224:34;9219:2;9204:18;;9197:62;-1:-1:-1;;;9290:2:1;9275:18;;9268:48;9348:3;9333:19;;9118:240::o;10127:344::-;10329:2;10311:21;;;10368:2;10348:18;;;10341:30;-1:-1:-1;;;10402:2:1;10387:18;;10380:50;10462:2;10447:18;;10301:170::o;14724:356::-;14926:2;14908:21;;;14945:18;;;14938:30;15004:34;14999:2;14984:18;;14977:62;15071:2;15056:18;;14898:182::o;16665:344::-;16867:2;16849:21;;;16906:2;16886:18;;;16879:30;-1:-1:-1;;;16940:2:1;16925:18;;16918:50;17000:2;16985:18;;16839:170::o;17014:413::-;17216:2;17198:21;;;17255:2;17235:18;;;17228:30;17294:34;17289:2;17274:18;;17267:62;-1:-1:-1;;;17360:2:1;17345:18;;17338:47;17417:3;17402:19;;17188:239::o;18094:128::-;18134:3;18165:1;18161:6;18158:1;18155:13;18152:2;;;18171:18;;:::i;:::-;-1:-1:-1;18207:9:1;;18142:80::o;18227:120::-;18267:1;18293;18283:2;;18298:18;;:::i;:::-;-1:-1:-1;18332:9:1;;18273:74::o;18352:168::-;18392:7;18458:1;18454;18450:6;18446:14;18443:1;18440:21;18435:1;18428:9;18421:17;18417:45;18414:2;;;18465:18;;:::i;:::-;-1:-1:-1;18505:9:1;;18404:116::o;18525:125::-;18565:4;18593:1;18590;18587:8;18584:2;;;18598:18;;:::i;:::-;-1:-1:-1;18635:9:1;;18574:76::o;18655:258::-;18727:1;18737:113;18751:6;18748:1;18745:13;18737:113;;;18827:11;;;18821:18;18808:11;;;18801:39;18773:2;18766:10;18737:113;;;18868:6;18865:1;18862:13;18859:2;;;-1:-1:-1;;18903:1:1;18885:16;;18878:27;18708:205::o;18918:380::-;18997:1;18993:12;;;;19040;;;19061:2;;19115:4;19107:6;19103:17;19093:27;;19061:2;19168;19160:6;19157:14;19137:18;19134:38;19131:2;;;19214:10;19209:3;19205:20;19202:1;19195:31;19249:4;19246:1;19239:15;19277:4;19274:1;19267:15;19131:2;;18973:325;;;:::o;19303:135::-;19342:3;-1:-1:-1;;19363:17:1;;19360:2;;;19383:18;;:::i;:::-;-1:-1:-1;19430:1:1;19419:13;;19350:88::o;19443:201::-;19481:3;19509:10;19554:2;19547:5;19543:14;19581:2;19572:7;19569:15;19566:2;;;19587:18;;:::i;:::-;19636:1;19623:15;;19489:155;-1:-1:-1;;;19489:155:1:o;19649:112::-;19681:1;19707;19697:2;;19712:18;;:::i;:::-;-1:-1:-1;19746:9:1;;19687:74::o;19766:127::-;19827:10;19822:3;19818:20;19815:1;19808:31;19858:4;19855:1;19848:15;19882:4;19879:1;19872:15;19898:127;19959:10;19954:3;19950:20;19947:1;19940:31;19990:4;19987:1;19980:15;20014:4;20011:1;20004:15;20030:127;20091:10;20086:3;20082:20;20079:1;20072:31;20122:4;20119:1;20112:15;20146:4;20143:1;20136:15;20162:131;-1:-1:-1;;;;;;20236:32:1;;20226:43;;20216:2;;20283:1;20280;20273:12

Swarm Source

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