ETH Price: $2,626.57 (+1.14%)

Token

CAWS Timepiece (TIME)
 

Overview

Max Total Supply

532 TIME

Holders

115

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TIME
0xdf2cb946535c06d187cb5cc8371c778e7ad38e08
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x7719f675...A17ad263c
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
TimepieceCAWS

Compiler Version
v0.7.0+commit.9e61f92b

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-18
*/

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

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;


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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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



pragma solidity >=0.6.0 <0.8.0;


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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.2 <0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity >=0.6.0 <0.8.0;

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

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

// File: contracts/ERC721A.sol

// Creator: Chiru Labs

pragma solidity >=0.6.0 <0.8.0;

// import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
// import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
// import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
// import "@openzeppelin/contracts/utils/Address.sol";
// import "@openzeppelin/contracts/utils/Context.sol";
// import "@openzeppelin/contracts/utils/Strings.sol";
// import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using SafeMath for uint256;
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

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

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

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

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

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

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



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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


// File: contracts/TimepieceCAWS.sol


pragma solidity ^0.7.0;

interface StakeContract {
    function calculateReward(address account, uint256 tokenId)  external view returns (uint256);
}

interface CawsContract {
      function ownerOf(uint256 tokenId) external view returns (address);
}
/**
 * @title TimepieceCAWS contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract TimepieceCAWS is ERC721A, Ownable {
    using SafeMath for uint256;

    string public Timepiece_PROVENANCE = "";

    string public baseURI;

    uint256 public startingIndexBlock;

    uint256 public startingIndex;

    uint public constant maxTimepieceClaim = 50;

    uint256 public MAX_TIMEPIECE;

    bool public saleIsActive = false;

    uint256 public REVEAL_TIMESTAMP;

    CawsContract public cawsContract;

    StakeContract public stakeContractCAWS;

    StakeContract public stakeContractWoD;

    // Mapping to keep track of CAWS token IDs that have been used to mint a new NFT
    mapping (uint256 => bool) public cawsUsed;

    constructor(string memory name, string memory symbol, uint256 maxNftSupply, uint256 saleStart) ERC721A(name, symbol, maxTimepieceClaim, maxNftSupply) {
        MAX_TIMEPIECE = maxNftSupply;
        REVEAL_TIMESTAMP = saleStart + (86400 * 13);
        
        cawsContract = CawsContract(0xd06cF9e1189FEAb09c844C597abc3767BC12608c);
        stakeContractCAWS = StakeContract(0xEe425BbbEC5e9Bf4a59a1c19eFff522AD8b7A47A);
        stakeContractWoD = StakeContract(0xD324A03BF17Eee8D34A8843D094a76FF8f561e38);
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        msg.sender.transfer(balance);
    }

    /**
     * Set some Timepiece aside
     */
    // function reserveTimepiece() public onlyOwner {        
    //     uint supply = totalSupply();
    //     _safeMint(msg.sender, supply + 50);
    // }

    /**
     * Set Reveal Timestamp.
     */
    function setRevealTimestamp(uint256 revealTimeStamp) public onlyOwner {
        REVEAL_TIMESTAMP = revealTimeStamp;
    } 

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

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

    function setBaseURI(string calldata tokenURI) external onlyOwner {
        baseURI = tokenURI;
    }

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

    /**
    * Claim Timepiece CAWS
    */
    function claimTimepiece(uint[] calldata tokenIds) public {
        require(saleIsActive, "Sale must be active to claim Timepiece");
        require(tokenIds.length > 0, "Claim at least 1 Timepiece");
        require(tokenIds.length <= maxTimepieceClaim, "Can only claim 50 tokens at a time");

        uint TotalMintable = 0;
        for (uint i = 0; i < tokenIds.length; i++) {

            if (cawsUsed[tokenIds[i]] != true) {
                //Check if user is ownerOf CAWS
                if (cawsContract.ownerOf(tokenIds[i]) == msg.sender) {
                    cawsUsed[tokenIds[i]] = true;
                    TotalMintable++;
                    continue;
                }
                //Check if user has deposited CAWS in Staking
                if (stakeContractCAWS.calculateReward(msg.sender, tokenIds[i]) > 0) {
                    cawsUsed[tokenIds[i]] = true;
                    TotalMintable++;
                    continue;
                }
                //Check if user has deposited CAWS in WoD + CAWS Staking
                  if (stakeContractWoD.calculateReward(msg.sender, tokenIds[i]) > 0) {
                    cawsUsed[tokenIds[i]] = true;
                    TotalMintable++;
                }
            }
        }
        
        require(totalSupply().add(TotalMintable) <= MAX_TIMEPIECE, "Claim would exceed max Timepiece");
        require(TotalMintable > 0, "CAWS already claimed");

        _safeMint(msg.sender, TotalMintable);

        // 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_TIMEPIECE || 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_TIMEPIECE;
        // 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_TIMEPIECE;
        }
        // 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 onlyOwner {
        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"},{"internalType":"uint256","name":"maxNftSupply","type":"uint256"},{"internalType":"uint256","name":"saleStart","type":"uint256"}],"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_TIMEPIECE","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":"Timepiece_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"cawsContract","outputs":[{"internalType":"contract CawsContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cawsUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claimTimepiece","outputs":[],"stateMutability":"nonpayable","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":"maxTimepieceClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeContractCAWS","outputs":[{"internalType":"contract StakeContract","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakeContractWoD","outputs":[{"internalType":"contract StakeContract","name":"","type":"address"}],"stateMutability":"view","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"}]

60006001819055600881905560e0604081905260c08290526200002691600a919062000408565b50600f805460ff191690553480156200003e57600080fd5b506040516200314238038062003142833981810160405260808110156200006457600080fd5b81019080805160405193929190846401000000008211156200008557600080fd5b9083019060208201858111156200009b57600080fd5b8251640100000000811182820188101715620000b657600080fd5b82525081516020918201929091019080838360005b83811015620000e5578181015183820152602001620000cb565b50505050905090810190601f168015620001135780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200013757600080fd5b9083019060208201858111156200014d57600080fd5b82516401000000008111828201881017156200016857600080fd5b82525081516020918201929091019080838360005b83811015620001975781810151838201526020016200017d565b50505050905090810190601f168015620001c55780820380516001836020036101000a031916815260200191505b506040908152602082015191015190925090508383603284620001ef6301ffc9a760e01b6200037f565b60008111620002305760405162461bcd60e51b815260040180806020018281038252602e81526020018062003114602e913960400191505060405180910390fd5b60008211620002715760405162461bcd60e51b8152600401808060200182810382526027815260200180620030ed6027913960400191505060405180910390fd5b83516200028690600290602087019062000408565b5082516200029c90600390602086019062000408565b5060a0919091526080525060009050620002b562000404565b600980546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e9190915562112380016010555050601180546001600160a01b031990811673d06cf9e1189feab09c844c597abc3767bc12608c1790915560128054821673ee425bbbec5e9bf4a59a1c19efff522ad8b7a47a1790556013805490911673d324a03bf17eee8d34a8843d094a76ff8f561e38179055620004a4565b6001600160e01b03198082161415620003df576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200044b57805160ff19168380011785556200047b565b828001600101855582156200047b579182015b828111156200047b5782518255916020019190600101906200045e565b50620004899291506200048d565b5090565b5b808211156200048957600081556001016200048e565b60805160a051612c20620004cd60003980611f485280611f7252806124a1525050612c206000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b578063c0c7931f116100b8578063e36d64981161007c578063e36d6498146107c7578063e985e9c5146107cf578063e9866550146107fd578063eb8d244414610805578063f2fde38b1461080d57610248565b8063c0c7931f1461078a578063c87b56dd14610792578063cb774d47146107af578063ce0c4901146107b7578063d7224ba0146107bf57610248565b806395d89b41116100ff57806395d89b4114610680578063a22cb46514610688578063ac05832f146106b6578063b88d4fde146106be578063c04c6f1a1461078257610248565b8063715018a6146105dd5780637aa1aae3146105e55780637d17fcbe1461060257806388f1d5241461060a5780638da5cb5b1461067857610248565b80632f745c59116101c957806353aea5731161018d57806353aea5731461051c57806355f804b3146105245780636352211e146105925780636c0360eb146105af57806370a08231146105b757610248565b80632f745c591461048d57806334918dfd146104b95780633ccfd60b146104c157806342842e0e146104c95780634f6ccce7146104ff57610248565b80631096952311610210578063109695231461038957806318160ddd1461042d57806318e20a381461044757806323b872dd1461044f57806325cbf3ac1461048557610248565b8063018a2c371461024d57806301ffc9a71461026c57806306fdde03146102a7578063081812fc14610324578063095ea7b31461035d575b600080fd5b61026a6004803603602081101561026357600080fd5b5035610833565b005b6102936004803603602081101561028257600080fd5b50356001600160e01b03191661089a565b604080519115158252519081900360200190f35b6102af6108fd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e95781810151838201526020016102d1565b50505050905090810190601f1680156103165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103416004803603602081101561033a57600080fd5b5035610990565b604080516001600160a01b039092168252519081900360200190f35b61026a6004803603604081101561037357600080fd5b506001600160a01b0381351690602001356109f2565b61026a6004803603602081101561039f57600080fd5b810190602081018135600160201b8111156103b957600080fd5b8201836020820111156103cb57600080fd5b803590602001918460018302840111600160201b831117156103ec57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ace945050505050565b610435610b47565b60408051918252519081900360200190f35b610435610b4d565b61026a6004803603606081101561046557600080fd5b506001600160a01b03813581169160208101359091169060400135610b53565b610341610b5e565b610435600480360360408110156104a357600080fd5b506001600160a01b038135169060200135610b6d565b61026a610c9f565b61026a610d15565b61026a600480360360608110156104df57600080fd5b506001600160a01b03813581169160208101359091169060400135610da6565b6104356004803603602081101561051557600080fd5b5035610dc1565b610341610e0c565b61026a6004803603602081101561053a57600080fd5b810190602081018135600160201b81111561055457600080fd5b82018360208201111561056657600080fd5b803590602001918460018302840111600160201b8311171561058757600080fd5b509092509050610e1b565b610341600480360360208110156105a857600080fd5b5035610e89565b6102af610e9b565b610435600480360360208110156105cd57600080fd5b50356001600160a01b0316610f29565b61026a610f95565b610293600480360360208110156105fb57600080fd5b5035611041565b61026a611056565b61026a6004803603602081101561062057600080fd5b810190602081018135600160201b81111561063a57600080fd5b82018360208201111561064c57600080fd5b803590602001918460208302840111600160201b8311171561066d57600080fd5b509092509050611113565b610341611596565b6102af6115a5565b61026a6004803603604081101561069e57600080fd5b506001600160a01b0381351690602001351515611606565b61043561170b565b61026a600480360360808110156106d457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561070e57600080fd5b82018360208201111561072057600080fd5b803590602001918460018302840111600160201b8311171561074157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611711945050505050565b610341611769565b6102af611778565b6102af600480360360208110156107a857600080fd5b50356117d3565b610435611904565b61043561190a565b61043561190f565b610435611915565b610293600480360360408110156107e557600080fd5b506001600160a01b038135811691602001351661191b565b61026a611949565b610293611a4b565b61026a6004803603602081101561082357600080fd5b50356001600160a01b0316611a54565b61083b611b57565b6001600160a01b031661084c611596565b6001600160a01b031614610895576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b601055565b60006001600160e01b031982166380ac58cd60e01b14806108cb57506001600160e01b03198216635b5e139f60e01b145b806108e657506001600160e01b0319821663780e9d6360e01b145b806108f557506108f582611b5b565b90505b919050565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611b7a565b6109d65760405162461bcd60e51b815260040180806020018281038252602d815260200180612b9c602d913960400191505060405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109fd82610e89565b9050806001600160a01b0316836001600160a01b03161415610a505760405162461bcd60e51b8152600401808060200182810382526022815260200180612ac96022913960400191505060405180910390fd5b806001600160a01b0316610a62611b57565b6001600160a01b03161480610a835750610a8381610a7e611b57565b61191b565b610abe5760405162461bcd60e51b81526004018080602001828103825260398152602001806129be6039913960400191505060405180910390fd5b610ac9838383611b81565b505050565b610ad6611b57565b6001600160a01b0316610ae7611596565b6001600160a01b031614610b30576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b8051610b4390600a9060208401906127a7565b5050565b60015490565b60105481565b610ac9838383611bdd565b6013546001600160a01b031681565b6000610b7883610f29565b8210610bb55760405162461bcd60e51b81526004018080602001828103825260228152602001806128bc6022913960400191505060405180910390fd5b6000610bbf610b47565b905060008060005b83811015610c6157610bd7612821565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c2357805192505b876001600160a01b0316836001600160a01b03161415610c585786841415610c5157509350610c9992505050565b6001909301925b50600101610bc7565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612b3f602e913960400191505060405180910390fd5b92915050565b610ca7611b57565b6001600160a01b0316610cb8611596565b6001600160a01b031614610d01576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b600f805460ff19811660ff90911615179055565b610d1d611b57565b6001600160a01b0316610d2e611596565b6001600160a01b031614610d77576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610b43573d6000803e3d6000fd5b610ac983838360405180602001604052806000815250611711565b6000610dcb610b47565b8210610e085760405162461bcd60e51b81526004018080602001828103825260238152602001806129766023913960400191505060405180910390fd5b5090565b6012546001600160a01b031681565b610e23611b57565b6001600160a01b0316610e34611596565b6001600160a01b031614610e7d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b610ac9600b8383612838565b6000610e9482611ef8565b5192915050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f215780601f10610ef657610100808354040283529160200191610f21565b820191906000526020600020905b815481529060010190602001808311610f0457829003601f168201915b505050505081565b60006001600160a01b038216610f705760405162461bcd60e51b815260040180806020018281038252602b8152602001806129f7602b913960400191505060405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b610f9d611b57565b6001600160a01b0316610fae611596565b6001600160a01b031614610ff7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60146020526000908152604090205460ff1681565b61105e611b57565b6001600160a01b031661106f611596565b6001600160a01b0316146110b8576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b600d541561110d576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b43600c55565b600f5460ff166111545760405162461bcd60e51b81526004018080602001828103825260268152602001806128de6026913960400191505060405180910390fd5b806111a6576040805162461bcd60e51b815260206004820152601a60248201527f436c61696d206174206c6561737420312054696d657069656365000000000000604482015290519081900360640190fd5b60328111156111e65760405162461bcd60e51b81526004018080602001828103825260228152602001806129546022913960400191505060405180910390fd5b6000805b828110156114a5576014600085858481811061120257fe5b602090810292909201358352508101919091526040016000205460ff16151560011461149d5760115433906001600160a01b0316636352211e86868581811061124757fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561128257600080fd5b505afa158015611296573d6000803e3d6000fd5b505050506040513d60208110156112ac57600080fd5b50516001600160a01b03161415611308576001601460008686858181106112cf57fe5b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550818060010192505061149d565b6012546000906001600160a01b0316631852e8d93387878681811061132957fe5b905060200201356040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b15801561137457600080fd5b505afa158015611388573d6000803e3d6000fd5b505050506040513d602081101561139e57600080fd5b505111156113b8576001601460008686858181106112cf57fe5b6013546000906001600160a01b0316631852e8d9338787868181106113d957fe5b905060200201356040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b15801561142457600080fd5b505afa158015611438573d6000803e3d6000fd5b505050506040513d602081101561144e57600080fd5b5051111561149d5760016014600086868581811061146857fe5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555081806001019250505b6001016111ea565b50600e546114bb826114b5610b47565b90612039565b111561150e576040805162461bcd60e51b815260206004820181905260248201527f436c61696d20776f756c6420657863656564206d61782054696d657069656365604482015290519081900360640190fd5b6000811161155a576040805162461bcd60e51b815260206004820152601460248201527310d055d4c8185b1c9958591e4818db185a5b595960621b604482015290519081900360640190fd5b6115643382612093565b600c541580156115885750600e5461157a610b47565b148061158857506010544210155b15610ac95743600c55505050565b6009546001600160a01b031690565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109865780601f1061095b57610100808354040283529160200191610986565b61160e611b57565b6001600160a01b0316826001600160a01b03161415611674576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b8060076000611681611b57565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116c5611b57565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600e5481565b61171c848484611bdd565b611728848484846120ad565b6117635760405162461bcd60e51b8152600401808060200182810382526033815260200180612aeb6033913960400191505060405180910390fd5b50505050565b6011546001600160a01b031681565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f215780601f10610ef657610100808354040283529160200191610f21565b60606117de82611b7a565b6118195760405162461bcd60e51b815260040180806020018281038252602f815260200180612a68602f913960400191505060405180910390fd5b6060611823612263565b9050600081511161184357604051806020016040528060008152506118fd565b8061184d846122c4565b6040516020018083805190602001908083835b6020831061187f5780518252601f199092019160209182019101611860565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106118c75780518252601f1990920191602091820191016118a8565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b600d5481565b603281565b60085481565b600c5481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600d541561199e576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b600c546119f2576040805162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015290519081900360640190fd5b600e54600c544081611a0057fe5b06600d55600c5460ff90611a1590439061239f565b1115611a3057600e5460001943014081611a2b57fe5b06600d555b600d54611a4957600d54611a45906001612039565b600d555b565b600f5460ff1681565b611a5c611b57565b6001600160a01b0316611a6d611596565b6001600160a01b031614611ab6576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b6001600160a01b038116611afb5760405162461bcd60e51b81526004018080602001828103825260268152602001806129046026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160e01b03191660009081526020819052604090205460ff1690565b6001541190565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611be5612821565b611bee82611ef8565b9050600081600001516001600160a01b0316611c08611b57565b6001600160a01b03161480611c3d5750611c20611b57565b6001600160a01b0316611c3284610990565b6001600160a01b0316145b80611c5157508151611c5190610a7e611b57565b905080611c8f5760405162461bcd60e51b8152600401808060200182810382526032815260200180612a976032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b031614611ce35760405162461bcd60e51b8152600401808060200182810382526026815260200180612a226026913960400191505060405180910390fd5b6001600160a01b038416611d285760405162461bcd60e51b81526004018080602001828103825260258152602001806129996025913960400191505060405180910390fd5b611d358585856001611763565b611d456000848460000151611b81565b6001600160a01b03858116600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260049095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b9590911694909402939093179055908601808352912054909116611ea257611e2581611b7a565b15611ea25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef08686866001611763565b505050505050565b611f00612821565b611f0982611b7a565b611f445760405162461bcd60e51b815260040180806020018281038252602a81526020018061292a602a913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611f95575060017f00000000000000000000000000000000000000000000000000000000000000008303015b825b81811061200157611fa6612821565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ff75792506108f8915050565b5060001901611f97565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180612b6d602f913960400191505060405180910390fd5b6000828201838110156118fd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610b438282604051806020016040528060008152506123fc565b60006120c1846001600160a01b03166127a1565b1561225757836001600160a01b031663150b7a026120dd611b57565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612150578181015183820152602001612138565b50505050905090810190601f16801561217d5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561219f57600080fd5b505af19250505080156121c457506040513d60208110156121bf57600080fd5b505160015b61223d573d8080156121f2576040519150601f19603f3d011682016040523d82523d6000602084013e6121f7565b606091505b5080516122355760405162461bcd60e51b8152600401808060200182810382526033815260200180612aeb6033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061225b565b5060015b949350505050565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109865780601f1061095b57610100808354040283529160200191610986565b6060816122e957506040805180820190915260018152600360fc1b60208201526108f8565b8160005b811561230157600101600a820491506122ed565b60608167ffffffffffffffff8111801561231a57600080fd5b506040519080825280601f01601f191660200182016040528015612345576020820181803683370190505b50859350905060001982015b831561239657600a840660300160f81b8282806001900393508151811061237457fe5b60200101906001600160f81b031916908160001a905350600a84049350612351565b50949350505050565b6000828211156123f6576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001546001600160a01b0384166124445760405162461bcd60e51b8152600401808060200182810382526021815260200180612b1e6021913960400191505060405180910390fd5b61244d81611b7a565b1561249f576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156124fe5760405162461bcd60e51b8152600401808060200182810382526022815260200180612bc96022913960400191505060405180910390fd5b61250b6000858386611763565b612513612821565b60056000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060056000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561278e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461274760008884886120ad565b6127825760405162461bcd60e51b8152600401808060200182810382526033815260200180612aeb6033913960400191505060405180910390fd5b600191820191016126fa565b506001819055611ef06000878588611763565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127e857805160ff1916838001178555612815565b82800160010185558215612815579182015b828111156128155782518255916020019190600101906127fa565b50610e089291506128a6565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106128795782800160ff19823516178555612815565b82800160010185558215612815579182015b8281111561281557823582559160200191906001019061288b565b5b80821115610e0857600081556001016128a756fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e647353616c65206d7573742062652061637469766520746f20636c61696d2054696d6570696563654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c7920636c61696d20353020746f6b656e7320617420612074696d65455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a26469706673582212202597ca60244d09f1bfd9891cc25b3b4bf82ecccba0648e63480128b6c730161064736f6c63430007000033455243373231413a206d61782062617463682073697a65206d757374206265206e6f6e7a65726f455243373231413a20636f6c6c656374696f6e206d75737420686176652061206e6f6e7a65726f20737570706c79000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000027100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454696d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454696d6500000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c8063715018a61161013b578063c0c7931f116100b8578063e36d64981161007c578063e36d6498146107c7578063e985e9c5146107cf578063e9866550146107fd578063eb8d244414610805578063f2fde38b1461080d57610248565b8063c0c7931f1461078a578063c87b56dd14610792578063cb774d47146107af578063ce0c4901146107b7578063d7224ba0146107bf57610248565b806395d89b41116100ff57806395d89b4114610680578063a22cb46514610688578063ac05832f146106b6578063b88d4fde146106be578063c04c6f1a1461078257610248565b8063715018a6146105dd5780637aa1aae3146105e55780637d17fcbe1461060257806388f1d5241461060a5780638da5cb5b1461067857610248565b80632f745c59116101c957806353aea5731161018d57806353aea5731461051c57806355f804b3146105245780636352211e146105925780636c0360eb146105af57806370a08231146105b757610248565b80632f745c591461048d57806334918dfd146104b95780633ccfd60b146104c157806342842e0e146104c95780634f6ccce7146104ff57610248565b80631096952311610210578063109695231461038957806318160ddd1461042d57806318e20a381461044757806323b872dd1461044f57806325cbf3ac1461048557610248565b8063018a2c371461024d57806301ffc9a71461026c57806306fdde03146102a7578063081812fc14610324578063095ea7b31461035d575b600080fd5b61026a6004803603602081101561026357600080fd5b5035610833565b005b6102936004803603602081101561028257600080fd5b50356001600160e01b03191661089a565b604080519115158252519081900360200190f35b6102af6108fd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102e95781810151838201526020016102d1565b50505050905090810190601f1680156103165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103416004803603602081101561033a57600080fd5b5035610990565b604080516001600160a01b039092168252519081900360200190f35b61026a6004803603604081101561037357600080fd5b506001600160a01b0381351690602001356109f2565b61026a6004803603602081101561039f57600080fd5b810190602081018135600160201b8111156103b957600080fd5b8201836020820111156103cb57600080fd5b803590602001918460018302840111600160201b831117156103ec57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ace945050505050565b610435610b47565b60408051918252519081900360200190f35b610435610b4d565b61026a6004803603606081101561046557600080fd5b506001600160a01b03813581169160208101359091169060400135610b53565b610341610b5e565b610435600480360360408110156104a357600080fd5b506001600160a01b038135169060200135610b6d565b61026a610c9f565b61026a610d15565b61026a600480360360608110156104df57600080fd5b506001600160a01b03813581169160208101359091169060400135610da6565b6104356004803603602081101561051557600080fd5b5035610dc1565b610341610e0c565b61026a6004803603602081101561053a57600080fd5b810190602081018135600160201b81111561055457600080fd5b82018360208201111561056657600080fd5b803590602001918460018302840111600160201b8311171561058757600080fd5b509092509050610e1b565b610341600480360360208110156105a857600080fd5b5035610e89565b6102af610e9b565b610435600480360360208110156105cd57600080fd5b50356001600160a01b0316610f29565b61026a610f95565b610293600480360360208110156105fb57600080fd5b5035611041565b61026a611056565b61026a6004803603602081101561062057600080fd5b810190602081018135600160201b81111561063a57600080fd5b82018360208201111561064c57600080fd5b803590602001918460208302840111600160201b8311171561066d57600080fd5b509092509050611113565b610341611596565b6102af6115a5565b61026a6004803603604081101561069e57600080fd5b506001600160a01b0381351690602001351515611606565b61043561170b565b61026a600480360360808110156106d457600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561070e57600080fd5b82018360208201111561072057600080fd5b803590602001918460018302840111600160201b8311171561074157600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611711945050505050565b610341611769565b6102af611778565b6102af600480360360208110156107a857600080fd5b50356117d3565b610435611904565b61043561190a565b61043561190f565b610435611915565b610293600480360360408110156107e557600080fd5b506001600160a01b038135811691602001351661191b565b61026a611949565b610293611a4b565b61026a6004803603602081101561082357600080fd5b50356001600160a01b0316611a54565b61083b611b57565b6001600160a01b031661084c611596565b6001600160a01b031614610895576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b601055565b60006001600160e01b031982166380ac58cd60e01b14806108cb57506001600160e01b03198216635b5e139f60e01b145b806108e657506001600160e01b0319821663780e9d6360e01b145b806108f557506108f582611b5b565b90505b919050565b60028054604080516020601f60001961010060018716150201909416859004938401819004810282018101909252828152606093909290918301828280156109865780601f1061095b57610100808354040283529160200191610986565b820191906000526020600020905b81548152906001019060200180831161096957829003601f168201915b5050505050905090565b600061099b82611b7a565b6109d65760405162461bcd60e51b815260040180806020018281038252602d815260200180612b9c602d913960400191505060405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006109fd82610e89565b9050806001600160a01b0316836001600160a01b03161415610a505760405162461bcd60e51b8152600401808060200182810382526022815260200180612ac96022913960400191505060405180910390fd5b806001600160a01b0316610a62611b57565b6001600160a01b03161480610a835750610a8381610a7e611b57565b61191b565b610abe5760405162461bcd60e51b81526004018080602001828103825260398152602001806129be6039913960400191505060405180910390fd5b610ac9838383611b81565b505050565b610ad6611b57565b6001600160a01b0316610ae7611596565b6001600160a01b031614610b30576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b8051610b4390600a9060208401906127a7565b5050565b60015490565b60105481565b610ac9838383611bdd565b6013546001600160a01b031681565b6000610b7883610f29565b8210610bb55760405162461bcd60e51b81526004018080602001828103825260228152602001806128bc6022913960400191505060405180910390fd5b6000610bbf610b47565b905060008060005b83811015610c6157610bd7612821565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610c2357805192505b876001600160a01b0316836001600160a01b03161415610c585786841415610c5157509350610c9992505050565b6001909301925b50600101610bc7565b5060405162461bcd60e51b815260040180806020018281038252602e815260200180612b3f602e913960400191505060405180910390fd5b92915050565b610ca7611b57565b6001600160a01b0316610cb8611596565b6001600160a01b031614610d01576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b600f805460ff19811660ff90911615179055565b610d1d611b57565b6001600160a01b0316610d2e611596565b6001600160a01b031614610d77576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b6040514790339082156108fc029083906000818181858888f19350505050158015610b43573d6000803e3d6000fd5b610ac983838360405180602001604052806000815250611711565b6000610dcb610b47565b8210610e085760405162461bcd60e51b81526004018080602001828103825260238152602001806129766023913960400191505060405180910390fd5b5090565b6012546001600160a01b031681565b610e23611b57565b6001600160a01b0316610e34611596565b6001600160a01b031614610e7d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b610ac9600b8383612838565b6000610e9482611ef8565b5192915050565b600b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f215780601f10610ef657610100808354040283529160200191610f21565b820191906000526020600020905b815481529060010190602001808311610f0457829003601f168201915b505050505081565b60006001600160a01b038216610f705760405162461bcd60e51b815260040180806020018281038252602b8152602001806129f7602b913960400191505060405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160801b031690565b610f9d611b57565b6001600160a01b0316610fae611596565b6001600160a01b031614610ff7576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b6009546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600980546001600160a01b0319169055565b60146020526000908152604090205460ff1681565b61105e611b57565b6001600160a01b031661106f611596565b6001600160a01b0316146110b8576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b600d541561110d576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b43600c55565b600f5460ff166111545760405162461bcd60e51b81526004018080602001828103825260268152602001806128de6026913960400191505060405180910390fd5b806111a6576040805162461bcd60e51b815260206004820152601a60248201527f436c61696d206174206c6561737420312054696d657069656365000000000000604482015290519081900360640190fd5b60328111156111e65760405162461bcd60e51b81526004018080602001828103825260228152602001806129546022913960400191505060405180910390fd5b6000805b828110156114a5576014600085858481811061120257fe5b602090810292909201358352508101919091526040016000205460ff16151560011461149d5760115433906001600160a01b0316636352211e86868581811061124757fe5b905060200201356040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b15801561128257600080fd5b505afa158015611296573d6000803e3d6000fd5b505050506040513d60208110156112ac57600080fd5b50516001600160a01b03161415611308576001601460008686858181106112cf57fe5b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550818060010192505061149d565b6012546000906001600160a01b0316631852e8d93387878681811061132957fe5b905060200201356040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b15801561137457600080fd5b505afa158015611388573d6000803e3d6000fd5b505050506040513d602081101561139e57600080fd5b505111156113b8576001601460008686858181106112cf57fe5b6013546000906001600160a01b0316631852e8d9338787868181106113d957fe5b905060200201356040518363ffffffff1660e01b815260040180836001600160a01b031681526020018281526020019250505060206040518083038186803b15801561142457600080fd5b505afa158015611438573d6000803e3d6000fd5b505050506040513d602081101561144e57600080fd5b5051111561149d5760016014600086868581811061146857fe5b90506020020135815260200190815260200160002060006101000a81548160ff02191690831515021790555081806001019250505b6001016111ea565b50600e546114bb826114b5610b47565b90612039565b111561150e576040805162461bcd60e51b815260206004820181905260248201527f436c61696d20776f756c6420657863656564206d61782054696d657069656365604482015290519081900360640190fd5b6000811161155a576040805162461bcd60e51b815260206004820152601460248201527310d055d4c8185b1c9958591e4818db185a5b595960621b604482015290519081900360640190fd5b6115643382612093565b600c541580156115885750600e5461157a610b47565b148061158857506010544210155b15610ac95743600c55505050565b6009546001600160a01b031690565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109865780601f1061095b57610100808354040283529160200191610986565b61160e611b57565b6001600160a01b0316826001600160a01b03161415611674576040805162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015290519081900360640190fd5b8060076000611681611b57565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556116c5611b57565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600e5481565b61171c848484611bdd565b611728848484846120ad565b6117635760405162461bcd60e51b8152600401808060200182810382526033815260200180612aeb6033913960400191505060405180910390fd5b50505050565b6011546001600160a01b031681565b600a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f215780601f10610ef657610100808354040283529160200191610f21565b60606117de82611b7a565b6118195760405162461bcd60e51b815260040180806020018281038252602f815260200180612a68602f913960400191505060405180910390fd5b6060611823612263565b9050600081511161184357604051806020016040528060008152506118fd565b8061184d846122c4565b6040516020018083805190602001908083835b6020831061187f5780518252601f199092019160209182019101611860565b51815160209384036101000a600019018019909216911617905285519190930192850191508083835b602083106118c75780518252601f1990920191602091820191016118a8565b6001836020036101000a038019825116818451168082178552505050505050905001925050506040516020818303038152906040525b9392505050565b600d5481565b603281565b60085481565b600c5481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600d541561199e576040805162461bcd60e51b815260206004820152601d60248201527f5374617274696e6720696e64657820697320616c726561647920736574000000604482015290519081900360640190fd5b600c546119f2576040805162461bcd60e51b815260206004820181905260248201527f5374617274696e6720696e64657820626c6f636b206d75737420626520736574604482015290519081900360640190fd5b600e54600c544081611a0057fe5b06600d55600c5460ff90611a1590439061239f565b1115611a3057600e5460001943014081611a2b57fe5b06600d555b600d54611a4957600d54611a45906001612039565b600d555b565b600f5460ff1681565b611a5c611b57565b6001600160a01b0316611a6d611596565b6001600160a01b031614611ab6576040805162461bcd60e51b81526020600482018190526024820152600080516020612a48833981519152604482015290519081900360640190fd5b6001600160a01b038116611afb5760405162461bcd60e51b81526004018080602001828103825260268152602001806129046026913960400191505060405180910390fd5b6009546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600980546001600160a01b0319166001600160a01b0392909216919091179055565b3390565b6001600160e01b03191660009081526020819052604090205460ff1690565b6001541190565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b611be5612821565b611bee82611ef8565b9050600081600001516001600160a01b0316611c08611b57565b6001600160a01b03161480611c3d5750611c20611b57565b6001600160a01b0316611c3284610990565b6001600160a01b0316145b80611c5157508151611c5190610a7e611b57565b905080611c8f5760405162461bcd60e51b8152600401808060200182810382526032815260200180612a976032913960400191505060405180910390fd5b846001600160a01b031682600001516001600160a01b031614611ce35760405162461bcd60e51b8152600401808060200182810382526026815260200180612a226026913960400191505060405180910390fd5b6001600160a01b038416611d285760405162461bcd60e51b81526004018080602001828103825260258152602001806129996025913960400191505060405180910390fd5b611d358585856001611763565b611d456000848460000151611b81565b6001600160a01b03858116600090815260056020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a875260049095528386209251835495516001600160a01b03199096169088161767ffffffffffffffff60a01b1916600160a01b9590911694909402939093179055908601808352912054909116611ea257611e2581611b7a565b15611ea25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ef08686866001611763565b505050505050565b611f00612821565b611f0982611b7a565b611f445760405162461bcd60e51b815260040180806020018281038252602a81526020018061292a602a913960400191505060405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000328310611f95575060017f00000000000000000000000000000000000000000000000000000000000000328303015b825b81811061200157611fa6612821565b506000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611ff75792506108f8915050565b5060001901611f97565b5060405162461bcd60e51b815260040180806020018281038252602f815260200180612b6d602f913960400191505060405180910390fd5b6000828201838110156118fd576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b610b438282604051806020016040528060008152506123fc565b60006120c1846001600160a01b03166127a1565b1561225757836001600160a01b031663150b7a026120dd611b57565b8786866040518563ffffffff1660e01b815260040180856001600160a01b03168152602001846001600160a01b0316815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015612150578181015183820152602001612138565b50505050905090810190601f16801561217d5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b15801561219f57600080fd5b505af19250505080156121c457506040513d60208110156121bf57600080fd5b505160015b61223d573d8080156121f2576040519150601f19603f3d011682016040523d82523d6000602084013e6121f7565b606091505b5080516122355760405162461bcd60e51b8152600401808060200182810382526033815260200180612aeb6033913960400191505060405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061225b565b5060015b949350505050565b600b8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156109865780601f1061095b57610100808354040283529160200191610986565b6060816122e957506040805180820190915260018152600360fc1b60208201526108f8565b8160005b811561230157600101600a820491506122ed565b60608167ffffffffffffffff8111801561231a57600080fd5b506040519080825280601f01601f191660200182016040528015612345576020820181803683370190505b50859350905060001982015b831561239657600a840660300160f81b8282806001900393508151811061237457fe5b60200101906001600160f81b031916908160001a905350600a84049350612351565b50949350505050565b6000828211156123f6576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001546001600160a01b0384166124445760405162461bcd60e51b8152600401808060200182810382526021815260200180612b1e6021913960400191505060405180910390fd5b61244d81611b7a565b1561249f576040805162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015290519081900360640190fd5b7f00000000000000000000000000000000000000000000000000000000000000328311156124fe5760405162461bcd60e51b8152600401808060200182810382526022815260200180612bc96022913960400191505060405180910390fd5b61250b6000858386611763565b612513612821565b60056000866001600160a01b03166001600160a01b031681526020019081526020016000206040518060400160405290816000820160009054906101000a90046001600160801b03166001600160801b03166001600160801b031681526020016000820160109054906101000a90046001600160801b03166001600160801b03166001600160801b03168152505090506040518060400160405280858360000151016001600160801b03168152602001858360200151016001600160801b031681525060056000876001600160a01b03166001600160a01b0316815260200190815260200160002060008201518160000160006101000a8154816001600160801b0302191690836001600160801b0316021790555060208201518160000160106101000a8154816001600160801b0302191690836001600160801b031602179055509050506040518060400160405280866001600160a01b031681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561278e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461274760008884886120ad565b6127825760405162461bcd60e51b8152600401808060200182810382526033815260200180612aeb6033913960400191505060405180910390fd5b600191820191016126fa565b506001819055611ef06000878588611763565b3b151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127e857805160ff1916838001178555612815565b82800160010185558215612815579182015b828111156128155782518255916020019190600101906127fa565b50610e089291506128a6565b604080518082019091526000808252602082015290565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106128795782800160ff19823516178555612815565b82800160010185558215612815579182015b8281111561281557823582559160200191906001019061288b565b5b80821115610e0857600081556001016128a756fe455243373231413a206f776e657220696e646578206f7574206f6620626f756e647353616c65206d7573742062652061637469766520746f20636c61696d2054696d6570696563654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243373231413a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e43616e206f6e6c7920636c61696d20353020746f6b656e7320617420612074696d65455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756e6473455243373231413a207472616e7366657220746f20746865207a65726f2061646472657373455243373231413a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c455243373231413a2062616c616e636520717565727920666f7220746865207a65726f2061646472657373455243373231413a207472616e736665722066726f6d20696e636f7272656374206f776e65724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732314d657461646174613a2055524920717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231413a20617070726f76616c20746f2063757272656e74206f776e6572455243373231413a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e746572455243373231413a206d696e7420746f20746865207a65726f2061646472657373455243373231413a20756e61626c6520746f2067657420746f6b656e206f66206f776e657220627920696e646578455243373231413a20756e61626c6520746f2064657465726d696e6520746865206f776e6572206f6620746f6b656e455243373231413a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e455243373231413a207175616e7469747920746f206d696e7420746f6f2068696768a26469706673582212202597ca60244d09f1bfd9891cc25b3b4bf82ecccba0648e63480128b6c730161064736f6c63430007000033

Deployed Bytecode Sourcemap

46874:5359:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48484:123;;;;;;;;;;;;;;;;-1:-1:-1;48484:123:0;;:::i;:::-;;31833:370;;;;;;;;;;;;;;;;-1:-1:-1;31833:370:0;-1:-1:-1;;;;;;31833:370:0;;:::i;:::-;;;;;;;;;;;;;;;;;;33559:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35084:204;;;;;;;;;;;;;;;;-1:-1:-1;35084:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;35084:204:0;;;;;;;;;;;;;;34647:379;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34647:379:0;;;;;;;;:::i;48680:130::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48680:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48680:130:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48680:130:0;;-1:-1:-1;48680:130:0;;-1:-1:-1;;;;;48680:130:0:i;30394:94::-;;;:::i;:::-;;;;;;;;;;;;;;;;47246:31;;;:::i;35934:142::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35934:142:0;;;;;;;;;;;;;;;;;:::i;47374:37::-;;;:::i;31025:744::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31025:744:0;;;;;;;;:::i;49111:89::-;;;:::i;48082:131::-;;;:::i;36139:157::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;36139:157:0;;;;;;;;;;;;;;;;;:::i;30557:177::-;;;;;;;;;;;;;;;;-1:-1:-1;30557:177:0;;:::i;47327:38::-;;;:::i;48934:102::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48934:102:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;48934:102:0;;;;;;;;;;-1:-1:-1;48934:102:0;;-1:-1:-1;48934:102:0;-1:-1:-1;48934:102:0;:::i;33382:118::-;;;;;;;;;;;;;;;;-1:-1:-1;33382:118:0;;:::i;47007:21::-;;;:::i;32259:211::-;;;;;;;;;;;;;;;;-1:-1:-1;32259:211:0;-1:-1:-1;;;;;32259:211:0;;:::i;45899:148::-;;;:::i;47506:41::-;;;;;;;;;;;;;;;;-1:-1:-1;47506:41:0;;:::i;52038:192::-;;;:::i;49253:1886::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49253:1886:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;49253:1886:0;;;;;;;;;;-1:-1:-1;49253:1886:0;;-1:-1:-1;49253:1886:0;-1:-1:-1;49253:1886:0;:::i;45248:87::-;;;:::i;33714:98::-;;;:::i;35352:274::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35352:274:0;;;;;;;;;;:::i;47168:28::-;;;:::i;36359:311::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36359:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36359:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36359:311:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36359:311:0;;-1:-1:-1;36359:311:0;;-1:-1:-1;;;;;36359:311:0:i;47286:32::-;;;:::i;46959:39::-;;;:::i;33875:394::-;;;;;;;;;;;;;;;;-1:-1:-1;33875:394:0;;:::i;47079:28::-;;;:::i;47116:43::-;;;:::i;40774:::-;;;:::i;47037:33::-;;;:::i;35689:186::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35689:186:0;;;;;;;;;;:::i;51215:686::-;;;:::i;47205:32::-;;;:::i;46202:244::-;;;;;;;;;;;;;;;;-1:-1:-1;46202:244:0;-1:-1:-1;;;;;46202:244:0;;:::i;48484:123::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;48565:16:::1;:34:::0;48484:123::o;31833:370::-;31960:4;-1:-1:-1;;;;;;31990:40:0;;-1:-1:-1;;;31990:40:0;;:99;;-1:-1:-1;;;;;;;32041:48:0;;-1:-1:-1;;;32041:48:0;31990:99;:160;;;-1:-1:-1;;;;;;;32100:50:0;;-1:-1:-1;;;32100:50:0;31990:160;:207;;;;32161:36;32185:11;32161:23;:36::i;:::-;31976:221;;31833:370;;;;:::o;33559:94::-;33642:5;33635:12;;;;;;;-1:-1:-1;;33635:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33613:13;;33635:12;;33642:5;;33635:12;;33642:5;33635:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33559:94;:::o;35084:204::-;35152:7;35176:16;35184:7;35176;:16::i;:::-;35168:74;;;;-1:-1:-1;;;35168:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35258:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;35258:24:0;;35084:204::o;34647:379::-;34716:13;34732:24;34748:7;34732:15;:24::i;:::-;34716:40;;34777:5;-1:-1:-1;;;;;34771:11:0;:2;-1:-1:-1;;;;;34771:11:0;;;34763:58;;;;-1:-1:-1;;;34763:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34862:5;-1:-1:-1;;;;;34846:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;34846:21:0;;:62;;;;34871:37;34888:5;34895:12;:10;:12::i;:::-;34871:16;:37::i;:::-;34830:153;;;;-1:-1:-1;;;34830:153:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34992:28;35001:2;35005:7;35014:5;34992:8;:28::i;:::-;34647:379;;;:::o;48680:130::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;48765:37;;::::1;::::0;:20:::1;::::0;:37:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48680:130:::0;:::o;30394:94::-;30470:12;;30394:94;:::o;47246:31::-;;;;:::o;35934:142::-;36042:28;36052:4;36058:2;36062:7;36042:9;:28::i;47374:37::-;;;-1:-1:-1;;;;;47374:37:0;;:::o;31025:744::-;31134:7;31169:16;31179:5;31169:9;:16::i;:::-;31161:5;:24;31153:71;;;;-1:-1:-1;;;31153:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31231:22;31256:13;:11;:13::i;:::-;31231:38;;31276:19;31306:25;31356:9;31351:350;31375:14;31371:1;:18;31351:350;;;31405:31;;:::i;:::-;-1:-1:-1;31439:14:0;;;;:11;:14;;;;;;;;;31405:48;;;;;;;;;-1:-1:-1;;;;;31405:48:0;;;;;-1:-1:-1;;;31405:48:0;;;;;;;;;;;;31466:28;31462:89;;31527:14;;;-1:-1:-1;31462:89:0;31584:5;-1:-1:-1;;;;;31563:26:0;:17;-1:-1:-1;;;;;31563:26:0;;31559:135;;;31621:5;31606:11;:20;31602:59;;;-1:-1:-1;31648:1:0;-1:-1:-1;31641:8:0;;-1:-1:-1;;;31641:8:0;31602:59;31671:13;;;;;31559:135;-1:-1:-1;31391:3:0;;31351:350;;;;31707:56;;-1:-1:-1;;;31707:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31025:744;;;;;:::o;49111:89::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;49180:12:::1;::::0;;-1:-1:-1;;49164:28:0;::::1;49180:12;::::0;;::::1;49179:13;49164:28;::::0;;49111:89::o;48082:131::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;48177:28:::1;::::0;48145:21:::1;::::0;48177:10:::1;::::0;:28;::::1;;;::::0;48145:21;;48130:12:::1;48177:28:::0;48130:12;48177:28;48145:21;48177:10;:28;::::1;;;;;;;;;;;;;::::0;::::1;;;;36139:157:::0;36251:39;36268:4;36274:2;36278:7;36251:39;;;;;;;;;;;;:16;:39::i;30557:177::-;30624:7;30656:13;:11;:13::i;:::-;30648:5;:21;30640:69;;;;-1:-1:-1;;;30640:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30723:5:0;30557:177::o;47327:38::-;;;-1:-1:-1;;;;;47327:38:0;;:::o;48934:102::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;49010:18:::1;:7;49020:8:::0;;49010:18:::1;:::i;33382:118::-:0;33446:7;33469:20;33481:7;33469:11;:20::i;:::-;:25;;33382:118;-1:-1:-1;;33382:118:0:o;47007:21::-;;;;;;;;;;;;;;;-1:-1:-1;;47007:21:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32259:211::-;32323:7;-1:-1:-1;;;;;32347:19:0;;32339:75;;;;-1:-1:-1;;;32339:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32436:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32436:27:0;;32259:211::o;45899:148::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;45990:6:::1;::::0;45969:40:::1;::::0;46006:1:::1;::::0;-1:-1:-1;;;;;45990:6:0::1;::::0;45969:40:::1;::::0;46006:1;;45969:40:::1;46020:6;:19:::0;;-1:-1:-1;;;;;;46020:19:0::1;::::0;;45899:148::o;47506:41::-;;;;;;;;;;;;;;;:::o;52038:192::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;52116:13:::1;::::0;:18;52108:60:::1;;;::::0;;-1:-1:-1;;;52108:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;52210:12;52189:18;:33:::0;52038:192::o;49253:1886::-;49329:12;;;;49321:63;;;;-1:-1:-1;;;49321:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49403:19;49395:58;;;;;-1:-1:-1;;;49395:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47157:2;49472:36;;;49464:83;;;;-1:-1:-1;;;49464:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49560:18;49598:6;49593:941;49610:19;;;49593:941;;;49657:8;:21;49666:8;;49675:1;49666:11;;;;;;;;;;;;;;;;49657:21;;-1:-1:-1;49657:21:0;;;;;;;;-1:-1:-1;49657:21:0;;;;:29;;:21;:29;49653:870;;49760:12;;49797:10;;-1:-1:-1;;;;;49760:12:0;:20;49781:8;;49790:1;49781:11;;;;;;;;;;;;;49760:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49760:33:0;-1:-1:-1;;;;;49760:47:0;;49756:193;;;49856:4;49832:8;:21;49841:8;;49850:1;49841:11;;;;;;;;;;;;;49832:21;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;49883:15;;;;;;;49921:8;;49756:193;50034:17;;50095:1;;-1:-1:-1;;;;;50034:17:0;:33;50068:10;50080:8;;50089:1;50080:11;;;;;;;;;;;;;50034:58;;;;;;;;;;;;;-1:-1:-1;;;;;50034:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50034:58:0;:62;50030:208;;;50145:4;50121:8;:21;50130:8;;50139:1;50130:11;;;;;;50030:208;50336:16;;50396:1;;-1:-1:-1;;;;;50336:16:0;:32;50369:10;50381:8;;50390:1;50381:11;;;;;;;;;;;;;50336:57;;;;;;;;;;;;;-1:-1:-1;;;;;50336:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50336:57:0;:61;50332:176;;;50446:4;50422:8;:21;50431:8;;50440:1;50431:11;;;;;;;;;;;;;50422:21;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;50473:15;;;;;;;50332:176;49631:3;;49593:941;;;;50598:13;;50562:32;50580:13;50562;:11;:13::i;:::-;:17;;:32::i;:::-;:49;;50554:94;;;;;-1:-1:-1;;;50554:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50683:1;50667:13;:17;50659:50;;;;;-1:-1:-1;;;50659:50:0;;;;;;;;;;;;-1:-1:-1;;;50659:50:0;;;;;;;;;;;;;;;50722:36;50732:10;50744:13;50722:9;:36::i;:::-;50971:18;;:23;:98;;;;;51016:13;;50999;:11;:13::i;:::-;:30;:69;;;;51052:16;;51033:15;:35;;50999:69;50967:164;;;51107:12;51086:18;:33;49253:1886;;;:::o;45248:87::-;45321:6;;-1:-1:-1;;;;;45321:6:0;45248:87;:::o;33714:98::-;33799:7;33792:14;;;;;;;;-1:-1:-1;;33792:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33770:13;;33792:14;;33799:7;;33792:14;;33799:7;33792:14;;;;;;;;;;;;;;;;;;;;;;;;35352:274;35455:12;:10;:12::i;:::-;-1:-1:-1;;;;;35443:24:0;:8;-1:-1:-1;;;;;35443:24:0;;;35435:63;;;;;-1:-1:-1;;;35435:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;35552:8;35507:18;:32;35526:12;:10;:12::i;:::-;-1:-1:-1;;;;;35507:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;35507:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;35507:53:0;;;;;;;;;;;35587:12;:10;:12::i;:::-;-1:-1:-1;;;;;35572:48:0;;35611:8;35572:48;;;;;;;;;;;;;;;;;;;;35352:274;;:::o;47168:28::-;;;;:::o;36359:311::-;36496:28;36506:4;36512:2;36516:7;36496:9;:28::i;:::-;36547:48;36570:4;36576:2;36580:7;36589:5;36547:22;:48::i;:::-;36531:133;;;;-1:-1:-1;;;36531:133:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36359:311;;;;:::o;47286:32::-;;;-1:-1:-1;;;;;47286:32:0;;:::o;46959:39::-;;;;;;;;;;;;;;;-1:-1:-1;;46959:39:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33875:394;33973:13;34014:16;34022:7;34014;:16::i;:::-;33998:97;;;;-1:-1:-1;;;33998:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34104:21;34128:10;:8;:10::i;:::-;34104:34;;34183:1;34165:7;34159:21;:25;:104;;;;;;;;;;;;;;;;;34220:7;34229:18;:7;:16;:18::i;:::-;34203:45;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34203:45:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;34203:45:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34203:45:0;;;;;;;;;;;;;-1:-1:-1;;34203:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34159:104;34145:118;33875:394;-1:-1:-1;;;33875:394:0:o;47079:28::-;;;;:::o;47116:43::-;47157:2;47116:43;:::o;40774:::-;;;;:::o;47037:33::-;;;;:::o;35689:186::-;-1:-1:-1;;;;;35834:25:0;;;35811:4;35834:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35689:186::o;51215:686::-;51269:13;;:18;51261:60;;;;;-1:-1:-1;;;51261:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;51340:18;;51332:68;;;;;-1:-1:-1;;;51332:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51475:13;;51452:18;;51442:29;51475:13;51437:51;;;;;51421:13;:67;51641:18;;51663:3;;51624:36;;:12;;:16;:36::i;:::-;:42;51620:140;;;51735:13;;-1:-1:-1;;51714:12:0;:16;51704:27;51735:13;51699:49;;;;;51683:13;:65;51620:140;51811:13;;51807:87;;51862:13;;:20;;51880:1;51862:17;:20::i;:::-;51846:13;:36;51807:87;51215:686::o;47205:32::-;;;;;;:::o;46202:244::-;45479:12;:10;:12::i;:::-;-1:-1:-1;;;;;45468:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;45468:23:0;;45460:68;;;;;-1:-1:-1;;;45460:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;45460:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;46291:22:0;::::1;46283:73;;;;-1:-1:-1::0;;;46283:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46393:6;::::0;46372:38:::1;::::0;-1:-1:-1;;;;;46372:38:0;;::::1;::::0;46393:6:::1;::::0;46372:38:::1;::::0;46393:6:::1;::::0;46372:38:::1;46421:6;:17:::0;;-1:-1:-1;;;;;;46421:17:0::1;-1:-1:-1::0;;;;;46421:17:0;;;::::1;::::0;;;::::1;::::0;;46202:244::o;667:106::-;755:10;667:106;:::o;10235:150::-;-1:-1:-1;;;;;;10344:33:0;10320:4;10344:33;;;;;;;;;;;;;;10235:150::o;36909:105::-;36996:12;;-1:-1:-1;36986:22:0;36909:105::o;40596:172::-;40693:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40693:29:0;-1:-1:-1;;;;;40693:29:0;;;;;;;;;40734:28;;40693:24;;40734:28;;;;;;;40596:172;;;:::o;38961:1529::-;39058:35;;:::i;:::-;39096:20;39108:7;39096:11;:20::i;:::-;39058:58;;39125:22;39167:13;:18;;;-1:-1:-1;;;;;39151:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;39151:34:0;;:81;;;;39220:12;:10;:12::i;:::-;-1:-1:-1;;;;;39196:36:0;:20;39208:7;39196:11;:20::i;:::-;-1:-1:-1;;;;;39196:36:0;;39151:81;:142;;;-1:-1:-1;39260:18:0;;39243:50;;39280:12;:10;:12::i;39243:50::-;39125:169;;39319:17;39303:101;;;;-1:-1:-1;;;39303:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39451:4;-1:-1:-1;;;;;39429:26:0;:13;:18;;;-1:-1:-1;;;;;39429:26:0;;39413:98;;;;-1:-1:-1;;;39413:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;39526:16:0;;39518:66;;;;-1:-1:-1;;;39518:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39593:43;39615:4;39621:2;39625:7;39634:1;39593:21;:43::i;:::-;39693:49;39710:1;39714:7;39723:13;:18;;;39693:8;:49::i;:::-;-1:-1:-1;;;;;39751:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;39751:31:0;;;-1:-1:-1;;;;;39751:31:0;;;-1:-1:-1;;39751:31:0;;;;;;;39789:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;39789:29:0;;;;;;;;;;;;;39848:43;;;;;;;;;;39874:15;39848:43;;;;;;;;;;39825:20;;;:11;:20;;;;;;:66;;;;;;-1:-1:-1;;;;;;39825:66:0;;;;;;;-1:-1:-1;;;;39825:66:0;-1:-1:-1;;;39825:66:0;;;;;;;;;;;;;;40141:11;;;40163:24;;;;;:29;40141:11;;40163:29;40159:236;;40221:20;40229:11;40221:7;:20::i;:::-;40217:171;;;40281:97;;;;;;;;40308:18;;-1:-1:-1;;;;;40281:97:0;;;;;;40339:28;;;;40281:97;;;;;;;;;;-1:-1:-1;40254:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;40254:124:0;;;;;;;;;-1:-1:-1;;;;40254:124:0;-1:-1:-1;;;40254:124:0;;;;;;;;;;;;;;40217:171;40427:7;40423:2;-1:-1:-1;;;;;40408:27:0;40417:4;-1:-1:-1;;;;;40408:27:0;;;;;;;;;;;40442:42;40463:4;40469:2;40473:7;40482:1;40442:20;:42::i;:::-;38961:1529;;;;;;:::o;32722:606::-;32798:21;;:::i;:::-;32839:16;32847:7;32839;:16::i;:::-;32831:71;;;;-1:-1:-1;;;32831:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32911:26;32959:12;32948:7;:23;32944:93;;-1:-1:-1;33028:1:0;33013:12;33003:22;;:26;32944:93;33065:7;33045:212;33082:18;33074:4;:26;33045:212;;33119:31;;:::i;:::-;-1:-1:-1;33153:17:0;;;;:11;:17;;;;;;;;;33119:51;;;;;;;;;-1:-1:-1;;;;;33119:51:0;;;;;-1:-1:-1;;;33119:51:0;;;;;;;;;;;;33183:28;33179:71;;33231:9;-1:-1:-1;33224:16:0;;-1:-1:-1;;33224:16:0;33179:71;-1:-1:-1;;;33102:6:0;33045:212;;;;33265:57;;-1:-1:-1;;;33265:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13797:179;13855:7;13887:5;;;13911:6;;;;13903:46;;;;;-1:-1:-1;;;13903:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;37020:98;37085:27;37095:2;37099:8;37085:27;;;;;;;;;;;;:9;:27::i;42311:690::-;42448:4;42465:15;:2;-1:-1:-1;;;;;42465:13:0;;:15::i;:::-;42461:535;;;42520:2;-1:-1:-1;;;;;42504:36:0;;42541:12;:10;:12::i;:::-;42555:4;42561:7;42570:5;42504:72;;;;;;;;;;;;;-1:-1:-1;;;;;42504:72:0;;;;;;-1:-1:-1;;;;;42504:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42504:72:0;;;42491:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42735:13:0;;42731:215;;42768:61;;-1:-1:-1;;;42768:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42731:215;42914:6;42908:13;42899:6;42895:2;42891:15;42884:38;42491:464;-1:-1:-1;;;;;;42626:55:0;-1:-1:-1;;;42626:55:0;;-1:-1:-1;42619:62:0;;42461:535;-1:-1:-1;42984:4:0;42461:535;42311:690;;;;;;:::o;48818:108::-;48911:7;48904:14;;;;;;;;-1:-1:-1;;48904:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48878:13;;48904:14;;48911:7;;48904:14;;48911:7;48904:14;;;;;;;;;;;;;;;;;;;;;;;;26741:746;26797:13;27018:10;27014:53;;-1:-1:-1;27045:10:0;;;;;;;;;;;;-1:-1:-1;;;27045:10:0;;;;;;27014:53;27092:5;27077:12;27133:78;27140:9;;27133:78;;27166:8;;27197:2;27189:10;;;;27133:78;;;27221:19;27253:6;27243:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27243:17:0;-1:-1:-1;27315:5:0;;-1:-1:-1;27221:39:0;-1:-1:-1;;;27287:10:0;;27331:117;27338:9;;27331:117;;27407:2;27400:4;:9;27395:2;:14;27382:29;;27364:6;27371:7;;;;;;;27364:15;;;;;;;;;;;:47;-1:-1:-1;;;;;27364:47:0;;;;;;;;-1:-1:-1;27434:2:0;27426:10;;;;27331:117;;;-1:-1:-1;27472:6:0;26741:746;-1:-1:-1;;;;26741:746:0:o;14259:158::-;14317:7;14350:1;14345;:6;;14337:49;;;;;-1:-1:-1;;;14337:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14404:5:0;;;14259:158::o;37457:1272::-;37585:12;;-1:-1:-1;;;;;37612:16:0;;37604:62;;;;-1:-1:-1;;;37604:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37803:21;37811:12;37803:7;:21::i;:::-;37802:22;37794:64;;;;;-1:-1:-1;;;37794:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;37885:12;37873:8;:24;;37865:71;;;;-1:-1:-1;;;37865:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37945:61;37975:1;37979:2;37983:12;37997:8;37945:21;:61::i;:::-;38015:30;;:::i;:::-;38048:12;:16;38061:2;-1:-1:-1;;;;;38048:16:0;-1:-1:-1;;;;;38048:16:0;;;;;;;;;;;;38015:49;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38015:49:0;-1:-1:-1;;;;;38015:49:0;-1:-1:-1;;;;;38015:49:0;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38015:49:0;-1:-1:-1;;;;;38015:49:0;-1:-1:-1;;;;;38015:49:0;;;;;;;38090:119;;;;;;;;38140:8;38110:11;:19;;;:39;-1:-1:-1;;;;;38090:119:0;;;;;38193:8;38158:11;:24;;;:44;-1:-1:-1;;;;;38090:119:0;;;;38071:12;:16;38084:2;-1:-1:-1;;;;;38071:16:0;-1:-1:-1;;;;;38071:16:0;;;;;;;;;;;;:138;;;;;;;;;;;;;-1:-1:-1;;;;;38071:138:0;;;;;-1:-1:-1;;;;;38071:138:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38071:138:0;;;;;-1:-1:-1;;;;;38071:138:0;;;;;;;;;38244:43;;;;;;;;38259:2;-1:-1:-1;;;;;38244:43:0;;;;;38270:15;38244:43;;;;;38216:11;:25;38228:12;38216:25;;;;;;;;;;;:71;;;;;;;;;;;;;-1:-1:-1;;;;;38216:71:0;;;;;-1:-1:-1;;;;;38216:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38296:20;38319:12;38296:35;;38345:9;38340:281;38364:8;38360:1;:12;38340:281;;;38393:38;;38418:12;;-1:-1:-1;;;;;38393:38:0;;;38410:1;;38393:38;;38410:1;;38393:38;38458:59;38489:1;38493:2;38497:12;38511:5;38458:22;:59::i;:::-;38440:150;;;;-1:-1:-1;;;38440:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38599:14;;;;;38374:3;38340:281;;;-1:-1:-1;38629:12:0;:27;;;38663:60;38692:1;38696:2;38700:12;38714:8;38663:20;:60::i;19238:422::-;19605:20;19644:8;;;19238:422::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

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