ETH Price: $3,250.98 (+3.49%)
Gas: 4 Gwei

Token

Shibashi (Shibas)
 

Overview

Max Total Supply

223 Shibas

Holders

92

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 Shibas
0x9dC4e321AFcA2bDEdC460e362218D20344bb6687
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:
ShibasNFT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-22
*/

//SPDX-License-Identifier: UNLICENSED

pragma solidity 0.8.19;

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

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

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

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

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

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

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

abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

abstract contract ReentrancyGuard {
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == _ENTERED;
    }
}

contract ShibasNFT is ERC721Enumerable, Ownable, ReentrancyGuard {
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    // Constants
    string public baseExtension = ".json";
    uint256 public cost = 0.07 ether;

    // Supply
    uint256 public mintReward = 15;
    uint256 public maxSupply = 500;
    uint256 public lastSupply = maxSupply;
    uint256 public maxMintAmount = 10;

    // Reflection
    uint256 public reflectionBalance;
    uint256 public totalDividend;

    // Lists
    uint256[500] public remainingIds;
    mapping(uint256 => uint256) public lastDividendAt;
    mapping(uint256 => address) public minters;

    // Params
    bool public paused = true;
    string private _baseTokenURI;

    // Addresses
    address public FeeReceiver = 0x44343Bae9f6d8dB1d5b0614783EE22a0A36D5F5b;

    // Constructor
    constructor() ERC721("Shibashi", "Shibas") {
        _baseTokenURI = "ipfs://bafybeigugjjtpfcvbkmhnctwh24267bcxryyyrny23k4re7rpjmpntym6u/";
    }

    // URI Handling
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    // Setters
    function setBaseURI(string memory baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
        maxMintAmount = _newmaxMintAmount;
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

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

    function setFeeReceiver(address _newFeeReceiver) public onlyOwner {
        FeeReceiver = _newFeeReceiver;
    }

    function setMintShare(uint256 _newMintShare) public onlyOwner {
        mintReward = _newMintShare;
    }

    // Minting
    function mint(uint256 _mintAmount) public payable {
        // Checks
        require(!paused, "ShibasNFT: minting has not started yet");
        require(_mintAmount > 0, "ShibasNFT: you have to mint at least one");
        require(
            _mintAmount <= maxMintAmount,
            "ShibasNFT: you can only mint 10 at a time"
        );
        require(
            lastSupply >= _mintAmount,
            "ShibasNFT: the collection is sold out"
        );
        if (msg.sender != owner()) {
            require(
                msg.value >= cost * _mintAmount,
                "ShibasNFT: total cost isn't match"
            );
        }
        // Minting
        for (uint256 i = 1; i <= _mintAmount; i++) {
            // Mint for caller
            _randomMint(msg.sender);
            // Split cost
            handleMintReward(msg.value / _mintAmount);
        }
    }

    // Give a random NFT to a contest winner
    function randomGiveaway(address _winner, uint256 _amount)
        external
        onlyOwner
    {
        // Checks
        require(_winner != address(0), "ShibasNFT: zero address");
        require(_amount > 0, "ShibasNFT: you have to mint at least one");
        require(lastSupply != 0, "ShibasNFT: the collection is sold out");
        // Mint random NFTs for a winner
        for (uint256 i = 1; i <= _amount; i++) {
            _randomMint(_winner);
        }
    }

    // Random mint
    function _randomMint(address _target) nonReentrant() internal returns (uint256) {
        // Get Random id to mint
        uint256 _index = _getRandom() % lastSupply;
        uint256 _realIndex = getValue(_index) + 1;
        // Reduce supply
        lastSupply--;
        // Replace used id by last
        remainingIds[_index] = getValue(lastSupply);
        // Save dividend
        lastDividendAt[_realIndex] = totalDividend;
        // Mint
        _safeMint(_target, _realIndex);
        // Save Original minters
        minters[_realIndex] = msg.sender;
        return _realIndex;
    }

    function multipleRegularMintsWithRecipients(address[] memory recipients)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < recipients.length; i++) {
            _regularMintWithAddress(recipients[i]);
        }
    }

    function _regularMintWithAddress(address recipient) internal returns (uint256) {
        // Get Actual id to mint
        uint256 _index = totalSupply();
        uint256 _realIndex = getValue(_index) + 1;
        // Reduce supply
        lastSupply--;
        // Replace used id by last
        remainingIds[_index] = getValue(lastSupply);
        // Save dividend
        lastDividendAt[_realIndex] = totalDividend;
        // Mint
        _safeMint(recipient, _realIndex);
        // Save Original minters
        minters[_realIndex] = msg.sender;
        return _realIndex;
    }

    // Mint for reserved spots
    function _regularMint() internal returns (uint256) {
        // Get Actual id to mint
        uint256 _index = totalSupply();
        uint256 _realIndex = getValue(_index) + 1;
        // Reduce supply
        lastSupply--;
        // Replace used id by last
        remainingIds[_index] = getValue(lastSupply);
        // Mint
        _safeMint(msg.sender, _realIndex);
        // Save Original minters
        minters[_realIndex] = msg.sender;
        // Save dividend
        lastDividendAt[_realIndex] = totalDividend;
        return _realIndex;
    }

    // Get Token List
    function getTokenIds(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        // Count owned Token
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory tokenIds = new uint256[](ownerTokenCount);
        // Get ids of owned Token
        for (uint256 i; i < ownerTokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokenIds;
    }

    // Return compiled Token URI
    function tokenURI(uint256 _id)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_id), "ShibasNFT: URI query for nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _id.toString(),
                        baseExtension
                    )
                )
                : "";
    }
    // Reflections
    function handleMintReward(uint256 _amount) private {
        // Split payment
        uint256 mintShare = _amount.mul(mintReward).div(100);
        uint256 devShare = _amount.sub(mintShare);
        // Save dividend for community
        reflectDividend(mintShare);
        // Send owner share
        payable(FeeReceiver).transfer(devShare);
    }

    // Add dividend
    function reflectDividend(uint256 _amount) private {
        reflectionBalance = reflectionBalance.add(_amount);
        totalDividend = totalDividend.add((_amount.div(totalSupply())));
    }

    function reflectToOwners() public payable {
        reflectDividend(msg.value);
    }

    function getReflectionBalances(address _owner)
        public
        view
        returns (uint256)
    {
        uint256 count = balanceOf(_owner);
        uint256 total = 0;
        for (uint256 i = 0; i < count; i++) {
            uint256 tokenId = tokenOfOwnerByIndex(_owner, i);
            total = total.add(getReflectionBalance(tokenId));
        }
        return total;
    }

    function getReflectionBalance(uint256 tokenId)
        public
        view
        returns (uint256)
    {
        return totalDividend.sub(lastDividendAt[tokenId]);
    }

  function claimRewards() public nonReentrant {
    uint count = balanceOf(msg.sender);
    uint256 balance = 0;
    for(uint i = 0; i < count; i++){
        uint tokenId = tokenOfOwnerByIndex(msg.sender, i);
        balance = balance.add(getReflectionBalance(tokenId));
        lastDividendAt[tokenId] = totalDividend;
    }
    payable(msg.sender).transfer(balance);
  }
    // Utils

    // Get value from a remaining id node
    function getValue(uint256 _index) internal view returns (uint256) {
        if (remainingIds[_index] != 0) return remainingIds[_index];
        else return _index;
    }

    // Create a random id for minting
    function _getRandom() internal view returns (uint256) {
        return
            uint256(
                keccak256(
                    abi.encodePacked(
                        block.prevrandao,
                        block.timestamp,
                        lastSupply
                    )
                )
            );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FeeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getReflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getReflectionBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"lastDividendAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":[],"name":"mintReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"multipleRegularMintsWithRecipients","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_winner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"randomGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reflectToOwners","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reflectionBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"remainingIds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeReceiver","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMintShare","type":"uint256"}],"name":"setMintShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividend","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608090815264173539b7b760d91b60a052600c9062000026908262000238565b5066f8b0a10e470000600d55600f600e8190556101f490819055601055600a60115561020a805460ff1916600117905561020c80546001600160a01b0319167344343bae9f6d8db1d5b0614783ee22a0a36d5f5b1790553480156200008a57600080fd5b5060405180604001604052806008815260200167536869626173686960c01b8152506040518060400160405280600681526020016553686962617360d01b8152508160009081620000dc919062000238565b506001620000eb828262000238565b50505062000108620001026200013d60201b60201c565b62000141565b6001600b556040805160808101909152604380825262002fbf602083013961020b9062000136908262000238565b5062000304565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620001be57607f821691505b602082108103620001df57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200023357600081815260208120601f850160051c810160208610156200020e5750805b601f850160051c820191505b818110156200022f578281556001016200021a565b5050505b505050565b81516001600160401b0381111562000254576200025462000193565b6200026c81620002658454620001a9565b84620001e5565b602080601f831160018114620002a457600084156200028b5750858301515b600019600386901b1c1916600185901b1785556200022f565b600085815260208120601f198616915b82811015620002d557888601518255948401946001909101908401620002b4565b5085821015620002f45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612cab80620003146000396000f3fe6080604052600436106102865760003560e01c8063639ec3001161015a578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461077e578063e985e9c51461079e578063ee6d9d6d146107e7578063efdcd97414610807578063f2fde38b14610827578063f75b8c5f1461084757600080fd5b8063b88d4fde146106b8578063c6682862146106d8578063c87b56dd146106ed578063d004b0361461070d578063d20688571461073a578063d5abeb011461076857600080fd5b80638da5cb5b116101135780638da5cb5b1461061257806395d89b4114610630578063a0712d6814610645578063a22cb46514610658578063a708d40414610678578063b3ef77f21461069857600080fd5b8063639ec300146105465780636eb0d0301461056657806370a0823114610586578063715018a6146105a65780637f00c7a6146105bb5780638623ec7b146105db57600080fd5b8063239c70ae116101fe57806344a0d68a116101b757806344a0d68a146104955780634b6acafb146104b55780634f6ccce7146104cb57806355f804b3146104eb5780635c975abb1461050b5780636352211e1461052657600080fd5b8063239c70ae146103f457806323b872dd1461040a5780632f745c591461042a578063372500ab1461044a5780634131ff991461045f57806342842e0e1461047557600080fd5b806306fdde031161025057806306fdde0314610351578063081812fc14610373578063095ea7b31461039357806313faede6146103b3578063174f57af146103c957806318160ddd146103df57600080fd5b80620251641461028b578062fe50c6146102c957806301ffc9a7146102f757806302329a2914610327578063047d5e8014610349575b600080fd5b34801561029757600080fd5b5061020c546102ac906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102d557600080fd5b506102e96102e43660046123bd565b61085d565b6040519081526020016102c0565b34801561030357600080fd5b506103176103123660046123ec565b61087f565b60405190151581526020016102c0565b34801561033357600080fd5b50610347610342366004612419565b6108a4565b005b6103476108eb565b34801561035d57600080fd5b506103666108f6565b6040516102c09190612484565b34801561037f57600080fd5b506102ac61038e3660046123bd565b610988565b34801561039f57600080fd5b506103476103ae3660046124ae565b610a1d565b3480156103bf57600080fd5b506102e9600d5481565b3480156103d557600080fd5b506102e9600e5481565b3480156103eb57600080fd5b506008546102e9565b34801561040057600080fd5b506102e960115481565b34801561041657600080fd5b506103476104253660046124d8565b610b32565b34801561043657600080fd5b506102e96104453660046124ae565b610b63565b34801561045657600080fd5b50610347610bf9565b34801561046b57600080fd5b506102e960125481565b34801561048157600080fd5b506103476104903660046124d8565b610ca1565b3480156104a157600080fd5b506103476104b03660046123bd565b610cbc565b3480156104c157600080fd5b506102e960135481565b3480156104d757600080fd5b506102e96104e63660046123bd565b610ceb565b3480156104f757600080fd5b506103476105063660046125b3565b610d7e565b34801561051757600080fd5b5061020a546103179060ff1681565b34801561053257600080fd5b506102ac6105413660046123bd565b610db9565b34801561055257600080fd5b506103476105613660046125fc565b610e30565b34801561057257600080fd5b506103476105813660046123bd565b610e9b565b34801561059257600080fd5b506102e96105a13660046126a9565b610eca565b3480156105b257600080fd5b50610347610f51565b3480156105c757600080fd5b506103476105d63660046123bd565b610f85565b3480156105e757600080fd5b506102ac6105f63660046123bd565b610209602052600090815260409020546001600160a01b031681565b34801561061e57600080fd5b50600a546001600160a01b03166102ac565b34801561063c57600080fd5b50610366610fb4565b6103476106533660046123bd565b610fc3565b34801561066457600080fd5b506103476106733660046126c4565b61117d565b34801561068457600080fd5b506102e96106933660046126a9565b611241565b3480156106a457600080fd5b506103476106b33660046124ae565b611293565b3480156106c457600080fd5b506103476106d33660046126f7565b61137b565b3480156106e457600080fd5b506103666113b3565b3480156106f957600080fd5b506103666107083660046123bd565b611441565b34801561071957600080fd5b5061072d6107283660046126a9565b61151a565b6040516102c09190612773565b34801561074657600080fd5b506102e96107553660046123bd565b6102086020526000908152604090205481565b34801561077457600080fd5b506102e9600f5481565b34801561078a57600080fd5b506103476107993660046125b3565b6115b4565b3480156107aa57600080fd5b506103176107b93660046127b7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f357600080fd5b506102e96108023660046123bd565b6115ea565b34801561081357600080fd5b506103476108223660046126a9565b611602565b34801561083357600080fd5b506103476108423660046126a9565b61164f565b34801561085357600080fd5b506102e960105481565b60008181526102086020526040812054601354610879916116ea565b92915050565b60006001600160e01b0319821663780e9d6360e01b14806108795750610879826116f6565b600a546001600160a01b031633146108d75760405162461bcd60e51b81526004016108ce906127e1565b60405180910390fd5b61020a805460ff1916911515919091179055565b6108f434611746565b565b60606000805461090590612816565b80601f016020809104026020016040519081016040528092919081815260200182805461093190612816565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ce565b506000908152600460205260409020546001600160a01b031690565b6000610a2882610db9565b9050806001600160a01b0316836001600160a01b031603610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ce565b336001600160a01b0382161480610ab15750610ab181336107b9565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ce565b610b2d838361177b565b505050565b610b3c33826117e9565b610b585760405162461bcd60e51b81526004016108ce90612850565b610b2d8383836118e0565b6000610b6e83610eca565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108ce565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c01611a8b565b6000610c0c33610eca565b90506000805b82811015610c66576000610c263383610b63565b9050610c3b610c348261085d565b8490611ae4565b6013546000928352610208602052604090922091909155915080610c5e816128b7565b915050610c12565b50604051339082156108fc029083906000818181858888f19350505050158015610c94573d6000803e3d6000fd5b5050506108f46001600b55565b610b2d8383836040518060200160405280600081525061137b565b600a546001600160a01b03163314610ce65760405162461bcd60e51b81526004016108ce906127e1565b600d55565b6000610cf660085490565b8210610d595760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108ce565b60088281548110610d6c57610d6c6128d0565b90600052602060002001549050919050565b600a546001600160a01b03163314610da85760405162461bcd60e51b81526004016108ce906127e1565b61020b610db58282612934565b5050565b6000818152600260205260408120546001600160a01b0316806108795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ce565b600a546001600160a01b03163314610e5a5760405162461bcd60e51b81526004016108ce906127e1565b60005b8151811015610db557610e88828281518110610e7b57610e7b6128d0565b6020026020010151611af0565b5080610e93816128b7565b915050610e5d565b600a546001600160a01b03163314610ec55760405162461bcd60e51b81526004016108ce906127e1565b600e55565b60006001600160a01b038216610f355760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ce565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f7b5760405162461bcd60e51b81526004016108ce906127e1565b6108f46000611b8f565b600a546001600160a01b03163314610faf5760405162461bcd60e51b81526004016108ce906127e1565b601155565b60606001805461090590612816565b61020a5460ff16156110265760405162461bcd60e51b815260206004820152602660248201527f5368696261734e46543a206d696e74696e6720686173206e6f742073746172746044820152651959081e595d60d21b60648201526084016108ce565b600081116110465760405162461bcd60e51b81526004016108ce906129f4565b6011548111156110aa5760405162461bcd60e51b815260206004820152602960248201527f5368696261734e46543a20796f752063616e206f6e6c79206d696e7420313020604482015268617420612074696d6560b81b60648201526084016108ce565b8060105410156110cc5760405162461bcd60e51b81526004016108ce90612a3c565b600a546001600160a01b031633146111455780600d546110ec9190612a81565b3410156111455760405162461bcd60e51b815260206004820152602160248201527f5368696261734e46543a20746f74616c20636f73742069736e2774206d6174636044820152600d60fb1b60648201526084016108ce565b60015b818111610db55761115833611be1565b5061116b6111668334612aae565b611cca565b80611175816128b7565b915050611148565b336001600160a01b038316036111d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ce565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008061124d83610eca565b90506000805b8281101561128b5760006112678683610b63565b9050611275610c348261085d565b9250508080611283906128b7565b915050611253565b509392505050565b600a546001600160a01b031633146112bd5760405162461bcd60e51b81526004016108ce906127e1565b6001600160a01b0382166113135760405162461bcd60e51b815260206004820152601760248201527f5368696261734e46543a207a65726f206164647265737300000000000000000060448201526064016108ce565b600081116113335760405162461bcd60e51b81526004016108ce906129f4565b6010546000036113555760405162461bcd60e51b81526004016108ce90612a3c565b60015b818111610b2d5761136883611be1565b5080611373816128b7565b915050611358565b61138533836117e9565b6113a15760405162461bcd60e51b81526004016108ce90612850565b6113ad84848484611d40565b50505050565b600c80546113c090612816565b80601f01602080910402602001604051908101604052809291908181526020018280546113ec90612816565b80156114395780601f1061140e57610100808354040283529160200191611439565b820191906000526020600020905b81548152906001019060200180831161141c57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166114bb5760405162461bcd60e51b815260206004820152602a60248201527f5368696261734e46543a2055524920717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108ce565b60006114c5611d73565b905060008151116114e55760405180602001604052806000815250611513565b806114ef84611d83565b600c60405160200161150393929190612ac2565b6040516020818303038152906040525b9392505050565b6060600061152783610eca565b905060008167ffffffffffffffff81111561154457611544612514565b60405190808252806020026020018201604052801561156d578160200160208202803683370190505b50905060005b8281101561128b576115858582610b63565b828281518110611597576115976128d0565b6020908102919091010152806115ac816128b7565b915050611573565b600a546001600160a01b031633146115de5760405162461bcd60e51b81526004016108ce906127e1565b600c610db58282612934565b6014816101f481106115fb57600080fd5b0154905081565b600a546001600160a01b0316331461162c5760405162461bcd60e51b81526004016108ce906127e1565b61020c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146116795760405162461bcd60e51b81526004016108ce906127e1565b6001600160a01b0381166116de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ce565b6116e781611b8f565b50565b60006115138284612b62565b60006001600160e01b031982166380ac58cd60e01b148061172757506001600160e01b03198216635b5e139f60e01b145b8061087957506301ffc9a760e01b6001600160e01b0319831614610879565b6012546117539082611ae4565b60125561177561176c61176560085490565b8390611e84565b60135490611ae4565b60135550565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117b082610db9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ce565b600061186d83610db9565b9050806001600160a01b0316846001600160a01b031614806118a85750836001600160a01b031661189d84610988565b6001600160a01b0316145b806118d857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118f382610db9565b6001600160a01b03161461195b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ce565b6001600160a01b0382166119bd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ce565b6119c8838383611e90565b6119d360008261177b565b6001600160a01b03831660009081526003602052604081208054600192906119fc908490612b62565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a2a908490612b75565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6002600b5403611add5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ce565b6002600b55565b60006115138284612b75565b600080611afc60085490565b90506000611b0982611f48565b611b14906001612b75565b601080549192506000611b2683612b88565b9190505550611b36601054611f48565b6014836101f48110611b4a57611b4a6128d0565b015560135460008281526102086020526040902055611b698482611f85565b60008181526102096020526040902080546001600160a01b031916331790559392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611beb611a8b565b6010546040805144602080830191909152428284015260608083018590528351808403909101815260809092019092528051910120600091611c2c91612b9f565b90506000611c3982611f48565b611c44906001612b75565b601080549192506000611c5683612b88565b9190505550611c66601054611f48565b6014836101f48110611c7a57611c7a6128d0565b015560135460008281526102086020526040902055611c998482611f85565b60008181526102096020526040902080546001600160a01b03191633179055915050611cc56001600b55565b919050565b6000611cec6064611ce6600e5485611f9f90919063ffffffff16565b90611e84565b90506000611cfa83836116ea565b9050611d0582611746565b61020c546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156113ad573d6000803e3d6000fd5b611d4b8484846118e0565b611d5784848484611fab565b6113ad5760405162461bcd60e51b81526004016108ce90612bb3565b606061020b805461090590612816565b606081600003611daa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd45780611dbe816128b7565b9150611dcd9050600a83612aae565b9150611dae565b60008167ffffffffffffffff811115611def57611def612514565b6040519080825280601f01601f191660200182016040528015611e19576020820181803683370190505b5090505b84156118d857611e2e600183612b62565b9150611e3b600a86612b9f565b611e46906030612b75565b60f81b818381518110611e5b57611e5b6128d0565b60200101906001600160f81b031916908160001a905350611e7d600a86612aae565b9450611e1d565b60006115138284612aae565b6001600160a01b038316611eeb57611ee681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f0e565b816001600160a01b0316836001600160a01b031614611f0e57611f0e83826120ac565b6001600160a01b038216611f2557610b2d81612149565b826001600160a01b0316826001600160a01b031614610b2d57610b2d82826121f8565b60006014826101f48110611f5e57611f5e6128d0565b015415611f81576014826101f48110611f7957611f796128d0565b015492915050565b5090565b610db582826040518060200160405280600081525061223c565b60006115138284612a81565b60006001600160a01b0384163b156120a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fef903390899088908890600401612c05565b6020604051808303816000875af192505050801561202a575060408051601f3d908101601f1916820190925261202791810190612c42565b60015b612087573d808015612058576040519150601f19603f3d011682016040523d82523d6000602084013e61205d565b606091505b50805160000361207f5760405162461bcd60e51b81526004016108ce90612bb3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118d8565b506001949350505050565b600060016120b984610eca565b6120c39190612b62565b600083815260076020526040902054909150808214612116576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061215b90600190612b62565b60008381526009602052604081205460088054939450909284908110612183576121836128d0565b9060005260206000200154905080600883815481106121a4576121a46128d0565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121dc576121dc612c5f565b6001900381819060005260206000200160009055905550505050565b600061220383610eca565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612246838361226f565b6122536000848484611fab565b610b2d5760405162461bcd60e51b81526004016108ce90612bb3565b6001600160a01b0382166122c55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ce565b6000818152600260205260409020546001600160a01b03161561232a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ce565b61233660008383611e90565b6001600160a01b038216600090815260036020526040812080546001929061235f908490612b75565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000602082840312156123cf57600080fd5b5035919050565b6001600160e01b0319811681146116e757600080fd5b6000602082840312156123fe57600080fd5b8135611513816123d6565b80358015158114611cc557600080fd5b60006020828403121561242b57600080fd5b61151382612409565b60005b8381101561244f578181015183820152602001612437565b50506000910152565b60008151808452612470816020860160208601612434565b601f01601f19169290920160200192915050565b6020815260006115136020830184612458565b80356001600160a01b0381168114611cc557600080fd5b600080604083850312156124c157600080fd5b6124ca83612497565b946020939093013593505050565b6000806000606084860312156124ed57600080fd5b6124f684612497565b925061250460208501612497565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561255357612553612514565b604052919050565b600067ffffffffffffffff83111561257557612575612514565b612588601f8401601f191660200161252a565b905082815283838301111561259c57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156125c557600080fd5b813567ffffffffffffffff8111156125dc57600080fd5b8201601f810184136125ed57600080fd5b6118d88482356020840161255b565b6000602080838503121561260f57600080fd5b823567ffffffffffffffff8082111561262757600080fd5b818501915085601f83011261263b57600080fd5b81358181111561264d5761264d612514565b8060051b915061265e84830161252a565b818152918301840191848101908884111561267857600080fd5b938501935b8385101561269d5761268e85612497565b8252938501939085019061267d565b98975050505050505050565b6000602082840312156126bb57600080fd5b61151382612497565b600080604083850312156126d757600080fd5b6126e083612497565b91506126ee60208401612409565b90509250929050565b6000806000806080858703121561270d57600080fd5b61271685612497565b935061272460208601612497565b925060408501359150606085013567ffffffffffffffff81111561274757600080fd5b8501601f8101871361275857600080fd5b6127678782356020840161255b565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b818110156127ab5783518352928401929184019160010161278f565b50909695505050505050565b600080604083850312156127ca57600080fd5b6127d383612497565b91506126ee60208401612497565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061282a57607f821691505b60208210810361284a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600182016128c9576128c96128a1565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610b2d57600081815260208120601f850160051c8101602086101561290d5750805b601f850160051c820191505b8181101561292c57828155600101612919565b505050505050565b815167ffffffffffffffff81111561294e5761294e612514565b6129628161295c8454612816565b846128e6565b602080601f831160018114612997576000841561297f5750858301515b600019600386901b1c1916600185901b17855561292c565b600085815260208120601f198616915b828110156129c6578886015182559484019460019091019084016129a7565b50858210156129e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526028908201527f5368696261734e46543a20796f75206861766520746f206d696e74206174206c60408201526765617374206f6e6560c01b606082015260800190565b60208082526025908201527f5368696261734e46543a2074686520636f6c6c656374696f6e20697320736f6c60408201526419081bdd5d60da1b606082015260800190565b8082028115828204841417610879576108796128a1565b634e487b7160e01b600052601260045260246000fd5b600082612abd57612abd612a98565b500490565b600084516020612ad58285838a01612434565b855191840191612ae88184848a01612434565b8554920191600090612af981612816565b60018281168015612b115760018114612b2657612b52565b60ff1984168752821515830287019450612b52565b896000528560002060005b84811015612b4a57815489820152908301908701612b31565b505082870194505b50929a9950505050505050505050565b81810381811115610879576108796128a1565b80820180821115610879576108796128a1565b600081612b9757612b976128a1565b506000190190565b600082612bae57612bae612a98565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c3890830184612458565b9695505050505050565b600060208284031215612c5457600080fd5b8151611513816123d6565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c426ef5199de73e07e7574535c878983bb05a3cb789b5d39f00360764de8f29364736f6c63430008130033697066733a2f2f626166796265696775676a6a7470666376626b6d686e63747768323432363762637872797979726e7932336b3472653772706a6d706e74796d36752f

Deployed Bytecode

0x6080604052600436106102865760003560e01c8063639ec3001161015a578063b88d4fde116100c1578063da3ef23f1161007a578063da3ef23f1461077e578063e985e9c51461079e578063ee6d9d6d146107e7578063efdcd97414610807578063f2fde38b14610827578063f75b8c5f1461084757600080fd5b8063b88d4fde146106b8578063c6682862146106d8578063c87b56dd146106ed578063d004b0361461070d578063d20688571461073a578063d5abeb011461076857600080fd5b80638da5cb5b116101135780638da5cb5b1461061257806395d89b4114610630578063a0712d6814610645578063a22cb46514610658578063a708d40414610678578063b3ef77f21461069857600080fd5b8063639ec300146105465780636eb0d0301461056657806370a0823114610586578063715018a6146105a65780637f00c7a6146105bb5780638623ec7b146105db57600080fd5b8063239c70ae116101fe57806344a0d68a116101b757806344a0d68a146104955780634b6acafb146104b55780634f6ccce7146104cb57806355f804b3146104eb5780635c975abb1461050b5780636352211e1461052657600080fd5b8063239c70ae146103f457806323b872dd1461040a5780632f745c591461042a578063372500ab1461044a5780634131ff991461045f57806342842e0e1461047557600080fd5b806306fdde031161025057806306fdde0314610351578063081812fc14610373578063095ea7b31461039357806313faede6146103b3578063174f57af146103c957806318160ddd146103df57600080fd5b80620251641461028b578062fe50c6146102c957806301ffc9a7146102f757806302329a2914610327578063047d5e8014610349575b600080fd5b34801561029757600080fd5b5061020c546102ac906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102d557600080fd5b506102e96102e43660046123bd565b61085d565b6040519081526020016102c0565b34801561030357600080fd5b506103176103123660046123ec565b61087f565b60405190151581526020016102c0565b34801561033357600080fd5b50610347610342366004612419565b6108a4565b005b6103476108eb565b34801561035d57600080fd5b506103666108f6565b6040516102c09190612484565b34801561037f57600080fd5b506102ac61038e3660046123bd565b610988565b34801561039f57600080fd5b506103476103ae3660046124ae565b610a1d565b3480156103bf57600080fd5b506102e9600d5481565b3480156103d557600080fd5b506102e9600e5481565b3480156103eb57600080fd5b506008546102e9565b34801561040057600080fd5b506102e960115481565b34801561041657600080fd5b506103476104253660046124d8565b610b32565b34801561043657600080fd5b506102e96104453660046124ae565b610b63565b34801561045657600080fd5b50610347610bf9565b34801561046b57600080fd5b506102e960125481565b34801561048157600080fd5b506103476104903660046124d8565b610ca1565b3480156104a157600080fd5b506103476104b03660046123bd565b610cbc565b3480156104c157600080fd5b506102e960135481565b3480156104d757600080fd5b506102e96104e63660046123bd565b610ceb565b3480156104f757600080fd5b506103476105063660046125b3565b610d7e565b34801561051757600080fd5b5061020a546103179060ff1681565b34801561053257600080fd5b506102ac6105413660046123bd565b610db9565b34801561055257600080fd5b506103476105613660046125fc565b610e30565b34801561057257600080fd5b506103476105813660046123bd565b610e9b565b34801561059257600080fd5b506102e96105a13660046126a9565b610eca565b3480156105b257600080fd5b50610347610f51565b3480156105c757600080fd5b506103476105d63660046123bd565b610f85565b3480156105e757600080fd5b506102ac6105f63660046123bd565b610209602052600090815260409020546001600160a01b031681565b34801561061e57600080fd5b50600a546001600160a01b03166102ac565b34801561063c57600080fd5b50610366610fb4565b6103476106533660046123bd565b610fc3565b34801561066457600080fd5b506103476106733660046126c4565b61117d565b34801561068457600080fd5b506102e96106933660046126a9565b611241565b3480156106a457600080fd5b506103476106b33660046124ae565b611293565b3480156106c457600080fd5b506103476106d33660046126f7565b61137b565b3480156106e457600080fd5b506103666113b3565b3480156106f957600080fd5b506103666107083660046123bd565b611441565b34801561071957600080fd5b5061072d6107283660046126a9565b61151a565b6040516102c09190612773565b34801561074657600080fd5b506102e96107553660046123bd565b6102086020526000908152604090205481565b34801561077457600080fd5b506102e9600f5481565b34801561078a57600080fd5b506103476107993660046125b3565b6115b4565b3480156107aa57600080fd5b506103176107b93660046127b7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f357600080fd5b506102e96108023660046123bd565b6115ea565b34801561081357600080fd5b506103476108223660046126a9565b611602565b34801561083357600080fd5b506103476108423660046126a9565b61164f565b34801561085357600080fd5b506102e960105481565b60008181526102086020526040812054601354610879916116ea565b92915050565b60006001600160e01b0319821663780e9d6360e01b14806108795750610879826116f6565b600a546001600160a01b031633146108d75760405162461bcd60e51b81526004016108ce906127e1565b60405180910390fd5b61020a805460ff1916911515919091179055565b6108f434611746565b565b60606000805461090590612816565b80601f016020809104026020016040519081016040528092919081815260200182805461093190612816565b801561097e5780601f106109535761010080835404028352916020019161097e565b820191906000526020600020905b81548152906001019060200180831161096157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ce565b506000908152600460205260409020546001600160a01b031690565b6000610a2882610db9565b9050806001600160a01b0316836001600160a01b031603610a955760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ce565b336001600160a01b0382161480610ab15750610ab181336107b9565b610b235760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ce565b610b2d838361177b565b505050565b610b3c33826117e9565b610b585760405162461bcd60e51b81526004016108ce90612850565b610b2d8383836118e0565b6000610b6e83610eca565b8210610bd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108ce565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610c01611a8b565b6000610c0c33610eca565b90506000805b82811015610c66576000610c263383610b63565b9050610c3b610c348261085d565b8490611ae4565b6013546000928352610208602052604090922091909155915080610c5e816128b7565b915050610c12565b50604051339082156108fc029083906000818181858888f19350505050158015610c94573d6000803e3d6000fd5b5050506108f46001600b55565b610b2d8383836040518060200160405280600081525061137b565b600a546001600160a01b03163314610ce65760405162461bcd60e51b81526004016108ce906127e1565b600d55565b6000610cf660085490565b8210610d595760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108ce565b60088281548110610d6c57610d6c6128d0565b90600052602060002001549050919050565b600a546001600160a01b03163314610da85760405162461bcd60e51b81526004016108ce906127e1565b61020b610db58282612934565b5050565b6000818152600260205260408120546001600160a01b0316806108795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ce565b600a546001600160a01b03163314610e5a5760405162461bcd60e51b81526004016108ce906127e1565b60005b8151811015610db557610e88828281518110610e7b57610e7b6128d0565b6020026020010151611af0565b5080610e93816128b7565b915050610e5d565b600a546001600160a01b03163314610ec55760405162461bcd60e51b81526004016108ce906127e1565b600e55565b60006001600160a01b038216610f355760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ce565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610f7b5760405162461bcd60e51b81526004016108ce906127e1565b6108f46000611b8f565b600a546001600160a01b03163314610faf5760405162461bcd60e51b81526004016108ce906127e1565b601155565b60606001805461090590612816565b61020a5460ff16156110265760405162461bcd60e51b815260206004820152602660248201527f5368696261734e46543a206d696e74696e6720686173206e6f742073746172746044820152651959081e595d60d21b60648201526084016108ce565b600081116110465760405162461bcd60e51b81526004016108ce906129f4565b6011548111156110aa5760405162461bcd60e51b815260206004820152602960248201527f5368696261734e46543a20796f752063616e206f6e6c79206d696e7420313020604482015268617420612074696d6560b81b60648201526084016108ce565b8060105410156110cc5760405162461bcd60e51b81526004016108ce90612a3c565b600a546001600160a01b031633146111455780600d546110ec9190612a81565b3410156111455760405162461bcd60e51b815260206004820152602160248201527f5368696261734e46543a20746f74616c20636f73742069736e2774206d6174636044820152600d60fb1b60648201526084016108ce565b60015b818111610db55761115833611be1565b5061116b6111668334612aae565b611cca565b80611175816128b7565b915050611148565b336001600160a01b038316036111d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ce565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60008061124d83610eca565b90506000805b8281101561128b5760006112678683610b63565b9050611275610c348261085d565b9250508080611283906128b7565b915050611253565b509392505050565b600a546001600160a01b031633146112bd5760405162461bcd60e51b81526004016108ce906127e1565b6001600160a01b0382166113135760405162461bcd60e51b815260206004820152601760248201527f5368696261734e46543a207a65726f206164647265737300000000000000000060448201526064016108ce565b600081116113335760405162461bcd60e51b81526004016108ce906129f4565b6010546000036113555760405162461bcd60e51b81526004016108ce90612a3c565b60015b818111610b2d5761136883611be1565b5080611373816128b7565b915050611358565b61138533836117e9565b6113a15760405162461bcd60e51b81526004016108ce90612850565b6113ad84848484611d40565b50505050565b600c80546113c090612816565b80601f01602080910402602001604051908101604052809291908181526020018280546113ec90612816565b80156114395780601f1061140e57610100808354040283529160200191611439565b820191906000526020600020905b81548152906001019060200180831161141c57829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166114bb5760405162461bcd60e51b815260206004820152602a60248201527f5368696261734e46543a2055524920717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016108ce565b60006114c5611d73565b905060008151116114e55760405180602001604052806000815250611513565b806114ef84611d83565b600c60405160200161150393929190612ac2565b6040516020818303038152906040525b9392505050565b6060600061152783610eca565b905060008167ffffffffffffffff81111561154457611544612514565b60405190808252806020026020018201604052801561156d578160200160208202803683370190505b50905060005b8281101561128b576115858582610b63565b828281518110611597576115976128d0565b6020908102919091010152806115ac816128b7565b915050611573565b600a546001600160a01b031633146115de5760405162461bcd60e51b81526004016108ce906127e1565b600c610db58282612934565b6014816101f481106115fb57600080fd5b0154905081565b600a546001600160a01b0316331461162c5760405162461bcd60e51b81526004016108ce906127e1565b61020c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146116795760405162461bcd60e51b81526004016108ce906127e1565b6001600160a01b0381166116de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ce565b6116e781611b8f565b50565b60006115138284612b62565b60006001600160e01b031982166380ac58cd60e01b148061172757506001600160e01b03198216635b5e139f60e01b145b8061087957506301ffc9a760e01b6001600160e01b0319831614610879565b6012546117539082611ae4565b60125561177561176c61176560085490565b8390611e84565b60135490611ae4565b60135550565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117b082610db9565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ce565b600061186d83610db9565b9050806001600160a01b0316846001600160a01b031614806118a85750836001600160a01b031661189d84610988565b6001600160a01b0316145b806118d857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166118f382610db9565b6001600160a01b03161461195b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ce565b6001600160a01b0382166119bd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ce565b6119c8838383611e90565b6119d360008261177b565b6001600160a01b03831660009081526003602052604081208054600192906119fc908490612b62565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a2a908490612b75565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6002600b5403611add5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108ce565b6002600b55565b60006115138284612b75565b600080611afc60085490565b90506000611b0982611f48565b611b14906001612b75565b601080549192506000611b2683612b88565b9190505550611b36601054611f48565b6014836101f48110611b4a57611b4a6128d0565b015560135460008281526102086020526040902055611b698482611f85565b60008181526102096020526040902080546001600160a01b031916331790559392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000611beb611a8b565b6010546040805144602080830191909152428284015260608083018590528351808403909101815260809092019092528051910120600091611c2c91612b9f565b90506000611c3982611f48565b611c44906001612b75565b601080549192506000611c5683612b88565b9190505550611c66601054611f48565b6014836101f48110611c7a57611c7a6128d0565b015560135460008281526102086020526040902055611c998482611f85565b60008181526102096020526040902080546001600160a01b03191633179055915050611cc56001600b55565b919050565b6000611cec6064611ce6600e5485611f9f90919063ffffffff16565b90611e84565b90506000611cfa83836116ea565b9050611d0582611746565b61020c546040516001600160a01b039091169082156108fc029083906000818181858888f193505050501580156113ad573d6000803e3d6000fd5b611d4b8484846118e0565b611d5784848484611fab565b6113ad5760405162461bcd60e51b81526004016108ce90612bb3565b606061020b805461090590612816565b606081600003611daa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611dd45780611dbe816128b7565b9150611dcd9050600a83612aae565b9150611dae565b60008167ffffffffffffffff811115611def57611def612514565b6040519080825280601f01601f191660200182016040528015611e19576020820181803683370190505b5090505b84156118d857611e2e600183612b62565b9150611e3b600a86612b9f565b611e46906030612b75565b60f81b818381518110611e5b57611e5b6128d0565b60200101906001600160f81b031916908160001a905350611e7d600a86612aae565b9450611e1d565b60006115138284612aae565b6001600160a01b038316611eeb57611ee681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611f0e565b816001600160a01b0316836001600160a01b031614611f0e57611f0e83826120ac565b6001600160a01b038216611f2557610b2d81612149565b826001600160a01b0316826001600160a01b031614610b2d57610b2d82826121f8565b60006014826101f48110611f5e57611f5e6128d0565b015415611f81576014826101f48110611f7957611f796128d0565b015492915050565b5090565b610db582826040518060200160405280600081525061223c565b60006115138284612a81565b60006001600160a01b0384163b156120a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fef903390899088908890600401612c05565b6020604051808303816000875af192505050801561202a575060408051601f3d908101601f1916820190925261202791810190612c42565b60015b612087573d808015612058576040519150601f19603f3d011682016040523d82523d6000602084013e61205d565b606091505b50805160000361207f5760405162461bcd60e51b81526004016108ce90612bb3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118d8565b506001949350505050565b600060016120b984610eca565b6120c39190612b62565b600083815260076020526040902054909150808214612116576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061215b90600190612b62565b60008381526009602052604081205460088054939450909284908110612183576121836128d0565b9060005260206000200154905080600883815481106121a4576121a46128d0565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806121dc576121dc612c5f565b6001900381819060005260206000200160009055905550505050565b600061220383610eca565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b612246838361226f565b6122536000848484611fab565b610b2d5760405162461bcd60e51b81526004016108ce90612bb3565b6001600160a01b0382166122c55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ce565b6000818152600260205260409020546001600160a01b03161561232a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ce565b61233660008383611e90565b6001600160a01b038216600090815260036020526040812080546001929061235f908490612b75565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000602082840312156123cf57600080fd5b5035919050565b6001600160e01b0319811681146116e757600080fd5b6000602082840312156123fe57600080fd5b8135611513816123d6565b80358015158114611cc557600080fd5b60006020828403121561242b57600080fd5b61151382612409565b60005b8381101561244f578181015183820152602001612437565b50506000910152565b60008151808452612470816020860160208601612434565b601f01601f19169290920160200192915050565b6020815260006115136020830184612458565b80356001600160a01b0381168114611cc557600080fd5b600080604083850312156124c157600080fd5b6124ca83612497565b946020939093013593505050565b6000806000606084860312156124ed57600080fd5b6124f684612497565b925061250460208501612497565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561255357612553612514565b604052919050565b600067ffffffffffffffff83111561257557612575612514565b612588601f8401601f191660200161252a565b905082815283838301111561259c57600080fd5b828260208301376000602084830101529392505050565b6000602082840312156125c557600080fd5b813567ffffffffffffffff8111156125dc57600080fd5b8201601f810184136125ed57600080fd5b6118d88482356020840161255b565b6000602080838503121561260f57600080fd5b823567ffffffffffffffff8082111561262757600080fd5b818501915085601f83011261263b57600080fd5b81358181111561264d5761264d612514565b8060051b915061265e84830161252a565b818152918301840191848101908884111561267857600080fd5b938501935b8385101561269d5761268e85612497565b8252938501939085019061267d565b98975050505050505050565b6000602082840312156126bb57600080fd5b61151382612497565b600080604083850312156126d757600080fd5b6126e083612497565b91506126ee60208401612409565b90509250929050565b6000806000806080858703121561270d57600080fd5b61271685612497565b935061272460208601612497565b925060408501359150606085013567ffffffffffffffff81111561274757600080fd5b8501601f8101871361275857600080fd5b6127678782356020840161255b565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b818110156127ab5783518352928401929184019160010161278f565b50909695505050505050565b600080604083850312156127ca57600080fd5b6127d383612497565b91506126ee60208401612497565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061282a57607f821691505b60208210810361284a57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000600182016128c9576128c96128a1565b5060010190565b634e487b7160e01b600052603260045260246000fd5b601f821115610b2d57600081815260208120601f850160051c8101602086101561290d5750805b601f850160051c820191505b8181101561292c57828155600101612919565b505050505050565b815167ffffffffffffffff81111561294e5761294e612514565b6129628161295c8454612816565b846128e6565b602080601f831160018114612997576000841561297f5750858301515b600019600386901b1c1916600185901b17855561292c565b600085815260208120601f198616915b828110156129c6578886015182559484019460019091019084016129a7565b50858210156129e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60208082526028908201527f5368696261734e46543a20796f75206861766520746f206d696e74206174206c60408201526765617374206f6e6560c01b606082015260800190565b60208082526025908201527f5368696261734e46543a2074686520636f6c6c656374696f6e20697320736f6c60408201526419081bdd5d60da1b606082015260800190565b8082028115828204841417610879576108796128a1565b634e487b7160e01b600052601260045260246000fd5b600082612abd57612abd612a98565b500490565b600084516020612ad58285838a01612434565b855191840191612ae88184848a01612434565b8554920191600090612af981612816565b60018281168015612b115760018114612b2657612b52565b60ff1984168752821515830287019450612b52565b896000528560002060005b84811015612b4a57815489820152908301908701612b31565b505082870194505b50929a9950505050505050505050565b81810381811115610879576108796128a1565b80820180821115610879576108796128a1565b600081612b9757612b976128a1565b506000190190565b600082612bae57612bae612a98565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612c3890830184612458565b9695505050505050565b600060208284031215612c5457600080fd5b8151611513816123d6565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220c426ef5199de73e07e7574535c878983bb05a3cb789b5d39f00360764de8f29364736f6c63430008130033

Deployed Bytecode Sourcemap

49888:9032:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50704:71;;;;;;;;;;-1:-1:-1;50704:71:0;;;;-1:-1:-1;;;;;50704:71:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;50704:71:0;;;;;;;;57725:177;;;;;;;;;;-1:-1:-1;57725:177:0;;;;;:::i;:::-;;:::i;:::-;;;553:25:1;;;541:2;526:18;57725:177:0;407::1;42316:300:0;;;;;;;;;;-1:-1:-1;42316:300:0;;;;;:::i;:::-;;:::i;:::-;;;1140:14:1;;1133:22;1115:41;;1103:2;1088:18;42316:300:0;975:187:1;51613:79:0;;;;;;;;;;-1:-1:-1;51613:79:0;;;;;:::i;:::-;;:::i;:::-;;57226:87;;;:::i;29793:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31486:308::-;;;;;;;;;;-1:-1:-1;31486:308:0;;;;;:::i;:::-;;:::i;31009:411::-;;;;;;;;;;-1:-1:-1;31009:411:0;;;;;:::i;:::-;;:::i;50131:32::-;;;;;;;;;;;;;;;;50187:30;;;;;;;;;;;;;;;;43119:113;;;;;;;;;;-1:-1:-1;43207:10:0;:17;43119:113;;50305:33;;;;;;;;;;;;;;;;32545:376;;;;;;;;;;-1:-1:-1;32545:376:0;;;;;:::i;:::-;;:::i;42700:343::-;;;;;;;;;;-1:-1:-1;42700:343:0;;;;;:::i;:::-;;:::i;57908:379::-;;;;;;;;;;;;;:::i;50366:32::-;;;;;;;;;;;;;;;;32992:185;;;;;;;;;;-1:-1:-1;32992:185:0;;;;;:::i;:::-;;:::i;51230:86::-;;;;;;;;;;-1:-1:-1;51230:86:0;;;;;:::i;:::-;;:::i;50405:28::-;;;;;;;;;;;;;;;;43309:320;;;;;;;;;;-1:-1:-1;43309:320:0;;;;;:::i;:::-;;:::i;51118:104::-;;;;;;;;;;-1:-1:-1;51118:104:0;;;;;:::i;:::-;;:::i;50617:25::-;;;;;;;;;;-1:-1:-1;50617:25:0;;;;;;;;29400:326;;;;;;;;;;-1:-1:-1;29400:326:0;;;;;:::i;:::-;;:::i;54041:246::-;;;;;;;;;;-1:-1:-1;54041:246:0;;;;;:::i;:::-;;:::i;51822:107::-;;;;;;;;;;-1:-1:-1;51822:107:0;;;;;:::i;:::-;;:::i;29043:295::-;;;;;;;;;;-1:-1:-1;29043:295:0;;;;;:::i;:::-;;:::i;11053:94::-;;;;;;;;;;;;;:::i;51324:122::-;;;;;;;;;;-1:-1:-1;51324:122:0;;;;;:::i;:::-;;:::i;50551:42::-;;;;;;;;;;-1:-1:-1;50551:42:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;50551:42:0;;;10402:87;;;;;;;;;;-1:-1:-1;10475:6:0;;-1:-1:-1;;;;;10475:6:0;10402:87;;29962:104;;;;;;;;;;;;;:::i;51953:906::-;;;;;;:::i;:::-;;:::i;31866:327::-;;;;;;;;;;-1:-1:-1;31866:327:0;;;;;:::i;:::-;;:::i;57321:396::-;;;;;;;;;;-1:-1:-1;57321:396:0;;;;;:::i;:::-;;:::i;52913:484::-;;;;;;;;;;-1:-1:-1;52913:484:0;;;;;:::i;:::-;;:::i;33248:365::-;;;;;;;;;;-1:-1:-1;33248:365:0;;;;;:::i;:::-;;:::i;50087:37::-;;;;;;;;;;;;;:::i;56028:586::-;;;;;;;;;;-1:-1:-1;56028:586:0;;;;;:::i;:::-;;:::i;55533:453::-;;;;;;;;;;-1:-1:-1;55533:453:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50495:49::-;;;;;;;;;;-1:-1:-1;50495:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;50224:30;;;;;;;;;;;;;;;;51454:151;;;;;;;;;;-1:-1:-1;51454:151:0;;;;;:::i;:::-;;:::i;32264:214::-;;;;;;;;;;-1:-1:-1;32264:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;32435:25:0;;;32406:4;32435:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32264:214;50456:32;;;;;;;;;;-1:-1:-1;50456:32:0;;;;;:::i;:::-;;:::i;51700:114::-;;;;;;;;;;-1:-1:-1;51700:114:0;;;;;:::i;:::-;;:::i;11302:229::-;;;;;;;;;;-1:-1:-1;11302:229:0;;;;;:::i;:::-;;:::i;50261:37::-;;;;;;;;;;;;;;;;57725:177;57820:7;57870:23;;;:14;:23;;;;;;57852:13;;:42;;:17;:42::i;:::-;57845:49;57725:177;-1:-1:-1;;57725:177:0:o;42316:300::-;42463:4;-1:-1:-1;;;;;;42505:50:0;;-1:-1:-1;;;42505:50:0;;:103;;;42572:36;42596:11;42572:23;:36::i;51613:79::-;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;;;;;;;;;51669:6:::1;:15:::0;;-1:-1:-1;;51669:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51613:79::o;57226:87::-;57279:26;57295:9;57279:15;:26::i;:::-;57226:87::o;29793:100::-;29847:13;29880:5;29873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29793:100;:::o;31486:308::-;31607:7;35249:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35249:16:0;31632:110;;;;-1:-1:-1;;;31632:110:0;;8252:2:1;31632:110:0;;;8234:21:1;8291:2;8271:18;;;8264:30;8330:34;8310:18;;;8303:62;-1:-1:-1;;;8381:18:1;;;8374:42;8433:19;;31632:110:0;8050:408:1;31632:110:0;-1:-1:-1;31762:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31762:24:0;;31486:308::o;31009:411::-;31090:13;31106:23;31121:7;31106:14;:23::i;:::-;31090:39;;31154:5;-1:-1:-1;;;;;31148:11:0;:2;-1:-1:-1;;;;;31148:11:0;;31140:57;;;;-1:-1:-1;;;31140:57:0;;8665:2:1;31140:57:0;;;8647:21:1;8704:2;8684:18;;;8677:30;8743:34;8723:18;;;8716:62;-1:-1:-1;;;8794:18:1;;;8787:31;8835:19;;31140:57:0;8463:397:1;31140:57:0;9840:10;-1:-1:-1;;;;;31232:21:0;;;;:62;;-1:-1:-1;31257:37:0;31274:5;9840:10;32264:214;:::i;31257:37::-;31210:168;;;;-1:-1:-1;;;31210:168:0;;9067:2:1;31210:168:0;;;9049:21:1;9106:2;9086:18;;;9079:30;9145:34;9125:18;;;9118:62;9216:26;9196:18;;;9189:54;9260:19;;31210:168:0;8865:420:1;31210:168:0;31391:21;31400:2;31404:7;31391:8;:21::i;:::-;31079:341;31009:411;;:::o;32545:376::-;32754:41;9840:10;32787:7;32754:18;:41::i;:::-;32732:140;;;;-1:-1:-1;;;32732:140:0;;;;;;;:::i;:::-;32885:28;32895:4;32901:2;32905:7;32885:9;:28::i;42700:343::-;42842:7;42897:23;42914:5;42897:16;:23::i;:::-;42889:5;:31;42867:124;;;;-1:-1:-1;;;42867:124:0;;9910:2:1;42867:124:0;;;9892:21:1;9949:2;9929:18;;;9922:30;9988:34;9968:18;;;9961:62;-1:-1:-1;;;10039:18:1;;;10032:41;10090:19;;42867:124:0;9708:407:1;42867:124:0;-1:-1:-1;;;;;;43009:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42700:343::o;57908:379::-;48993:21;:19;:21::i;:::-;57959:10:::1;57972:21;57982:10;57972:9;:21::i;:::-;57959:34;;58000:15;58030:6:::0;58026:212:::1;58046:5;58042:1;:9;58026:212;;;58068:12;58083:34;58103:10;58115:1;58083:19;:34::i;:::-;58068:49;;58138:42;58150:29;58171:7;58150:20;:29::i;:::-;58138:7:::0;;:11:::1;:42::i;:::-;58217:13;::::0;58191:23:::1;::::0;;;:14:::1;:23;::::0;;;;;:39;;;;58128:52;-1:-1:-1;58053:3:0;::::1;::::0;::::1;:::i;:::-;;;;58026:212;;;-1:-1:-1::0;58244:37:0::1;::::0;58252:10:::1;::::0;58244:37;::::1;;;::::0;58273:7;;58244:37:::1;::::0;;;58273:7;58252:10;58244:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;57952:335;;49037:20:::0;48809:1;49557:7;:22;49374:213;32992:185;33130:39;33147:4;33153:2;33157:7;33130:39;;;;;;;;;;;;:16;:39::i;51230:86::-;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;51293:4:::1;:15:::0;51230:86::o;43309:320::-;43429:7;43484:30;43207:10;:17;;43119:113;43484:30;43476:5;:38;43454:132;;;;-1:-1:-1;;;43454:132:0;;10594:2:1;43454:132:0;;;10576:21:1;10633:2;10613:18;;;10606:30;10672:34;10652:18;;;10645:62;-1:-1:-1;;;10723:18:1;;;10716:42;10775:19;;43454:132:0;10392:408:1;43454:132:0;43604:10;43615:5;43604:17;;;;;;;;:::i;:::-;;;;;;;;;43597:24;;43309:320;;;:::o;51118:104::-;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;51191:13:::1;:23;51207:7:::0;51191:13;:23:::1;:::i;:::-;;51118:104:::0;:::o;29400:326::-;29517:7;29558:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29558:16:0;;29585:110;;;;-1:-1:-1;;;29585:110:0;;13343:2:1;29585:110:0;;;13325:21:1;13382:2;13362:18;;;13355:30;13421:34;13401:18;;;13394:62;-1:-1:-1;;;13472:18:1;;;13465:39;13521:19;;29585:110:0;13141:405:1;54041:246:0;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;54172:9:::1;54167:113;54191:10;:17;54187:1;:21;54167:113;;;54230:38;54254:10;54265:1;54254:13;;;;;;;;:::i;:::-;;;;;;;54230:23;:38::i;:::-;-1:-1:-1::0;54210:3:0;::::1;::::0;::::1;:::i;:::-;;;;54167:113;;51822:107:::0;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;51895:10:::1;:26:::0;51822:107::o;29043:295::-;29160:7;-1:-1:-1;;;;;29207:19:0;;29185:111;;;;-1:-1:-1;;;29185:111:0;;13753:2:1;29185:111:0;;;13735:21:1;13792:2;13772:18;;;13765:30;13831:34;13811:18;;;13804:62;-1:-1:-1;;;13882:18:1;;;13875:40;13932:19;;29185:111:0;13551:406:1;29185:111:0;-1:-1:-1;;;;;;29314:16:0;;;;;:9;:16;;;;;;;29043:295::o;11053:94::-;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;11118:21:::1;11136:1;11118:9;:21::i;51324:122::-:0;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;51405:13:::1;:33:::0;51324:122::o;29962:104::-;30018:13;30051:7;30044:14;;;;;:::i;51953:906::-;52042:6;;;;52041:7;52033:58;;;;-1:-1:-1;;;52033:58:0;;14164:2:1;52033:58:0;;;14146:21:1;14203:2;14183:18;;;14176:30;14242:34;14222:18;;;14215:62;-1:-1:-1;;;14293:18:1;;;14286:36;14339:19;;52033:58:0;13962:402:1;52033:58:0;52124:1;52110:11;:15;52102:68;;;;-1:-1:-1;;;52102:68:0;;;;;;;:::i;:::-;52218:13;;52203:11;:28;;52181:119;;;;-1:-1:-1;;;52181:119:0;;14980:2:1;52181:119:0;;;14962:21:1;15019:2;14999:18;;;14992:30;15058:34;15038:18;;;15031:62;-1:-1:-1;;;15109:18:1;;;15102:39;15158:19;;52181:119:0;14778:405:1;52181:119:0;52347:11;52333:10;;:25;;52311:112;;;;-1:-1:-1;;;52311:112:0;;;;;;;:::i;:::-;10475:6;;-1:-1:-1;;;;;10475:6:0;52438:10;:21;52434:180;;52522:11;52515:4;;:18;;;;:::i;:::-;52502:9;:31;;52476:126;;;;-1:-1:-1;;;52476:126:0;;15969:2:1;52476:126:0;;;15951:21:1;16008:2;15988:18;;;15981:30;16047:34;16027:18;;;16020:62;-1:-1:-1;;;16098:18:1;;;16091:31;16139:19;;52476:126:0;15767:397:1;52476:126:0;52661:1;52644:208;52669:11;52664:1;:16;52644:208;;52734:23;52746:10;52734:11;:23::i;:::-;-1:-1:-1;52799:41:0;52816:23;52828:11;52816:9;:23;:::i;:::-;52799:16;:41::i;:::-;52682:3;;;;:::i;:::-;;;;52644:208;;31866:327;9840:10;-1:-1:-1;;;;;32001:24:0;;;31993:62;;;;-1:-1:-1;;;31993:62:0;;16628:2:1;31993:62:0;;;16610:21:1;16667:2;16647:18;;;16640:30;16706:27;16686:18;;;16679:55;16751:18;;31993:62:0;16426:349:1;31993:62:0;9840:10;32068:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32068:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32068:53:0;;;;;;;;;;32137:48;;1115:41:1;;;32068:42:0;;9840:10;32137:48;;1088:18:1;32137:48:0;;;;;;;31866:327;;:::o;57321:396::-;57416:7;57441:13;57457:17;57467:6;57457:9;:17::i;:::-;57441:33;;57485:13;57518:9;57513:174;57537:5;57533:1;:9;57513:174;;;57564:15;57582:30;57602:6;57610:1;57582:19;:30::i;:::-;57564:48;;57635:40;57645:29;57666:7;57645:20;:29::i;57635:40::-;57627:48;;57549:138;57544:3;;;;;:::i;:::-;;;;57513:174;;;-1:-1:-1;57704:5:0;57321:396;-1:-1:-1;;;57321:396:0:o;52913:484::-;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;53051:21:0;::::1;53043:57;;;::::0;-1:-1:-1;;;53043:57:0;;16982:2:1;53043:57:0::1;::::0;::::1;16964:21:1::0;17021:2;17001:18;;;16994:30;17060:25;17040:18;;;17033:53;17103:18;;53043:57:0::1;16780:347:1::0;53043:57:0::1;53129:1;53119:7;:11;53111:64;;;;-1:-1:-1::0;;;53111:64:0::1;;;;;;;:::i;:::-;53194:10;;53208:1;53194:15:::0;53186:65:::1;;;;-1:-1:-1::0;;;53186:65:0::1;;;;;;;:::i;:::-;53321:1;53304:86;53329:7;53324:1;:12;53304:86;;53358:20;53370:7;53358:11;:20::i;:::-;-1:-1:-1::0;53338:3:0;::::1;::::0;::::1;:::i;:::-;;;;53304:86;;33248:365:::0;33437:41;9840:10;33470:7;33437:18;:41::i;:::-;33415:140;;;;-1:-1:-1;;;33415:140:0;;;;;;;:::i;:::-;33566:39;33580:4;33586:2;33590:7;33599:5;33566:13;:39::i;:::-;33248:365;;;;:::o;50087:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56028:586::-;35225:4;35249:16;;;:7;:16;;;;;;56142:13;;-1:-1:-1;;;;;35249:16:0;56173:67;;;;-1:-1:-1;;;56173:67:0;;17334:2:1;56173:67:0;;;17316:21:1;17373:2;17353:18;;;17346:30;17412:34;17392:18;;;17385:62;-1:-1:-1;;;17463:18:1;;;17456:40;17513:19;;56173:67:0;17132:406:1;56173:67:0;56251:28;56282:10;:8;:10::i;:::-;56251:41;;56354:1;56329:14;56323:28;:32;:283;;;;;;;;;;;;;;;;;56447:14;56488;:3;:12;:14::i;:::-;56529:13;56404:161;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56323:283;56303:303;56028:586;-1:-1:-1;;;56028:586:0:o;55533:453::-;55618:16;55682:23;55708:17;55718:6;55708:9;:17::i;:::-;55682:43;;55736:25;55778:15;55764:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55764:30:0;;55736:58;;55845:9;55840:113;55860:15;55856:1;:19;55840:113;;;55911:30;55931:6;55939:1;55911:19;:30::i;:::-;55897:8;55906:1;55897:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55877:3;;;;:::i;:::-;;;;55840:113;;51454:151;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;51564:13:::1;:33;51580:17:::0;51564:13;:33:::1;:::i;50456:32::-:0;;;;;;;;;;;;;;;-1:-1:-1;50456:32:0;:::o;51700:114::-;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;51777:11:::1;:29:::0;;-1:-1:-1;;;;;;51777:29:0::1;-1:-1:-1::0;;;;;51777:29:0;;;::::1;::::0;;;::::1;::::0;;51700:114::o;11302:229::-;10475:6;;-1:-1:-1;;;;;10475:6:0;9840:10;10622:23;10614:68;;;;-1:-1:-1;;;10614:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11405:22:0;::::1;11383:110;;;::::0;-1:-1:-1;;;11383:110:0;;19006:2:1;11383:110:0::1;::::0;::::1;18988:21:1::0;19045:2;19025:18;;;19018:30;19084:34;19064:18;;;19057:62;-1:-1:-1;;;19135:18:1;;;19128:36;19181:19;;11383:110:0::1;18804:402:1::0;11383:110:0::1;11504:19;11514:8;11504:9;:19::i;:::-;11302:229:::0;:::o;3964:98::-;4022:7;4049:5;4053:1;4049;:5;:::i;28624:355::-;28771:4;-1:-1:-1;;;;;;28813:40:0;;-1:-1:-1;;;28813:40:0;;:105;;-1:-1:-1;;;;;;;28870:48:0;;-1:-1:-1;;;28870:48:0;28813:105;:158;;;-1:-1:-1;;;;;;;;;;21558:40:0;;;28935:36;21399:207;57025:193;57106:17;;:30;;57128:7;57106:21;:30::i;:::-;57086:17;:50;57163:47;57182:26;57194:13;43207:10;:17;;43119:113;57194:13;57182:7;;:11;:26::i;:::-;57163:13;;;:17;:47::i;:::-;57147:13;:63;-1:-1:-1;57025:193:0:o;39283:174::-;39358:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39358:29:0;-1:-1:-1;;;;;39358:29:0;;;;;;;;:24;;39412:23;39358:24;39412:14;:23::i;:::-;-1:-1:-1;;;;;39403:46:0;;;;;;;;;;;39283:174;;:::o;35454:452::-;35583:4;35249:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35249:16:0;35605:110;;;;-1:-1:-1;;;35605:110:0;;19546:2:1;35605:110:0;;;19528:21:1;19585:2;19565:18;;;19558:30;19624:34;19604:18;;;19597:62;-1:-1:-1;;;19675:18:1;;;19668:42;19727:19;;35605:110:0;19344:408:1;35605:110:0;35726:13;35742:23;35757:7;35742:14;:23::i;:::-;35726:39;;35795:5;-1:-1:-1;;;;;35784:16:0;:7;-1:-1:-1;;;;;35784:16:0;;:64;;;;35841:7;-1:-1:-1;;;;;35817:31:0;:20;35829:7;35817:11;:20::i;:::-;-1:-1:-1;;;;;35817:31:0;;35784:64;:113;;;-1:-1:-1;;;;;;32435:25:0;;;32406:4;32435:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35865:32;35776:122;35454:452;-1:-1:-1;;;;35454:452:0:o;38550:615::-;38723:4;-1:-1:-1;;;;;38696:31:0;:23;38711:7;38696:14;:23::i;:::-;-1:-1:-1;;;;;38696:31:0;;38674:122;;;;-1:-1:-1;;;38674:122:0;;19959:2:1;38674:122:0;;;19941:21:1;19998:2;19978:18;;;19971:30;20037:34;20017:18;;;20010:62;-1:-1:-1;;;20088:18:1;;;20081:39;20137:19;;38674:122:0;19757:405:1;38674:122:0;-1:-1:-1;;;;;38815:16:0;;38807:65;;;;-1:-1:-1;;;38807:65:0;;20369:2:1;38807:65:0;;;20351:21:1;20408:2;20388:18;;;20381:30;20447:34;20427:18;;;20420:62;-1:-1:-1;;;20498:18:1;;;20491:34;20542:19;;38807:65:0;20167:400:1;38807:65:0;38885:39;38906:4;38912:2;38916:7;38885:20;:39::i;:::-;38989:29;39006:1;39010:7;38989:8;:29::i;:::-;-1:-1:-1;;;;;39031:15:0;;;;;;:9;:15;;;;;:20;;39050:1;;39031:15;:20;;39050:1;;39031:20;:::i;:::-;;;;-1:-1:-1;;;;;;;39062:13:0;;;;;;:9;:13;;;;;:18;;39079:1;;39062:13;:18;;39079:1;;39062:18;:::i;:::-;;;;-1:-1:-1;;39091:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;39091:21:0;-1:-1:-1;;;;;39091:21:0;;;;;;;;;39130:27;;39091:16;;39130:27;;;;;;;38550:615;;;:::o;49073:293::-;48853:1;49207:7;;:19;49199:63;;;;-1:-1:-1;;;49199:63:0;;20904:2:1;49199:63:0;;;20886:21:1;20943:2;20923:18;;;20916:30;20982:33;20962:18;;;20955:61;21033:18;;49199:63:0;20702:355:1;49199:63:0;48853:1;49340:7;:18;49073:293::o;3583:98::-;3641:7;3668:5;3672:1;3668;:5;:::i;54295:597::-;54365:7;54419:14;54436:13;43207:10;:17;;43119:113;54436:13;54419:30;;54460:18;54481:16;54490:6;54481:8;:16::i;:::-;:20;;54500:1;54481:20;:::i;:::-;54538:10;:12;;54460:41;;-1:-1:-1;54538:10:0;:12;;;:::i;:::-;;;;;;54620:20;54629:10;;54620:8;:20::i;:::-;54597:12;54610:6;54597:20;;;;;;;:::i;:::-;;:43;54706:13;;54677:26;;;;:14;:26;;;;;:42;54747:32;54757:9;54692:10;54747:9;:32::i;:::-;54824:19;;;;:7;:19;;;;;:32;;-1:-1:-1;;;;;;54824:32:0;54846:10;54824:32;;;54832:10;54295:597;-1:-1:-1;;;54295:597:0:o;11539:173::-;11614:6;;;-1:-1:-1;;;;;11631:17:0;;;-1:-1:-1;;;;;;11631:17:0;;;;;;;11664:40;;11614:6;;;11631:17;11614:6;;11664:40;;11595:16;;11664:40;11584:128;11539:173;:::o;53425:608::-;53496:7;48993:21;:19;:21::i;:::-;53582:10:::1;::::0;58714:161;;;58757:16;58714:161;;;;21924:19:1;;;;58800:15:0;21959:12:1;;;21952:28;21996:12;;;;21989:28;;;58714:161:0;;;;;;;;;;22033:12:1;;;;58714:161:0;;;58682:212;;;;;-1:-1:-1;;53567:25:0::1;::::0;::::1;:::i;:::-;53550:42;;53603:18;53624:16;53633:6;53624:8;:16::i;:::-;:20;::::0;53643:1:::1;53624:20;:::i;:::-;53681:10;:12:::0;;53603:41;;-1:-1:-1;53681:10:0::1;:12;::::0;::::1;:::i;:::-;;;;;;53763:20;53772:10;;53763:8;:20::i;:::-;53740:12;53753:6;53740:20;;;;;;;:::i;:::-;;:43:::0;53849:13:::1;::::0;53820:26:::1;::::0;;;:14:::1;:26;::::0;;;;:42;53890:30:::1;53900:7:::0;53835:10;53890:9:::1;:30::i;:::-;53965:19;::::0;;;:7:::1;:19;::::0;;;;:32;;-1:-1:-1;;;;;;53965:32:0::1;53987:10;53965:32;::::0;;53973:10;-1:-1:-1;;49037:20:0;48809:1;49557:7;:22;49374:213;49037:20;53425:608;;;:::o;56640:356::-;56728:17;56748:32;56776:3;56748:23;56760:10;;56748:7;:11;;:23;;;;:::i;:::-;:27;;:32::i;:::-;56728:52;-1:-1:-1;56791:16:0;56810:22;:7;56728:52;56810:11;:22::i;:::-;56791:41;;56883:26;56899:9;56883:15;:26::i;:::-;56957:11;;56949:39;;-1:-1:-1;;;;;56957:11:0;;;;56949:39;;;;;56979:8;;56957:11;56949:39;56957:11;56949:39;56979:8;56957:11;56949:39;;;;;;;;;;;;;;;;;;;34495:352;34652:28;34662:4;34668:2;34672:7;34652:9;:28::i;:::-;34713:48;34736:4;34742:2;34746:7;34755:5;34713:22;:48::i;:::-;34691:148;;;;-1:-1:-1;;;34691:148:0;;;;;;;:::i;50980:114::-;51040:13;51073;51066:20;;;;;:::i;7936:723::-;7992:13;8213:5;8222:1;8213:10;8209:53;;-1:-1:-1;;8240:10:0;;;;;;;;;;;;-1:-1:-1;;;8240:10:0;;;;;7936:723::o;8209:53::-;8287:5;8272:12;8328:78;8335:9;;8328:78;;8361:8;;;;:::i;:::-;;-1:-1:-1;8384:10:0;;-1:-1:-1;8392:2:0;8384:10;;:::i;:::-;;;8328:78;;;8416:19;8448:6;8438:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8438:17:0;;8416:39;;8466:154;8473:10;;8466:154;;8500:11;8510:1;8500:11;;:::i;:::-;;-1:-1:-1;8569:10:0;8577:2;8569:5;:10;:::i;:::-;8556:24;;:2;:24;:::i;:::-;8543:39;;8526:6;8533;8526:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8526:56:0;;;;;;;;-1:-1:-1;8597:11:0;8606:2;8597:11;;:::i;:::-;;;8466:154;;4720:98;4778:7;4805:5;4809:1;4805;:5;:::i;44242:589::-;-1:-1:-1;;;;;44448:18:0;;44444:187;;44483:40;44515:7;45658:10;:17;;45631:24;;;;:15;:24;;;;;:44;;;45686:24;;;;;;;;;;;;45554:164;44483:40;44444:187;;;44553:2;-1:-1:-1;;;;;44545:10:0;:4;-1:-1:-1;;;;;44545:10:0;;44541:90;;44572:47;44605:4;44611:7;44572:32;:47::i;:::-;-1:-1:-1;;;;;44645:16:0;;44641:183;;44678:45;44715:7;44678:36;:45::i;44641:183::-;44751:4;-1:-1:-1;;;;;44745:10:0;:2;-1:-1:-1;;;;;44745:10:0;;44741:83;;44772:40;44800:2;44804:7;44772:27;:40::i;58352:172::-;58409:7;58433:12;58446:6;58433:20;;;;;;;:::i;:::-;;;:25;58429:87;;58467:12;58480:6;58467:20;;;;;;;:::i;:::-;;;;58352:172;-1:-1:-1;;58352:172:0:o;58429:87::-;-1:-1:-1;58510:6:0;58352:172::o;36248:110::-;36324:26;36334:2;36338:7;36324:26;;;;;;;;;;;;:9;:26::i;4321:98::-;4379:7;4406:5;4410:1;4406;:5;:::i;40022:980::-;40177:4;-1:-1:-1;;;;;40198:13:0;;12652:20;12700:8;40194:801;;40251:175;;-1:-1:-1;;;40251:175:0;;-1:-1:-1;;;;;40251:36:0;;;;;:175;;9840:10;;40345:4;;40372:7;;40402:5;;40251:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40251:175:0;;;;;;;;-1:-1:-1;;40251:175:0;;;;;;;;;;;;:::i;:::-;;;40230:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40609:6;:13;40626:1;40609:18;40605:320;;40652:108;;-1:-1:-1;;;40652:108:0;;;;;;;:::i;40605:320::-;40875:6;40869:13;40860:6;40856:2;40852:15;40845:38;40230:710;-1:-1:-1;;;;;;40490:51:0;-1:-1:-1;;;40490:51:0;;-1:-1:-1;40483:58:0;;40194:801;-1:-1:-1;40979:4:0;40022:980;;;;;;:::o;46345:1002::-;46625:22;46675:1;46650:22;46667:4;46650:16;:22::i;:::-;:26;;;;:::i;:::-;46687:18;46708:26;;;:17;:26;;;;;;46625:51;;-1:-1:-1;46841:28:0;;;46837:328;;-1:-1:-1;;;;;46908:18:0;;46886:19;46908:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46959:30;;;;;;:44;;;47076:30;;:17;:30;;;;;:43;;;46837:328;-1:-1:-1;47261:26:0;;;;:17;:26;;;;;;;;47254:33;;;-1:-1:-1;;;;;47305:18:0;;;;;:12;:18;;;;;:34;;;;;;;47298:41;46345:1002::o;47642:1079::-;47920:10;:17;47895:22;;47920:21;;47940:1;;47920:21;:::i;:::-;47952:18;47973:24;;;:15;:24;;;;;;48346:10;:26;;47895:46;;-1:-1:-1;47973:24:0;;47895:46;;48346:26;;;;;;:::i;:::-;;;;;;;;;48324:48;;48410:11;48385:10;48396;48385:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48490:28;;;:15;:28;;;;;;;:41;;;48662:24;;;;;48655:31;48697:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47713:1008;;;47642:1079;:::o;45132:221::-;45217:14;45234:20;45251:2;45234:16;:20::i;:::-;-1:-1:-1;;;;;45265:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45310:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45132:221:0:o;36585:321::-;36715:18;36721:2;36725:7;36715:5;:18::i;:::-;36766:54;36797:1;36801:2;36805:7;36814:5;36766:22;:54::i;:::-;36744:154;;;;-1:-1:-1;;;36744:154:0;;;;;;;:::i;37242:382::-;-1:-1:-1;;;;;37322:16:0;;37314:61;;;;-1:-1:-1;;;37314:61:0;;23138:2:1;37314:61:0;;;23120:21:1;;;23157:18;;;23150:30;23216:34;23196:18;;;23189:62;23268:18;;37314:61:0;22936:356:1;37314:61:0;35225:4;35249:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35249:16:0;:30;37386:58;;;;-1:-1:-1;;;37386:58:0;;23499:2:1;37386:58:0;;;23481:21:1;23538:2;23518:18;;;23511:30;23577;23557:18;;;23550:58;23625:18;;37386:58:0;23297:352:1;37386:58:0;37457:45;37486:1;37490:2;37494:7;37457:20;:45::i;:::-;-1:-1:-1;;;;;37515:13:0;;;;;;:9;:13;;;;;:18;;37532:1;;37515:13;:18;;37532:1;;37515:18;:::i;:::-;;;;-1:-1:-1;;37544:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37544:21:0;-1:-1:-1;;;;;37544:21:0;;;;;;;;37583:33;;37544:16;;;37583:33;;37544:16;;37583:33;37242:382;;:::o;222:180:1:-;281:6;334:2;322:9;313:7;309:23;305:32;302:52;;;350:1;347;340:12;302:52;-1:-1:-1;373:23:1;;222:180;-1:-1:-1;222:180:1:o;589:131::-;-1:-1:-1;;;;;;663:32:1;;653:43;;643:71;;710:1;707;700:12;725:245;783:6;836:2;824:9;815:7;811:23;807:32;804:52;;;852:1;849;842:12;804:52;891:9;878:23;910:30;934:5;910:30;:::i;1167:160::-;1232:20;;1288:13;;1281:21;1271:32;;1261:60;;1317:1;1314;1307:12;1332:180;1388:6;1441:2;1429:9;1420:7;1416:23;1412:32;1409:52;;;1457:1;1454;1447:12;1409:52;1480:26;1496:9;1480:26;:::i;1517:250::-;1602:1;1612:113;1626:6;1623:1;1620:13;1612:113;;;1702:11;;;1696:18;1683:11;;;1676:39;1648:2;1641:10;1612:113;;;-1:-1:-1;;1759:1:1;1741:16;;1734:27;1517:250::o;1772:271::-;1814:3;1852:5;1846:12;1879:6;1874:3;1867:19;1895:76;1964:6;1957:4;1952:3;1948:14;1941:4;1934:5;1930:16;1895:76;:::i;:::-;2025:2;2004:15;-1:-1:-1;;2000:29:1;1991:39;;;;2032:4;1987:50;;1772:271;-1:-1:-1;;1772:271:1:o;2048:220::-;2197:2;2186:9;2179:21;2160:4;2217:45;2258:2;2247:9;2243:18;2235:6;2217:45;:::i;2273:173::-;2341:20;;-1:-1:-1;;;;;2390:31:1;;2380:42;;2370:70;;2436:1;2433;2426:12;2451:254;2519:6;2527;2580:2;2568:9;2559:7;2555:23;2551:32;2548:52;;;2596:1;2593;2586:12;2548:52;2619:29;2638:9;2619:29;:::i;:::-;2609:39;2695:2;2680:18;;;;2667:32;;-1:-1:-1;;;2451:254:1:o;2710:328::-;2787:6;2795;2803;2856:2;2844:9;2835:7;2831:23;2827:32;2824:52;;;2872:1;2869;2862:12;2824:52;2895:29;2914:9;2895:29;:::i;:::-;2885:39;;2943:38;2977:2;2966:9;2962:18;2943:38;:::i;:::-;2933:48;;3028:2;3017:9;3013:18;3000:32;2990:42;;2710:328;;;;;:::o;3043:127::-;3104:10;3099:3;3095:20;3092:1;3085:31;3135:4;3132:1;3125:15;3159:4;3156:1;3149:15;3175:275;3246:2;3240:9;3311:2;3292:13;;-1:-1:-1;;3288:27:1;3276:40;;3346:18;3331:34;;3367:22;;;3328:62;3325:88;;;3393:18;;:::i;:::-;3429:2;3422:22;3175:275;;-1:-1:-1;3175:275:1:o;3455:407::-;3520:5;3554:18;3546:6;3543:30;3540:56;;;3576:18;;:::i;:::-;3614:57;3659:2;3638:15;;-1:-1:-1;;3634:29:1;3665:4;3630:40;3614:57;:::i;:::-;3605:66;;3694:6;3687:5;3680:21;3734:3;3725:6;3720:3;3716:16;3713:25;3710:45;;;3751:1;3748;3741:12;3710:45;3800:6;3795:3;3788:4;3781:5;3777:16;3764:43;3854:1;3847:4;3838:6;3831:5;3827:18;3823:29;3816:40;3455:407;;;;;:::o;3867:451::-;3936:6;3989:2;3977:9;3968:7;3964:23;3960:32;3957:52;;;4005:1;4002;3995:12;3957:52;4045:9;4032:23;4078:18;4070:6;4067:30;4064:50;;;4110:1;4107;4100:12;4064:50;4133:22;;4186:4;4178:13;;4174:27;-1:-1:-1;4164:55:1;;4215:1;4212;4205:12;4164:55;4238:74;4304:7;4299:2;4286:16;4281:2;4277;4273:11;4238:74;:::i;4323:952::-;4407:6;4438:2;4481;4469:9;4460:7;4456:23;4452:32;4449:52;;;4497:1;4494;4487:12;4449:52;4537:9;4524:23;4566:18;4607:2;4599:6;4596:14;4593:34;;;4623:1;4620;4613:12;4593:34;4661:6;4650:9;4646:22;4636:32;;4706:7;4699:4;4695:2;4691:13;4687:27;4677:55;;4728:1;4725;4718:12;4677:55;4764:2;4751:16;4786:2;4782;4779:10;4776:36;;;4792:18;;:::i;:::-;4838:2;4835:1;4831:10;4821:20;;4861:28;4885:2;4881;4877:11;4861:28;:::i;:::-;4923:15;;;4993:11;;;4989:20;;;4954:12;;;;5021:19;;;5018:39;;;5053:1;5050;5043:12;5018:39;5077:11;;;;5097:148;5113:6;5108:3;5105:15;5097:148;;;5179:23;5198:3;5179:23;:::i;:::-;5167:36;;5130:12;;;;5223;;;;5097:148;;;5264:5;4323:952;-1:-1:-1;;;;;;;;4323:952:1:o;5280:186::-;5339:6;5392:2;5380:9;5371:7;5367:23;5363:32;5360:52;;;5408:1;5405;5398:12;5360:52;5431:29;5450:9;5431:29;:::i;5471:254::-;5536:6;5544;5597:2;5585:9;5576:7;5572:23;5568:32;5565:52;;;5613:1;5610;5603:12;5565:52;5636:29;5655:9;5636:29;:::i;:::-;5626:39;;5684:35;5715:2;5704:9;5700:18;5684:35;:::i;:::-;5674:45;;5471:254;;;;;:::o;5730:667::-;5825:6;5833;5841;5849;5902:3;5890:9;5881:7;5877:23;5873:33;5870:53;;;5919:1;5916;5909:12;5870:53;5942:29;5961:9;5942:29;:::i;:::-;5932:39;;5990:38;6024:2;6013:9;6009:18;5990:38;:::i;:::-;5980:48;;6075:2;6064:9;6060:18;6047:32;6037:42;;6130:2;6119:9;6115:18;6102:32;6157:18;6149:6;6146:30;6143:50;;;6189:1;6186;6179:12;6143:50;6212:22;;6265:4;6257:13;;6253:27;-1:-1:-1;6243:55:1;;6294:1;6291;6284:12;6243:55;6317:74;6383:7;6378:2;6365:16;6360:2;6356;6352:11;6317:74;:::i;:::-;6307:84;;;5730:667;;;;;;;:::o;6402:632::-;6573:2;6625:21;;;6695:13;;6598:18;;;6717:22;;;6544:4;;6573:2;6796:15;;;;6770:2;6755:18;;;6544:4;6839:169;6853:6;6850:1;6847:13;6839:169;;;6914:13;;6902:26;;6983:15;;;;6948:12;;;;6875:1;6868:9;6839:169;;;-1:-1:-1;7025:3:1;;6402:632;-1:-1:-1;;;;;;6402:632:1:o;7039:260::-;7107:6;7115;7168:2;7156:9;7147:7;7143:23;7139:32;7136:52;;;7184:1;7181;7174:12;7136:52;7207:29;7226:9;7207:29;:::i;:::-;7197:39;;7255:38;7289:2;7278:9;7274:18;7255:38;:::i;7304:356::-;7506:2;7488:21;;;7525:18;;;7518:30;7584:34;7579:2;7564:18;;7557:62;7651:2;7636:18;;7304:356::o;7665:380::-;7744:1;7740:12;;;;7787;;;7808:61;;7862:4;7854:6;7850:17;7840:27;;7808:61;7915:2;7907:6;7904:14;7884:18;7881:38;7878:161;;7961:10;7956:3;7952:20;7949:1;7942:31;7996:4;7993:1;7986:15;8024:4;8021:1;8014:15;7878:161;;7665:380;;;:::o;9290:413::-;9492:2;9474:21;;;9531:2;9511:18;;;9504:30;9570:34;9565:2;9550:18;;9543:62;-1:-1:-1;;;9636:2:1;9621:18;;9614:47;9693:3;9678:19;;9290:413::o;10120:127::-;10181:10;10176:3;10172:20;10169:1;10162:31;10212:4;10209:1;10202:15;10236:4;10233:1;10226:15;10252:135;10291:3;10312:17;;;10309:43;;10332:18;;:::i;:::-;-1:-1:-1;10379:1:1;10368:13;;10252:135::o;10805:127::-;10866:10;10861:3;10857:20;10854:1;10847:31;10897:4;10894:1;10887:15;10921:4;10918:1;10911:15;11063:545;11165:2;11160:3;11157:11;11154:448;;;11201:1;11226:5;11222:2;11215:17;11271:4;11267:2;11257:19;11341:2;11329:10;11325:19;11322:1;11318:27;11312:4;11308:38;11377:4;11365:10;11362:20;11359:47;;;-1:-1:-1;11400:4:1;11359:47;11455:2;11450:3;11446:12;11443:1;11439:20;11433:4;11429:31;11419:41;;11510:82;11528:2;11521:5;11518:13;11510:82;;;11573:17;;;11554:1;11543:13;11510:82;;;11514:3;;;11063:545;;;:::o;11784:1352::-;11910:3;11904:10;11937:18;11929:6;11926:30;11923:56;;;11959:18;;:::i;:::-;11988:97;12078:6;12038:38;12070:4;12064:11;12038:38;:::i;:::-;12032:4;11988:97;:::i;:::-;12140:4;;12204:2;12193:14;;12221:1;12216:663;;;;12923:1;12940:6;12937:89;;;-1:-1:-1;12992:19:1;;;12986:26;12937:89;-1:-1:-1;;11741:1:1;11737:11;;;11733:24;11729:29;11719:40;11765:1;11761:11;;;11716:57;13039:81;;12186:944;;12216:663;11010:1;11003:14;;;11047:4;11034:18;;-1:-1:-1;;12252:20:1;;;12370:236;12384:7;12381:1;12378:14;12370:236;;;12473:19;;;12467:26;12452:42;;12565:27;;;;12533:1;12521:14;;;;12400:19;;12370:236;;;12374:3;12634:6;12625:7;12622:19;12619:201;;;12695:19;;;12689:26;-1:-1:-1;;12778:1:1;12774:14;;;12790:3;12770:24;12766:37;12762:42;12747:58;12732:74;;12619:201;-1:-1:-1;;;;;12866:1:1;12850:14;;;12846:22;12833:36;;-1:-1:-1;11784:1352:1:o;14369:404::-;14571:2;14553:21;;;14610:2;14590:18;;;14583:30;14649:34;14644:2;14629:18;;14622:62;-1:-1:-1;;;14715:2:1;14700:18;;14693:38;14763:3;14748:19;;14369:404::o;15188:401::-;15390:2;15372:21;;;15429:2;15409:18;;;15402:30;15468:34;15463:2;15448:18;;15441:62;-1:-1:-1;;;15534:2:1;15519:18;;15512:35;15579:3;15564:19;;15188:401::o;15594:168::-;15667:9;;;15698;;15715:15;;;15709:22;;15695:37;15685:71;;15736:18;;:::i;16169:127::-;16230:10;16225:3;16221:20;16218:1;16211:31;16261:4;16258:1;16251:15;16285:4;16282:1;16275:15;16301:120;16341:1;16367;16357:35;;16372:18;;:::i;:::-;-1:-1:-1;16406:9:1;;16301:120::o;17543:1256::-;17767:3;17805:6;17799:13;17831:4;17844:64;17901:6;17896:3;17891:2;17883:6;17879:15;17844:64;:::i;:::-;17971:13;;17930:16;;;;17993:68;17971:13;17930:16;18028:15;;;17993:68;:::i;:::-;18150:13;;18083:20;;;18123:1;;18188:36;18150:13;18188:36;:::i;:::-;18243:1;18260:18;;;18287:141;;;;18442:1;18437:337;;;;18253:521;;18287:141;-1:-1:-1;;18322:24:1;;18308:39;;18399:16;;18392:24;18378:39;;18367:51;;;-1:-1:-1;18287:141:1;;18437:337;18468:6;18465:1;18458:17;18516:2;18513:1;18503:16;18541:1;18555:169;18569:8;18566:1;18563:15;18555:169;;;18651:14;;18636:13;;;18629:37;18694:16;;;;18586:10;;18555:169;;;18559:3;;18755:8;18748:5;18744:20;18737:27;;18253:521;-1:-1:-1;18790:3:1;;17543:1256;-1:-1:-1;;;;;;;;;;17543:1256:1:o;19211:128::-;19278:9;;;19299:11;;;19296:37;;;19313:18;;:::i;20572:125::-;20637:9;;;20658:10;;;20655:36;;;20671:18;;:::i;21062:136::-;21101:3;21129:5;21119:39;;21138:18;;:::i;:::-;-1:-1:-1;;;21174:18:1;;21062:136::o;21203:112::-;21235:1;21261;21251:35;;21266:18;;:::i;:::-;-1:-1:-1;21300:9:1;;21203:112::o;21320:414::-;21522:2;21504:21;;;21561:2;21541:18;;;21534:30;21600:34;21595:2;21580:18;;21573:62;-1:-1:-1;;;21666:2:1;21651:18;;21644:48;21724:3;21709:19;;21320:414::o;22056:489::-;-1:-1:-1;;;;;22325:15:1;;;22307:34;;22377:15;;22372:2;22357:18;;22350:43;22424:2;22409:18;;22402:34;;;22472:3;22467:2;22452:18;;22445:31;;;22250:4;;22493:46;;22519:19;;22511:6;22493:46;:::i;:::-;22485:54;22056:489;-1:-1:-1;;;;;;22056:489:1:o;22550:249::-;22619:6;22672:2;22660:9;22651:7;22647:23;22643:32;22640:52;;;22688:1;22685;22678:12;22640:52;22720:9;22714:16;22739:30;22763:5;22739:30;:::i;22804:127::-;22865:10;22860:3;22856:20;22853:1;22846:31;22896:4;22893:1;22886:15;22920:4;22917:1;22910:15

Swarm Source

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