ETH Price: $3,387.65 (-1.57%)
Gas: 2 Gwei

Token

NFTNFT (NFTNFT)
 

Overview

Max Total Supply

189 NFTNFT

Holders

148

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*muimui🐈️.eth
Balance
1 NFTNFT
0x587a533ae239db6d5efad5b9906a4a4b2803951b
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:
Nftnft

Compiler Version
v0.6.8+commit.0bbfe453

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU AGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-01
*/

// File: contracts/IScam.sol

// spd-License-Identifier: AGPL-3.0-or-later

pragma solidity ^0.6.8;

interface IScam {
  function transferFrom(address from, address to, uint256 tokenId) external;
  function ownerOf(uint256 tokenId) external view returns (address owner);
}

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

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

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

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

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Library for managing an enumerable variant of Solidity's
 * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`]
 * type.
 *
 * Maps have the following properties:
 *
 * - Entries are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Entries are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableMap for EnumerableMap.UintToAddressMap;
 *
 *     // Declare a set state variable
 *     EnumerableMap.UintToAddressMap private myMap;
 * }
 * ```
 *
 * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are
 * supported.
 */
library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;

        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) { // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({ _key: key, _value: value }));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) { // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key) private view returns (bool) {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

   /**
    * @dev Returns the key-value pair stored at position `index` in the map. O(1).
    *
    * Note that there are no guarantees on the ordering of entries inside the
    * array, and it may change when more entries are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) {
        require(map._entries.length > index, "EnumerableMap: index out of bounds");

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map) internal view returns (uint256) {
        return _length(map._inner);
    }

   /**
    * @dev Returns the element stored at position `index` in the set. O(1).
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) {
        return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage))));
    }
}

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + temp % 10));
            temp /= 10;
        }
        return string(buffer);
    }
}

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;












/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping (address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token");
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString()));
    }

    /**
    * @dev Returns the base URI set via {_setBaseURI}. This will be
    * automatically added as a prefix in {tokenURI} to each token's URI, or
    * to the token ID if no specific URI is set for that token ID.
    */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 || ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(abi.encodeWithSelector(
            IERC721Receiver(to).onERC721Received.selector,
            _msgSender(),
            from,
            tokenId,
            _data
        ), "ERC721: transfer to non ERC721Receiver implementer");
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

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

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

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;



/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

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

// spd-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/Nftnft.sol

// spd-License-Identifier: AGPL-3.0-or-later

pragma solidity ^0.6.8;




contract Nftnft is ERC721, Ownable {

  address payable public mastermind = 0x4e2f98c96e2d595a83AFa35888C4af58Ac343E44;
  address apeThis = 0x3aaDA3e213aBf8529606924d8D1c55CbDc70Bf74;
  uint256 public numDegens;
  uint256 public numRugPullVictims;
  mapping(address => bool) public hasBeenRugged;
  mapping(address => mapping(uint256 => uint256)) public start;
  mapping(address => mapping(uint256 => uint256)) public end;
  mapping(uint256 => bool) public isValuelessGovToken;

  constructor() ERC721("NFTNFT", "NFTNFT") public {
    _mint(msg.sender, 1);
    _setBaseURI("https://xmons.herokuapp.com/nftnft/");
  }

  modifier degen() {
    mastermind.transfer(msg.value);
    if (msg.value >= 1 ether) {
      numDegens += 1;
      _mint(msg.sender, 696969696969696969699+numDegens);
    }
    _;
  }

  function yeet(address victim, uint256 perp, uint256 numBodies) public payable degen {
    IScam(victim).transferFrom(msg.sender, address(this), perp);
    start[victim][perp] = totalSupply() + 1;
    end[victim][perp] = totalSupply() + numBodies;
    for (uint256 i = start[victim][perp]; i <= end[victim][perp]; i++) {
      _mint(msg.sender, i);
    }
  }

  function assembleMecha(address blueprints, uint256 model) public payable degen {
    for (uint256 i = start[blueprints][model]; i <= end[blueprints][model]; i++) {
      require(ownerOf(i) == msg.sender, "Bigger robot");
      _burn(i);
    }
    IScam(blueprints).transferFrom(address(this), msg.sender, model);
  }

  function _fakeBondingCurve() internal view returns (uint256){
    uint256 i = totalSupply() % 6;
    uint256 p = 0;
    if (i == 1) {
      p = 1;
    }
    if (i == 2) {
      p = 2;
    }
    if (i == 3) {
      p = 3;
    }
    if (i == 4) {
      p = 2;
    }
    if (i == 5) {
      p = 1;
    }
    return p;
  }

  function getRugged() public payable degen {
    require(!hasBeenRugged[msg.sender], "Already rugged");
    hasBeenRugged[msg.sender] = true;
    numRugPullVictims += 1;
    if (numRugPullVictims > 1000) {
      require(msg.value > _fakeBondingCurve() * totalSupply() * 0.000001 ether, "pay up fren");
      mastermind.transfer(msg.value);
    }
    isValuelessGovToken[totalSupply()+1] = true;
    _mint(msg.sender, totalSupply() + 1);
  }

  // Modifies the tokenURI of a monster
  function setTokenURI(uint256 id, string memory uri) public onlyOwner {
    _setTokenURI(id, uri);
  }

  // Sets the base URI
  function setBaseURI(string memory uri) public onlyOwner {
    _setBaseURI(uri);
  }

  function isChad(uint256 id) public pure returns (bool) {
    return id > 696969696969696969699;
  }
}

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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"blueprints","type":"address"},{"internalType":"uint256","name":"model","type":"uint256"}],"name":"assembleMecha","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"end","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRugged","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"hasBeenRugged","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isChad","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"isValuelessGovToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mastermind","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numDegens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numRugPullVictims","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"start","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"victim","type":"address"},{"internalType":"uint256","name":"perp","type":"uint256"},{"internalType":"uint256","name":"numBodies","type":"uint256"}],"name":"yeet","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600b80546001600160a01b0319908116734e2f98c96e2d595a83afa35888c4af58ac343e4417909155600c8054909116733aada3e213abf8529606924d8d1c55cbdc70bf741790553480156200005957600080fd5b5060408051808201825260068082526513919513919560d21b602080840182905284518086019095529184529083015290620000a56301ffc9a760e01b6001600160e01b03620001d116565b8151620000ba9060069060208501906200056b565b508051620000d09060079060208401906200056b565b50620000ec6380ac58cd60e01b6001600160e01b03620001d116565b62000107635b5e139f60e01b6001600160e01b03620001d116565b6200012263780e9d6360e01b6001600160e01b03620001d116565b50600090506200013a6001600160e01b036200025616565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200019e3360016001600160e01b036200025b16565b620001cb6040518060600160405280602381526020016200323c602391396001600160e01b03620003c116565b6200060d565b6001600160e01b0319808216141562000231576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b335b90565b6001600160a01b038216620002b7576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b620002cb816001600160e01b03620003da16565b156200031e576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b62000335600083836001600160e01b03620003fd16565b6001600160a01b038216600090815260016020908152604090912062000366918390620019f962000402821b17901c565b5062000384818360026200042060201b62001a05179092919060201c565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8051620003d69060099060208401906200056b565b5050565b6000620003f78260026200044960201b62001a251790919060201c565b92915050565b505050565b60006200041983836001600160e01b036200046016565b9392505050565b60006200044184846001600160a01b0385166001600160e01b03620004b816565b949350505050565b60006200041983836001600160e01b036200055316565b60006200047783836001600160e01b036200055316565b620004af57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620003f7565b506000620003f7565b6000828152600184016020526040812054806200051f57505060408051808201825283815260208082018481528654600181810189556000898152848120955160029093029095019182559151908201558654868452818801909252929091205562000419565b828560000160018303815481106200053357fe5b906000526020600020906002020160010181905550600091505062000419565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620005ae57805160ff1916838001178555620005de565b82800160010185558215620005de579182015b82811115620005de578251825591602001919060010190620005c1565b50620005ec929150620005f0565b5090565b6200025891905b80821115620005ec5760008155600101620005f7565b612c1f806200061d6000396000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d5780639db4e013116100a0578063c6a505071161006f578063c6a50507146108d9578063c87b56dd146108ee578063e8b8681b14610918578063e985e9c51461094a578063f2fde38b14610985576101ee565b80639db4e0131461078c578063a22cb465146107b6578063b88d4fde146107f1578063bc0cfefb146108c4576101ee565b8063715018a6116100dc578063715018a61461071a5780638da5cb5b1461072f5780639522ebf31461074457806395d89b4114610777576101ee565b80636352211e1461066f578063695d69ba146106995780636c0360eb146106d257806370a08231146106e7576101ee565b80632f745c591161018557806342842e0e1161015457806342842e0e146105235780634f6ccce71461056657806355f804b3146105905780635f78d6b514610643576101ee565b80632f745c59146104725780633c2d70e9146104ab5780633c977233146104e45780634221be9f1461050e576101ee565b8063162094c4116101c1578063162094c41461034657806318160ddd1461040057806323b872dd14610427578063276cbc761461046a576101ee565b806301ffc9a7146101f357806306fdde031461023b578063081812fc146102c5578063095ea7b31461030b575b600080fd5b3480156101ff57600080fd5b506102276004803603602081101561021657600080fd5b50356001600160e01b0319166109b8565b604080519115158252519081900360200190f35b34801561024757600080fd5b506102506109db565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028a578181015183820152602001610272565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b506102ef600480360360208110156102e857600080fd5b5035610a72565b604080516001600160a01b039092168252519081900360200190f35b34801561031757600080fd5b506103446004803603604081101561032e57600080fd5b506001600160a01b038135169060200135610ad4565b005b34801561035257600080fd5b506103446004803603604081101561036957600080fd5b8135919081019060408101602082013564010000000081111561038b57600080fd5b82018360208201111561039d57600080fd5b803590602001918460018302840111640100000000831117156103bf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610baf945050505050565b34801561040c57600080fd5b50610415610c1f565b60408051918252519081900360200190f35b34801561043357600080fd5b506103446004803603606081101561044a57600080fd5b506001600160a01b03813581169160208101359091169060400135610c30565b610344610c87565b34801561047e57600080fd5b506104156004803603604081101561049557600080fd5b506001600160a01b038135169060200135610e52565b3480156104b757600080fd5b50610415600480360360408110156104ce57600080fd5b506001600160a01b038135169060200135610e83565b3480156104f057600080fd5b506102276004803603602081101561050757600080fd5b5035610ea0565b34801561051a57600080fd5b506102ef610eae565b34801561052f57600080fd5b506103446004803603606081101561054657600080fd5b506001600160a01b03813581169160208101359091169060400135610ebd565b34801561057257600080fd5b506104156004803603602081101561058957600080fd5b5035610ed8565b34801561059c57600080fd5b50610344600480360360208110156105b357600080fd5b8101906020810181356401000000008111156105ce57600080fd5b8201836020820111156105e057600080fd5b8035906020019184600183028401116401000000008311171561060257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ef4945050505050565b6103446004803603604081101561065957600080fd5b506001600160a01b038135169060200135610f62565b34801561067b57600080fd5b506102ef6004803603602081101561069257600080fd5b50356110f1565b3480156106a557600080fd5b50610415600480360360408110156106bc57600080fd5b506001600160a01b03813516906020013561111f565b3480156106de57600080fd5b5061025061113c565b3480156106f357600080fd5b506104156004803603602081101561070a57600080fd5b50356001600160a01b031661119d565b34801561072657600080fd5b50610344611205565b34801561073b57600080fd5b506102ef6112b1565b34801561075057600080fd5b506102276004803603602081101561076757600080fd5b50356001600160a01b03166112c0565b34801561078357600080fd5b506102506112d5565b34801561079857600080fd5b50610227600480360360208110156107af57600080fd5b5035611336565b3480156107c257600080fd5b50610344600480360360408110156107d957600080fd5b506001600160a01b038135169060200135151561134b565b3480156107fd57600080fd5b506103446004803603608081101561081457600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561084f57600080fd5b82018360208201111561086157600080fd5b8035906020019184600183028401116401000000008311171561088357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611450945050505050565b3480156108d057600080fd5b506104156114ae565b3480156108e557600080fd5b506104156114b4565b3480156108fa57600080fd5b506102506004803603602081101561091157600080fd5b50356114ba565b6103446004803603606081101561092e57600080fd5b506001600160a01b03813516906020810135906040013561173d565b34801561095657600080fd5b506102276004803603604081101561096d57600080fd5b506001600160a01b03813581169160200135166118c8565b34801561099157600080fd5b50610344600480360360208110156109a857600080fd5b50356001600160a01b03166118f6565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b505050505090505b90565b6000610a7d82611a31565b610ab85760405162461bcd60e51b815260040180806020018281038252602c815260200180612ac8602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610adf826110f1565b9050806001600160a01b0316836001600160a01b03161415610b325760405162461bcd60e51b8152600401808060200182810382526021815260200180612b986021913960400191505060405180910390fd5b806001600160a01b0316610b44611a44565b6001600160a01b03161480610b655750610b6581610b60611a44565b6118c8565b610ba05760405162461bcd60e51b8152600401808060200182810382526038815260200180612a1b6038913960400191505060405180910390fd5b610baa8383611a48565b505050565b610bb7611a44565b6001600160a01b0316610bc86112b1565b6001600160a01b031614610c11576040805162461bcd60e51b81526020600482018190526024820152600080516020612b20833981519152604482015290519081900360640190fd5b610c1b8282611ab6565b5050565b6000610c2b6002611b19565b905090565b610c41610c3b611a44565b82611b24565b610c7c5760405162461bcd60e51b8152600401808060200182810382526031815260200180612bb96031913960400191505060405180910390fd5b610baa838383611bc8565b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610cc0573d6000803e3d6000fd5b50670de0b6b3a76400003410610cf157600d805460018101909155610cf19033906825c865c6b0b26f83e401611d26565b336000908152600f602052604090205460ff1615610d47576040805162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481c9d59d9d95960921b604482015290519081900360640190fd5b336000908152600f60205260409020805460ff19166001908117909155600e8054909101908190556103e81015610e0c57610d80610c1f565b610d88611e60565b0264e8d4a51000023411610dd1576040805162461bcd60e51b815260206004820152600b60248201526a3830bc903ab810333932b760a91b604482015290519081900360640190fd5b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610e0a573d6000803e3d6000fd5b505b600160126000610e1a610c1f565b60010181526020810191909152604001600020805460ff1916911515919091179055610e5033610e48610c1f565b600101611d26565b565b6001600160a01b0382166000908152600160205260408120610e7a908363ffffffff611ec016565b90505b92915050565b601060209081526000928352604080842090915290825290205481565b6825c865c6b0b26f83e31090565b600b546001600160a01b031681565b610baa83838360405180602001604052806000815250611450565b600080610eec60028463ffffffff611ecc16565b509392505050565b610efc611a44565b6001600160a01b0316610f0d6112b1565b6001600160a01b031614610f56576040805162461bcd60e51b81526020600482018190526024820152600080516020612b20833981519152604482015290519081900360640190fd5b610f5f81611ee8565b50565b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610f9b573d6000803e3d6000fd5b50670de0b6b3a76400003410610fcc57600d805460018101909155610fcc9033906825c865c6b0b26f83e401611d26565b6001600160a01b03821660009081526010602090815260408083208484529091529020545b6001600160a01b038316600090815260116020908152604080832085845290915290205481116110805733611025826110f1565b6001600160a01b03161461106f576040805162461bcd60e51b815260206004820152600c60248201526b109a59d9d95c881c9bd89bdd60a21b604482015290519081900360640190fd5b61107881611efb565b600101610ff1565b50604080516323b872dd60e01b81523060048201523360248201526044810183905290516001600160a01b038416916323b872dd91606480830192600092919082900301818387803b1580156110d557600080fd5b505af11580156110e9573d6000803e3d6000fd5b505050505050565b6000610e7d82604051806060016040528060298152602001612a7d602991396002919063ffffffff611fd416565b601160209081526000928352604080842090915290825290205481565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a675780601f10610a3c57610100808354040283529160200191610a67565b60006001600160a01b0382166111e45760405162461bcd60e51b815260040180806020018281038252602a815260200180612a53602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610e7d90611b19565b61120d611a44565b6001600160a01b031661121e6112b1565b6001600160a01b031614611267576040805162461bcd60e51b81526020600482018190526024820152600080516020612b20833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031690565b600f6020526000908152604090205460ff1681565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a675780601f10610a3c57610100808354040283529160200191610a67565b60126020526000908152604090205460ff1681565b611353611a44565b6001600160a01b0316826001600160a01b031614156113b9576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006113c6611a44565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561140a611a44565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b61146161145b611a44565b83611b24565b61149c5760405162461bcd60e51b8152600401808060200182810382526031815260200180612bb96031913960400191505060405180910390fd5b6114a884848484611fe1565b50505050565b600e5481565b600d5481565b60606114c582611a31565b6115005760405162461bcd60e51b815260040180806020018281038252602f815260200180612b69602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156115955780601f1061156a57610100808354040283529160200191611595565b820191906000526020600020905b81548152906001019060200180831161157857829003601f168201915b5050505050905060606115a661113c565b90508051600014156115ba575090506109d6565b81511561167b5780826040516020018083805190602001908083835b602083106115f55780518252601f1990920191602091820191016115d6565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b6020831061163d5780518252601f19909201916020918201910161161e565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506109d6565b8061168585612033565b6040516020018083805190602001908083835b602083106116b75780518252601f199092019160209182019101611698565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106116ff5780518252601f1990920191602091820191016116e0565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611776573d6000803e3d6000fd5b50670de0b6b3a764000034106117a757600d8054600181019091556117a79033906825c865c6b0b26f83e401611d26565b604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b038516916323b872dd91606480830192600092919082900301818387803b1580156117fb57600080fd5b505af115801561180f573d6000803e3d6000fd5b5050505061181b610c1f565b6001600160a01b0384166000908152601060209081526040808320868452909152902060019190910190558061184f610c1f565b6001600160a01b03851660008181526011602090815260408083208884528252808320949095019093559081526010825282812085825290915220545b6001600160a01b038416600090815260116020908152604080832086845290915290205481116114a8576118c03382611d26565b60010161188c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6118fe611a44565b6001600160a01b031661190f6112b1565b6001600160a01b031614611958576040805162461bcd60e51b81526020600482018190526024820152600080516020612b20833981519152604482015290519081900360640190fd5b6001600160a01b03811661199d5760405162461bcd60e51b81526004018080602001828103825260268152602001806129a56026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e7a838361210e565b6000611a1b84846001600160a01b038516612158565b90505b9392505050565b6000610e7a83836121ef565b6000610e7d60028363ffffffff611a2516565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a7d826110f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611abf82611a31565b611afa5760405162461bcd60e51b815260040180806020018281038252602c815260200180612af4602c913960400191505060405180910390fd5b60008281526008602090815260409091208251610baa92840190612878565b6000610e7d82612207565b6000611b2f82611a31565b611b6a5760405162461bcd60e51b815260040180806020018281038252602c8152602001806129ef602c913960400191505060405180910390fd5b6000611b75836110f1565b9050806001600160a01b0316846001600160a01b03161480611bb05750836001600160a01b0316611ba584610a72565b6001600160a01b0316145b80611bc05750611bc081856118c8565b949350505050565b826001600160a01b0316611bdb826110f1565b6001600160a01b031614611c205760405162461bcd60e51b8152600401808060200182810382526029815260200180612b406029913960400191505060405180910390fd5b6001600160a01b038216611c655760405162461bcd60e51b81526004018080602001828103825260248152602001806129cb6024913960400191505060405180910390fd5b611c70838383610baa565b611c7b600082611a48565b6001600160a01b0383166000908152600160205260409020611ca3908263ffffffff61220b16565b506001600160a01b0382166000908152600160205260409020611ccc908263ffffffff6119f916565b50611cdf6002828463ffffffff611a0516565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001600160a01b038216611d81576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611d8a81611a31565b15611ddc576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b611de860008383610baa565b6001600160a01b0382166000908152600160205260409020611e10908263ffffffff6119f916565b50611e236002828463ffffffff611a0516565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000806006611e6d610c1f565b81611e7457fe5b06905060006001821415611e86575060015b8160021415611e93575060025b8160031415611ea0575060035b8160041415611ead575060025b8160051415611eba575060015b91505090565b6000610e7a8383612217565b6000808080611edb868661227b565b9097909650945050505050565b8051610c1b906009906020840190612878565b6000611f06826110f1565b9050611f1481600084610baa565b611f1f600083611a48565b6000828152600860205260409020546002600019610100600184161502019091160415611f5d576000828152600860205260408120611f5d916128f6565b6001600160a01b0381166000908152600160205260409020611f85908363ffffffff61220b16565b50611f9760028363ffffffff6122f616565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000611a1b848484612302565b611fec848484611bc8565b611ff8848484846123cc565b6114a85760405162461bcd60e51b81526004018080602001828103825260328152602001806129736032913960400191505060405180910390fd5b60608161205857506040805180820190915260018152600360fc1b60208201526109d6565b8160005b811561207057600101600a8204915061205c565b60608167ffffffffffffffff8111801561208957600080fd5b506040519080825280601f01601f1916602001820160405280156120b4576020820181803683370190505b50859350905060001982015b831561210557600a840660300160f81b828280600190039350815181106120e357fe5b60200101906001600160f81b031916908160001a905350600a840493506120c0565b50949350505050565b600061211a83836121ef565b61215057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e7d565b506000610e7d565b6000828152600184016020526040812054806121bd575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611a1e565b828560000160018303815481106121d057fe5b9060005260206000209060020201600101819055506000915050611a1e565b60009081526001919091016020526040902054151590565b5490565b6000610e7a838361254c565b815460009082106122595760405162461bcd60e51b81526004018080602001828103825260228152602001806129516022913960400191505060405180910390fd5b82600001828154811061226857fe5b9060005260206000200154905092915050565b8154600090819083106122bf5760405162461bcd60e51b8152600401808060200182810382526022815260200180612aa66022913960400191505060405180910390fd5b60008460000184815481106122d057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000610e7a8383612612565b6000828152600184016020526040812054828161239d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561236257818101518382015260200161234a565b50505050905090810190601f16801561238f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106123b057fe5b9060005260206000209060020201600101549150509392505050565b60006123e0846001600160a01b03166126e6565b6123ec57506001611bc0565b6060612512630a85bd0160e11b612401611a44565b88878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561247a578181015183820152602001612462565b50505050905090810190601f1680156124a75780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612973603291396001600160a01b038816919063ffffffff6126ec16565b9050600081806020019051602081101561252b57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612608578354600019808301919081019060009087908390811061257f57fe5b906000526020600020015490508087600001848154811061259c57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806125cc57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e7d565b6000915050610e7d565b60008181526001830160205260408120548015612608578354600019808301919081019060009087908390811061264557fe5b906000526020600020906002020190508087600001848154811061266557fe5b6000918252602080832084546002909302019182556001938401549184019190915583548252898301905260409020908401905586548790806126a457fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610e7d9350505050565b3b151590565b6060611a1b848460008585612700856126e6565b612751576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106127905780518252601f199092019160209182019101612771565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146127f2576040519150601f19603f3d011682016040523d82523d6000602084013e6127f7565b606091505b5091509150612807828286612812565b979650505050505050565b60608315612821575081611a1e565b8251156128315782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561236257818101518382015260200161234a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106128b957805160ff19168380011785556128e6565b828001600101855582156128e6579182015b828111156128e65782518255916020019190600101906128cb565b506128f2929150612936565b5090565b50805460018160011615610100020316600290046000825580601f1061291c5750610f5f565b601f016020900490600052602060002090810190610f5f91905b610a6f91905b808211156128f2576000815560010161293c56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220261082b4fccf29b6a6ecf11e40d59707f7be9f57a0bbef40759633da70e4b03864736f6c6343000608003368747470733a2f2f786d6f6e732e6865726f6b756170702e636f6d2f6e66746e66742f

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636352211e1161010d5780639db4e013116100a0578063c6a505071161006f578063c6a50507146108d9578063c87b56dd146108ee578063e8b8681b14610918578063e985e9c51461094a578063f2fde38b14610985576101ee565b80639db4e0131461078c578063a22cb465146107b6578063b88d4fde146107f1578063bc0cfefb146108c4576101ee565b8063715018a6116100dc578063715018a61461071a5780638da5cb5b1461072f5780639522ebf31461074457806395d89b4114610777576101ee565b80636352211e1461066f578063695d69ba146106995780636c0360eb146106d257806370a08231146106e7576101ee565b80632f745c591161018557806342842e0e1161015457806342842e0e146105235780634f6ccce71461056657806355f804b3146105905780635f78d6b514610643576101ee565b80632f745c59146104725780633c2d70e9146104ab5780633c977233146104e45780634221be9f1461050e576101ee565b8063162094c4116101c1578063162094c41461034657806318160ddd1461040057806323b872dd14610427578063276cbc761461046a576101ee565b806301ffc9a7146101f357806306fdde031461023b578063081812fc146102c5578063095ea7b31461030b575b600080fd5b3480156101ff57600080fd5b506102276004803603602081101561021657600080fd5b50356001600160e01b0319166109b8565b604080519115158252519081900360200190f35b34801561024757600080fd5b506102506109db565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561028a578181015183820152602001610272565b50505050905090810190601f1680156102b75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102d157600080fd5b506102ef600480360360208110156102e857600080fd5b5035610a72565b604080516001600160a01b039092168252519081900360200190f35b34801561031757600080fd5b506103446004803603604081101561032e57600080fd5b506001600160a01b038135169060200135610ad4565b005b34801561035257600080fd5b506103446004803603604081101561036957600080fd5b8135919081019060408101602082013564010000000081111561038b57600080fd5b82018360208201111561039d57600080fd5b803590602001918460018302840111640100000000831117156103bf57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610baf945050505050565b34801561040c57600080fd5b50610415610c1f565b60408051918252519081900360200190f35b34801561043357600080fd5b506103446004803603606081101561044a57600080fd5b506001600160a01b03813581169160208101359091169060400135610c30565b610344610c87565b34801561047e57600080fd5b506104156004803603604081101561049557600080fd5b506001600160a01b038135169060200135610e52565b3480156104b757600080fd5b50610415600480360360408110156104ce57600080fd5b506001600160a01b038135169060200135610e83565b3480156104f057600080fd5b506102276004803603602081101561050757600080fd5b5035610ea0565b34801561051a57600080fd5b506102ef610eae565b34801561052f57600080fd5b506103446004803603606081101561054657600080fd5b506001600160a01b03813581169160208101359091169060400135610ebd565b34801561057257600080fd5b506104156004803603602081101561058957600080fd5b5035610ed8565b34801561059c57600080fd5b50610344600480360360208110156105b357600080fd5b8101906020810181356401000000008111156105ce57600080fd5b8201836020820111156105e057600080fd5b8035906020019184600183028401116401000000008311171561060257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ef4945050505050565b6103446004803603604081101561065957600080fd5b506001600160a01b038135169060200135610f62565b34801561067b57600080fd5b506102ef6004803603602081101561069257600080fd5b50356110f1565b3480156106a557600080fd5b50610415600480360360408110156106bc57600080fd5b506001600160a01b03813516906020013561111f565b3480156106de57600080fd5b5061025061113c565b3480156106f357600080fd5b506104156004803603602081101561070a57600080fd5b50356001600160a01b031661119d565b34801561072657600080fd5b50610344611205565b34801561073b57600080fd5b506102ef6112b1565b34801561075057600080fd5b506102276004803603602081101561076757600080fd5b50356001600160a01b03166112c0565b34801561078357600080fd5b506102506112d5565b34801561079857600080fd5b50610227600480360360208110156107af57600080fd5b5035611336565b3480156107c257600080fd5b50610344600480360360408110156107d957600080fd5b506001600160a01b038135169060200135151561134b565b3480156107fd57600080fd5b506103446004803603608081101561081457600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561084f57600080fd5b82018360208201111561086157600080fd5b8035906020019184600183028401116401000000008311171561088357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611450945050505050565b3480156108d057600080fd5b506104156114ae565b3480156108e557600080fd5b506104156114b4565b3480156108fa57600080fd5b506102506004803603602081101561091157600080fd5b50356114ba565b6103446004803603606081101561092e57600080fd5b506001600160a01b03813516906020810135906040013561173d565b34801561095657600080fd5b506102276004803603604081101561096d57600080fd5b506001600160a01b03813581169160200135166118c8565b34801561099157600080fd5b50610344600480360360208110156109a857600080fd5b50356001600160a01b03166118f6565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60068054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a675780601f10610a3c57610100808354040283529160200191610a67565b820191906000526020600020905b815481529060010190602001808311610a4a57829003601f168201915b505050505090505b90565b6000610a7d82611a31565b610ab85760405162461bcd60e51b815260040180806020018281038252602c815260200180612ac8602c913960400191505060405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610adf826110f1565b9050806001600160a01b0316836001600160a01b03161415610b325760405162461bcd60e51b8152600401808060200182810382526021815260200180612b986021913960400191505060405180910390fd5b806001600160a01b0316610b44611a44565b6001600160a01b03161480610b655750610b6581610b60611a44565b6118c8565b610ba05760405162461bcd60e51b8152600401808060200182810382526038815260200180612a1b6038913960400191505060405180910390fd5b610baa8383611a48565b505050565b610bb7611a44565b6001600160a01b0316610bc86112b1565b6001600160a01b031614610c11576040805162461bcd60e51b81526020600482018190526024820152600080516020612b20833981519152604482015290519081900360640190fd5b610c1b8282611ab6565b5050565b6000610c2b6002611b19565b905090565b610c41610c3b611a44565b82611b24565b610c7c5760405162461bcd60e51b8152600401808060200182810382526031815260200180612bb96031913960400191505060405180910390fd5b610baa838383611bc8565b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610cc0573d6000803e3d6000fd5b50670de0b6b3a76400003410610cf157600d805460018101909155610cf19033906825c865c6b0b26f83e401611d26565b336000908152600f602052604090205460ff1615610d47576040805162461bcd60e51b815260206004820152600e60248201526d105b1c9958591e481c9d59d9d95960921b604482015290519081900360640190fd5b336000908152600f60205260409020805460ff19166001908117909155600e8054909101908190556103e81015610e0c57610d80610c1f565b610d88611e60565b0264e8d4a51000023411610dd1576040805162461bcd60e51b815260206004820152600b60248201526a3830bc903ab810333932b760a91b604482015290519081900360640190fd5b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610e0a573d6000803e3d6000fd5b505b600160126000610e1a610c1f565b60010181526020810191909152604001600020805460ff1916911515919091179055610e5033610e48610c1f565b600101611d26565b565b6001600160a01b0382166000908152600160205260408120610e7a908363ffffffff611ec016565b90505b92915050565b601060209081526000928352604080842090915290825290205481565b6825c865c6b0b26f83e31090565b600b546001600160a01b031681565b610baa83838360405180602001604052806000815250611450565b600080610eec60028463ffffffff611ecc16565b509392505050565b610efc611a44565b6001600160a01b0316610f0d6112b1565b6001600160a01b031614610f56576040805162461bcd60e51b81526020600482018190526024820152600080516020612b20833981519152604482015290519081900360640190fd5b610f5f81611ee8565b50565b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610f9b573d6000803e3d6000fd5b50670de0b6b3a76400003410610fcc57600d805460018101909155610fcc9033906825c865c6b0b26f83e401611d26565b6001600160a01b03821660009081526010602090815260408083208484529091529020545b6001600160a01b038316600090815260116020908152604080832085845290915290205481116110805733611025826110f1565b6001600160a01b03161461106f576040805162461bcd60e51b815260206004820152600c60248201526b109a59d9d95c881c9bd89bdd60a21b604482015290519081900360640190fd5b61107881611efb565b600101610ff1565b50604080516323b872dd60e01b81523060048201523360248201526044810183905290516001600160a01b038416916323b872dd91606480830192600092919082900301818387803b1580156110d557600080fd5b505af11580156110e9573d6000803e3d6000fd5b505050505050565b6000610e7d82604051806060016040528060298152602001612a7d602991396002919063ffffffff611fd416565b601160209081526000928352604080842090915290825290205481565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a675780601f10610a3c57610100808354040283529160200191610a67565b60006001600160a01b0382166111e45760405162461bcd60e51b815260040180806020018281038252602a815260200180612a53602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600160205260409020610e7d90611b19565b61120d611a44565b6001600160a01b031661121e6112b1565b6001600160a01b031614611267576040805162461bcd60e51b81526020600482018190526024820152600080516020612b20833981519152604482015290519081900360640190fd5b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b031690565b600f6020526000908152604090205460ff1681565b60078054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a675780601f10610a3c57610100808354040283529160200191610a67565b60126020526000908152604090205460ff1681565b611353611a44565b6001600160a01b0316826001600160a01b031614156113b9576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b80600560006113c6611a44565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561140a611a44565b60408051841515815290516001600160a01b0392909216917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c319181900360200190a35050565b61146161145b611a44565b83611b24565b61149c5760405162461bcd60e51b8152600401808060200182810382526031815260200180612bb96031913960400191505060405180910390fd5b6114a884848484611fe1565b50505050565b600e5481565b600d5481565b60606114c582611a31565b6115005760405162461bcd60e51b815260040180806020018281038252602f815260200180612b69602f913960400191505060405180910390fd5b60008281526008602090815260409182902080548351601f60026000196101006001861615020190931692909204918201849004840281018401909452808452606093928301828280156115955780601f1061156a57610100808354040283529160200191611595565b820191906000526020600020905b81548152906001019060200180831161157857829003601f168201915b5050505050905060606115a661113c565b90508051600014156115ba575090506109d6565b81511561167b5780826040516020018083805190602001908083835b602083106115f55780518252601f1990920191602091820191016115d6565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b6020831061163d5780518252601f19909201916020918201910161161e565b6001836020036101000a03801982511681845116808217855250505050505090500192505050604051602081830303815290604052925050506109d6565b8061168585612033565b6040516020018083805190602001908083835b602083106116b75780518252601f199092019160209182019101611698565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106116ff5780518252601f1990920191602091820191016116e0565b6001836020036101000a0380198251168184511680821785525050505050509050019250505060405160208183030381529060405292505050919050565b600b546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015611776573d6000803e3d6000fd5b50670de0b6b3a764000034106117a757600d8054600181019091556117a79033906825c865c6b0b26f83e401611d26565b604080516323b872dd60e01b81523360048201523060248201526044810184905290516001600160a01b038516916323b872dd91606480830192600092919082900301818387803b1580156117fb57600080fd5b505af115801561180f573d6000803e3d6000fd5b5050505061181b610c1f565b6001600160a01b0384166000908152601060209081526040808320868452909152902060019190910190558061184f610c1f565b6001600160a01b03851660008181526011602090815260408083208884528252808320949095019093559081526010825282812085825290915220545b6001600160a01b038416600090815260116020908152604080832086845290915290205481116114a8576118c03382611d26565b60010161188c565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6118fe611a44565b6001600160a01b031661190f6112b1565b6001600160a01b031614611958576040805162461bcd60e51b81526020600482018190526024820152600080516020612b20833981519152604482015290519081900360640190fd5b6001600160a01b03811661199d5760405162461bcd60e51b81526004018080602001828103825260268152602001806129a56026913960400191505060405180910390fd5b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000610e7a838361210e565b6000611a1b84846001600160a01b038516612158565b90505b9392505050565b6000610e7a83836121ef565b6000610e7d60028363ffffffff611a2516565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a7d826110f1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611abf82611a31565b611afa5760405162461bcd60e51b815260040180806020018281038252602c815260200180612af4602c913960400191505060405180910390fd5b60008281526008602090815260409091208251610baa92840190612878565b6000610e7d82612207565b6000611b2f82611a31565b611b6a5760405162461bcd60e51b815260040180806020018281038252602c8152602001806129ef602c913960400191505060405180910390fd5b6000611b75836110f1565b9050806001600160a01b0316846001600160a01b03161480611bb05750836001600160a01b0316611ba584610a72565b6001600160a01b0316145b80611bc05750611bc081856118c8565b949350505050565b826001600160a01b0316611bdb826110f1565b6001600160a01b031614611c205760405162461bcd60e51b8152600401808060200182810382526029815260200180612b406029913960400191505060405180910390fd5b6001600160a01b038216611c655760405162461bcd60e51b81526004018080602001828103825260248152602001806129cb6024913960400191505060405180910390fd5b611c70838383610baa565b611c7b600082611a48565b6001600160a01b0383166000908152600160205260409020611ca3908263ffffffff61220b16565b506001600160a01b0382166000908152600160205260409020611ccc908263ffffffff6119f916565b50611cdf6002828463ffffffff611a0516565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6001600160a01b038216611d81576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b611d8a81611a31565b15611ddc576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b611de860008383610baa565b6001600160a01b0382166000908152600160205260409020611e10908263ffffffff6119f916565b50611e236002828463ffffffff611a0516565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000806006611e6d610c1f565b81611e7457fe5b06905060006001821415611e86575060015b8160021415611e93575060025b8160031415611ea0575060035b8160041415611ead575060025b8160051415611eba575060015b91505090565b6000610e7a8383612217565b6000808080611edb868661227b565b9097909650945050505050565b8051610c1b906009906020840190612878565b6000611f06826110f1565b9050611f1481600084610baa565b611f1f600083611a48565b6000828152600860205260409020546002600019610100600184161502019091160415611f5d576000828152600860205260408120611f5d916128f6565b6001600160a01b0381166000908152600160205260409020611f85908363ffffffff61220b16565b50611f9760028363ffffffff6122f616565b5060405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000611a1b848484612302565b611fec848484611bc8565b611ff8848484846123cc565b6114a85760405162461bcd60e51b81526004018080602001828103825260328152602001806129736032913960400191505060405180910390fd5b60608161205857506040805180820190915260018152600360fc1b60208201526109d6565b8160005b811561207057600101600a8204915061205c565b60608167ffffffffffffffff8111801561208957600080fd5b506040519080825280601f01601f1916602001820160405280156120b4576020820181803683370190505b50859350905060001982015b831561210557600a840660300160f81b828280600190039350815181106120e357fe5b60200101906001600160f81b031916908160001a905350600a840493506120c0565b50949350505050565b600061211a83836121ef565b61215057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610e7d565b506000610e7d565b6000828152600184016020526040812054806121bd575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611a1e565b828560000160018303815481106121d057fe5b9060005260206000209060020201600101819055506000915050611a1e565b60009081526001919091016020526040902054151590565b5490565b6000610e7a838361254c565b815460009082106122595760405162461bcd60e51b81526004018080602001828103825260228152602001806129516022913960400191505060405180910390fd5b82600001828154811061226857fe5b9060005260206000200154905092915050565b8154600090819083106122bf5760405162461bcd60e51b8152600401808060200182810382526022815260200180612aa66022913960400191505060405180910390fd5b60008460000184815481106122d057fe5b906000526020600020906002020190508060000154816001015492509250509250929050565b6000610e7a8383612612565b6000828152600184016020526040812054828161239d5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561236257818101518382015260200161234a565b50505050905090810190601f16801561238f5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508460000160018203815481106123b057fe5b9060005260206000209060020201600101549150509392505050565b60006123e0846001600160a01b03166126e6565b6123ec57506001611bc0565b6060612512630a85bd0160e11b612401611a44565b88878760405160240180856001600160a01b03166001600160a01b03168152602001846001600160a01b03166001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561247a578181015183820152602001612462565b50505050905090810190601f1680156124a75780820380516001836020036101000a031916815260200191505b5095505050505050604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612973603291396001600160a01b038816919063ffffffff6126ec16565b9050600081806020019051602081101561252b57600080fd5b50516001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612608578354600019808301919081019060009087908390811061257f57fe5b906000526020600020015490508087600001848154811061259c57fe5b6000918252602080832090910192909255828152600189810190925260409020908401905586548790806125cc57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610e7d565b6000915050610e7d565b60008181526001830160205260408120548015612608578354600019808301919081019060009087908390811061264557fe5b906000526020600020906002020190508087600001848154811061266557fe5b6000918252602080832084546002909302019182556001938401549184019190915583548252898301905260409020908401905586548790806126a457fe5b6000828152602080822060026000199094019384020182815560019081018390559290935588815289820190925260408220919091559450610e7d9350505050565b3b151590565b6060611a1b848460008585612700856126e6565b612751576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106127905780518252601f199092019160209182019101612771565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146127f2576040519150601f19603f3d011682016040523d82523d6000602084013e6127f7565b606091505b5091509150612807828286612812565b979650505050505050565b60608315612821575081611a1e565b8251156128315782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561236257818101518382015260200161234a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106128b957805160ff19168380011785556128e6565b828001600101855582156128e6579182015b828111156128e65782518255916020019190600101906128cb565b506128f2929150612936565b5090565b50805460018160011615610100020316600290046000825580601f1061291c5750610f5f565b601f016020900490600052602060002090810190610f5f91905b610a6f91905b808211156128f2576000815560010161293c56fe456e756d657261626c655365743a20696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e64734552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732314d657461646174613a2055524920736574206f66206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564a2646970667358221220261082b4fccf29b6a6ecf11e40d59707f7be9f57a0bbef40759633da70e4b03864736f6c63430006080033

