ERC-721
Overview
Max Total Supply
231 vlSBEARS
Holders
23
Market
Fully Diluted Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
0 vlSBEARSLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
SpookyBearsReceipt
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2022-01-06 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/bases/WhitelistedCaller.sol pragma solidity ^0.8.0; /// @title WhitelistedCaller base contract. /// @dev Enables a contract's function to only be called from a whitelisted address. contract WhitelistedCaller is Ownable { /// @dev The whitelisted address for minting / burning. address internal _whitelistedCallerAddress; /// @dev Function modifier that ensures a fucntion is only called by the SpookyBears Locker contract. modifier onlyOwnerOrWhitelisted() { require( _msgSender() == _whitelistedCallerAddress || owner() == _msgSender(), "Error: only callable by the Owner or Whitelisted address." ); _; } /// @dev See {ISpookyBearsReceipt - setWhitelistedCallerAddress} function setWhitelistedCallerAddress(address whitelistedCallerAddress) public onlyOwner { _whitelistedCallerAddress = whitelistedCallerAddress; } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: contracts/interfaces/ISpookyBearsReceipt.sol pragma solidity ^0.8.0; /// @title Interface for SpookyBearsReceipts. interface ISpookyBearsReceipt is IERC721, IERC721Enumerable { /// @dev Mints a receipt. /// @param userAddress the address to mint for. function mint(address userAddress) external returns (uint256); /// @dev Burns a receipt. /// @param tokenId the SpookyBearsReceipt token ID to burn. function burn(uint256 tokenId) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/tokens/SpookyBearsReceipt.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// @title ERC721 for SpookyBearsReceipt. /// @dev Used for provide receipts for staked / locked SpookyBears. /// @dev Used ERC721 over ERC20 to take advantage of the owner functionalities of OpenZeppelin's ERC721Enumerable. /// Contract Address: contract SpookyBearsReceipt is ERC721Enumerable, ERC721Burnable, ISpookyBearsReceipt, WhitelistedCaller { using Counters for Counters.Counter; /// @dev The current token ID used for minting. Counters.Counter public currentTokenId; /// @dev The contructor for RitualStakedSpookyBears. /// @param tokenName the token name (RitualStakedSpookyBears, VoteLockedSpookyBears, etc).. /// @param tokenSymbol the token symbol (rsSBEARS, vlSBEARS, etc). /// @param whitelistedCallerAddress the whitelisted caller address. constructor( string memory tokenName, string memory tokenSymbol, address whitelistedCallerAddress ) ERC721(tokenName, tokenSymbol) { _whitelistedCallerAddress = whitelistedCallerAddress; } /// @dev See {ISpookyBearsReceipt - mint} function mint(address userAddress) public override onlyOwnerOrWhitelisted returns (uint256) { uint256 tokenId = currentTokenId.current(); _mint(userAddress, tokenId); currentTokenId.increment(); return tokenId; } /// @dev See {ISpookyBearsReceipt - burn} function burn(uint256 tokenId) public override(ISpookyBearsReceipt, ERC721Burnable) onlyOwnerOrWhitelisted { ERC721Burnable.burn(tokenId); } /// @dev Required inheritance override for supportsInterface. function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable, IERC165) returns (bool) { return super.supportsInterface(interfaceId); } /// @dev Required inheritance override for _beforeTokenTransfer. function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"address","name":"whitelistedCallerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"whitelistedCallerAddress","type":"address"}],"name":"setWhitelistedCallerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200210f3803806200210f833981016040819052620000349162000250565b8251839083906200004d906000906020850190620000ff565b50805162000063906001906020840190620000ff565b505050620000806200007a620000a960201b60201c565b620000ad565b600b80546001600160a01b0319166001600160a01b0392909216919091179055506200032c9050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010d90620002d9565b90600052602060002090601f0160209004810192826200013157600085556200017c565b82601f106200014c57805160ff19168380011785556200017c565b828001600101855582156200017c579182015b828111156200017c5782518255916020019190600101906200015f565b506200018a9291506200018e565b5090565b5b808211156200018a57600081556001016200018f565b600082601f830112620001b6578081fd5b81516001600160401b0380821115620001d357620001d362000316565b6040516020601f8401601f1916820181018381118382101715620001fb57620001fb62000316565b604052838252858401810187101562000212578485fd5b8492505b8383101562000235578583018101518284018201529182019162000216565b838311156200024657848185840101525b5095945050505050565b60008060006060848603121562000265578283fd5b83516001600160401b03808211156200027c578485fd5b6200028a87838801620001a5565b94506020860151915080821115620002a0578384fd5b50620002af86828701620001a5565b604086015190935090506001600160a01b0381168114620002ce578182fd5b809150509250925092565b600281046001821680620002ee57607f821691505b602082108114156200031057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611dd3806200033c6000396000f3fe608060405234801561001057600080fd5b506004361061014c5760003560e01c80636352211e116100c357806395d89b411161007c57806395d89b411461029c578063a22cb465146102a4578063b88d4fde146102b7578063c87b56dd146102ca578063e985e9c5146102dd578063f2fde38b146102f05761014c565b80636352211e146102405780636a6278421461025357806370a0823114610266578063715018a6146102795780638da5cb5b146102815780638de56e64146102895761014c565b806318160ddd1161011557806318160ddd146101d957806323b872dd146101e15780632f745c59146101f457806342842e0e1461020757806342966c681461021a5780634f6ccce71461022d5761014c565b80629a9b7b1461015157806301ffc9a71461016f57806306fdde031461018f578063081812fc146101a4578063095ea7b3146101c4575b600080fd5b610159610303565b6040516101669190611c63565b60405180910390f35b61018261017d36600461159f565b610309565b604051610166919061169b565b61019761031c565b60405161016691906116a6565b6101b76101b23660046115d7565b6103ae565b604051610166919061164a565b6101d76101d2366004611576565b6103fa565b005b610159610492565b6101d76101ef366004611435565b610498565b610159610202366004611576565b6104d0565b6101d7610215366004611435565b610522565b6101d76102283660046115d7565b61053d565b61015961023b3660046115d7565b6105ad565b6101b761024e3660046115d7565b610608565b6101596102613660046113e9565b61063d565b6101596102743660046113e9565b6106c6565b6101d761070a565b6101b7610755565b6101d76102973660046113e9565b610764565b6101976107c5565b6101d76102b236600461153c565b6107d4565b6101d76102c5366004611470565b6107ea565b6101976102d83660046115d7565b610829565b6101826102eb366004611403565b6108ac565b6101d76102fe3660046113e9565b6108da565b600c5481565b600061031482610948565b90505b919050565b60606000805461032b90611cdb565b80601f016020809104026020016040519081016040528092919081815260200182805461035790611cdb565b80156103a45780601f10610379576101008083540402835291602001916103a4565b820191906000526020600020905b81548152906001019060200180831161038757829003601f168201915b5050505050905090565b60006103b98261096d565b6103de5760405162461bcd60e51b81526004016103d5906119bf565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061040582610608565b9050806001600160a01b0316836001600160a01b031614156104395760405162461bcd60e51b81526004016103d590611ad8565b806001600160a01b031661044b61098a565b6001600160a01b031614806104675750610467816102eb61098a565b6104835760405162461bcd60e51b81526004016103d59061189a565b61048d838361098e565b505050565b60085490565b6104a96104a361098a565b826109fc565b6104c55760405162461bcd60e51b81526004016103d590611b19565b61048d838383610a81565b60006104db836106c6565b82106104f95760405162461bcd60e51b81526004016103d5906116b9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61048d838383604051806020016040528060008152506107ea565b600b546001600160a01b031661055161098a565b6001600160a01b03161480610585575061056961098a565b6001600160a01b031661057a610755565b6001600160a01b0316145b6105a15760405162461bcd60e51b81526004016103d590611c06565b6105aa81610bae565b50565b60006105b7610492565b82106105d55760405162461bcd60e51b81526004016103d590611b6a565b600882815481106105f657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103145760405162461bcd60e51b81526004016103d590611941565b600b546000906001600160a01b031661065461098a565b6001600160a01b03161480610688575061066c61098a565b6001600160a01b031661067d610755565b6001600160a01b0316145b6106a45760405162461bcd60e51b81526004016103d590611c06565b60006106b0600c610bde565b90506106bc8382610be2565b610314600c610cc1565b60006001600160a01b0382166106ee5760405162461bcd60e51b81526004016103d5906118f7565b506001600160a01b031660009081526003602052604090205490565b61071261098a565b6001600160a01b0316610723610755565b6001600160a01b0316146107495760405162461bcd60e51b81526004016103d590611a0b565b6107536000610cca565b565b600a546001600160a01b031690565b61076c61098a565b6001600160a01b031661077d610755565b6001600160a01b0316146107a35760405162461bcd60e51b81526004016103d590611a0b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461032b90611cdb565b6107e66107df61098a565b8383610d1c565b5050565b6107fb6107f561098a565b836109fc565b6108175760405162461bcd60e51b81526004016103d590611b19565b61082384848484610dbf565b50505050565b60606108348261096d565b6108505760405162461bcd60e51b81526004016103d590611a89565b600061085a610df2565b9050600081511161087a57604051806020016040528060008152506108a5565b8061088484610e04565b60405160200161089592919061161b565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6108e261098a565b6001600160a01b03166108f3610755565b6001600160a01b0316146109195760405162461bcd60e51b81526004016103d590611a0b565b6001600160a01b03811661093f5760405162461bcd60e51b81526004016103d590611756565b6105aa81610cca565b60006001600160e01b0319821663780e9d6360e01b1480610314575061031482610f1f565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906109c382610608565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a078261096d565b610a235760405162461bcd60e51b81526004016103d59061184e565b6000610a2e83610608565b9050806001600160a01b0316846001600160a01b03161480610a695750836001600160a01b0316610a5e846103ae565b6001600160a01b0316145b80610a795750610a7981856108ac565b949350505050565b826001600160a01b0316610a9482610608565b6001600160a01b031614610aba5760405162461bcd60e51b81526004016103d590611a40565b6001600160a01b038216610ae05760405162461bcd60e51b81526004016103d5906117d3565b610aeb838383610f5f565b610af660008261098e565b6001600160a01b0383166000908152600360205260408120805460019290610b1f908490611c98565b90915550506001600160a01b0382166000908152600360205260408120805460019290610b4d908490611c6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bb96104a361098a565b610bd55760405162461bcd60e51b81526004016103d590611bb6565b6105aa81610f6a565b5490565b6001600160a01b038216610c085760405162461bcd60e51b81526004016103d59061198a565b610c118161096d565b15610c2e5760405162461bcd60e51b81526004016103d59061179c565b610c3a60008383610f5f565b6001600160a01b0382166000908152600360205260408120805460019290610c63908490611c6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610d4e5760405162461bcd60e51b81526004016103d590611817565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190610db290859061169b565b60405180910390a3505050565b610dca848484610a81565b610dd684848484611011565b6108235760405162461bcd60e51b81526004016103d590611704565b60408051602081019091526000815290565b606081610e2957506040805180820190915260018152600360fc1b6020820152610317565b8160005b8115610e535780610e3d81611d16565b9150610e4c9050600a83611c84565b9150610e2d565b60008167ffffffffffffffff811115610e7c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610ea6576020820181803683370190505b5090505b8415610a7957610ebb600183611c98565b9150610ec8600a86611d31565b610ed3906030611c6c565b60f81b818381518110610ef657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610f18600a86611c84565b9450610eaa565b60006001600160e01b031982166380ac58cd60e01b1480610f5057506001600160e01b03198216635b5e139f60e01b145b8061031457506103148261112c565b61048d838383611145565b6000610f7582610608565b9050610f8381600084610f5f565b610f8e60008361098e565b6001600160a01b0381166000908152600360205260408120805460019290610fb7908490611c98565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000611025846001600160a01b03166111ce565b1561112157836001600160a01b031663150b7a0261104161098a565b8786866040518563ffffffff1660e01b8152600401611063949392919061165e565b602060405180830381600087803b15801561107d57600080fd5b505af19250505080156110ad575060408051601f3d908101601f191682019092526110aa918101906115bb565b60015b611107573d8080156110db576040519150601f19603f3d011682016040523d82523d6000602084013e6110e0565b606091505b5080516110ff5760405162461bcd60e51b81526004016103d590611704565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a79565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61115083838361048d565b6001600160a01b03831661116c57611167816111d4565b61118f565b816001600160a01b0316836001600160a01b03161461118f5761118f8382611218565b6001600160a01b0382166111ab576111a6816112b5565b61048d565b826001600160a01b0316826001600160a01b03161461048d5761048d828261138e565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611225846106c6565b61122f9190611c98565b600083815260076020526040902054909150808214611282576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906112c790600190611c98565b600083815260096020526040812054600880549394509092849081106112fd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061132c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061137257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611399836106c6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b038116811461031757600080fd5b6000602082840312156113fa578081fd5b6108a5826113d2565b60008060408385031215611415578081fd5b61141e836113d2565b915061142c602084016113d2565b90509250929050565b600080600060608486031215611449578081fd5b611452846113d2565b9250611460602085016113d2565b9150604084013590509250925092565b60008060008060808587031215611485578081fd5b61148e856113d2565b9350602061149d8187016113d2565b935060408601359250606086013567ffffffffffffffff808211156114c0578384fd5b818801915088601f8301126114d3578384fd5b8135818111156114e5576114e5611d71565b604051601f8201601f191681018501838111828210171561150857611508611d71565b60405281815283820185018b101561151e578586fd5b81858501868301379081019093019390935250939692955090935050565b6000806040838503121561154e578182fd5b611557836113d2565b91506020830135801515811461156b578182fd5b809150509250929050565b60008060408385031215611588578182fd5b611591836113d2565b946020939093013593505050565b6000602082840312156115b0578081fd5b81356108a581611d87565b6000602082840312156115cc578081fd5b81516108a581611d87565b6000602082840312156115e8578081fd5b5035919050565b60008151808452611607816020860160208601611caf565b601f01601f19169290920160200192915050565b6000835161162d818460208801611caf565b835190830190611641818360208801611caf565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611691908301846115ef565b9695505050505050565b901515815260200190565b6000602082526108a560208301846115ef565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60208082526039908201527f4572726f723a206f6e6c792063616c6c61626c6520627920746865204f776e6560408201527f72206f722057686974656c697374656420616464726573732e00000000000000606082015260800190565b90815260200190565b60008219821115611c7f57611c7f611d45565b500190565b600082611c9357611c93611d5b565b500490565b600082821015611caa57611caa611d45565b500390565b60005b83811015611cca578181015183820152602001611cb2565b838111156108235750506000910152565b600281046001821680611cef57607f821691505b60208210811415611d1057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d2a57611d2a611d45565b5060010190565b600082611d4057611d40611d5b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146105aa57600080fdfea2646970667358221220d6d05a89e9958ed838f96eb675242b97bf7568971ab69ed168d19098416683a464736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000033158e92b8c0f2051d759fc03af75fca7cbeca840000000000000000000000000000000000000000000000000000000000000015566f74654c6f636b656453706f6f6b79426561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000008766c534245415253000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014c5760003560e01c80636352211e116100c357806395d89b411161007c57806395d89b411461029c578063a22cb465146102a4578063b88d4fde146102b7578063c87b56dd146102ca578063e985e9c5146102dd578063f2fde38b146102f05761014c565b80636352211e146102405780636a6278421461025357806370a0823114610266578063715018a6146102795780638da5cb5b146102815780638de56e64146102895761014c565b806318160ddd1161011557806318160ddd146101d957806323b872dd146101e15780632f745c59146101f457806342842e0e1461020757806342966c681461021a5780634f6ccce71461022d5761014c565b80629a9b7b1461015157806301ffc9a71461016f57806306fdde031461018f578063081812fc146101a4578063095ea7b3146101c4575b600080fd5b610159610303565b6040516101669190611c63565b60405180910390f35b61018261017d36600461159f565b610309565b604051610166919061169b565b61019761031c565b60405161016691906116a6565b6101b76101b23660046115d7565b6103ae565b604051610166919061164a565b6101d76101d2366004611576565b6103fa565b005b610159610492565b6101d76101ef366004611435565b610498565b610159610202366004611576565b6104d0565b6101d7610215366004611435565b610522565b6101d76102283660046115d7565b61053d565b61015961023b3660046115d7565b6105ad565b6101b761024e3660046115d7565b610608565b6101596102613660046113e9565b61063d565b6101596102743660046113e9565b6106c6565b6101d761070a565b6101b7610755565b6101d76102973660046113e9565b610764565b6101976107c5565b6101d76102b236600461153c565b6107d4565b6101d76102c5366004611470565b6107ea565b6101976102d83660046115d7565b610829565b6101826102eb366004611403565b6108ac565b6101d76102fe3660046113e9565b6108da565b600c5481565b600061031482610948565b90505b919050565b60606000805461032b90611cdb565b80601f016020809104026020016040519081016040528092919081815260200182805461035790611cdb565b80156103a45780601f10610379576101008083540402835291602001916103a4565b820191906000526020600020905b81548152906001019060200180831161038757829003601f168201915b5050505050905090565b60006103b98261096d565b6103de5760405162461bcd60e51b81526004016103d5906119bf565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061040582610608565b9050806001600160a01b0316836001600160a01b031614156104395760405162461bcd60e51b81526004016103d590611ad8565b806001600160a01b031661044b61098a565b6001600160a01b031614806104675750610467816102eb61098a565b6104835760405162461bcd60e51b81526004016103d59061189a565b61048d838361098e565b505050565b60085490565b6104a96104a361098a565b826109fc565b6104c55760405162461bcd60e51b81526004016103d590611b19565b61048d838383610a81565b60006104db836106c6565b82106104f95760405162461bcd60e51b81526004016103d5906116b9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61048d838383604051806020016040528060008152506107ea565b600b546001600160a01b031661055161098a565b6001600160a01b03161480610585575061056961098a565b6001600160a01b031661057a610755565b6001600160a01b0316145b6105a15760405162461bcd60e51b81526004016103d590611c06565b6105aa81610bae565b50565b60006105b7610492565b82106105d55760405162461bcd60e51b81526004016103d590611b6a565b600882815481106105f657634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806103145760405162461bcd60e51b81526004016103d590611941565b600b546000906001600160a01b031661065461098a565b6001600160a01b03161480610688575061066c61098a565b6001600160a01b031661067d610755565b6001600160a01b0316145b6106a45760405162461bcd60e51b81526004016103d590611c06565b60006106b0600c610bde565b90506106bc8382610be2565b610314600c610cc1565b60006001600160a01b0382166106ee5760405162461bcd60e51b81526004016103d5906118f7565b506001600160a01b031660009081526003602052604090205490565b61071261098a565b6001600160a01b0316610723610755565b6001600160a01b0316146107495760405162461bcd60e51b81526004016103d590611a0b565b6107536000610cca565b565b600a546001600160a01b031690565b61076c61098a565b6001600160a01b031661077d610755565b6001600160a01b0316146107a35760405162461bcd60e51b81526004016103d590611a0b565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b60606001805461032b90611cdb565b6107e66107df61098a565b8383610d1c565b5050565b6107fb6107f561098a565b836109fc565b6108175760405162461bcd60e51b81526004016103d590611b19565b61082384848484610dbf565b50505050565b60606108348261096d565b6108505760405162461bcd60e51b81526004016103d590611a89565b600061085a610df2565b9050600081511161087a57604051806020016040528060008152506108a5565b8061088484610e04565b60405160200161089592919061161b565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6108e261098a565b6001600160a01b03166108f3610755565b6001600160a01b0316146109195760405162461bcd60e51b81526004016103d590611a0b565b6001600160a01b03811661093f5760405162461bcd60e51b81526004016103d590611756565b6105aa81610cca565b60006001600160e01b0319821663780e9d6360e01b1480610314575061031482610f1f565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906109c382610608565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a078261096d565b610a235760405162461bcd60e51b81526004016103d59061184e565b6000610a2e83610608565b9050806001600160a01b0316846001600160a01b03161480610a695750836001600160a01b0316610a5e846103ae565b6001600160a01b0316145b80610a795750610a7981856108ac565b949350505050565b826001600160a01b0316610a9482610608565b6001600160a01b031614610aba5760405162461bcd60e51b81526004016103d590611a40565b6001600160a01b038216610ae05760405162461bcd60e51b81526004016103d5906117d3565b610aeb838383610f5f565b610af660008261098e565b6001600160a01b0383166000908152600360205260408120805460019290610b1f908490611c98565b90915550506001600160a01b0382166000908152600360205260408120805460019290610b4d908490611c6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610bb96104a361098a565b610bd55760405162461bcd60e51b81526004016103d590611bb6565b6105aa81610f6a565b5490565b6001600160a01b038216610c085760405162461bcd60e51b81526004016103d59061198a565b610c118161096d565b15610c2e5760405162461bcd60e51b81526004016103d59061179c565b610c3a60008383610f5f565b6001600160a01b0382166000908152600360205260408120805460019290610c63908490611c6c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80546001019055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610d4e5760405162461bcd60e51b81526004016103d590611817565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190610db290859061169b565b60405180910390a3505050565b610dca848484610a81565b610dd684848484611011565b6108235760405162461bcd60e51b81526004016103d590611704565b60408051602081019091526000815290565b606081610e2957506040805180820190915260018152600360fc1b6020820152610317565b8160005b8115610e535780610e3d81611d16565b9150610e4c9050600a83611c84565b9150610e2d565b60008167ffffffffffffffff811115610e7c57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610ea6576020820181803683370190505b5090505b8415610a7957610ebb600183611c98565b9150610ec8600a86611d31565b610ed3906030611c6c565b60f81b818381518110610ef657634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350610f18600a86611c84565b9450610eaa565b60006001600160e01b031982166380ac58cd60e01b1480610f5057506001600160e01b03198216635b5e139f60e01b145b8061031457506103148261112c565b61048d838383611145565b6000610f7582610608565b9050610f8381600084610f5f565b610f8e60008361098e565b6001600160a01b0381166000908152600360205260408120805460019290610fb7908490611c98565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000611025846001600160a01b03166111ce565b1561112157836001600160a01b031663150b7a0261104161098a565b8786866040518563ffffffff1660e01b8152600401611063949392919061165e565b602060405180830381600087803b15801561107d57600080fd5b505af19250505080156110ad575060408051601f3d908101601f191682019092526110aa918101906115bb565b60015b611107573d8080156110db576040519150601f19603f3d011682016040523d82523d6000602084013e6110e0565b606091505b5080516110ff5760405162461bcd60e51b81526004016103d590611704565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610a79565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61115083838361048d565b6001600160a01b03831661116c57611167816111d4565b61118f565b816001600160a01b0316836001600160a01b03161461118f5761118f8382611218565b6001600160a01b0382166111ab576111a6816112b5565b61048d565b826001600160a01b0316826001600160a01b03161461048d5761048d828261138e565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611225846106c6565b61122f9190611c98565b600083815260076020526040902054909150808214611282576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906112c790600190611c98565b600083815260096020526040812054600880549394509092849081106112fd57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061132c57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061137257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611399836106c6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b80356001600160a01b038116811461031757600080fd5b6000602082840312156113fa578081fd5b6108a5826113d2565b60008060408385031215611415578081fd5b61141e836113d2565b915061142c602084016113d2565b90509250929050565b600080600060608486031215611449578081fd5b611452846113d2565b9250611460602085016113d2565b9150604084013590509250925092565b60008060008060808587031215611485578081fd5b61148e856113d2565b9350602061149d8187016113d2565b935060408601359250606086013567ffffffffffffffff808211156114c0578384fd5b818801915088601f8301126114d3578384fd5b8135818111156114e5576114e5611d71565b604051601f8201601f191681018501838111828210171561150857611508611d71565b60405281815283820185018b101561151e578586fd5b81858501868301379081019093019390935250939692955090935050565b6000806040838503121561154e578182fd5b611557836113d2565b91506020830135801515811461156b578182fd5b809150509250929050565b60008060408385031215611588578182fd5b611591836113d2565b946020939093013593505050565b6000602082840312156115b0578081fd5b81356108a581611d87565b6000602082840312156115cc578081fd5b81516108a581611d87565b6000602082840312156115e8578081fd5b5035919050565b60008151808452611607816020860160208601611caf565b601f01601f19169290920160200192915050565b6000835161162d818460208801611caf565b835190830190611641818360208801611caf565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611691908301846115ef565b9695505050505050565b901515815260200190565b6000602082526108a560208301846115ef565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526030908201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760408201526f1b995c881b9bdc88185c1c1c9bdd995960821b606082015260800190565b60208082526039908201527f4572726f723a206f6e6c792063616c6c61626c6520627920746865204f776e6560408201527f72206f722057686974656c697374656420616464726573732e00000000000000606082015260800190565b90815260200190565b60008219821115611c7f57611c7f611d45565b500190565b600082611c9357611c93611d5b565b500490565b600082821015611caa57611caa611d45565b500390565b60005b83811015611cca578181015183820152602001611cb2565b838111156108235750506000910152565b600281046001821680611cef57607f821691505b60208210811415611d1057634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611d2a57611d2a611d45565b5060010190565b600082611d4057611d40611d5b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146105aa57600080fdfea2646970667358221220d6d05a89e9958ed838f96eb675242b97bf7568971ab69ed168d19098416683a464736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000033158e92b8c0f2051d759fc03af75fca7cbeca840000000000000000000000000000000000000000000000000000000000000015566f74654c6f636b656453706f6f6b79426561727300000000000000000000000000000000000000000000000000000000000000000000000000000000000008766c534245415253000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : tokenName (string): VoteLockedSpookyBears
Arg [1] : tokenSymbol (string): vlSBEARS
Arg [2] : whitelistedCallerAddress (address): 0x33158e92B8c0f2051d759Fc03AF75Fca7cBeca84
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000033158e92b8c0f2051d759fc03af75fca7cbeca84
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [4] : 566f74654c6f636b656453706f6f6b7942656172730000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 766c534245415253000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
48540:2019:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48769:38;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50017:238;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28722:100::-;;;:::i;:::-;;;;;;;:::i;30281:221::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;29804:411::-;;;;;;:::i;:::-;;:::i;:::-;;42656:113;;;:::i;31031:339::-;;;;;;:::i;:::-;;:::i;42324:256::-;;;;;;:::i;:::-;;:::i;31441:185::-;;;;;;:::i;:::-;;:::i;49756:186::-;;;;;;:::i;:::-;;:::i;42846:233::-;;;;;;:::i;:::-;;:::i;28416:239::-;;;;;;:::i;:::-;;:::i;49405:296::-;;;;;;:::i;:::-;;:::i;28146:208::-;;;;;;:::i;:::-;;:::i;6195:103::-;;;:::i;5544:87::-;;;:::i;7821:182::-;;;;;;:::i;:::-;;:::i;28891:104::-;;;:::i;30574:155::-;;;;;;:::i;:::-;;:::i;31697:328::-;;;;;;:::i;:::-;;:::i;29066:334::-;;;;;;:::i;:::-;;:::i;30800:164::-;;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;:::i;:::-;;:::i;48769:38::-;;;;:::o;50017:238::-;50182:4;50211:36;50235:11;50211:23;:36::i;:::-;50204:43;;50017:238;;;;:::o;28722:100::-;28776:13;28809:5;28802:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28722:100;:::o;30281:221::-;30357:7;30385:16;30393:7;30385;:16::i;:::-;30377:73;;;;-1:-1:-1;;;30377:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;30470:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30470:24:0;;30281:221::o;29804:411::-;29885:13;29901:23;29916:7;29901:14;:23::i;:::-;29885:39;;29949:5;-1:-1:-1;;;;;29943:11:0;:2;-1:-1:-1;;;;;29943:11:0;;;29935:57;;;;-1:-1:-1;;;29935:57:0;;;;;;;:::i;:::-;30043:5;-1:-1:-1;;;;;30027:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30027:21:0;;:62;;;;30052:37;30069:5;30076:12;:10;:12::i;30052:37::-;30005:168;;;;-1:-1:-1;;;30005:168:0;;;;;;;:::i;:::-;30186:21;30195:2;30199:7;30186:8;:21::i;:::-;29804:411;;;:::o;42656:113::-;42744:10;:17;42656:113;:::o;31031:339::-;31226:41;31245:12;:10;:12::i;:::-;31259:7;31226:18;:41::i;:::-;31218:103;;;;-1:-1:-1;;;31218:103:0;;;;;;;:::i;:::-;31334:28;31344:4;31350:2;31354:7;31334:9;:28::i;42324:256::-;42421:7;42457:23;42474:5;42457:16;:23::i;:::-;42449:5;:31;42441:87;;;;-1:-1:-1;;;42441:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;42546:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42324:256::o;31441:185::-;31579:39;31596:4;31602:2;31606:7;31579:39;;;;;;;;;;;;:16;:39::i;49756:186::-;7569:25;;-1:-1:-1;;;;;7569:25:0;7553:12;:10;:12::i;:::-;-1:-1:-1;;;;;7553:41:0;;:85;;;;7626:12;:10;:12::i;:::-;-1:-1:-1;;;;;7615:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7615:23:0;;7553:85;7531:192;;;;-1:-1:-1;;;7531:192:0;;;;;;;:::i;:::-;49906:28:::1;49926:7;49906:19;:28::i;:::-;49756:186:::0;:::o;42846:233::-;42921:7;42957:30;:28;:30::i;:::-;42949:5;:38;42941:95;;;;-1:-1:-1;;;42941:95:0;;;;;;;:::i;:::-;43054:10;43065:5;43054:17;;;;;;-1:-1:-1;;;43054:17:0;;;;;;;;;;;;;;;;;43047:24;;42846:233;;;:::o;28416:239::-;28488:7;28524:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28524:16:0;28559:19;28551:73;;;;-1:-1:-1;;;28551:73:0;;;;;;;:::i;49405:296::-;7569:25;;49524:7;;-1:-1:-1;;;;;7569:25:0;7553:12;:10;:12::i;:::-;-1:-1:-1;;;;;7553:41:0;;:85;;;;7626:12;:10;:12::i;:::-;-1:-1:-1;;;;;7615:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;7615:23:0;;7553:85;7531:192;;;;-1:-1:-1;;;7531:192:0;;;;;;;:::i;:::-;49549:15:::1;49567:24;:14;:22;:24::i;:::-;49549:42;;49602:27;49608:11;49621:7;49602:5;:27::i;:::-;49640:26;:14;:24;:26::i;28146:208::-:0;28218:7;-1:-1:-1;;;;;28246:19:0;;28238:74;;;;-1:-1:-1;;;28238:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;28330:16:0;;;;;:9;:16;;;;;;;28146:208::o;6195:103::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;5544:87::-;5617:6;;-1:-1:-1;;;;;5617:6:0;5544:87;:::o;7821:182::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;7943:25:::1;:52:::0;;-1:-1:-1;;;;;;7943:52:0::1;-1:-1:-1::0;;;;;7943:52:0;;;::::1;::::0;;;::::1;::::0;;7821:182::o;28891:104::-;28947:13;28980:7;28973:14;;;;;:::i;30574:155::-;30669:52;30688:12;:10;:12::i;:::-;30702:8;30712;30669:18;:52::i;:::-;30574:155;;:::o;31697:328::-;31872:41;31891:12;:10;:12::i;:::-;31905:7;31872:18;:41::i;:::-;31864:103;;;;-1:-1:-1;;;31864:103:0;;;;;;;:::i;:::-;31978:39;31992:4;31998:2;32002:7;32011:5;31978:13;:39::i;:::-;31697:328;;;;:::o;29066:334::-;29139:13;29173:16;29181:7;29173;:16::i;:::-;29165:76;;;;-1:-1:-1;;;29165:76:0;;;;;;;:::i;:::-;29254:21;29278:10;:8;:10::i;:::-;29254:34;;29330:1;29312:7;29306:21;:25;:86;;;;;;;;;;;;;;;;;29358:7;29367:18;:7;:16;:18::i;:::-;29341:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29306:86;29299:93;29066:334;-1:-1:-1;;;29066:334:0:o;30800:164::-;-1:-1:-1;;;;;30921:25:0;;;30897:4;30921:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30800:164::o;6453:201::-;5775:12;:10;:12::i;:::-;-1:-1:-1;;;;;5764:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;5764:23:0;;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;;-1:-1:-1::0;;;6534:73:0::1;;;;;;;:::i;:::-;6618:28;6637:8;6618:18;:28::i;42016:224::-:0;42118:4;-1:-1:-1;;;;;;42142:50:0;;-1:-1:-1;;;42142:50:0;;:90;;;42196:36;42220:11;42196:23;:36::i;33535:127::-;33600:4;33624:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33624:16:0;:30;;;33535:127::o;4268:98::-;4348:10;4268:98;:::o;37517:174::-;37592:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37592:29:0;-1:-1:-1;;;;;37592:29:0;;;;;;;;:24;;37646:23;37592:24;37646:14;:23::i;:::-;-1:-1:-1;;;;;37637:46:0;;;;;;;;;;;37517:174;;:::o;33829:348::-;33922:4;33947:16;33955:7;33947;:16::i;:::-;33939:73;;;;-1:-1:-1;;;33939:73:0;;;;;;;:::i;:::-;34023:13;34039:23;34054:7;34039:14;:23::i;:::-;34023:39;;34092:5;-1:-1:-1;;;;;34081:16:0;:7;-1:-1:-1;;;;;34081:16:0;;:51;;;;34125:7;-1:-1:-1;;;;;34101:31:0;:20;34113:7;34101:11;:20::i;:::-;-1:-1:-1;;;;;34101:31:0;;34081:51;:87;;;;34136:32;34153:5;34160:7;34136:16;:32::i;:::-;34073:96;33829:348;-1:-1:-1;;;;33829:348:0:o;36821:578::-;36980:4;-1:-1:-1;;;;;36953:31:0;:23;36968:7;36953:14;:23::i;:::-;-1:-1:-1;;;;;36953:31:0;;36945:85;;;;-1:-1:-1;;;36945:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37049:16:0;;37041:65;;;;-1:-1:-1;;;37041:65:0;;;;;;;:::i;:::-;37119:39;37140:4;37146:2;37150:7;37119:20;:39::i;:::-;37223:29;37240:1;37244:7;37223:8;:29::i;:::-;-1:-1:-1;;;;;37265:15:0;;;;;;:9;:15;;;;;:20;;37284:1;;37265:15;:20;;37284:1;;37265:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37296:13:0;;;;;;:9;:13;;;;;:18;;37313:1;;37296:13;:18;;37313:1;;37296:18;:::i;:::-;;;;-1:-1:-1;;37325:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37325:21:0;-1:-1:-1;;;;;37325:21:0;;;;;;;;;37364:27;;37325:16;;37364:27;;;;;;;36821:578;;;:::o;40753:245::-;40871:41;40890:12;:10;:12::i;40871:41::-;40863:102;;;;-1:-1:-1;;;40863:102:0;;;;;;;:::i;:::-;40976:14;40982:7;40976:5;:14::i;872:114::-;964:14;;872:114::o;35513:382::-;-1:-1:-1;;;;;35593:16:0;;35585:61;;;;-1:-1:-1;;;35585:61:0;;;;;;;:::i;:::-;35666:16;35674:7;35666;:16::i;:::-;35665:17;35657:58;;;;-1:-1:-1;;;35657:58:0;;;;;;;:::i;:::-;35728:45;35757:1;35761:2;35765:7;35728:20;:45::i;:::-;-1:-1:-1;;;;;35786:13:0;;;;;;:9;:13;;;;;:18;;35803:1;;35786:13;:18;;35803:1;;35786:18;:::i;:::-;;;;-1:-1:-1;;35815:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35815:21:0;-1:-1:-1;;;;;35815:21:0;;;;;;;;35854:33;;35815:16;;;35854:33;;35815:16;;35854:33;35513:382;;:::o;994:127::-;1083:19;;1101:1;1083:19;;;994:127::o;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6814:191;;:::o;37833:315::-;37988:8;-1:-1:-1;;;;;37979:17:0;:5;-1:-1:-1;;;;;37979:17:0;;;37971:55;;;;-1:-1:-1;;;37971:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38037:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;38037:46:0;;;;;;;38099:41;;;;;38037:46;;38099:41;:::i;:::-;;;;;;;;37833:315;;;:::o;32907:::-;33064:28;33074:4;33080:2;33084:7;33064:9;:28::i;:::-;33111:48;33134:4;33140:2;33144:7;33153:5;33111:22;:48::i;:::-;33103:111;;;;-1:-1:-1;;;33103:111:0;;;;;;;:::i;29648:94::-;29725:9;;;;;;;;;-1:-1:-1;29725:9:0;;29648:94;:::o;1830:723::-;1886:13;2107:10;2103:53;;-1:-1:-1;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;;2103:53;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;-1:-1:-1;;;2332:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;-1:-1:-1;;;2420:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;27777:305;27879:4;-1:-1:-1;;;;;;27916:40:0;;-1:-1:-1;;;27916:40:0;;:105;;-1:-1:-1;;;;;;;27973:48:0;;-1:-1:-1;;;27973:48:0;27916:105;:158;;;;28038:36;28062:11;28038:23;:36::i;50333:223::-;50503:45;50530:4;50536:2;50540:7;50503:26;:45::i;36124:360::-;36184:13;36200:23;36215:7;36200:14;:23::i;:::-;36184:39;;36236:48;36257:5;36272:1;36276:7;36236:20;:48::i;:::-;36325:29;36342:1;36346:7;36325:8;:29::i;:::-;-1:-1:-1;;;;;36367:16:0;;;;;;:9;:16;;;;;:21;;36387:1;;36367:16;:21;;36387:1;;36367:21;:::i;:::-;;;;-1:-1:-1;;36406:16:0;;;;:7;:16;;;;;;36399:23;;-1:-1:-1;;;;;;36399:23:0;;;36440:36;36414:7;;36406:16;-1:-1:-1;;;;;36440:36:0;;;;;36406:16;;36440:36;36124:360;;:::o;38713:799::-;38868:4;38889:15;:2;-1:-1:-1;;;;;38889:13:0;;:15::i;:::-;38885:620;;;38941:2;-1:-1:-1;;;;;38925:36:0;;38962:12;:10;:12::i;:::-;38976:4;38982:7;38991:5;38925:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38925:72:0;;;;;;;;-1:-1:-1;;38925:72:0;;;;;;;;;;;;:::i;:::-;;;38921:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39167:13:0;;39163:272;;39210:60;;-1:-1:-1;;;39210:60:0;;;;;;;:::i;39163:272::-;39385:6;39379:13;39370:6;39366:2;39362:15;39355:38;38921:529;-1:-1:-1;;;;;;39048:51:0;-1:-1:-1;;;39048:51:0;;-1:-1:-1;39041:58:0;;38885:620;-1:-1:-1;39489:4:0;38713:799;;;;;;:::o;18974:157::-;-1:-1:-1;;;;;;19083:40:0;;-1:-1:-1;;;19083:40:0;18974:157;;;:::o;43692:589::-;43836:45;43863:4;43869:2;43873:7;43836:26;:45::i;:::-;-1:-1:-1;;;;;43898:18:0;;43894:187;;43933:40;43965:7;43933:31;:40::i;:::-;43894:187;;;44003:2;-1:-1:-1;;;;;43995:10:0;:4;-1:-1:-1;;;;;43995:10:0;;43991:90;;44022:47;44055:4;44061:7;44022:32;:47::i;:::-;-1:-1:-1;;;;;44095:16:0;;44091:183;;44128:45;44165:7;44128:36;:45::i;:::-;44091:183;;;44201:4;-1:-1:-1;;;;;44195:10:0;:2;-1:-1:-1;;;;;44195:10:0;;44191:83;;44222:40;44250:2;44254:7;44222:27;:40::i;8830:387::-;9153:20;9201:8;;;8830:387::o;45004:164::-;45108:10;:17;;45081:24;;;;:15;:24;;;;;:44;;;45136:24;;;;;;;;;;;;45004:164::o;45795:988::-;46061:22;46111:1;46086:22;46103:4;46086:16;:22::i;:::-;:26;;;;:::i;:::-;46123:18;46144:26;;;:17;:26;;;;;;46061:51;;-1:-1:-1;46277:28:0;;;46273:328;;-1:-1:-1;;;;;46344:18:0;;46322:19;46344:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46395:30;;;;;;:44;;;46512:30;;:17;:30;;;;;:43;;;46273:328;-1:-1:-1;46697:26:0;;;;:17;:26;;;;;;;;46690:33;;;-1:-1:-1;;;;;46741:18:0;;;;;:12;:18;;;;;:34;;;;;;;46734:41;45795:988::o;47078:1079::-;47356:10;:17;47331:22;;47356:21;;47376:1;;47356:21;:::i;:::-;47388:18;47409:24;;;:15;:24;;;;;;47782:10;:26;;47331:46;;-1:-1:-1;47409:24:0;;47331:46;;47782:26;;;;-1:-1:-1;;;47782:26:0;;;;;;;;;;;;;;;;;47760:48;;47846:11;47821:10;47832;47821:22;;;;;;-1:-1:-1;;;47821:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;47926:28;;;:15;:28;;;;;;;:41;;;48098:24;;;;;48091:31;48133:10;:16;;;;;-1:-1:-1;;;48133:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;47078:1079;;;;:::o;44582:221::-;44667:14;44684:20;44701:2;44684:16;:20::i;:::-;-1:-1:-1;;;;;44715:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44760:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44582:221:0:o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:190::-;;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;-1:-1:-1;3540:23:1;;3449:120;-1:-1:-1;3449:120:1:o;3574:259::-;;3655:5;3649:12;3682:6;3677:3;3670:19;3698:63;3754:6;3747:4;3742:3;3738:14;3731:4;3724:5;3720:16;3698:63;:::i;:::-;3815:2;3794:15;-1:-1:-1;;3790:29:1;3781:39;;;;3822:4;3777:50;;3625:208;-1:-1:-1;;3625:208:1:o;3838:470::-;;4055:6;4049:13;4071:53;4117:6;4112:3;4105:4;4097:6;4093:17;4071:53;:::i;:::-;4187:13;;4146:16;;;;4209:57;4187:13;4146:16;4243:4;4231:17;;4209:57;:::i;:::-;4282:20;;4025:283;-1:-1:-1;;;;4025:283:1:o;4313:203::-;-1:-1:-1;;;;;4477:32:1;;;;4459:51;;4447:2;4432:18;;4414:102::o;4521:490::-;-1:-1:-1;;;;;4790:15:1;;;4772:34;;4842:15;;4837:2;4822:18;;4815:43;4889:2;4874:18;;4867:34;;;4937:3;4932:2;4917:18;;4910:31;;;4521:490;;4958:47;;4985:19;;4977:6;4958:47;:::i;:::-;4950:55;4724:287;-1:-1:-1;;;;;;4724:287:1:o;5016:187::-;5181:14;;5174:22;5156:41;;5144:2;5129:18;;5111:92::o;5208:221::-;;5357:2;5346:9;5339:21;5377:46;5419:2;5408:9;5404:18;5396:6;5377:46;:::i;5434:407::-;5636:2;5618:21;;;5675:2;5655:18;;;5648:30;5714:34;5709:2;5694:18;;5687:62;-1:-1:-1;;;5780:2:1;5765:18;;5758:41;5831:3;5816:19;;5608:233::o;5846:414::-;6048:2;6030:21;;;6087:2;6067:18;;;6060:30;6126:34;6121:2;6106:18;;6099:62;-1:-1:-1;;;6192:2:1;6177:18;;6170:48;6250:3;6235:19;;6020:240::o;6265:402::-;6467:2;6449:21;;;6506:2;6486:18;;;6479:30;6545:34;6540:2;6525:18;;6518:62;-1:-1:-1;;;6611:2:1;6596:18;;6589:36;6657:3;6642:19;;6439:228::o;6672:352::-;6874:2;6856:21;;;6913:2;6893:18;;;6886:30;6952;6947:2;6932:18;;6925:58;7015:2;7000:18;;6846:178::o;7029:400::-;7231:2;7213:21;;;7270:2;7250:18;;;7243:30;7309:34;7304:2;7289:18;;7282:62;-1:-1:-1;;;7375:2:1;7360:18;;7353:34;7419:3;7404:19;;7203:226::o;7434:349::-;7636:2;7618:21;;;7675:2;7655:18;;;7648:30;7714:27;7709:2;7694:18;;7687:55;7774:2;7759:18;;7608:175::o;7788:408::-;7990:2;7972:21;;;8029:2;8009:18;;;8002:30;8068:34;8063:2;8048:18;;8041:62;-1:-1:-1;;;8134:2:1;8119:18;;8112:42;8186:3;8171:19;;7962:234::o;8201:420::-;8403:2;8385:21;;;8442:2;8422:18;;;8415:30;8481:34;8476:2;8461:18;;8454:62;8552:26;8547:2;8532:18;;8525:54;8611:3;8596:19;;8375:246::o;8626:406::-;8828:2;8810:21;;;8867:2;8847:18;;;8840:30;8906:34;8901:2;8886:18;;8879:62;-1:-1:-1;;;8972:2:1;8957:18;;8950:40;9022:3;9007:19;;8800:232::o;9037:405::-;9239:2;9221:21;;;9278:2;9258:18;;;9251:30;9317:34;9312:2;9297:18;;9290:62;-1:-1:-1;;;9383:2:1;9368:18;;9361:39;9432:3;9417:19;;9211:231::o;9447:356::-;9649:2;9631:21;;;9668:18;;;9661:30;9727:34;9722:2;9707:18;;9700:62;9794:2;9779:18;;9621:182::o;9808:408::-;10010:2;9992:21;;;10049:2;10029:18;;;10022:30;10088:34;10083:2;10068:18;;10061:62;-1:-1:-1;;;10154:2:1;10139:18;;10132:42;10206:3;10191:19;;9982:234::o;10221:356::-;10423:2;10405:21;;;10442:18;;;10435:30;10501:34;10496:2;10481:18;;10474:62;10568:2;10553:18;;10395:182::o;10582:405::-;10784:2;10766:21;;;10823:2;10803:18;;;10796:30;10862:34;10857:2;10842:18;;10835:62;-1:-1:-1;;;10928:2:1;10913:18;;10906:39;10977:3;10962:19;;10756:231::o;10992:411::-;11194:2;11176:21;;;11233:2;11213:18;;;11206:30;11272:34;11267:2;11252:18;;11245:62;-1:-1:-1;;;11338:2:1;11323:18;;11316:45;11393:3;11378:19;;11166:237::o;11408:397::-;11610:2;11592:21;;;11649:2;11629:18;;;11622:30;11688:34;11683:2;11668:18;;11661:62;-1:-1:-1;;;11754:2:1;11739:18;;11732:31;11795:3;11780:19;;11582:223::o;11810:413::-;12012:2;11994:21;;;12051:2;12031:18;;;12024:30;12090:34;12085:2;12070:18;;12063:62;-1:-1:-1;;;12156:2:1;12141:18;;12134:47;12213:3;12198:19;;11984:239::o;12228:408::-;12430:2;12412:21;;;12469:2;12449:18;;;12442:30;12508:34;12503:2;12488:18;;12481:62;-1:-1:-1;;;12574:2:1;12559:18;;12552:42;12626:3;12611:19;;12402:234::o;12641:412::-;12843:2;12825:21;;;12882:2;12862:18;;;12855:30;12921:34;12916:2;12901:18;;12894:62;-1:-1:-1;;;12987:2:1;12972:18;;12965:46;13043:3;13028:19;;12815:238::o;13058:421::-;13260:2;13242:21;;;13299:2;13279:18;;;13272:30;13338:34;13333:2;13318:18;;13311:62;13409:27;13404:2;13389:18;;13382:55;13469:3;13454:19;;13232:247::o;13484:177::-;13630:25;;;13618:2;13603:18;;13585:76::o;13666:128::-;;13737:1;13733:6;13730:1;13727:13;13724:2;;;13743:18;;:::i;:::-;-1:-1:-1;13779:9:1;;13714:80::o;13799:120::-;;13865:1;13855:2;;13870:18;;:::i;:::-;-1:-1:-1;13904:9:1;;13845:74::o;13924:125::-;;13992:1;13989;13986:8;13983:2;;;13997:18;;:::i;:::-;-1:-1:-1;14034:9:1;;13973:76::o;14054:258::-;14126:1;14136:113;14150:6;14147:1;14144:13;14136:113;;;14226:11;;;14220:18;14207:11;;;14200:39;14172:2;14165:10;14136:113;;;14267:6;14264:1;14261:13;14258:2;;;-1:-1:-1;;14302:1:1;14284:16;;14277:27;14107:205::o;14317:380::-;14402:1;14392:12;;14449:1;14439:12;;;14460:2;;14514:4;14506:6;14502:17;14492:27;;14460:2;14567;14559:6;14556:14;14536:18;14533:38;14530:2;;;14613:10;14608:3;14604:20;14601:1;14594:31;14648:4;14645:1;14638:15;14676:4;14673:1;14666:15;14530:2;;14372:325;;;:::o;14702:135::-;;-1:-1:-1;;14762:17:1;;14759:2;;;14782:18;;:::i;:::-;-1:-1:-1;14829:1:1;14818:13;;14749:88::o;14842:112::-;;14900:1;14890:2;;14905:18;;:::i;:::-;-1:-1:-1;14939:9:1;;14880:74::o;14959:127::-;15020:10;15015:3;15011:20;15008:1;15001:31;15051:4;15048:1;15041:15;15075:4;15072:1;15065:15;15091:127;15152:10;15147:3;15143:20;15140:1;15133:31;15183:4;15180:1;15173:15;15207:4;15204:1;15197:15;15223:127;15284:10;15279:3;15275:20;15272:1;15265:31;15315:4;15312:1;15305:15;15339:4;15336:1;15329:15;15355:133;-1:-1:-1;;;;;;15431:32:1;;15421:43;;15411:2;;15478:1;15475;15468:12
Swarm Source
ipfs://d6d05a89e9958ed838f96eb675242b97bf7568971ab69ed168d19098416683a4
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.