ETH Price: $3,247.66 (-0.38%)
Gas: 3 Gwei

Token

POPDAWG (PDAWG)
 

Overview

Max Total Supply

166 PDAWG

Holders

65

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
offerprice.eth
Balance
1 PDAWG
0xb63C261890b5647aaCbB8e8dDFBB635527d2213C
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:
POPDAWG

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

pragma solidity ^0.8.0;
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with 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 payable(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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^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



pragma solidity ^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



pragma solidity ^0.8.0;

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

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



pragma solidity ^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



pragma solidity ^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



pragma solidity ^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

pragma solidity ^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/access/Ownable.sol



pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () 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/POPDAWG.sol


pragma solidity ^0.8.0;



/**
 * @title POPDAWG contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract POPDAWG is ERC721, Ownable {
    using SafeMath for uint256;

    string public POPDAWG_PROVENANCE = "";
    address payable dev_address;
    address public admin;
    uint256 public startingIndexBlock;
    uint256 public startingIndex;
    uint256 public constant dawgPrice = 28000000000000000; //0.028 ETH, 28000000000000000
    uint public constant maxDawgPurchase = 20;
    uint256 public MAX_DAWG;
    bool public saleIsActive = false;
    uint256 public REVEAL_TIMESTAMP;
    //Monday, December 20, 2021 12:00:00 AM, 1639958400
    uint256 public SALE_START;
    uint256 public PRESALE;

    constructor(string memory name, string memory symbol) ERC721(name, symbol) {
        MAX_DAWG = 3888;
        SALE_START = 1639958400;
        REVEAL_TIMESTAMP = SALE_START.add(4 days + 16 hours);
        PRESALE = SALE_START.add(2 hours);
        dev_address = payable(0x2f5DDdd8703a6E0509Ac0314B2df7f5c374B3982);
        admin = 0xbE5B09aD1f0c01A7f4995623E434cBc0Dd71Db3f;
    }

    modifier onlyAdmin() {
        require(admin == _msgSender(), "Dev: caller is not the admin");
        _;
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).send(balance.mul(75).div(100));
        dev_address.send(balance.sub(balance.mul(75).div(100)));
    }

    function setAdmin(address _admin) public onlyOwner {
        admin = _admin;
    }

    /*     
    * Set provenance once it's calculated
    */
    function setProvenanceHash(string memory provenanceHash) public onlyAdmin
     {
        POPDAWG_PROVENANCE = provenanceHash;
    }

    function setBaseURI(string memory baseURI) public onlyAdmin {
        _setBaseURI(baseURI);
    }

    /*
    * Pause sale if active, make active if paused
    */
    function flipSaleState() public onlyAdmin {
        saleIsActive = !saleIsActive;
    }

    /**
    * Mints POPDAWGS
    */
    function mint(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active to mint DAWG");
        require(numberOfTokens <= maxDawgPurchase, "Can only mint 20 tokens at a time");
        require(totalSupply().add(numberOfTokens) <= MAX_DAWG, "Purchase would exceed max supply of POPDAWGS");
        if(block.timestamp > PRESALE){
            require(dawgPrice.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct");
        }
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_DAWG) {
                _safeMint(msg.sender, mintIndex);
            }
        }

        // If we haven't set the starting index and this is either 1) the last saleable token or 2) the first token to be sold after
        // the end of pre-sale, set the starting index block
        if (startingIndexBlock == 0 && (totalSupply() == MAX_DAWG || block.timestamp >= REVEAL_TIMESTAMP)) {
            startingIndexBlock = block.number;
        } 
    }

    /**
     * Set the starting index for the collection
     */
    function setStartingIndex() public {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        startingIndex = uint(blockhash(startingIndexBlock)) % MAX_DAWG;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes)
        if (block.number.sub(startingIndexBlock) > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % MAX_DAWG;
        }
        // Prevent default sequence
        if (startingIndex == 0) {
            startingIndex = startingIndex.add(1);
        }
    }

    /**
     * Set the starting index block for the collection, essentially unblocking
     * setting starting index
     */
    function emergencySetStartingIndexBlock() public onlyAdmin {
        require(startingIndex == 0, "Starting index is already set");
        
        startingIndexBlock = block.number;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_DAWG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POPDAWG_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dawgPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDawgPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600b9162000265565b506011805460ff191690553480156200003357600080fd5b5060405162002f8138038062002f818339810160408190526200005691620003b6565b81816200006a6301ffc9a760e01b620001cb565b81516200007f90600690602085019062000265565b5080516200009590600790602084019062000265565b50620000a86380ac58cd60e01b620001cb565b620000ba635b5e139f60e01b620001cb565b620000cc63780e9d6360e01b620001cb565b5060009050620000db62000226565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350610f306010556361bfc78060138190556200015490620627006200022a602090811b620011ef17901c565b60128190555062000178611c206013546200022a60201b620011ef1790919060201c565b6014555050600c80546001600160a01b0319908116732f5dddd8703a6e0509ac0314b2df7f5c374b398217909155600d805490911673be5b09ad1f0c01a7f4995623e434cbc0dd71db3f17905562000503565b6001600160e01b03198082161415620002015760405162461bcd60e51b8152600401620001f8906200041d565b60405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b6000806200023983856200048b565b9050838110156200025e5760405162461bcd60e51b8152600401620001f89062000454565b9392505050565b8280546200027390620004b0565b90600052602060002090601f016020900481019282620002975760008555620002e2565b82601f10620002b257805160ff1916838001178555620002e2565b82800160010185558215620002e2579182015b82811115620002e2578251825591602001919060010190620002c5565b50620002f0929150620002f4565b5090565b5b80821115620002f05760008155600101620002f5565b600082601f8301126200031c578081fd5b81516001600160401b0380821115620003395762000339620004ed565b6040516020601f8401601f1916820181018381118382101715620003615762000361620004ed565b604052838252858401810187101562000378578485fd5b8492505b838310156200039b57858301810151828401820152918201916200037c565b83831115620003ac57848185840101525b5095945050505050565b60008060408385031215620003c9578182fd5b82516001600160401b0380821115620003e0578384fd5b620003ee868387016200030b565b9350602085015191508082111562000404578283fd5b5062000413858286016200030b565b9150509250929050565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60008219821115620004ab57634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620004c557607f821691505b60208210811415620004e757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a6e80620005136000396000f3fe6080604052600436106102305760003560e01c80636c0360eb1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146105e1578063e986655014610601578063eb8d244414610616578063f2fde38b1461062b578063f851a4401461064b57610230565b8063b88d4fde14610562578063c87b56dd14610582578063cb774d47146105a2578063d7c705ad146105b7578063e36d6498146105cc57610230565b80638da5cb5b116100f25780638da5cb5b146104f057806395d89b4114610505578063a0712d681461051a578063a22cb4651461052d578063b4cf56481461054d57610230565b80636c0360eb14610471578063704b6c021461048657806370a08231146104a6578063715018a6146104c65780637d17fcbe146104db57610230565b80632f745c59116101bc5780634795b0d7116101805780634795b0d7146103e75780634f6ccce7146103fc57806354bb05bd1461041c57806355f804b3146104315780636352211e1461045157610230565b80632f745c591461036857806334918dfd1461038857806337f617a71461039d5780633ccfd60b146103b257806342842e0e146103c757610230565b8063109695231161020357806310969523146102dc57806318160ddd146102fc57806318e20a381461031e578063226730301461033357806323b872dd1461034857610230565b806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d578063095ea7b3146102ba575b600080fd5b34801561024157600080fd5b50610255610250366004611f97565b610660565b60405161026291906120f5565b60405180910390f35b34801561027757600080fd5b50610280610683565b6040516102629190612100565b34801561029957600080fd5b506102ad6102a8366004612015565b610715565b60405161026291906120a4565b3480156102c657600080fd5b506102da6102d5366004611f6e565b610761565b005b3480156102e857600080fd5b506102da6102f7366004611fcf565b6107f9565b34801561030857600080fd5b50610311610845565b604051610262919061286d565b34801561032a57600080fd5b50610311610856565b34801561033f57600080fd5b5061031161085c565b34801561035457600080fd5b506102da610363366004611e80565b610862565b34801561037457600080fd5b50610311610383366004611f6e565b61089a565b34801561039457600080fd5b506102da6108c5565b3480156103a957600080fd5b5061028061090e565b3480156103be57600080fd5b506102da61099c565b3480156103d357600080fd5b506102da6103e2366004611e80565b610a53565b3480156103f357600080fd5b50610311610a6e565b34801561040857600080fd5b50610311610417366004612015565b610a73565b34801561042857600080fd5b50610311610a89565b34801561043d57600080fd5b506102da61044c366004611fcf565b610a8f565b34801561045d57600080fd5b506102ad61046c366004612015565b610ad0565b34801561047d57600080fd5b50610280610af8565b34801561049257600080fd5b506102da6104a1366004611e34565b610b07565b3480156104b257600080fd5b506103116104c1366004611e34565b610b68565b3480156104d257600080fd5b506102da610bb1565b3480156104e757600080fd5b506102da610c3a565b3480156104fc57600080fd5b506102ad610c95565b34801561051157600080fd5b50610280610ca4565b6102da610528366004612015565b610cb3565b34801561053957600080fd5b506102da610548366004611f34565b610dd9565b34801561055957600080fd5b50610311610ea7565b34801561056e57600080fd5b506102da61057d366004611ebb565b610ead565b34801561058e57600080fd5b5061028061059d366004612015565b610eec565b3480156105ae57600080fd5b5061031161102f565b3480156105c357600080fd5b50610311611035565b3480156105d857600080fd5b50610311611040565b3480156105ed57600080fd5b506102556105fc366004611e4e565b611046565b34801561060d57600080fd5b506102da611074565b34801561062257600080fd5b50610255611116565b34801561063757600080fd5b506102da610646366004611e34565b61111f565b34801561065757600080fd5b506102ad6111e0565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6060600680546106929061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546106be9061291b565b801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b5050505050905090565b60006107208261121e565b6107455760405162461bcd60e51b815260040161073c9061259e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076c82610ad0565b9050806001600160a01b0316836001600160a01b031614156107a05760405162461bcd60e51b815260040161073c906126b7565b806001600160a01b03166107b261122b565b6001600160a01b031614806107ce57506107ce816105fc61122b565b6107ea5760405162461bcd60e51b815260040161073c9061243f565b6107f4838361122f565b505050565b61080161122b565b600d546001600160a01b0390811691161461082e5760405162461bcd60e51b815260040161073c906127ea565b805161084190600b906020840190611d14565b5050565b6000610851600261129d565b905090565b60125481565b60135481565b61087361086d61122b565b826112a8565b61088f5760405162461bcd60e51b815260040161073c9061272d565b6107f483838361132d565b6001600160a01b03821660009081526001602052604081206108bc908361143b565b90505b92915050565b6108cd61122b565b600d546001600160a01b039081169116146108fa5760405162461bcd60e51b815260040161073c906127ea565b6011805460ff19811660ff90911615179055565b600b805461091b9061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546109479061291b565b80156109945780601f1061096957610100808354040283529160200191610994565b820191906000526020600020905b81548152906001019060200180831161097757829003601f168201915b505050505081565b6109a461122b565b6001600160a01b03166109b5610c95565b6001600160a01b0316146109db5760405162461bcd60e51b815260040161073c906125ea565b47336108fc6109f660646109f085604b611447565b9061148c565b6040518115909202916000818181858888f15050600c546001600160a01b031692506108fc9150610a399050610a3260646109f086604b611447565b84906114b7565b6040518115909202916000818181858888f1505050505050565b6107f483838360405180602001604052806000815250610ead565b601481565b600080610a816002846114e3565b509392505050565b60105481565b610a9761122b565b600d546001600160a01b03908116911614610ac45760405162461bcd60e51b815260040161073c906127ea565b610acd816114ff565b50565b60006108bf82604051806060016040528060298152602001612a106029913960029190611512565b6060600980546106929061291b565b610b0f61122b565b6001600160a01b0316610b20610c95565b6001600160a01b031614610b465760405162461bcd60e51b815260040161073c906125ea565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610b905760405162461bcd60e51b815260040161073c9061249c565b6001600160a01b03821660009081526001602052604090206108bf9061129d565b610bb961122b565b6001600160a01b0316610bca610c95565b6001600160a01b031614610bf05760405162461bcd60e51b815260040161073c906125ea565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610c4261122b565b600d546001600160a01b03908116911614610c6f5760405162461bcd60e51b815260040161073c906127ea565b600f5415610c8f5760405162461bcd60e51b815260040161073c90612408565b43600e55565b600a546001600160a01b031690565b6060600780546106929061291b565b60115460ff16610cd55760405162461bcd60e51b815260040161073c906127b5565b6014811115610cf65760405162461bcd60e51b815260040161073c906123c7565b601054610d0b82610d05610845565b906111ef565b1115610d295760405162461bcd60e51b815260040161073c90612821565b601454421115610d635734610d45666379da05b6000083611447565b1115610d635760405162461bcd60e51b815260040161073c906122d6565b60005b81811015610da8576000610d78610845565b9050601054610d85610845565b1015610d9557610d953382611529565b5080610da081612956565b915050610d66565b50600e54158015610dcd5750601054610dbf610845565b1480610dcd57506012544210155b15610acd5743600e5550565b610de161122b565b6001600160a01b0316826001600160a01b03161415610e125760405162461bcd60e51b815260040161073c9061229f565b8060056000610e1f61122b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e6361122b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e9b91906120f5565b60405180910390a35050565b60145481565b610ebe610eb861122b565b836112a8565b610eda5760405162461bcd60e51b815260040161073c9061272d565b610ee684848484611543565b50505050565b6060610ef78261121e565b610f135760405162461bcd60e51b815260040161073c90612668565b60008281526008602052604081208054610f2c9061291b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f589061291b565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505090506000610fb6610af8565b9050805160001415610fca5750905061067e565b815115610ffc578082604051602001610fe4929190612075565b6040516020818303038152906040529250505061067e565b8061100685611576565b604051602001611017929190612075565b60405160208183030381529060405292505050919050565b600f5481565b666379da05b6000081565b600e5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f54156110945760405162461bcd60e51b815260040161073c90612408565b600e546110b35760405162461bcd60e51b815260040161073c906126f8565b601054600e546110c4919040612971565b600f55600e5460ff906110d89043906114b7565b11156110fb576010546110ec6001436128c1565b6110f7919040612971565b600f555b600f5461111457600f546111109060016111ef565b600f555b565b60115460ff1681565b61112761122b565b6001600160a01b0316611138610c95565b6001600160a01b03161461115e5760405162461bcd60e51b815260040161073c906125ea565b6001600160a01b0381166111845760405162461bcd60e51b815260040161073c906121a7565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031681565b6000806111fc8385612876565b9050838110156108bc5760405162461bcd60e51b815260040161073c90612224565b60006108bf6002836116aa565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126482610ad0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006108bf826116b6565b60006112b38261121e565b6112cf5760405162461bcd60e51b815260040161073c90612344565b60006112da83610ad0565b9050806001600160a01b0316846001600160a01b031614806113155750836001600160a01b031661130a84610715565b6001600160a01b0316145b8061132557506113258185611046565b949350505050565b826001600160a01b031661134082610ad0565b6001600160a01b0316146113665760405162461bcd60e51b815260040161073c9061261f565b6001600160a01b03821661138c5760405162461bcd60e51b815260040161073c9061225b565b6113978383836107f4565b6113a260008261122f565b6001600160a01b03831660009081526001602052604090206113c490826116ba565b506001600160a01b03821660009081526001602052604090206113e790826116c6565b506113f4600282846116d2565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006108bc83836116e8565b600082611456575060006108bf565b600061146283856128a2565b90508261146f858361288e565b146108bc5760405162461bcd60e51b815260040161073c9061255d565b60008082116114ad5760405162461bcd60e51b815260040161073c90612390565b6108bc828461288e565b6000828211156114d95760405162461bcd60e51b815260040161073c9061230d565b6108bc82846128c1565b60008080806114f28686611741565b9097909650945050505050565b8051610841906009906020840190611d14565b600061151f8484846117b1565b90505b9392505050565b610841828260405180602001604052806000815250611828565b61154e84848461132d565b61155a8484848461185b565b610ee65760405162461bcd60e51b815260040161073c90612155565b60608161159b57506040805180820190915260018152600360fc1b602082015261067e565b8160005b81156115c557806115af81612956565b91506115be9050600a8361288e565b915061159f565b60008167ffffffffffffffff8111156115ee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611618576020820181803683370190505b50905060006116286001846128c1565b90508593505b83156116a15761163f600a85612971565b61164a906030612876565b60f81b828261165881612904565b93508151811061167857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061169a600a8561288e565b935061162e565b50949350505050565b60006108bc838361193a565b5490565b60006108bc8383611952565b60006108bc8383611a6f565b600061151f84846001600160a01b038516611ab9565b8154600090821061170b5760405162461bcd60e51b815260040161073c90612113565b82600001828154811061172e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b8154600090819083106117665760405162461bcd60e51b815260040161073c906124e6565b600084600001848154811061178b57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816117e15760405162461bcd60e51b815260040161073c9190612100565b50846117ee6001836128c1565b8154811061180c57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6118328383611b68565b61183f600084848461185b565b6107f45760405162461bcd60e51b815260040161073c90612155565b600061186f846001600160a01b0316611c2c565b61187b57506001611325565b6000611903630a85bd0160e11b61189061122b565b8887876040516024016118a694939291906120b8565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016129de603291396001600160a01b0388169190611c32565b905060008180602001905181019061191b9190611fb3565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611a655760006119766001836128c1565b855490915060009061198a906001906128c1565b905060008660000182815481106119b157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106119e257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001556119f9836001612876565b60008281526001890160205260409020558654879080611a2957634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108bf565b60009150506108bf565b6000611a7b838361193a565b611ab1575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108bf565b5060006108bf565b600082815260018401602052604081205480611b1e575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611522565b8285611b2b6001846128c1565b81548110611b4957634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101819055506000915050611522565b6001600160a01b038216611b8e5760405162461bcd60e51b815260040161073c90612528565b611b978161121e565b15611bb45760405162461bcd60e51b815260040161073c906121ed565b611bc0600083836107f4565b6001600160a01b0382166000908152600160205260409020611be290826116c6565b50611bef600282846116d2565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b606061151f848460008585611c4685611c2c565b611c625760405162461bcd60e51b815260040161073c9061277e565b600080866001600160a01b03168587604051611c7e9190612059565b60006040518083038185875af1925050503d8060008114611cbb576040519150601f19603f3d011682016040523d82523d6000602084013e611cc0565b606091505b5091509150611cd0828286611cdb565b979650505050505050565b60608315611cea575081611522565b825115611cfa5782518084602001fd5b8160405162461bcd60e51b815260040161073c9190612100565b828054611d209061291b565b90600052602060002090601f016020900481019282611d425760008555611d88565b82601f10611d5b57805160ff1916838001178555611d88565b82800160010185558215611d88579182015b82811115611d88578251825591602001919060010190611d6d565b50611d94929150611d98565b5090565b5b80821115611d945760008155600101611d99565b600067ffffffffffffffff80841115611dc857611dc86129b1565b604051601f8501601f191681016020018281118282101715611dec57611dec6129b1565b604052848152915081838501861015611e0457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461067e57600080fd5b600060208284031215611e45578081fd5b6108bc82611e1d565b60008060408385031215611e60578081fd5b611e6983611e1d565b9150611e7760208401611e1d565b90509250929050565b600080600060608486031215611e94578081fd5b611e9d84611e1d565b9250611eab60208501611e1d565b9150604084013590509250925092565b60008060008060808587031215611ed0578081fd5b611ed985611e1d565b9350611ee760208601611e1d565b925060408501359150606085013567ffffffffffffffff811115611f09578182fd5b8501601f81018713611f19578182fd5b611f2887823560208401611dad565b91505092959194509250565b60008060408385031215611f46578182fd5b611f4f83611e1d565b915060208301358015158114611f63578182fd5b809150509250929050565b60008060408385031215611f80578182fd5b611f8983611e1d565b946020939093013593505050565b600060208284031215611fa8578081fd5b81356108bc816129c7565b600060208284031215611fc4578081fd5b81516108bc816129c7565b600060208284031215611fe0578081fd5b813567ffffffffffffffff811115611ff6578182fd5b8201601f81018413612006578182fd5b61132584823560208401611dad565b600060208284031215612026578081fd5b5035919050565b600081518084526120458160208601602086016128d8565b601f01601f19169290920160200192915050565b6000825161206b8184602087016128d8565b9190910192915050565b600083516120878184602088016128d8565b83519083019061209b8183602088016128d8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120eb9083018461202d565b9695505050505050565b901515815260200190565b6000602082526108bc602083018461202d565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6040820152606560f81b606082015260800190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252818101527f53616c65206d7573742062652061637469766520746f206d696e742044415747604082015260600190565b6020808252601c908201527f4465763a2063616c6c6572206973206e6f74207468652061646d696e00000000604082015260600190565b6020808252602c908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201526b206f6620504f50444157475360a01b606082015260800190565b90815260200190565b6000821982111561288957612889612985565b500190565b60008261289d5761289d61299b565b500490565b60008160001904831182151516156128bc576128bc612985565b500290565b6000828210156128d3576128d3612985565b500390565b60005b838110156128f35781810151838201526020016128db565b83811115610ee65750506000910152565b60008161291357612913612985565b506000190190565b60028104600182168061292f57607f821691505b6020821081141561295057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561296a5761296a612985565b5060010190565b6000826129805761298061299b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610acd57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212206b07f82fa6d4c2015c19e30a4cfcba145133da094e0cab6421c07373707731cc64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007504f50444157470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055044415747000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636c0360eb1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c5146105e1578063e986655014610601578063eb8d244414610616578063f2fde38b1461062b578063f851a4401461064b57610230565b8063b88d4fde14610562578063c87b56dd14610582578063cb774d47146105a2578063d7c705ad146105b7578063e36d6498146105cc57610230565b80638da5cb5b116100f25780638da5cb5b146104f057806395d89b4114610505578063a0712d681461051a578063a22cb4651461052d578063b4cf56481461054d57610230565b80636c0360eb14610471578063704b6c021461048657806370a08231146104a6578063715018a6146104c65780637d17fcbe146104db57610230565b80632f745c59116101bc5780634795b0d7116101805780634795b0d7146103e75780634f6ccce7146103fc57806354bb05bd1461041c57806355f804b3146104315780636352211e1461045157610230565b80632f745c591461036857806334918dfd1461038857806337f617a71461039d5780633ccfd60b146103b257806342842e0e146103c757610230565b8063109695231161020357806310969523146102dc57806318160ddd146102fc57806318e20a381461031e578063226730301461033357806323b872dd1461034857610230565b806301ffc9a71461023557806306fdde031461026b578063081812fc1461028d578063095ea7b3146102ba575b600080fd5b34801561024157600080fd5b50610255610250366004611f97565b610660565b60405161026291906120f5565b60405180910390f35b34801561027757600080fd5b50610280610683565b6040516102629190612100565b34801561029957600080fd5b506102ad6102a8366004612015565b610715565b60405161026291906120a4565b3480156102c657600080fd5b506102da6102d5366004611f6e565b610761565b005b3480156102e857600080fd5b506102da6102f7366004611fcf565b6107f9565b34801561030857600080fd5b50610311610845565b604051610262919061286d565b34801561032a57600080fd5b50610311610856565b34801561033f57600080fd5b5061031161085c565b34801561035457600080fd5b506102da610363366004611e80565b610862565b34801561037457600080fd5b50610311610383366004611f6e565b61089a565b34801561039457600080fd5b506102da6108c5565b3480156103a957600080fd5b5061028061090e565b3480156103be57600080fd5b506102da61099c565b3480156103d357600080fd5b506102da6103e2366004611e80565b610a53565b3480156103f357600080fd5b50610311610a6e565b34801561040857600080fd5b50610311610417366004612015565b610a73565b34801561042857600080fd5b50610311610a89565b34801561043d57600080fd5b506102da61044c366004611fcf565b610a8f565b34801561045d57600080fd5b506102ad61046c366004612015565b610ad0565b34801561047d57600080fd5b50610280610af8565b34801561049257600080fd5b506102da6104a1366004611e34565b610b07565b3480156104b257600080fd5b506103116104c1366004611e34565b610b68565b3480156104d257600080fd5b506102da610bb1565b3480156104e757600080fd5b506102da610c3a565b3480156104fc57600080fd5b506102ad610c95565b34801561051157600080fd5b50610280610ca4565b6102da610528366004612015565b610cb3565b34801561053957600080fd5b506102da610548366004611f34565b610dd9565b34801561055957600080fd5b50610311610ea7565b34801561056e57600080fd5b506102da61057d366004611ebb565b610ead565b34801561058e57600080fd5b5061028061059d366004612015565b610eec565b3480156105ae57600080fd5b5061031161102f565b3480156105c357600080fd5b50610311611035565b3480156105d857600080fd5b50610311611040565b3480156105ed57600080fd5b506102556105fc366004611e4e565b611046565b34801561060d57600080fd5b506102da611074565b34801561062257600080fd5b50610255611116565b34801561063757600080fd5b506102da610646366004611e34565b61111f565b34801561065757600080fd5b506102ad6111e0565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6060600680546106929061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546106be9061291b565b801561070b5780601f106106e05761010080835404028352916020019161070b565b820191906000526020600020905b8154815290600101906020018083116106ee57829003601f168201915b5050505050905090565b60006107208261121e565b6107455760405162461bcd60e51b815260040161073c9061259e565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061076c82610ad0565b9050806001600160a01b0316836001600160a01b031614156107a05760405162461bcd60e51b815260040161073c906126b7565b806001600160a01b03166107b261122b565b6001600160a01b031614806107ce57506107ce816105fc61122b565b6107ea5760405162461bcd60e51b815260040161073c9061243f565b6107f4838361122f565b505050565b61080161122b565b600d546001600160a01b0390811691161461082e5760405162461bcd60e51b815260040161073c906127ea565b805161084190600b906020840190611d14565b5050565b6000610851600261129d565b905090565b60125481565b60135481565b61087361086d61122b565b826112a8565b61088f5760405162461bcd60e51b815260040161073c9061272d565b6107f483838361132d565b6001600160a01b03821660009081526001602052604081206108bc908361143b565b90505b92915050565b6108cd61122b565b600d546001600160a01b039081169116146108fa5760405162461bcd60e51b815260040161073c906127ea565b6011805460ff19811660ff90911615179055565b600b805461091b9061291b565b80601f01602080910402602001604051908101604052809291908181526020018280546109479061291b565b80156109945780601f1061096957610100808354040283529160200191610994565b820191906000526020600020905b81548152906001019060200180831161097757829003601f168201915b505050505081565b6109a461122b565b6001600160a01b03166109b5610c95565b6001600160a01b0316146109db5760405162461bcd60e51b815260040161073c906125ea565b47336108fc6109f660646109f085604b611447565b9061148c565b6040518115909202916000818181858888f15050600c546001600160a01b031692506108fc9150610a399050610a3260646109f086604b611447565b84906114b7565b6040518115909202916000818181858888f1505050505050565b6107f483838360405180602001604052806000815250610ead565b601481565b600080610a816002846114e3565b509392505050565b60105481565b610a9761122b565b600d546001600160a01b03908116911614610ac45760405162461bcd60e51b815260040161073c906127ea565b610acd816114ff565b50565b60006108bf82604051806060016040528060298152602001612a106029913960029190611512565b6060600980546106929061291b565b610b0f61122b565b6001600160a01b0316610b20610c95565b6001600160a01b031614610b465760405162461bcd60e51b815260040161073c906125ea565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610b905760405162461bcd60e51b815260040161073c9061249c565b6001600160a01b03821660009081526001602052604090206108bf9061129d565b610bb961122b565b6001600160a01b0316610bca610c95565b6001600160a01b031614610bf05760405162461bcd60e51b815260040161073c906125ea565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b610c4261122b565b600d546001600160a01b03908116911614610c6f5760405162461bcd60e51b815260040161073c906127ea565b600f5415610c8f5760405162461bcd60e51b815260040161073c90612408565b43600e55565b600a546001600160a01b031690565b6060600780546106929061291b565b60115460ff16610cd55760405162461bcd60e51b815260040161073c906127b5565b6014811115610cf65760405162461bcd60e51b815260040161073c906123c7565b601054610d0b82610d05610845565b906111ef565b1115610d295760405162461bcd60e51b815260040161073c90612821565b601454421115610d635734610d45666379da05b6000083611447565b1115610d635760405162461bcd60e51b815260040161073c906122d6565b60005b81811015610da8576000610d78610845565b9050601054610d85610845565b1015610d9557610d953382611529565b5080610da081612956565b915050610d66565b50600e54158015610dcd5750601054610dbf610845565b1480610dcd57506012544210155b15610acd5743600e5550565b610de161122b565b6001600160a01b0316826001600160a01b03161415610e125760405162461bcd60e51b815260040161073c9061229f565b8060056000610e1f61122b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610e6361122b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e9b91906120f5565b60405180910390a35050565b60145481565b610ebe610eb861122b565b836112a8565b610eda5760405162461bcd60e51b815260040161073c9061272d565b610ee684848484611543565b50505050565b6060610ef78261121e565b610f135760405162461bcd60e51b815260040161073c90612668565b60008281526008602052604081208054610f2c9061291b565b80601f0160208091040260200160405190810160405280929190818152602001828054610f589061291b565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505090506000610fb6610af8565b9050805160001415610fca5750905061067e565b815115610ffc578082604051602001610fe4929190612075565b6040516020818303038152906040529250505061067e565b8061100685611576565b604051602001611017929190612075565b60405160208183030381529060405292505050919050565b600f5481565b666379da05b6000081565b600e5481565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600f54156110945760405162461bcd60e51b815260040161073c90612408565b600e546110b35760405162461bcd60e51b815260040161073c906126f8565b601054600e546110c4919040612971565b600f55600e5460ff906110d89043906114b7565b11156110fb576010546110ec6001436128c1565b6110f7919040612971565b600f555b600f5461111457600f546111109060016111ef565b600f555b565b60115460ff1681565b61112761122b565b6001600160a01b0316611138610c95565b6001600160a01b03161461115e5760405162461bcd60e51b815260040161073c906125ea565b6001600160a01b0381166111845760405162461bcd60e51b815260040161073c906121a7565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031681565b6000806111fc8385612876565b9050838110156108bc5760405162461bcd60e51b815260040161073c90612224565b60006108bf6002836116aa565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061126482610ad0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006108bf826116b6565b60006112b38261121e565b6112cf5760405162461bcd60e51b815260040161073c90612344565b60006112da83610ad0565b9050806001600160a01b0316846001600160a01b031614806113155750836001600160a01b031661130a84610715565b6001600160a01b0316145b8061132557506113258185611046565b949350505050565b826001600160a01b031661134082610ad0565b6001600160a01b0316146113665760405162461bcd60e51b815260040161073c9061261f565b6001600160a01b03821661138c5760405162461bcd60e51b815260040161073c9061225b565b6113978383836107f4565b6113a260008261122f565b6001600160a01b03831660009081526001602052604090206113c490826116ba565b506001600160a01b03821660009081526001602052604090206113e790826116c6565b506113f4600282846116d2565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60006108bc83836116e8565b600082611456575060006108bf565b600061146283856128a2565b90508261146f858361288e565b146108bc5760405162461bcd60e51b815260040161073c9061255d565b60008082116114ad5760405162461bcd60e51b815260040161073c90612390565b6108bc828461288e565b6000828211156114d95760405162461bcd60e51b815260040161073c9061230d565b6108bc82846128c1565b60008080806114f28686611741565b9097909650945050505050565b8051610841906009906020840190611d14565b600061151f8484846117b1565b90505b9392505050565b610841828260405180602001604052806000815250611828565b61154e84848461132d565b61155a8484848461185b565b610ee65760405162461bcd60e51b815260040161073c90612155565b60608161159b57506040805180820190915260018152600360fc1b602082015261067e565b8160005b81156115c557806115af81612956565b91506115be9050600a8361288e565b915061159f565b60008167ffffffffffffffff8111156115ee57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611618576020820181803683370190505b50905060006116286001846128c1565b90508593505b83156116a15761163f600a85612971565b61164a906030612876565b60f81b828261165881612904565b93508151811061167857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061169a600a8561288e565b935061162e565b50949350505050565b60006108bc838361193a565b5490565b60006108bc8383611952565b60006108bc8383611a6f565b600061151f84846001600160a01b038516611ab9565b8154600090821061170b5760405162461bcd60e51b815260040161073c90612113565b82600001828154811061172e57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b8154600090819083106117665760405162461bcd60e51b815260040161073c906124e6565b600084600001848154811061178b57634e487b7160e01b600052603260045260246000fd5b906000526020600020906002020190508060000154816001015492509250509250929050565b600082815260018401602052604081205482816117e15760405162461bcd60e51b815260040161073c9190612100565b50846117ee6001836128c1565b8154811061180c57634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101549150509392505050565b6118328383611b68565b61183f600084848461185b565b6107f45760405162461bcd60e51b815260040161073c90612155565b600061186f846001600160a01b0316611c2c565b61187b57506001611325565b6000611903630a85bd0160e11b61189061122b565b8887876040516024016118a694939291906120b8565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b0383818316178352505050506040518060600160405280603281526020016129de603291396001600160a01b0388169190611c32565b905060008180602001905181019061191b9190611fb3565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60009081526001919091016020526040902054151590565b60008181526001830160205260408120548015611a655760006119766001836128c1565b855490915060009061198a906001906128c1565b905060008660000182815481106119b157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106119e257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001556119f9836001612876565b60008281526001890160205260409020558654879080611a2957634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558660010160008781526020019081526020016000206000905560019450505050506108bf565b60009150506108bf565b6000611a7b838361193a565b611ab1575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556108bf565b5060006108bf565b600082815260018401602052604081205480611b1e575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611522565b8285611b2b6001846128c1565b81548110611b4957634e487b7160e01b600052603260045260246000fd5b9060005260206000209060020201600101819055506000915050611522565b6001600160a01b038216611b8e5760405162461bcd60e51b815260040161073c90612528565b611b978161121e565b15611bb45760405162461bcd60e51b815260040161073c906121ed565b611bc0600083836107f4565b6001600160a01b0382166000908152600160205260409020611be290826116c6565b50611bef600282846116d2565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b606061151f848460008585611c4685611c2c565b611c625760405162461bcd60e51b815260040161073c9061277e565b600080866001600160a01b03168587604051611c7e9190612059565b60006040518083038185875af1925050503d8060008114611cbb576040519150601f19603f3d011682016040523d82523d6000602084013e611cc0565b606091505b5091509150611cd0828286611cdb565b979650505050505050565b60608315611cea575081611522565b825115611cfa5782518084602001fd5b8160405162461bcd60e51b815260040161073c9190612100565b828054611d209061291b565b90600052602060002090601f016020900481019282611d425760008555611d88565b82601f10611d5b57805160ff1916838001178555611d88565b82800160010185558215611d88579182015b82811115611d88578251825591602001919060010190611d6d565b50611d94929150611d98565b5090565b5b80821115611d945760008155600101611d99565b600067ffffffffffffffff80841115611dc857611dc86129b1565b604051601f8501601f191681016020018281118282101715611dec57611dec6129b1565b604052848152915081838501861015611e0457600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461067e57600080fd5b600060208284031215611e45578081fd5b6108bc82611e1d565b60008060408385031215611e60578081fd5b611e6983611e1d565b9150611e7760208401611e1d565b90509250929050565b600080600060608486031215611e94578081fd5b611e9d84611e1d565b9250611eab60208501611e1d565b9150604084013590509250925092565b60008060008060808587031215611ed0578081fd5b611ed985611e1d565b9350611ee760208601611e1d565b925060408501359150606085013567ffffffffffffffff811115611f09578182fd5b8501601f81018713611f19578182fd5b611f2887823560208401611dad565b91505092959194509250565b60008060408385031215611f46578182fd5b611f4f83611e1d565b915060208301358015158114611f63578182fd5b809150509250929050565b60008060408385031215611f80578182fd5b611f8983611e1d565b946020939093013593505050565b600060208284031215611fa8578081fd5b81356108bc816129c7565b600060208284031215611fc4578081fd5b81516108bc816129c7565b600060208284031215611fe0578081fd5b813567ffffffffffffffff811115611ff6578182fd5b8201601f81018413612006578182fd5b61132584823560208401611dad565b600060208284031215612026578081fd5b5035919050565b600081518084526120458160208601602086016128d8565b601f01601f19169290920160200192915050565b6000825161206b8184602087016128d8565b9190910192915050565b600083516120878184602088016128d8565b83519083019061209b8183602088016128d8565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120eb9083018461202d565b9695505050505050565b901515815260200190565b6000602082526108bc602083018461202d565b60208082526022908201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b6020808252601e908201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601a908201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604082015260600190565b60208082526021908201527f43616e206f6e6c79206d696e7420323020746f6b656e7320617420612074696d6040820152606560f81b606082015260800190565b6020808252601d908201527f5374617274696e6720696e64657820697320616c726561647920736574000000604082015260600190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526022908201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252818101527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252818101527f53616c65206d7573742062652061637469766520746f206d696e742044415747604082015260600190565b6020808252601c908201527f4465763a2063616c6c6572206973206e6f74207468652061646d696e00000000604082015260600190565b6020808252602c908201527f507572636861736520776f756c6420657863656564206d617820737570706c7960408201526b206f6620504f50444157475360a01b606082015260800190565b90815260200190565b6000821982111561288957612889612985565b500190565b60008261289d5761289d61299b565b500490565b60008160001904831182151516156128bc576128bc612985565b500290565b6000828210156128d3576128d3612985565b500390565b60005b838110156128f35781810151838201526020016128db565b83811115610ee65750506000910152565b60008161291357612913612985565b506000190190565b60028104600182168061292f57607f821691505b6020821081141561295057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561296a5761296a612985565b5060010190565b6000826129805761298061299b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610acd57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea26469706673582212206b07f82fa6d4c2015c19e30a4cfcba145133da094e0cab6421c07373707731cc64736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000007504f50444157470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055044415747000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): POPDAWG