Deployed Bytecode Sourcemap

68328:2697:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;10699:150:0;;5:9:-1;2:2;;;27:1;24;17:12;2:2;10699:150:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;10699:150:0;-1:-1:-1;;;;;;10699:150:0;;:::i;:::-;;;;;;;;;;;;;;;;;;52183:100;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52183:100:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8::-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;52183:100:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54969:221;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54969:221:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;54969:221:0;;:::i;:::-;;;;-1:-1:-1;;;;;54969:221:0;;;;;;;;;;;;;;54499:404;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54499:404:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;54499:404:0;;;;;;;;:::i;:::-;;70697:103;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70697:103:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;70697:103:0;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;70697:103:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;70697:103:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;70697:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;70697:103:0;;-1:-1:-1;70697:103:0;;-1:-1:-1;;;;;70697:103:0:i;53977:211::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53977:211:0;;;:::i;:::-;;;;;;;;;;;;;;;;55859:305;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55859:305:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;55859:305:0;;;;;;;;;;;;;;;;;:::i;70201:449::-;;;:::i;53739:162::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53739:162:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;53739:162:0;;;;;;;;:::i;68634:60::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68634:60:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;68634:60:0;;;;;;;;:::i;70921:101::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70921:101:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;70921:101:0;;:::i;68370:78::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68370:78:0;;;:::i;56235:151::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;56235:151:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;56235:151:0;;;;;;;;;;;;;;;;;:::i;54265:172::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;54265:172:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;54265:172:0;;:::i;70830:85::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;70830:85:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;70830:85:0;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;70830:85:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;70830:85:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;70830:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;70830:85:0;;-1:-1:-1;70830:85:0;;-1:-1:-1;;;;;70830:85:0:i;69530:322::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;69530:322:0;;;;;;;;:::i;51939:177::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51939:177:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;51939:177:0;;:::i;68699:58::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68699:58:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;68699:58:0;;;;;;;;:::i;53558:97::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;53558:97:0;;;:::i;51656:221::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;51656:221:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;51656:221:0;-1:-1:-1;;;;;51656:221:0;;:::i;67660:148::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;67660:148:0;;;:::i;67009:87::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;67009:87:0;;;:::i;68584:45::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68584:45:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;68584:45:0;-1:-1:-1;;;;;68584:45:0;;:::i;52352:104::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52352:104:0;;;:::i;68762:51::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68762:51:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;68762:51:0;;:::i;55262:295::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55262:295:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;55262:295:0;;;;;;;;;;:::i;56457:285::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;56457:285:0;;;;;;15:3:-1;10;7:12;4:2;;;32:1;29;22:12;4:2;-1:-1;;;;;56457:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:11:-1;11:28;;8:2;;;52:1;49;42:12;8:2;56457:285:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;56457:285:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;56457:285:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;56457:285:0;;-1:-1:-1;56457:285:0;;-1:-1:-1;;;;;56457:285:0:i;68547:32::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68547:32:0;;;:::i;68518:24::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;68518:24:0;;;:::i;52527:792::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;52527:792:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;52527:792:0;;:::i;69160:364::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;69160:364:0;;;;;;;;;;;;;:::i;55628:164::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;55628:164:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;55628:164:0;;;;;;;;;;:::i;67963:244::-;;5:9:-1;2:2;;;27:1;24;17:12;2:2;67963:244:0;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;67963:244:0;-1:-1:-1;;;;;67963:244:0;;:::i;10699:150::-;-1:-1:-1;;;;;;10808:33:0;;10784:4;10808:33;;;;;;;;;;;;;10699:150;;;;:::o;52183:100::-;52270:5;52263:12;;;;;;;;-1:-1:-1;;52263:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52237:13;;52263:12;;52270:5;;52263:12;;52270:5;52263:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52183:100;;:::o;54969:221::-;55045:7;55073:16;55081:7;55073;:16::i;:::-;55065:73;;;;-1:-1:-1;;;55065:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55158:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;55158:24:0;;54969:221::o;54499:404::-;54580:13;54596:23;54611:7;54596:14;:23::i;:::-;54580:39;;54644:5;-1:-1:-1;;;;;54638:11:0;:2;-1:-1:-1;;;;;54638:11:0;;;54630:57;;;;-1:-1:-1;;;54630:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54724:5;-1:-1:-1;;;;;54708:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;54708:21:0;;:69;;;;54733:44;54757:5;54764:12;:10;:12::i;:::-;54733:23;:44::i;:::-;54700:161;;;;-1:-1:-1;;;54700:161:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54874:21;54883:2;54887:7;54874:8;:21::i;:::-;54499:404;;;:::o;70697:103::-;67240:12;:10;:12::i;:::-;-1:-1:-1;;;;;67229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;67229:23:0;;67221:68;;;;;-1:-1:-1;;;67221:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;67221:68:0;;;;;;;;;;;;;;;70773:21:::1;70786:2;70790:3;70773:12;:21::i;:::-;70697:103:::0;;:::o;53977:211::-;54038:7;54159:21;:12;:19;:21::i;:::-;54152:28;;53977:211;:::o;55859:305::-;56020:41;56039:12;:10;:12::i;:::-;56053:7;56020:18;:41::i;:::-;56012:103;;;;-1:-1:-1;;;56012:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56128:28;56138:4;56144:2;56148:7;56128:9;:28::i;70201:449::-;68988:10;;:30;;-1:-1:-1;;;;;68988:10:0;;;;69008:9;68988:30;;;;;:10;:30;:10;:30;69008:9;68988:10;:30;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;68988:30:0;69042:7;69029:9;:20;69025:116;;69060:9;:14;;69073:1;69060:14;;;;;69083:50;;69089:10;;69101:31;;69083:5;:50::i;:::-;70273:10:::1;70259:25;::::0;;;:13:::1;:25;::::0;;;;;::::1;;70258:26;70250:53;;;::::0;;-1:-1:-1;;;70250:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;70250:53:0;;;;;;;;;;;;;::::1;;70324:10;70310:25;::::0;;;:13:::1;:25;::::0;;;;:32;;-1:-1:-1;;70310:32:0::1;70338:4;70310:32:::0;;::::1;::::0;;;70349:17:::1;:22:::0;;;;::::1;::::0;;;;70402:4:::1;-1:-1:-1::0;70378:174:0::1;;;70459:13;:11;:13::i;:::-;70437:19;:17;:19::i;:::-;:35;70475:14;70437:52;70425:9;:64;70417:88;;;::::0;;-1:-1:-1;;;70417:88:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;70417:88:0;;;;;;;;;;;;;::::1;;70514:10;::::0;:30:::1;::::0;-1:-1:-1;;;;;70514:10:0;;::::1;::::0;70534:9:::1;70514:30:::0;::::1;;;::::0;:10:::1;:30:::0;:10;:30;70534:9;70514:10;:30;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;70514:30:0;70378:174;70597:4;70558:19;:36;70578:13;:11;:13::i;:::-;70592:1;70578:15;70558:36:::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;70558:36:0;:43;;-1:-1:-1;;70558:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;70608:36:::1;70614:10;70626:13;:11;:13::i;:::-;70642:1;70626:17;70608:5;:36::i;:::-;70201:449::o:0;53739:162::-;-1:-1:-1;;;;;53863:20:0;;53836:7;53863:20;;;:13;:20;;;;;:30;;53887:5;53863:30;:23;:30;:::i;:::-;53856:37;;53739:162;;;;;:::o;68634:60::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;70921:101::-;70995:21;-1:-1:-1;70990:26:0;70921:101::o;68370:78::-;;;-1:-1:-1;;;;;68370:78:0;;:::o;56235:151::-;56339:39;56356:4;56362:2;56366:7;56339:39;;;;;;;;;;;;:16;:39::i;54265:172::-;54340:7;;54382:22;:12;54398:5;54382:22;:15;:22;:::i;:::-;-1:-1:-1;54360:44:0;54265:172;-1:-1:-1;;;54265:172:0:o;70830:85::-;67240:12;:10;:12::i;:::-;-1:-1:-1;;;;;67229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;67229:23:0;;67221:68;;;;;-1:-1:-1;;;67221:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;67221:68:0;;;;;;;;;;;;;;;70893:16:::1;70905:3;70893:11;:16::i;:::-;70830:85:::0;:::o;69530:322::-;68988:10;;:30;;-1:-1:-1;;;;;68988:10:0;;;;69008:9;68988:30;;;;;:10;:30;:10;:30;69008:9;68988:10;:30;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;68988:30:0;69042:7;69029:9;:20;69025:116;;69060:9;:14;;69073:1;69060:14;;;;;69083:50;;69089:10;;69101:31;;69083:5;:50::i;:::-;-1:-1:-1;;;;;69633:17:0;::::1;69621:9;69633:17:::0;;;:5:::1;:17;::::0;;;;;;;:24;;;;;;;;;69616:160:::1;-1:-1:-1::0;;;;;69664:15:0;::::1;;::::0;;;:3:::1;:15;::::0;;;;;;;:22;;;;;;;;;69659:27;::::1;69616:160;;69724:10;69710;69718:1:::0;69710:7:::1;:10::i;:::-;-1:-1:-1::0;;;;;69710:24:0::1;;69702:49;;;::::0;;-1:-1:-1;;;69702:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;69702:49:0;;;;;;;;;;;;;::::1;;69760:8;69766:1;69760:5;:8::i;:::-;69688:3;;69616:160;;;-1:-1:-1::0;69782:64:0::1;::::0;;-1:-1:-1;;;69782:64:0;;69821:4:::1;69782:64;::::0;::::1;::::0;69828:10:::1;69782:64:::0;;;;;;;;;;;;-1:-1:-1;;;;;69782:30:0;::::1;::::0;::::1;::::0;:64;;;;;-1:-1:-1;;69782:64:0;;;;;;;-1:-1:-1;69782:30:0;:64;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;69782:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;69782:64:0;;;;69530:322:::0;;:::o;51939:177::-;52011:7;52038:70;52055:7;52038:70;;;;;;;;;;;;;;;;;:12;;:70;;:16;:70;:::i;68699:58::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;53558:97::-;53639:8;53632:15;;;;;;;;-1:-1:-1;;53632:15:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53606:13;;53632:15;;53639:8;;53632:15;;53639:8;53632:15;;;;;;;;;;;;;;;;;;;;;;;;51656:221;51728:7;-1:-1:-1;;;;;51756:19:0;;51748:74;;;;-1:-1:-1;;;51748:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51840:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;67660:148::-;67240:12;:10;:12::i;:::-;-1:-1:-1;;;;;67229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;67229:23:0;;67221:68;;;;;-1:-1:-1;;;67221:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;67221:68:0;;;;;;;;;;;;;;;67751:6:::1;::::0;67730:40:::1;::::0;67767:1:::1;::::0;-1:-1:-1;;;;;67751:6:0::1;::::0;67730:40:::1;::::0;67767:1;;67730:40:::1;67781:6;:19:::0;;-1:-1:-1;;;;;;67781:19:0::1;::::0;;67660:148::o;67009:87::-;67082:6;;-1:-1:-1;;;;;67082:6:0;67009:87;:::o;68584:45::-;;;;;;;;;;;;;;;:::o;52352:104::-;52441:7;52434:14;;;;;;;;-1:-1:-1;;52434:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52408:13;;52434:14;;52441:7;;52434:14;;52441:7;52434:14;;;;;;;;;;;;;;;;;;;;;;;;68762:51;;;;;;;;;;;;;;;:::o;55262:295::-;55377:12;:10;:12::i;:::-;-1:-1:-1;;;;;55365:24:0;:8;-1:-1:-1;;;;;55365:24:0;;;55357:62;;;;;-1:-1:-1;;;55357:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;55477:8;55432:18;:32;55451:12;:10;:12::i;:::-;-1:-1:-1;;;;;55432:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;55432:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;55432:53:0;;;;;;;;;;;55516:12;:10;:12::i;:::-;55501:48;;;;;;;;;;-1:-1:-1;;;;;55501:48:0;;;;;;;;;;;;;;55262:295;;:::o;56457:285::-;56589:41;56608:12;:10;:12::i;:::-;56622:7;56589:18;:41::i;:::-;56581:103;;;;-1:-1:-1;;;56581:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56695:39;56709:4;56715:2;56719:7;56728:5;56695:13;:39::i;:::-;56457:285;;;;:::o;68547:32::-;;;;:::o;68518:24::-;;;;:::o;52527:792::-;52600:13;52634:16;52642:7;52634;:16::i;:::-;52626:76;;;;-1:-1:-1;;;52626:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52741:19;;;;:10;:19;;;;;;;;;52715:45;;;;;;-1:-1:-1;;52715:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:23;;:45;;;52741:19;52715:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52771:18;52792:9;:7;:9::i;:::-;52771:30;;52883:4;52877:18;52899:1;52877:23;52873:72;;;-1:-1:-1;52924:9:0;-1:-1:-1;52917:16:0;;52873:72;53049:23;;:27;53045:108;;53124:4;53130:9;53107:33;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;53107::0;;;;;;;;;;-1:-1:-1;53107:33:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;53107:33:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;53107:33:0;;;53093:48;;;;;;53045:108;53285:4;53291:18;:7;:16;:18::i;:::-;53268:42;;;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;53268:42:0;;;;;;;;;;-1:-1:-1;53268:42:0;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;53268:42:0;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;53268:42:0;;;53254:57;;;;52527:792;;;:::o;69160:364::-;68988:10;;:30;;-1:-1:-1;;;;;68988:10:0;;;;69008:9;68988:30;;;;;:10;:30;:10;:30;69008:9;68988:10;:30;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;68988:30:0;69042:7;69029:9;:20;69025:116;;69060:9;:14;;69073:1;69060:14;;;;;69083:50;;69089:10;;69101:31;;69083:5;:50::i;:::-;69251:59:::1;::::0;;-1:-1:-1;;;69251:59:0;;69278:10:::1;69251:59;::::0;::::1;::::0;69298:4:::1;69251:59:::0;;;;;;;;;;;;-1:-1:-1;;;;;69251:26:0;::::1;::::0;::::1;::::0;:59;;;;;-1:-1:-1;;69251:59:0;;;;;;;-1:-1:-1;69251:26:0;:59;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;2:2;69251:59:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;69251:59:0;;;;69339:13;:11;:13::i;:::-;-1:-1:-1::0;;;;;69317:13:0;::::1;;::::0;;;:5:::1;:13;::::0;;;;;;;:19;;;;;;;;69355:1:::1;69339:17:::0;;;::::1;69317:39:::0;;69399:9;69383:13:::1;:11;:13::i;:::-;-1:-1:-1::0;;;;;69363:11:0;::::1;;::::0;;;:3:::1;:11;::::0;;;;;;;:17;;;;;;;;69383:25;;;::::1;69363:45:::0;;;69432:13;;;:5:::1;:13:::0;;;;;:19;;;;;;;;69415:104:::1;-1:-1:-1::0;;;;;69458:11:0;::::1;;::::0;;;:3:::1;:11;::::0;;;;;;;:17;;;;;;;;;69453:22;::::1;69415:104;;69491:20;69497:10;69509:1;69491:5;:20::i;:::-;69477:3;;69415:104;;55628:164:::0;-1:-1:-1;;;;;55749:25:0;;;55725:4;55749:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;55628:164::o;67963:244::-;67240:12;:10;:12::i;:::-;-1:-1:-1;;;;;67229:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;67229:23:0;;67221:68;;;;;-1:-1:-1;;;67221:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;67221:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;68052:22:0;::::1;68044:73;;;;-1:-1:-1::0;;;68044:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68154:6;::::0;68133:38:::1;::::0;-1:-1:-1;;;;;68133:38:0;;::::1;::::0;68154:6:::1;::::0;68133:38:::1;::::0;68154:6:::1;::::0;68133:38:::1;68182:6;:17:::0;;-1:-1:-1;;;;;;68182:17:0::1;-1:-1:-1::0;;;;;68182:17:0;;;::::1;::::0;;;::::1;::::0;;67963:244::o;35403:131::-;35470:4;35494:32;35499:3;35519:5;35494:4;:32::i;44046:185::-;44135:4;44159:64;44164:3;44184;-1:-1:-1;;;;;44198:23:0;;44159:4;:64::i;:::-;44152:71;;44046:185;;;;;;:::o;44623:151::-;44707:4;44731:35;44741:3;44761;44731:9;:35::i;58209:127::-;58274:4;58298:30;:12;58320:7;58298:30;:21;:30;:::i;951:106::-;1039:10;951:106;:::o;64227:192::-;64302:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;64302:29:0;-1:-1:-1;;;;;64302:29:0;;;;;;;;:24;;64356:23;64302:24;64356:14;:23::i;:::-;-1:-1:-1;;;;;64347:46:0;;;;;;;;;;;64227:192;;:::o;62394:215::-;62494:16;62502:7;62494;:16::i;:::-;62486:73;;;;-1:-1:-1;;;62486:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62570:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;44862:123::-;44931:7;44958:19;44966:3;44958:7;:19::i;58503:355::-;58596:4;58621:16;58629:7;58621;:16::i;:::-;58613:73;;;;-1:-1:-1;;;58613:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58697:13;58713:23;58728:7;58713:14;:23::i;:::-;58697:39;;58766:5;-1:-1:-1;;;;;58755:16:0;:7;-1:-1:-1;;;;;58755:16:0;;:51;;;;58799:7;-1:-1:-1;;;;;58775:31:0;:20;58787:7;58775:11;:20::i;:::-;-1:-1:-1;;;;;58775:31:0;;58755:51;:94;;;;58810:39;58834:5;58841:7;58810:23;:39::i;:::-;58747:103;58503:355;-1:-1:-1;;;;58503:355:0:o;61639:599::-;61764:4;-1:-1:-1;;;;;61737:31:0;:23;61752:7;61737:14;:23::i;:::-;-1:-1:-1;;;;;61737:31:0;;61729:85;;;;-1:-1:-1;;;61729:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61851:16:0;;61843:65;;;;-1:-1:-1;;;61843:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61921:39;61942:4;61948:2;61952:7;61921:20;:39::i;:::-;62025:29;62042:1;62046:7;62025:8;:29::i;:::-;-1:-1:-1;;;;;62067:19:0;;;;;;:13;:19;;;;;:35;;62094:7;62067:35;:26;:35;:::i;:::-;-1:-1:-1;;;;;;62113:17:0;;;;;;:13;:17;;;;;:30;;62135:7;62113:30;:21;:30;:::i;:::-;-1:-1:-1;62156:29:0;:12;62173:7;62182:2;62156:29;:16;:29;:::i;:::-;;62222:7;62218:2;-1:-1:-1;;;;;62203:27:0;62212:4;-1:-1:-1;;;;;62203:27:0;;;;;;;;;;;61639:599;;;:::o;60124:404::-;-1:-1:-1;;;;;60204:16:0;;60196:61;;;;;-1:-1:-1;;;60196:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60277:16;60285:7;60277;:16::i;:::-;60276:17;60268:58;;;;;-1:-1:-1;;;60268:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;60339:45;60368:1;60372:2;60376:7;60339:20;:45::i;:::-;-1:-1:-1;;;;;60397:17:0;;;;;;:13;:17;;;;;:30;;60419:7;60397:30;:21;:30;:::i;:::-;-1:-1:-1;60440:29:0;:12;60457:7;60466:2;60440:29;:16;:29;:::i;:::-;-1:-1:-1;60487:33:0;;60512:7;;-1:-1:-1;;;;;60487:33:0;;;60504:1;;60487:33;;60504:1;;60487:33;60124:404;;:::o;69858:337::-;69910:7;69925:9;69953:1;69937:13;:11;:13::i;:::-;:17;;;;;;;-1:-1:-1;69961:9:0;69990:1;69985:6;;69981:34;;;-1:-1:-1;70006:1:0;69981:34;70025:1;70030;70025:6;70021:34;;;-1:-1:-1;70046:1:0;70021:34;70065:1;70070;70065:6;70061:34;;;-1:-1:-1;70086:1:0;70061:34;70105:1;70110;70105:6;70101:34;;;-1:-1:-1;70126:1:0;70101:34;70145:1;70150;70145:6;70141:34;;;-1:-1:-1;70166:1:0;70141:34;70188:1;-1:-1:-1;;69858:337:0;:::o;36623:137::-;36694:7;36729:22;36733:3;36745:5;36729:3;:22::i;45324:236::-;45404:7;;;;45464:22;45468:3;45480:5;45464:3;:22::i;:::-;45433:53;;;;-1:-1:-1;45324:236:0;-1:-1:-1;;;;;45324:236:0:o;62839:100::-;62912:19;;;;:8;;:19;;;;;:::i;60757:545::-;60817:13;60833:23;60848:7;60833:14;:23::i;:::-;60817:39;;60887:48;60908:5;60923:1;60927:7;60887:20;:48::i;:::-;60976:29;60993:1;60997:7;60976:8;:29::i;:::-;61064:19;;;;:10;:19;;;;;61058:33;;-1:-1:-1;;61058:33:0;;;;;;;;;;;:38;61054:97;;61120:19;;;;:10;:19;;;;;61113:26;;;:::i;:::-;-1:-1:-1;;;;;61163:20:0;;;;;;:13;:20;;;;;:36;;61191:7;61163:36;:27;:36;:::i;:::-;-1:-1:-1;61212:28:0;:12;61232:7;61212:28;:19;:28;:::i;:::-;-1:-1:-1;61258:36:0;;61286:7;;61282:1;;-1:-1:-1;;;;;61258:36:0;;;;;61282:1;;61258:36;60757:545;;:::o;46610:213::-;46717:7;46768:44;46773:3;46793;46799:12;46768:4;:44::i;57624:272::-;57738:28;57748:4;57754:2;57758:7;57738:9;:28::i;:::-;57785:48;57808:4;57814:2;57818:7;57827:5;57785:22;:48::i;:::-;57777:111;;;;-1:-1:-1;;;57777:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47104:746;47160:13;47381:10;47377:53;;-1:-1:-1;47408:10:0;;;;;;;;;;;;-1:-1:-1;;;47408:10:0;;;;;;47377:53;47455:5;47440:12;47496:78;47503:9;;47496:78;;47529:8;;47560:2;47552:10;;;;47496:78;;;47584:19;47616:6;47606:17;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;47606:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;108:14;47606:17:0;87:42:-1;143:17;;-1:-1;47606:17:0;-1:-1:-1;47678:5:0;;-1:-1:-1;47584:39:0;-1:-1:-1;;;47650:10:0;;47694:117;47701:9;;47694:117;;47770:2;47763:4;:9;47758:2;:14;47745:29;;47727:6;47734:7;;;;;;;47727:15;;;;;;;;;;;:47;-1:-1:-1;;;;;47727:47:0;;;;;;;;-1:-1:-1;47797:2:0;47789:10;;;;47694:117;;;-1:-1:-1;47835:6:0;47104:746;-1:-1:-1;;;;47104:746:0:o;28773:414::-;28836:4;28858:21;28868:3;28873:5;28858:9;:21::i;:::-;28853:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;28896:11:0;:23;;;;;;;;;;;;;29079:18;;29057:19;;;:12;;;:19;;;;;;:40;;;;29112:11;;28853:327;-1:-1:-1;29163:5:0;29156:12;;38721:692;38797:4;38932:17;;;:12;;;:17;;;;;;38966:13;38962:444;;-1:-1:-1;;39051:38:0;;;;;;;;;;;;;;;;;;27:10:-1;;39:1;23:18;;;45:23;;39033:12:0;:57;;;;;;;;;;;;;;;;;;;;;;;;39248:19;;39228:17;;;:12;;;:17;;;;;;;:39;39282:11;;38962:444;39362:5;39326:3;:12;;39350:1;39339:8;:12;39326:26;;;;;;;;;;;;;;;;;;:33;;:41;;;;39389:5;39382:12;;;;;41221:125;41292:4;41316:17;;;:12;;;;;:17;;;;;;:22;;;41221:125::o;41441:110::-;41524:19;;41441:110::o;35710:137::-;35780:4;35804:35;35812:3;35832:5;35804:7;:35::i;31661:204::-;31756:18;;31728:7;;31756:26;-1:-1:-1;31748:73:0;;;;-1:-1:-1;;;31748:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31839:3;:11;;31851:5;31839:18;;;;;;;;;;;;;;;;31832:25;;31661:204;;;;:::o;41906:279::-;42010:19;;41973:7;;;;42010:27;-1:-1:-1;42002:74:0;;;;-1:-1:-1;;;42002:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42089:22;42114:3;:12;;42127:5;42114:19;;;;;;;;;;;;;;;;;;42089:44;;42152:5;:10;;;42164:5;:12;;;42144:33;;;;;41906:279;;;;;:::o;44397:142::-;44474:4;44498:33;44506:3;44526;44498:7;:33::i;43403:319::-;43497:7;43536:17;;;:12;;;:17;;;;;;43587:12;43572:13;43564:36;;;;-1:-1:-1;;;43564:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;43564:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43654:3;:12;;43678:1;43667:8;:12;43654:26;;;;;;;;;;;;;;;;;;:33;;;43647:40;;;43403:319;;;;;:::o;63504:604::-;63625:4;63652:15;:2;-1:-1:-1;;;;;63652:13:0;;:15::i;:::-;63647:60;;-1:-1:-1;63691:4:0;63684:11;;63647:60;63717:23;63743:252;-1:-1:-1;;;63856:12:0;:10;:12::i;:::-;63883:4;63902:7;63924:5;63759:181;;;;;;-1:-1:-1;;;;;63759:181:0;-1:-1:-1;;;;;63759:181:0;;;;;;-1:-1:-1;;;;;63759:181:0;-1:-1:-1;;;;;63759:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;63759:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;63759:181:0;;;;-1:-1:-1;;;;;63759:181:0;;38:4:-1;29:7;25:18;67:10;61:17;-1:-1;;;;;199:8;192:4;186;182:15;179:29;167:10;160:49;0:215;;;63759:181:0;63743:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63743:15:0;;;:252;;:15;:252;:::i;:::-;63717:278;;64006:13;64033:10;64022:32;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;64022:32:0;-1:-1:-1;;;;;;64073:26:0;-1:-1:-1;;;64073:26:0;;-1:-1:-1;;;63504:604:0;;;;;;:::o;29363:1544::-;29429:4;29568:19;;;:12;;;:19;;;;;;29604:15;;29600:1300;;30039:18;;-1:-1:-1;;29990:14:0;;;;30039:22;;;;29966:21;;30039:3;;:22;;30326;;;;;;;;;;;;;;30306:42;;30472:9;30443:3;:11;;30455:13;30443:26;;;;;;;;;;;;;;;;;;;:38;;;;30549:23;;;30591:1;30549:12;;;:23;;;;;;30575:17;;;30549:43;;30701:17;;30549:3;;30701:17;;;;;;;;;;;;;;;;;;;;;;30796:3;:12;;:19;30809:5;30796:19;;;;;;;;;;;30789:26;;;30839:4;30832:11;;;;;;;;29600:1300;30883:5;30876:12;;;;;39588:1549;39652:4;39787:17;;;:12;;;:17;;;;;;39821:13;;39817:1313;;40253:19;;-1:-1:-1;;40206:12:0;;;;40253:23;;;;40182:21;;40253:3;;:23;;40550;;;;;;;;;;;;;;;;40521:52;;40698:9;40668:3;:12;;40681:13;40668:27;;;;;;;;;;;;;;;;:39;;:27;;;;;:39;;;;;;;;;;;;;;;40788:14;;40775:28;;:12;;;:28;;;;;40806:17;;;40775:48;;40932:18;;40775:3;;40932:18;;;;;;;;;;;;;;-1:-1:-1;;40932:18:0;;;;;;;;;;;;;;;;;;;;;41028:17;;;:12;;;:17;;;;;;41021:24;;;;40932:18;-1:-1:-1;41062:11:0;;-1:-1:-1;;;;41062:11:0;19762:422;20129:20;20168:8;;;19762:422::o;22680:195::-;22783:12;22815:52;22837:6;22845:4;22851:1;22854:12;22783;23984:18;23995:6;23984:10;:18::i;:::-;23976:60;;;;;-1:-1:-1;;;23976:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24110:12;24124:23;24151:6;-1:-1:-1;;;;;24151:11:0;24171:5;24179:4;24151:33;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;24151:33:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;24109:75:0;;;;24202:52;24220:7;24229:10;24241:12;24202:17;:52::i;:::-;24195:59;23732:530;-1:-1:-1;;;;;;;23732:530:0:o;26272:742::-;26387:12;26416:7;26412:595;;;-1:-1:-1;26447:10:0;26440:17;;26412:595;26561:17;;:21;26557:439;;26824:10;26818:17;26885:15;26872:10;26868:2;26864:19;26857:44;26772:148;26960:20;;-1:-1:-1;;;26960:20:0;;;;;;;;;;;;;;;;;26967:12;;26960:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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