Arg [1] : symbol (string): PDAWG

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 504f504441574700000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 5044415747000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

66764:4138:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10097:150;;;;;;;;;;-1:-1:-1;10097:150:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;54115:221::-;;;;;;;;;;-1:-1:-1;54115:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53645:404::-;;;;;;;;;;-1:-1:-1;53645:404:0;;;;;:::i;:::-;;:::i;:::-;;68288:134;;;;;;;;;;-1:-1:-1;68288:134:0;;;;;:::i;:::-;;:::i;53123:211::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;67230:31::-;;;;;;;;;;;;;:::i;67325:25::-;;;;;;;;;;;;;:::i;55005:305::-;;;;;;;;;;-1:-1:-1;55005:305:0;;;;;:::i;:::-;;:::i;52885:162::-;;;;;;;;;;-1:-1:-1;52885:162:0;;;;;:::i;:::-;;:::i;68604:89::-;;;;;;;;;;;;;:::i;66842:37::-;;;;;;;;;;;;;:::i;67905:219::-;;;;;;;;;;;;;:::i;55381:151::-;;;;;;;;;;-1:-1:-1;55381:151:0;;;;;:::i;:::-;;:::i;67113:41::-;;;;;;;;;;;;;:::i;53411:172::-;;;;;;;;;;-1:-1:-1;53411:172:0;;;;;:::i;:::-;;:::i;67161:23::-;;;;;;;;;;;;;:::i;68430:99::-;;;;;;;;;;-1:-1:-1;68430:99:0;;;;;:::i;:::-;;:::i;51085:177::-;;;;;;;;;;-1:-1:-1;51085:177:0;;;;;:::i;:::-;;:::i;52704:97::-;;;;;;;;;;;;;:::i;68132:84::-;;;;;;;;;;-1:-1:-1;68132:84:0;;;;;:::i;:::-;;:::i;50802:221::-;;;;;;;;;;-1:-1:-1;50802:221:0;;;;;:::i;:::-;;:::i;66032:148::-;;;;;;;;;;;;;:::i;70707:192::-;;;;;;;;;;;;;:::i;65381:87::-;;;;;;;;;;;;;:::i;51498:104::-;;;;;;;;;;;;;:::i;68740:1078::-;;;;;;:::i;:::-;;:::i;54408:295::-;;;;;;;;;;-1:-1:-1;54408:295:0;;;;;:::i;:::-;;:::i;67357:22::-;;;;;;;;;;;;;:::i;55603:285::-;;;;;;;;;;-1:-1:-1;55603:285:0;;;;;:::i;:::-;;:::i;51673:792::-;;;;;;;;;;-1:-1:-1;51673:792:0;;;;;:::i;:::-;;:::i;66987:28::-;;;;;;;;;;;;;:::i;67022:53::-;;;;;;;;;;;;;:::i;66947:33::-;;;;;;;;;;;;;:::i;54774:164::-;;;;;;;;;;-1:-1:-1;54774:164:0;;;;;:::i;:::-;;:::i;69894:676::-;;;;;;;;;;;;;:::i;67191:32::-;;;;;;;;;;;;;:::i;66335:244::-;;;;;;;;;;-1:-1:-1;66335:244:0;;;;;:::i;:::-;;:::i;66920:20::-;;;;;;;;;;;;;:::i;10097:150::-;-1:-1:-1;;;;;;10206:33:0;;10182:4;10206:33;;;;;;;;;;;;;10097:150;;;;:::o;51329:100::-;51383:13;51416:5;51409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51329:100;:::o;54115:221::-;54191:7;54219:16;54227:7;54219;:16::i;:::-;54211:73;;;;-1:-1:-1;;;54211:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;54304:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;54304:24:0;;54115:221::o;53645:404::-;53726:13;53742:23;53757:7;53742:14;:23::i;:::-;53726:39;;53790:5;-1:-1:-1;;;;;53784:11:0;:2;-1:-1:-1;;;;;53784:11:0;;;53776:57;;;;-1:-1:-1;;;53776:57:0;;;;;;;:::i;:::-;53870:5;-1:-1:-1;;;;;53854:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;53854:21:0;;:69;;;;53879:44;53903:5;53910:12;:10;:12::i;53879:44::-;53846:161;;;;-1:-1:-1;;;53846:161:0;;;;;;;:::i;:::-;54020:21;54029:2;54033:7;54020:8;:21::i;:::-;53645:404;;;:::o;68288:134::-;67832:12;:10;:12::i;:::-;67823:5;;-1:-1:-1;;;;;67823:5:0;;;:21;;;67815:62;;;;-1:-1:-1;;;67815:62:0;;;;;;;:::i;:::-;68379:35;;::::1;::::0;:18:::1;::::0;:35:::1;::::0;::::1;::::0;::::1;:::i;:::-;;68288:134:::0;:::o;53123:211::-;53184:7;53305:21;:12;:19;:21::i;:::-;53298:28;;53123:211;:::o;67230:31::-;;;;:::o;67325:25::-;;;;:::o;55005:305::-;55166:41;55185:12;:10;:12::i;:::-;55199:7;55166:18;:41::i;:::-;55158:103;;;;-1:-1:-1;;;55158:103:0;;;;;;;:::i;:::-;55274:28;55284:4;55290:2;55294:7;55274:9;:28::i;52885:162::-;-1:-1:-1;;;;;53009:20:0;;52982:7;53009:20;;;:13;:20;;;;;:30;;53033:5;53009:23;:30::i;:::-;53002:37;;52885:162;;;;;:::o;68604:89::-;67832:12;:10;:12::i;:::-;67823:5;;-1:-1:-1;;;;;67823:5:0;;;:21;;;67815:62;;;;-1:-1:-1;;;67815:62:0;;;;;;;:::i;:::-;68673:12:::1;::::0;;-1:-1:-1;;68657:28:0;::::1;68673:12;::::0;;::::1;68672:13;68657:28;::::0;;68604:89::o;66842:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67905:219::-;65612:12;:10;:12::i;:::-;-1:-1:-1;;;;;65601:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65601:23:0;;65593:68;;;;-1:-1:-1;;;65593:68:0;;;;;;;:::i;:::-;67968:21:::1;68008:10;68000:50;68025:24;68045:3;68025:15;67968:21:::0;68037:2:::1;68025:11;:15::i;:::-;:19:::0;::::1;:24::i;:::-;68000:50;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;-1:-1:-1::0;;68061:11:0::1;::::0;-1:-1:-1;;;;;68061:11:0::1;::::0;-1:-1:-1;68061:55:0::1;::::0;-1:-1:-1;68078:37:0::1;::::0;-1:-1:-1;68090:24:0::1;68110:3;68090:15;:7:::0;68102:2:::1;68090:11;:15::i;:24::-;68078:7:::0;;:11:::1;:37::i;:::-;68061:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;-1:-1:-1::0;;;;;;67905:219:0:o;55381:151::-;55485:39;55502:4;55508:2;55512:7;55485:39;;;;;;;;;;;;:16;:39::i;67113:41::-;67152:2;67113:41;:::o;53411:172::-;53486:7;;53528:22;:12;53544:5;53528:15;:22::i;:::-;-1:-1:-1;53506:44:0;53411:172;-1:-1:-1;;;53411:172:0:o;67161:23::-;;;;:::o;68430:99::-;67832:12;:10;:12::i;:::-;67823:5;;-1:-1:-1;;;;;67823:5:0;;;:21;;;67815:62;;;;-1:-1:-1;;;67815:62:0;;;;;;;:::i;:::-;68501:20:::1;68513:7;68501:11;:20::i;:::-;68430:99:::0;:::o;51085:177::-;51157:7;51184:70;51201:7;51184:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;52704:97::-;52752:13;52785:8;52778:15;;;;;:::i;68132:84::-;65612:12;:10;:12::i;:::-;-1:-1:-1;;;;;65601:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65601:23:0;;65593:68;;;;-1:-1:-1;;;65593:68:0;;;;;;;:::i;:::-;68194:5:::1;:14:::0;;-1:-1:-1;;;;;;68194:14:0::1;-1:-1:-1::0;;;;;68194:14:0;;;::::1;::::0;;;::::1;::::0;;68132:84::o;50802:221::-;50874:7;-1:-1:-1;;;;;50902:19:0;;50894:74;;;;-1:-1:-1;;;50894:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50986:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;66032:148::-;65612:12;:10;:12::i;:::-;-1:-1:-1;;;;;65601:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65601:23:0;;65593:68;;;;-1:-1:-1;;;65593:68:0;;;;;;;:::i;:::-;66123:6:::1;::::0;66102:40:::1;::::0;66139:1:::1;::::0;-1:-1:-1;;;;;66123:6:0::1;::::0;66102:40:::1;::::0;66139:1;;66102:40:::1;66153:6;:19:::0;;-1:-1:-1;;;;;;66153:19:0::1;::::0;;66032:148::o;70707:192::-;67832:12;:10;:12::i;:::-;67823:5;;-1:-1:-1;;;;;67823:5:0;;;:21;;;67815:62;;;;-1:-1:-1;;;67815:62:0;;;;;;;:::i;:::-;70785:13:::1;::::0;:18;70777:60:::1;;;;-1:-1:-1::0;;;70777:60:0::1;;;;;;;:::i;:::-;70879:12;70858:18;:33:::0;70707:192::o;65381:87::-;65454:6;;-1:-1:-1;;;;;65454:6:0;65381:87;:::o;51498:104::-;51554:13;51587:7;51580:14;;;;;:::i;68740:1078::-;68809:12;;;;68801:57;;;;-1:-1:-1;;;68801:57:0;;;;;;;:::i;:::-;67152:2;68877:14;:33;;68869:79;;;;-1:-1:-1;;;68869:79:0;;;;;;;:::i;:::-;69004:8;;68967:33;68985:14;68967:13;:11;:13::i;:::-;:17;;:33::i;:::-;:45;;68959:102;;;;-1:-1:-1;;;68959:102:0;;;;;;;:::i;:::-;69093:7;;69075:15;:25;69072:142;;;69157:9;69124:29;67058:17;69138:14;69124:13;:29::i;:::-;:42;;69116:86;;;;-1:-1:-1;;;69116:86:0;;;;;;;:::i;:::-;69238:6;69234:209;69254:14;69250:1;:18;69234:209;;;69290:14;69307:13;:11;:13::i;:::-;69290:30;;69355:8;;69339:13;:11;:13::i;:::-;:24;69335:97;;;69384:32;69394:10;69406:9;69384;:32::i;:::-;-1:-1:-1;69270:3:0;;;;:::i;:::-;;;;69234:209;;;-1:-1:-1;69655:18:0;;:23;:93;;;;;69700:8;;69683:13;:11;:13::i;:::-;:25;:64;;;;69731:16;;69712:15;:35;;69683:64;69651:159;;;69786:12;69765:18;:33;68740:1078;:::o;54408:295::-;54523:12;:10;:12::i;:::-;-1:-1:-1;;;;;54511:24:0;:8;-1:-1:-1;;;;;54511:24:0;;;54503:62;;;;-1:-1:-1;;;54503:62:0;;;;;;;:::i;:::-;54623:8;54578:18;:32;54597:12;:10;:12::i;:::-;-1:-1:-1;;;;;54578:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;54578:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;54578:53:0;;;;;;;;;;;54662:12;:10;:12::i;:::-;-1:-1:-1;;;;;54647:48:0;;54686:8;54647:48;;;;;;:::i;:::-;;;;;;;;54408:295;;:::o;67357:22::-;;;;:::o;55603:285::-;55735:41;55754:12;:10;:12::i;:::-;55768:7;55735:18;:41::i;:::-;55727:103;;;;-1:-1:-1;;;55727:103:0;;;;;;;:::i;:::-;55841:39;55855:4;55861:2;55865:7;55874:5;55841:13;:39::i;:::-;55603:285;;;;:::o;51673:792::-;51746:13;51780:16;51788:7;51780;:16::i;:::-;51772:76;;;;-1:-1:-1;;;51772:76:0;;;;;;;:::i;:::-;51861:23;51887:19;;;:10;:19;;;;;51861:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51917:18;51938:9;:7;:9::i;:::-;51917:30;;52029:4;52023:18;52045:1;52023:23;52019:72;;;-1:-1:-1;52070:9:0;-1:-1:-1;52063:16:0;;52019:72;52195:23;;:27;52191:108;;52270:4;52276:9;52253:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52239:48;;;;;;52191:108;52431:4;52437:18;:7;:16;:18::i;:::-;52414:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52400:57;;;;51673:792;;;:::o;66987:28::-;;;;:::o;67022:53::-;67058:17;67022:53;:::o;66947:33::-;;;;:::o;54774:164::-;-1:-1:-1;;;;;54895:25:0;;;54871:4;54895:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54774:164::o;69894:676::-;69948:13;;:18;69940:60;;;;-1:-1:-1;;;69940:60:0;;;;;;;:::i;:::-;70019:18;;70011:68;;;;-1:-1:-1;;;70011:68:0;;;;;;;:::i;:::-;70154:8;;70131:18;;70116:46;;70154:8;70121:29;70116:46;:::i;:::-;70100:13;:62;70315:18;;70337:3;;70298:36;;:12;;:16;:36::i;:::-;:42;70294:135;;;70409:8;;70388:16;70403:1;70388:12;:16;:::i;:::-;70373:44;;;70378:27;70373:44;:::i;:::-;70357:13;:60;70294:135;70480:13;;70476:87;;70531:13;;:20;;70549:1;70531:17;:20::i;:::-;70515:13;:36;70476:87;69894:676::o;67191:32::-;;;;;;:::o;66335:244::-;65612:12;:10;:12::i;:::-;-1:-1:-1;;;;;65601:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;65601:23:0;;65593:68;;;;-1:-1:-1;;;65593:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66424:22:0;::::1;66416:73;;;;-1:-1:-1::0;;;66416:73:0::1;;;;;;;:::i;:::-;66526:6;::::0;66505:38:::1;::::0;-1:-1:-1;;;;;66505:38:0;;::::1;::::0;66526:6:::1;::::0;66505:38:::1;::::0;66526:6:::1;::::0;66505:38:::1;66554:6;:17:::0;;-1:-1:-1;;;;;;66554:17:0::1;-1:-1:-1::0;;;;;66554:17:0;;;::::1;::::0;;;::::1;::::0;;66335:244::o;66920:20::-;;;-1:-1:-1;;;;;66920:20:0;;:::o;13651:179::-;13709:7;;13741:5;13745:1;13741;:5;:::i;:::-;13729:17;;13770:1;13765;:6;;13757:46;;;;-1:-1:-1;;;13757:46:0;;;;;;;:::i;57355:127::-;57420:4;57444:30;:12;57466:7;57444:21;:30::i;568:115::-;664:10;568:115;:::o;63373:192::-;63448:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63448:29:0;-1:-1:-1;;;;;63448:29:0;;;;;;;;:24;;63502:23;63448:24;63502:14;:23::i;:::-;-1:-1:-1;;;;;63493:46:0;;;;;;;;;;;63373:192;;:::o;44108:123::-;44177:7;44204:19;44212:3;44204:7;:19::i;57649:355::-;57742:4;57767:16;57775:7;57767;:16::i;:::-;57759:73;;;;-1:-1:-1;;;57759:73:0;;;;;;;:::i;:::-;57843:13;57859:23;57874:7;57859:14;:23::i;:::-;57843:39;;57912:5;-1:-1:-1;;;;;57901:16:0;:7;-1:-1:-1;;;;;57901:16:0;;:51;;;;57945:7;-1:-1:-1;;;;;57921:31:0;:20;57933:7;57921:11;:20::i;:::-;-1:-1:-1;;;;;57921:31:0;;57901:51;:94;;;;57956:39;57980:5;57987:7;57956:23;:39::i;:::-;57893:103;57649:355;-1:-1:-1;;;;57649:355:0:o;60785:599::-;60910:4;-1:-1:-1;;;;;60883:31:0;:23;60898:7;60883:14;:23::i;:::-;-1:-1:-1;;;;;60883:31:0;;60875:85;;;;-1:-1:-1;;;60875:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;60997:16:0;;60989:65;;;;-1:-1:-1;;;60989:65:0;;;;;;;:::i;:::-;61067:39;61088:4;61094:2;61098:7;61067:20;:39::i;:::-;61171:29;61188:1;61192:7;61171:8;:29::i;:::-;-1:-1:-1;;;;;61213:19:0;;;;;;:13;:19;;;;;:35;;61240:7;61213:26;:35::i;:::-;-1:-1:-1;;;;;;61259:17:0;;;;;;:13;:17;;;;;:30;;61281:7;61259:21;:30::i;:::-;-1:-1:-1;61302:29:0;:12;61319:7;61328:2;61302:16;:29::i;:::-;;61368:7;61364:2;-1:-1:-1;;;;;61349:27:0;61358:4;-1:-1:-1;;;;;61349:27:0;;;;;;;;;;;60785:599;;;:::o;35907:137::-;35978:7;36013:22;36017:3;36029:5;36013:3;:22::i;14530:220::-;14588:7;14612:6;14608:20;;-1:-1:-1;14627:1:0;14620:8;;14608:20;14639:9;14651:5;14655:1;14651;:5;:::i;:::-;14639:17;-1:-1:-1;14684:1:0;14675:5;14679:1;14639:17;14675:5;:::i;:::-;:10;14667:56;;;;-1:-1:-1;;;14667:56:0;;;;;;;:::i;15228:153::-;15286:7;15318:1;15314;:5;15306:44;;;;-1:-1:-1;;;15306:44:0;;;;;;;:::i;:::-;15368:5;15372:1;15368;:5;:::i;14113:158::-;14171:7;14204:1;14199;:6;;14191:49;;;;-1:-1:-1;;;14191:49:0;;;;;;;:::i;:::-;14258:5;14262:1;14258;:5;:::i;44570:236::-;44650:7;;;;44710:22;44714:3;44726:5;44710:3;:22::i;:::-;44679:53;;;;-1:-1:-1;44570:236:0;-1:-1:-1;;;;;44570:236:0:o;61985:100::-;62058:19;;;;:8;;:19;;;;;:::i;45856:213::-;45963:7;46014:44;46019:3;46039;46045:12;46014:4;:44::i;:::-;46006:53;-1:-1:-1;45856:213:0;;;;;;:::o;58347:110::-;58423:26;58433:2;58437:7;58423:26;;;;;;;;;;;;:9;:26::i;56770:272::-;56884:28;56894:4;56900:2;56904:7;56884:9;:28::i;:::-;56931:48;56954:4;56960:2;56964:7;56973:5;56931:22;:48::i;:::-;56923:111;;;;-1:-1:-1;;;56923:111:0;;;;;;;:::i;46312:746::-;46368:13;46589:10;46585:53;;-1:-1:-1;46616:10:0;;;;;;;;;;;;-1:-1:-1;;;46616:10:0;;;;;;46585:53;46663:5;46648:12;46704:78;46711:9;;46704:78;;46737:8;;;;:::i;:::-;;-1:-1:-1;46760:10:0;;-1:-1:-1;46768:2:0;46760:10;;:::i;:::-;;;46704:78;;;46792:19;46824:6;46814:17;;;;;;-1:-1:-1;;;46814:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46814:17:0;-1:-1:-1;46792:39:0;-1:-1:-1;46842:13:0;46858:10;46867:1;46858:6;:10;:::i;:::-;46842:26;;46886:5;46879:12;;46902:117;46909:9;;46902:117;;46971:9;46978:2;46971:4;:9;:::i;:::-;46966:14;;:2;:14;:::i;:::-;46953:29;;46935:6;46942:7;;;;:::i;:::-;;;46935:15;;;;;;-1:-1:-1;;;46935:15:0;;;;;;;;;;;;:47;-1:-1:-1;;;;;46935:47:0;;;;;;;;-1:-1:-1;46997:10:0;47005:2;46997:10;;:::i;:::-;;;46902:117;;;-1:-1:-1;47043:6:0;46312:746;-1:-1:-1;;;;46312:746:0:o;43869:151::-;43953:4;43977:35;43987:3;44007;43977:9;:35::i;40687:110::-;40770:19;;40687:110::o;34994:137::-;35064:4;35088:35;35096:3;35116:5;35088:7;:35::i;34687:131::-;34754:4;34778:32;34783:3;34803:5;34778:4;:32::i;43292:185::-;43381:4;43405:64;43410:3;43430;-1:-1:-1;;;;;43444:23:0;;43405:4;:64::i;30945:204::-;31040:18;;31012:7;;31040:26;-1:-1:-1;31032:73:0;;;;-1:-1:-1;;;31032:73:0;;;;;;;:::i;:::-;31123:3;:11;;31135:5;31123:18;;;;;;-1:-1:-1;;;31123:18:0;;;;;;;;;;;;;;;;;31116:25;;30945:204;;;;:::o;41152:279::-;41256:19;;41219:7;;;;41256:27;-1:-1:-1;41248:74:0;;;;-1:-1:-1;;;41248:74:0;;;;;;;:::i;:::-;41335:22;41360:3;:12;;41373:5;41360:19;;;;;;-1:-1:-1;;;41360:19:0;;;;;;;;;;;;;;;;;;;41335:44;;41398:5;:10;;;41410:5;:12;;;41390:33;;;;;41152:279;;;;;:::o;42649:319::-;42743:7;42782:17;;;:12;;;:17;;;;;;42833:12;42818:13;42810:36;;;;-1:-1:-1;;;42810:36:0;;;;;;;;:::i;:::-;-1:-1:-1;42900:3:0;42913:12;42924:1;42913:8;:12;:::i;:::-;42900:26;;;;;;-1:-1:-1;;;42900:26:0;;;;;;;;;;;;;;;;;;;:33;;;42893:40;;;42649:319;;;;;:::o;58684:250::-;58780:18;58786:2;58790:7;58780:5;:18::i;:::-;58817:54;58848:1;58852:2;58856:7;58865:5;58817:22;:54::i;:::-;58809:117;;;;-1:-1:-1;;;58809:117:0;;;;;;;:::i;62650:604::-;62771:4;62798:15;:2;-1:-1:-1;;;;;62798:13:0;;:15::i;:::-;62793:60;;-1:-1:-1;62837:4:0;62830:11;;62793:60;62863:23;62889:252;-1:-1:-1;;;63002:12:0;:10;:12::i;:::-;63029:4;63048:7;63070:5;62905:181;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;62905:181:0;;;;;;;-1:-1:-1;;;;;62905:181:0;;;;;;;;;;;62889:252;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;62889:15:0;;;:252;:15;:252::i;:::-;62863:278;;63152:13;63179:10;63168:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63219:26:0;-1:-1:-1;;;63219:26:0;;-1:-1:-1;;;62650:604:0;;;;;;:::o;40467:125::-;40538:4;40562:17;;;:12;;;;;:17;;;;;;:22;;;40467:125::o;28647:1544::-;28713:4;28852:19;;;:12;;;:19;;;;;;28888:15;;28884:1300;;29250:21;29274:14;29287:1;29274:10;:14;:::i;:::-;29323:18;;29250:38;;-1:-1:-1;29303:17:0;;29323:22;;29344:1;;29323:22;:::i;:::-;29303:42;;29590:17;29610:3;:11;;29622:9;29610:22;;;;;;-1:-1:-1;;;29610:22:0;;;;;;;;;;;;;;;;;29590:42;;29756:9;29727:3;:11;;29739:13;29727:26;;;;;;-1:-1:-1;;;29727:26:0;;;;;;;;;;;;;;;;;;:38;29859:17;:13;29875:1;29859:17;:::i;:::-;29833:23;;;;:12;;;:23;;;;;:43;29985:17;;29833:3;;29985:17;;;-1:-1:-1;;;29985:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;30080:3;:12;;:19;30093:5;30080:19;;;;;;;;;;;30073:26;;;30123:4;30116:11;;;;;;;;28884:1300;30167:5;30160:12;;;;;28057:414;28120:4;28142:21;28152:3;28157:5;28142:9;:21::i;:::-;28137:327;;-1:-1:-1;28180:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;28363:18;;28341:19;;;:12;;;:19;;;;;;:40;;;;28396:11;;28137:327;-1:-1:-1;28447:5:0;28440:12;;37967:692;38043:4;38178:17;;;:12;;;:17;;;;;;38212:13;38208:444;;-1:-1:-1;;38297:38:0;;;;;;;;;;;;;;;;;;38279:57;;;;;;;;:12;:57;;;;;;;;;;;;;;;;;;;;;;;;38494:19;;38474:17;;;:12;;;:17;;;;;;;:39;38528:11;;38208:444;38608:5;38572:3;38585:12;38596:1;38585:8;:12;:::i;:::-;38572:26;;;;;;-1:-1:-1;;;38572:26:0;;;;;;;;;;;;;;;;;;;:33;;:41;;;;38635:5;38628:12;;;;;59270:404;-1:-1:-1;;;;;59350:16:0;;59342:61;;;;-1:-1:-1;;;59342:61:0;;;;;;;:::i;:::-;59423:16;59431:7;59423;:16::i;:::-;59422:17;59414:58;;;;-1:-1:-1;;;59414:58:0;;;;;;;:::i;:::-;59485:45;59514:1;59518:2;59522:7;59485:20;:45::i;:::-;-1:-1:-1;;;;;59543:17:0;;;;;;:13;:17;;;;;:30;;59565:7;59543:21;:30::i;:::-;-1:-1:-1;59586:29:0;:12;59603:7;59612:2;59586:16;:29::i;:::-;-1:-1:-1;59633:33:0;;59658:7;;-1:-1:-1;;;;;59633:33:0;;;59650:1;;59633:33;;59650:1;;59633:33;59270:404;;:::o;19084:422::-;19451:20;19490:8;;;19084:422::o;22002:195::-;22105:12;22137:52;22159:6;22167:4;22173:1;22176:12;22105;23306:18;23317:6;23306:10;:18::i;:::-;23298:60;;;;-1:-1:-1;;;23298:60:0;;;;;;;:::i;:::-;23432:12;23446:23;23473:6;-1:-1:-1;;;;;23473:11:0;23493:5;23501:4;23473:33;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23431:75;;;;23524:52;23542:7;23551:10;23563:12;23524:17;:52::i;:::-;23517:59;23054:530;-1:-1:-1;;;;;;;23054:530:0:o;25594:742::-;25709:12;25738:7;25734:595;;;-1:-1:-1;25769:10:0;25762:17;;25734:595;25883:17;;:21;25879:439;;26146:10;26140:17;26207:15;26194:10;26190:2;26186:19;26179:44;26094:148;26289:12;26282:20;;-1:-1:-1;;;26282:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:274::-;;4628:6;4622:13;4644:53;4690:6;4685:3;4678:4;4670:6;4666:17;4644:53;:::i;:::-;4713:16;;;;;4598:137;-1:-1:-1;;4598:137:1:o;4740:470::-;;4957:6;4951:13;4973:53;5019:6;5014:3;5007:4;4999:6;4995:17;4973:53;:::i;:::-;5089:13;;5048:16;;;;5111:57;5089:13;5048:16;5145:4;5133:17;;5111:57;:::i;:::-;5184:20;;4927:283;-1:-1:-1;;;;4927:283:1:o;5215:203::-;-1:-1:-1;;;;;5379:32:1;;;;5361:51;;5349:2;5334:18;;5316:102::o;5423:506::-;-1:-1:-1;;;;;5708:15:1;;;5690:34;;5760:15;;5755:2;5740:18;;5733:43;5807:2;5792:18;;5785:34;;;5855:3;5850:2;5835:18;;5828:31;;;5423:506;;5876:47;;5903:19;;5895:6;5876:47;:::i;:::-;5868:55;5642:287;-1:-1:-1;;;;;;5642:287:1:o;5934:187::-;6099:14;;6092:22;6074:41;;6062:2;6047:18;;6029:92::o;6126:221::-;;6275:2;6264:9;6257:21;6295:46;6337:2;6326:9;6322:18;6314:6;6295:46;:::i;6352:398::-;6554:2;6536:21;;;6593:2;6573:18;;;6566:30;6632:34;6627:2;6612:18;;6605:62;-1:-1:-1;;;6698:2:1;6683:18;;6676:32;6740:3;6725:19;;6526:224::o;6755:414::-;6957:2;6939:21;;;6996:2;6976:18;;;6969:30;7035:34;7030:2;7015:18;;7008:62;-1:-1:-1;;;7101:2:1;7086:18;;7079:48;7159:3;7144:19;;6929:240::o;7174:402::-;7376:2;7358:21;;;7415:2;7395:18;;;7388:30;7454:34;7449:2;7434:18;;7427:62;-1:-1:-1;;;7520:2:1;7505:18;;7498:36;7566:3;7551:19;;7348:228::o;7581:352::-;7783:2;7765:21;;;7822:2;7802:18;;;7795:30;7861;7856:2;7841:18;;7834:58;7924:2;7909:18;;7755:178::o;7938:351::-;8140:2;8122:21;;;8179:2;8159:18;;;8152:30;8218:29;8213:2;8198:18;;8191:57;8280:2;8265:18;;8112:177::o;8294:400::-;8496:2;8478:21;;;8535:2;8515:18;;;8508:30;8574:34;8569:2;8554:18;;8547:62;-1:-1:-1;;;8640:2:1;8625:18;;8618:34;8684:3;8669:19;;8468:226::o;8699:349::-;8901:2;8883:21;;;8940:2;8920:18;;;8913:30;8979:27;8974:2;8959:18;;8952:55;9039:2;9024:18;;8873:175::o;9053:355::-;9255:2;9237:21;;;9294:2;9274:18;;;9267:30;9333:33;9328:2;9313:18;;9306:61;9399:2;9384:18;;9227:181::o;9413:354::-;9615:2;9597:21;;;9654:2;9634:18;;;9627:30;9693:32;9688:2;9673:18;;9666:60;9758:2;9743:18;;9587:180::o;10179:408::-;10381:2;10363:21;;;10420:2;10400:18;;;10393:30;10459:34;10454:2;10439:18;;10432:62;-1:-1:-1;;;10525:2:1;10510:18;;10503:42;10577:3;10562:19;;10353:234::o;10592:350::-;10794:2;10776:21;;;10833:2;10813:18;;;10806:30;10872:28;10867:2;10852:18;;10845:56;10933:2;10918:18;;10766:176::o;10947:397::-;11149:2;11131:21;;;11188:2;11168:18;;;11161:30;11227:34;11222:2;11207:18;;11200:62;-1:-1:-1;;;11293:2:1;11278:18;;11271:31;11334:3;11319:19;;11121:223::o;11349:353::-;11551:2;11533:21;;;11590:2;11570:18;;;11563:30;11629:31;11624:2;11609:18;;11602:59;11693:2;11678:18;;11523:179::o;11707:420::-;11909:2;11891:21;;;11948:2;11928:18;;;11921:30;11987:34;11982:2;11967:18;;11960:62;12058:26;12053:2;12038:18;;12031:54;12117:3;12102:19;;11881:246::o;12132:406::-;12334:2;12316:21;;;12373:2;12353:18;;;12346:30;12412:34;12407:2;12392:18;;12385:62;-1:-1:-1;;;12478:2:1;12463:18;;12456:40;12528:3;12513:19;;12306:232::o;12543:398::-;12745:2;12727:21;;;12784:2;12764:18;;;12757:30;12823:34;12818:2;12803:18;;12796:62;-1:-1:-1;;;12889:2:1;12874:18;;12867:32;12931:3;12916:19;;12717:224::o;12946:356::-;13148:2;13130:21;;;13167:18;;;13160:30;13226:34;13221:2;13206:18;;13199:62;13293:2;13278:18;;13120:182::o;13307:397::-;13509:2;13491:21;;;13548:2;13528:18;;;13521:30;13587:34;13582:2;13567:18;;13560:62;-1:-1:-1;;;13653:2:1;13638:18;;13631:31;13694:3;13679:19;;13481:223::o;13709:408::-;13911:2;13893:21;;;13950:2;13930:18;;;13923:30;13989:34;13984:2;13969:18;;13962:62;-1:-1:-1;;;14055:2:1;14040:18;;14033:42;14107:3;14092:19;;13883:234::o;14122:356::-;14324:2;14306:21;;;14343:18;;;14336:30;14402:34;14397:2;14382:18;;14375:62;14469:2;14454:18;;14296:182::o;14483:405::-;14685:2;14667:21;;;14724:2;14704:18;;;14697:30;14763:34;14758:2;14743:18;;14736:62;-1:-1:-1;;;14829:2:1;14814:18;;14807:39;14878:3;14863:19;;14657:231::o;14893:411::-;15095:2;15077:21;;;15134:2;15114:18;;;15107:30;15173:34;15168:2;15153:18;;15146:62;-1:-1:-1;;;15239:2:1;15224:18;;15217:45;15294:3;15279:19;;15067:237::o;15309:397::-;15511:2;15493:21;;;15550:2;15530:18;;;15523:30;15589:34;15584:2;15569:18;;15562:62;-1:-1:-1;;;15655:2:1;15640:18;;15633:31;15696:3;15681:19;;15483:223::o;15711:356::-;15913:2;15895:21;;;15932:18;;;15925:30;15991:34;15986:2;15971:18;;15964:62;16058:2;16043:18;;15885:182::o;16072:413::-;16274:2;16256:21;;;16313:2;16293:18;;;16286:30;16352:34;16347:2;16332:18;;16325:62;-1:-1:-1;;;16418:2:1;16403:18;;16396:47;16475:3;16460:19;;16246:239::o;16490:353::-;16692:2;16674:21;;;16731:2;16711:18;;;16704:30;16770:31;16765:2;16750:18;;16743:59;16834:2;16819:18;;16664:179::o;16848:356::-;17050:2;17032:21;;;17069:18;;;17062:30;17128:34;17123:2;17108:18;;17101:62;17195:2;17180:18;;17022:182::o;17209:352::-;17411:2;17393:21;;;17450:2;17430:18;;;17423:30;17489;17484:2;17469:18;;17462:58;17552:2;17537:18;;17383:178::o;17566:408::-;17768:2;17750:21;;;17807:2;17787:18;;;17780:30;17846:34;17841:2;17826:18;;17819:62;-1:-1:-1;;;17912:2:1;17897:18;;17890:42;17964:3;17949:19;;17740:234::o;17979:177::-;18125:25;;;18113:2;18098:18;;18080:76::o;18161:128::-;;18232:1;18228:6;18225:1;18222:13;18219:2;;;18238:18;;:::i;:::-;-1:-1:-1;18274:9:1;;18209:80::o;18294:120::-;;18360:1;18350:2;;18365:18;;:::i;:::-;-1:-1:-1;18399:9:1;;18340:74::o;18419:168::-;;18525:1;18521;18517:6;18513:14;18510:1;18507:21;18502:1;18495:9;18488:17;18484:45;18481:2;;;18532:18;;:::i;:::-;-1:-1:-1;18572:9:1;;18471:116::o;18592:125::-;;18660:1;18657;18654:8;18651:2;;;18665:18;;:::i;:::-;-1:-1:-1;18702:9:1;;18641:76::o;18722:258::-;18794:1;18804:113;18818:6;18815:1;18812:13;18804:113;;;18894:11;;;18888:18;18875:11;;;18868:39;18840:2;18833:10;18804:113;;;18935:6;18932:1;18929:13;18926:2;;;-1:-1:-1;;18970:1:1;18952:16;;18945:27;18775:205::o;18985:136::-;;19052:5;19042:2;;19061:18;;:::i;:::-;-1:-1:-1;;;19097:18:1;;19032:89::o;19126:380::-;19211:1;19201:12;;19258:1;19248:12;;;19269:2;;19323:4;19315:6;19311:17;19301:27;;19269:2;19376;19368:6;19365:14;19345:18;19342:38;19339:2;;;19422:10;19417:3;19413:20;19410:1;19403:31;19457:4;19454:1;19447:15;19485:4;19482:1;19475:15;19339:2;;19181:325;;;:::o;19511:135::-;;-1:-1:-1;;19571:17:1;;19568:2;;;19591:18;;:::i;:::-;-1:-1:-1;19638:1:1;19627:13;;19558:88::o;19651:112::-;;19709:1;19699:2;;19714:18;;:::i;:::-;-1:-1:-1;19748:9:1;;19689:74::o;19768:127::-;19829:10;19824:3;19820:20;19817:1;19810:31;19860:4;19857:1;19850:15;19884:4;19881:1;19874:15;19900:127;19961:10;19956:3;19952:20;19949:1;19942:31;19992:4;19989:1;19982:15;20016:4;20013:1;20006:15;20032:127;20093:10;20088:3;20084:20;20081:1;20074:31;20124:4;20121:1;20114:15;20148:4;20145:1;20138:15;20164:133;-1:-1:-1;;;;;;20240:32:1;;20230:43;;20220:2;;20287:1;20284;20277:12

Swarm Source

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