Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
0 PTC
Holders
239
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 PTCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TreumERC721
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "./AbsERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; contract TreumERC721 is AbsERC721, ERC721URIStorage, Ownable { constructor(string memory name, string memory symbol) AbsERC721(name, symbol, "") {} function tokenURI(uint256 tokenId) public view virtual override(AbsERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function _burn(uint256 tokenId) internal virtual override(ERC721URIStorage, ERC721) { ERC721URIStorage._burn(tokenId); } function burn(uint256 tokenId) external { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } function _baseURI() internal view virtual override(AbsERC721, ERC721) returns (string memory) { return AbsERC721._baseURI(); } function setBaseURI(string memory baseURI) external virtual override onlyOwner { _setBaseURI(baseURI); } function mintWithTokenURI( address to, uint256 tokenId, string memory uri ) external onlyOwner { _mint(to, tokenId); _setTokenURI(tokenId, uri); } function isMinter(address account) external view returns (bool) { return owner() == account; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; abstract contract AbsERC721 is ERC721 { string public baseURI; constructor( string memory name, string memory symbol, string memory baseURIParam ) ERC721(name, symbol) { _setBaseURI(baseURIParam); } function setBaseURI(string memory baseURIParam) external virtual; function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return string(abi.encodePacked(super.tokenURI(tokenId), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function _setBaseURI(string memory baseURIParam) internal { baseURI = baseURIParam; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // 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); } } } }
// SPDX-License-Identifier: MIT // 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @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; } }
{ "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"mintWithTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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
60806040523480156200001157600080fd5b5060405162001f9a38038062001f9a833981016040819052620000349162000291565b81816040518060200160405280600081525082828160009080519060200190620000609291906200011e565b508051620000769060019060208401906200011e565b5050506200008a81620000af60201b60201c565b505050620000a7620000a1620000c860201b60201c565b620000cc565b505062000338565b8051620000c49060069060208401906200011e565b5050565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012c90620002fb565b90600052602060002090601f0160209004810192826200015057600085556200019b565b82601f106200016b57805160ff19168380011785556200019b565b828001600101855582156200019b579182015b828111156200019b5782518255916020019190600101906200017e565b50620001a9929150620001ad565b5090565b5b80821115620001a95760008155600101620001ae565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001ec57600080fd5b81516001600160401b0380821115620002095762000209620001c4565b604051601f8301601f19908116603f01168101908282118183101715620002345762000234620001c4565b816040528381526020925086838588010111156200025157600080fd5b600091505b8382101562000275578582018301518183018401529082019062000256565b83821115620002875760008385830101525b9695505050505050565b60008060408385031215620002a557600080fd5b82516001600160401b0380821115620002bd57600080fd5b620002cb86838701620001da565b93506020850151915080821115620002e257600080fd5b50620002f185828601620001da565b9150509250929050565b600181811c908216806200031057607f821691505b602082108114156200033257634e487b7160e01b600052602260045260246000fd5b50919050565b611c5280620003486000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb46514610275578063aa271e1a14610288578063b88d4fde1461029b578063c87b56dd146102ae578063e985e9c5146102c1578063f2fde38b146102fd57600080fd5b80636c0360eb1461022b57806370a0823114610233578063715018a6146102545780638da5cb5b1461025c57806395d89b411461026d57600080fd5b806342842e0e116100ff57806342842e0e146101cc57806342966c68146101df57806350bb4e7f146101f257806355f804b3146102055780636352211e1461021857600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806323b872dd146101b9575b600080fd5b61014f61014a366004611642565b610310565b60405190151581526020015b60405180910390f35b61016c610362565b60405161015b91906116b7565b61018c6101873660046116ca565b6103f4565b6040516001600160a01b03909116815260200161015b565b6101b76101b23660046116ff565b610481565b005b6101b76101c7366004611729565b610597565b6101b76101da366004611729565b6105c9565b6101b76101ed3660046116ca565b6105e4565b6101b7610200366004611811565b61065e565b6101b7610213366004611868565b61069c565b61018c6102263660046116ca565b6106cf565b61016c610746565b61024661024136600461189d565b6107d4565b60405190815260200161015b565b6101b761085b565b6008546001600160a01b031661018c565b61016c610891565b6101b76102833660046118b8565b6108a0565b61014f61029636600461189d565b6108af565b6101b76102a93660046118f4565b6108dd565b61016c6102bc3660046116ca565b610915565b61014f6102cf366004611970565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101b761030b36600461189d565b610920565b60006001600160e01b031982166380ac58cd60e01b148061034157506001600160e01b03198216635b5e139f60e01b145b8061035c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610371906119a3565b80601f016020809104026020016040519081016040528092919081815260200182805461039d906119a3565b80156103ea5780601f106103bf576101008083540402835291602001916103ea565b820191906000526020600020905b8154815290600101906020018083116103cd57829003601f168201915b5050505050905090565b60006103ff826109b8565b6104655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061048c826106cf565b9050806001600160a01b0316836001600160a01b031614156104fa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161045c565b336001600160a01b0382161480610516575061051681336102cf565b6105885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161045c565b61059283836109d5565b505050565b6105a2335b82610a43565b6105be5760405162461bcd60e51b815260040161045c906119de565b610592838383610b2d565b610592838383604051806020016040528060008152506108dd565b6105ed3361059c565b6106525760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161045c565b61065b81610ccd565b50565b6008546001600160a01b031633146106885760405162461bcd60e51b815260040161045c90611a2f565b6106928383610cd6565b6105928282610e09565b6008546001600160a01b031633146106c65760405162461bcd60e51b815260040161045c90611a2f565b61065b81610e94565b6000818152600260205260408120546001600160a01b03168061035c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161045c565b60068054610753906119a3565b80601f016020809104026020016040519081016040528092919081815260200182805461077f906119a3565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b505050505081565b60006001600160a01b03821661083f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161045c565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b031633146108855760405162461bcd60e51b815260040161045c90611a2f565b61088f6000610ea7565b565b606060018054610371906119a3565b6108ab338383610ef9565b5050565b6000816001600160a01b03166108cd6008546001600160a01b031690565b6001600160a01b03161492915050565b6108e73383610a43565b6109035760405162461bcd60e51b815260040161045c906119de565b61090f84848484610fc8565b50505050565b606061035c82610ffb565b6008546001600160a01b0316331461094a5760405162461bcd60e51b815260040161045c90611a2f565b6001600160a01b0381166109af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045c565b61065b81610ea7565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a0a826106cf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a4e826109b8565b610aaf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161045c565b6000610aba836106cf565b9050806001600160a01b0316846001600160a01b03161480610af55750836001600160a01b0316610aea846103f4565b6001600160a01b0316145b80610b2557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b40826106cf565b6001600160a01b031614610ba85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161045c565b6001600160a01b038216610c0a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161045c565b610c156000826109d5565b6001600160a01b0383166000908152600360205260408120805460019290610c3e908490611a7a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c6c908490611a91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61065b8161115d565b6001600160a01b038216610d2c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161045c565b610d35816109b8565b15610d825760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161045c565b6001600160a01b0382166000908152600360205260408120805460019290610dab908490611a91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610e12826109b8565b610e755760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161045c565b600082815260076020908152604090912082516105929284019061155d565b80516108ab90600690602084019061155d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610f5b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161045c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610fd3848484610b2d565b610fdf8484848461119d565b61090f5760405162461bcd60e51b815260040161045c90611aa9565b6060611006826109b8565b61106c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161045c565b60008281526007602052604081208054611085906119a3565b80601f01602080910402602001604051908101604052809291908181526020018280546110b1906119a3565b80156110fe5780601f106110d3576101008083540402835291602001916110fe565b820191906000526020600020905b8154815290600101906020018083116110e157829003601f168201915b50505050509050600061110f6112aa565b9050805160001415611122575092915050565b81511561115457808260405160200161113c929190611afb565b60405160208183030381529060405292505050919050565b610b25846112b9565b611166816112ea565b6000818152600760205260409020805461117f906119a3565b15905061065b57600081815260076020526040812061065b916115e1565b60006001600160a01b0384163b1561129f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111e1903390899088908890600401611b2a565b602060405180830381600087803b1580156111fb57600080fd5b505af192505050801561122b575060408051601f3d908101601f1916820190925261122891810190611b67565b60015b611285573d808015611259576040519150601f19603f3d011682016040523d82523d6000602084013e61125e565b606091505b50805161127d5760405162461bcd60e51b815260040161045c90611aa9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b25565b506001949350505050565b60606112b4611385565b905090565b60606112c482611394565b6040516020016112d49190611b84565b6040516020818303038152906040529050919050565b60006112f5826106cf565b90506113026000836109d5565b6001600160a01b038116600090815260036020526040812080546001929061132b908490611a7a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606060068054610371906119a3565b606061139f826109b8565b6114035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161045c565b600061140d6112aa565b9050600081511161142d5760405180602001604052806000815250611458565b806114378461145f565b604051602001611448929190611afb565b6040516020818303038152906040525b9392505050565b6060816114835750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114ad578061149781611bad565b91506114a69050600a83611bde565b9150611487565b60008167ffffffffffffffff8111156114c8576114c8611765565b6040519080825280601f01601f1916602001820160405280156114f2576020820181803683370190505b5090505b8415610b2557611507600183611a7a565b9150611514600a86611bf2565b61151f906030611a91565b60f81b81838151811061153457611534611c06565b60200101906001600160f81b031916908160001a905350611556600a86611bde565b94506114f6565b828054611569906119a3565b90600052602060002090601f01602090048101928261158b57600085556115d1565b82601f106115a457805160ff19168380011785556115d1565b828001600101855582156115d1579182015b828111156115d15782518255916020019190600101906115b6565b506115dd929150611617565b5090565b5080546115ed906119a3565b6000825580601f106115fd575050565b601f01602090049060005260206000209081019061065b91905b5b808211156115dd5760008155600101611618565b6001600160e01b03198116811461065b57600080fd5b60006020828403121561165457600080fd5b81356114588161162c565b60005b8381101561167a578181015183820152602001611662565b8381111561090f5750506000910152565b600081518084526116a381602086016020860161165f565b601f01601f19169290920160200192915050565b602081526000611458602083018461168b565b6000602082840312156116dc57600080fd5b5035919050565b80356001600160a01b03811681146116fa57600080fd5b919050565b6000806040838503121561171257600080fd5b61171b836116e3565b946020939093013593505050565b60008060006060848603121561173e57600080fd5b611747846116e3565b9250611755602085016116e3565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561179657611796611765565b604051601f8501601f19908116603f011681019082821181831017156117be576117be611765565b816040528093508581528686860111156117d757600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261180257600080fd5b6114588383356020850161177b565b60008060006060848603121561182657600080fd5b61182f846116e3565b925060208401359150604084013567ffffffffffffffff81111561185257600080fd5b61185e868287016117f1565b9150509250925092565b60006020828403121561187a57600080fd5b813567ffffffffffffffff81111561189157600080fd5b610b25848285016117f1565b6000602082840312156118af57600080fd5b611458826116e3565b600080604083850312156118cb57600080fd5b6118d4836116e3565b9150602083013580151581146118e957600080fd5b809150509250929050565b6000806000806080858703121561190a57600080fd5b611913856116e3565b9350611921602086016116e3565b925060408501359150606085013567ffffffffffffffff81111561194457600080fd5b8501601f8101871361195557600080fd5b6119648782356020840161177b565b91505092959194509250565b6000806040838503121561198357600080fd5b61198c836116e3565b915061199a602084016116e3565b90509250929050565b600181811c908216806119b757607f821691505b602082108114156119d857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015611a8c57611a8c611a64565b500390565b60008219821115611aa457611aa4611a64565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611b0d81846020880161165f565b835190830190611b2181836020880161165f565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5d9083018461168b565b9695505050505050565b600060208284031215611b7957600080fd5b81516114588161162c565b60008251611b9681846020870161165f565b64173539b7b760d91b920191825250600501919050565b6000600019821415611bc157611bc1611a64565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611bed57611bed611bc8565b500490565b600082611c0157611c01611bc8565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c263d2e061e73b5c2e4acc519861cd7e0e515929951ad92b9f7f0f94f5c905e964736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001150726164612054696d6563617073756c6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035054430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636c0360eb116100b8578063a22cb4651161007c578063a22cb46514610275578063aa271e1a14610288578063b88d4fde1461029b578063c87b56dd146102ae578063e985e9c5146102c1578063f2fde38b146102fd57600080fd5b80636c0360eb1461022b57806370a0823114610233578063715018a6146102545780638da5cb5b1461025c57806395d89b411461026d57600080fd5b806342842e0e116100ff57806342842e0e146101cc57806342966c68146101df57806350bb4e7f146101f257806355f804b3146102055780636352211e1461021857600080fd5b806301ffc9a71461013c57806306fdde0314610164578063081812fc14610179578063095ea7b3146101a457806323b872dd146101b9575b600080fd5b61014f61014a366004611642565b610310565b60405190151581526020015b60405180910390f35b61016c610362565b60405161015b91906116b7565b61018c6101873660046116ca565b6103f4565b6040516001600160a01b03909116815260200161015b565b6101b76101b23660046116ff565b610481565b005b6101b76101c7366004611729565b610597565b6101b76101da366004611729565b6105c9565b6101b76101ed3660046116ca565b6105e4565b6101b7610200366004611811565b61065e565b6101b7610213366004611868565b61069c565b61018c6102263660046116ca565b6106cf565b61016c610746565b61024661024136600461189d565b6107d4565b60405190815260200161015b565b6101b761085b565b6008546001600160a01b031661018c565b61016c610891565b6101b76102833660046118b8565b6108a0565b61014f61029636600461189d565b6108af565b6101b76102a93660046118f4565b6108dd565b61016c6102bc3660046116ca565b610915565b61014f6102cf366004611970565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101b761030b36600461189d565b610920565b60006001600160e01b031982166380ac58cd60e01b148061034157506001600160e01b03198216635b5e139f60e01b145b8061035c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610371906119a3565b80601f016020809104026020016040519081016040528092919081815260200182805461039d906119a3565b80156103ea5780601f106103bf576101008083540402835291602001916103ea565b820191906000526020600020905b8154815290600101906020018083116103cd57829003601f168201915b5050505050905090565b60006103ff826109b8565b6104655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061048c826106cf565b9050806001600160a01b0316836001600160a01b031614156104fa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161045c565b336001600160a01b0382161480610516575061051681336102cf565b6105885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161045c565b61059283836109d5565b505050565b6105a2335b82610a43565b6105be5760405162461bcd60e51b815260040161045c906119de565b610592838383610b2d565b610592838383604051806020016040528060008152506108dd565b6105ed3361059c565b6106525760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161045c565b61065b81610ccd565b50565b6008546001600160a01b031633146106885760405162461bcd60e51b815260040161045c90611a2f565b6106928383610cd6565b6105928282610e09565b6008546001600160a01b031633146106c65760405162461bcd60e51b815260040161045c90611a2f565b61065b81610e94565b6000818152600260205260408120546001600160a01b03168061035c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161045c565b60068054610753906119a3565b80601f016020809104026020016040519081016040528092919081815260200182805461077f906119a3565b80156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b505050505081565b60006001600160a01b03821661083f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161045c565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b031633146108855760405162461bcd60e51b815260040161045c90611a2f565b61088f6000610ea7565b565b606060018054610371906119a3565b6108ab338383610ef9565b5050565b6000816001600160a01b03166108cd6008546001600160a01b031690565b6001600160a01b03161492915050565b6108e73383610a43565b6109035760405162461bcd60e51b815260040161045c906119de565b61090f84848484610fc8565b50505050565b606061035c82610ffb565b6008546001600160a01b0316331461094a5760405162461bcd60e51b815260040161045c90611a2f565b6001600160a01b0381166109af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045c565b61065b81610ea7565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a0a826106cf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610a4e826109b8565b610aaf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161045c565b6000610aba836106cf565b9050806001600160a01b0316846001600160a01b03161480610af55750836001600160a01b0316610aea846103f4565b6001600160a01b0316145b80610b2557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610b40826106cf565b6001600160a01b031614610ba85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161045c565b6001600160a01b038216610c0a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161045c565b610c156000826109d5565b6001600160a01b0383166000908152600360205260408120805460019290610c3e908490611a7a565b90915550506001600160a01b0382166000908152600360205260408120805460019290610c6c908490611a91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61065b8161115d565b6001600160a01b038216610d2c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161045c565b610d35816109b8565b15610d825760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161045c565b6001600160a01b0382166000908152600360205260408120805460019290610dab908490611a91565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b610e12826109b8565b610e755760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b606482015260840161045c565b600082815260076020908152604090912082516105929284019061155d565b80516108ab90600690602084019061155d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415610f5b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161045c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610fd3848484610b2d565b610fdf8484848461119d565b61090f5760405162461bcd60e51b815260040161045c90611aa9565b6060611006826109b8565b61106c5760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b606482015260840161045c565b60008281526007602052604081208054611085906119a3565b80601f01602080910402602001604051908101604052809291908181526020018280546110b1906119a3565b80156110fe5780601f106110d3576101008083540402835291602001916110fe565b820191906000526020600020905b8154815290600101906020018083116110e157829003601f168201915b50505050509050600061110f6112aa565b9050805160001415611122575092915050565b81511561115457808260405160200161113c929190611afb565b60405160208183030381529060405292505050919050565b610b25846112b9565b611166816112ea565b6000818152600760205260409020805461117f906119a3565b15905061065b57600081815260076020526040812061065b916115e1565b60006001600160a01b0384163b1561129f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111e1903390899088908890600401611b2a565b602060405180830381600087803b1580156111fb57600080fd5b505af192505050801561122b575060408051601f3d908101601f1916820190925261122891810190611b67565b60015b611285573d808015611259576040519150601f19603f3d011682016040523d82523d6000602084013e61125e565b606091505b50805161127d5760405162461bcd60e51b815260040161045c90611aa9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b25565b506001949350505050565b60606112b4611385565b905090565b60606112c482611394565b6040516020016112d49190611b84565b6040516020818303038152906040529050919050565b60006112f5826106cf565b90506113026000836109d5565b6001600160a01b038116600090815260036020526040812080546001929061132b908490611a7a565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606060068054610371906119a3565b606061139f826109b8565b6114035760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161045c565b600061140d6112aa565b9050600081511161142d5760405180602001604052806000815250611458565b806114378461145f565b604051602001611448929190611afb565b6040516020818303038152906040525b9392505050565b6060816114835750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114ad578061149781611bad565b91506114a69050600a83611bde565b9150611487565b60008167ffffffffffffffff8111156114c8576114c8611765565b6040519080825280601f01601f1916602001820160405280156114f2576020820181803683370190505b5090505b8415610b2557611507600183611a7a565b9150611514600a86611bf2565b61151f906030611a91565b60f81b81838151811061153457611534611c06565b60200101906001600160f81b031916908160001a905350611556600a86611bde565b94506114f6565b828054611569906119a3565b90600052602060002090601f01602090048101928261158b57600085556115d1565b82601f106115a457805160ff19168380011785556115d1565b828001600101855582156115d1579182015b828111156115d15782518255916020019190600101906115b6565b506115dd929150611617565b5090565b5080546115ed906119a3565b6000825580601f106115fd575050565b601f01602090049060005260206000209081019061065b91905b5b808211156115dd5760008155600101611618565b6001600160e01b03198116811461065b57600080fd5b60006020828403121561165457600080fd5b81356114588161162c565b60005b8381101561167a578181015183820152602001611662565b8381111561090f5750506000910152565b600081518084526116a381602086016020860161165f565b601f01601f19169290920160200192915050565b602081526000611458602083018461168b565b6000602082840312156116dc57600080fd5b5035919050565b80356001600160a01b03811681146116fa57600080fd5b919050565b6000806040838503121561171257600080fd5b61171b836116e3565b946020939093013593505050565b60008060006060848603121561173e57600080fd5b611747846116e3565b9250611755602085016116e3565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561179657611796611765565b604051601f8501601f19908116603f011681019082821181831017156117be576117be611765565b816040528093508581528686860111156117d757600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261180257600080fd5b6114588383356020850161177b565b60008060006060848603121561182657600080fd5b61182f846116e3565b925060208401359150604084013567ffffffffffffffff81111561185257600080fd5b61185e868287016117f1565b9150509250925092565b60006020828403121561187a57600080fd5b813567ffffffffffffffff81111561189157600080fd5b610b25848285016117f1565b6000602082840312156118af57600080fd5b611458826116e3565b600080604083850312156118cb57600080fd5b6118d4836116e3565b9150602083013580151581146118e957600080fd5b809150509250929050565b6000806000806080858703121561190a57600080fd5b611913856116e3565b9350611921602086016116e3565b925060408501359150606085013567ffffffffffffffff81111561194457600080fd5b8501601f8101871361195557600080fd5b6119648782356020840161177b565b91505092959194509250565b6000806040838503121561198357600080fd5b61198c836116e3565b915061199a602084016116e3565b90509250929050565b600181811c908216806119b757607f821691505b602082108114156119d857634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082821015611a8c57611a8c611a64565b500390565b60008219821115611aa457611aa4611a64565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611b0d81846020880161165f565b835190830190611b2181836020880161165f565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b5d9083018461168b565b9695505050505050565b600060208284031215611b7957600080fd5b81516114588161162c565b60008251611b9681846020870161165f565b64173539b7b760d91b920191825250600501919050565b6000600019821415611bc157611bc1611a64565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611bed57611bed611bc8565b500490565b600082611c0157611c01611bc8565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220c263d2e061e73b5c2e4acc519861cd7e0e515929951ad92b9f7f0f94f5c905e964736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001150726164612054696d6563617073756c6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035054430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Prada Timecapsule
Arg [1] : symbol (string): PTC
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 50726164612054696d6563617073756c65000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 5054430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
224:1272:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1555:300:3;;;;;;:::i;:::-;;:::i;:::-;;;565:14:13;;558:22;540:41;;528:2;513:18;1555:300:3;;;;;;;;2473:98;;;:::i;:::-;;;;;;;:::i;3984:217::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:13;;;1674:51;;1662:2;1647:18;3984:217:3;1528:203:13;3522:401:3;;;;;;:::i;:::-;;:::i;:::-;;4711:330;;;;;;:::i;:::-;;:::i;5107:179::-;;;;;;:::i;:::-;;:::i;733:183:1:-;;;;;;:::i;:::-;;:::i;1188:194::-;;;;;;:::i;:::-;;:::i;1066:116::-;;;;;;:::i;:::-;;:::i;2176:235:3:-;;;;;;:::i;:::-;;:::i;168:21:0:-;;;:::i;1914:205:3:-;;;;;;:::i;:::-;;:::i;:::-;;;4635:25:13;;;4623:2;4608:18;1914:205:3;4489:177:13;1668:101:2;;;:::i;1036:85::-;1108:6;;-1:-1:-1;;;;;1108:6:2;1036:85;;2635:102:3;;;:::i;4268:153::-;;;;;;:::i;:::-;;:::i;1388:106:1:-;;;;;;:::i;:::-;;:::i;5352:320:3:-;;;;;;:::i;:::-;;:::i;381:208:1:-;;;;;;:::i;:::-;;:::i;4487:162:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;4607:25:3;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4487:162;1918:198:2;;;;;;:::i;:::-;;:::i;1555:300:3:-;1657:4;-1:-1:-1;;;;;;1692:40:3;;-1:-1:-1;;;1692:40:3;;:104;;-1:-1:-1;;;;;;;1748:48:3;;-1:-1:-1;;;1748:48:3;1692:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:11;;;1812:36:3;1673:175;1555:300;-1:-1:-1;;1555:300:3:o;2473:98::-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;4087:16;4095:7;4087;:16::i;:::-;4079:73;;;;-1:-1:-1;;;4079:73:3;;6547:2:13;4079:73:3;;;6529:21:13;6586:2;6566:18;;;6559:30;6625:34;6605:18;;;6598:62;-1:-1:-1;;;6676:18:13;;;6669:42;6728:19;;4079:73:3;;;;;;;;;-1:-1:-1;4170:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4170:24:3;;3984:217::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;-1:-1:-1;;;;;3659:11:3;:2;-1:-1:-1;;;;;3659:11:3;;;3651:57;;;;-1:-1:-1;;;3651:57:3;;6960:2:13;3651:57:3;;;6942:21:13;6999:2;6979:18;;;6972:30;7038:34;7018:18;;;7011:62;-1:-1:-1;;;7089:18:13;;;7082:31;7130:19;;3651:57:3;6758:397:13;3651:57:3;719:10:9;-1:-1:-1;;;;;3740:21:3;;;;:62;;-1:-1:-1;3765:37:3;3782:5;719:10:9;4487:162:3;:::i;3765:37::-;3719:165;;;;-1:-1:-1;;;3719:165:3;;7362:2:13;3719:165:3;;;7344:21:13;7401:2;7381:18;;;7374:30;7440:34;7420:18;;;7413:62;7511:26;7491:18;;;7484:54;7555:19;;3719:165:3;7160:420:13;3719:165:3;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3592:331;3522:401;;:::o;4711:330::-;4900:41;719:10:9;4919:12:3;4933:7;4900:18;:41::i;:::-;4892:103;;;;-1:-1:-1;;;4892:103:3;;;;;;;:::i;:::-;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;5107:179::-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;733:183:1:-;791:41;719:10:9;810:12:1;640:96:9;791:41:1;783:102;;;;-1:-1:-1;;;783:102:1;;8205:2:13;783:102:1;;;8187:21:13;8244:2;8224:18;;;8217:30;8283:34;8263:18;;;8256:62;-1:-1:-1;;;8334:18:13;;;8327:46;8390:19;;783:102:1;8003:412:13;783:102:1;895:14;901:7;895:5;:14::i;:::-;733:183;:::o;1188:194::-;1108:6:2;;-1:-1:-1;;;;;1108:6:2;719:10:9;1248:23:2;1240:68;;;;-1:-1:-1;;;1240:68:2;;;;;;;:::i;:::-;1321:18:1::1;1327:2;1331:7;1321:5;:18::i;:::-;1349:26;1362:7;1371:3;1349:12;:26::i;1066:116::-:0;1108:6:2;;-1:-1:-1;;;;;1108:6:2;719:10:9;1248:23:2;1240:68;;;;-1:-1:-1;;;1240:68:2;;;;;;;:::i;:::-;1155:20:1::1;1167:7;1155:11;:20::i;2176:235:3:-:0;2248:7;2283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2283:16:3;2317:19;2309:73;;;;-1:-1:-1;;;2309:73:3;;8983:2:13;2309:73:3;;;8965:21:13;9022:2;9002:18;;;8995:30;9061:34;9041:18;;;9034:62;-1:-1:-1;;;9112:18:13;;;9105:39;9161:19;;2309:73:3;8781:405:13;168:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1914:205:3:-;1986:7;-1:-1:-1;;;;;2013:19:3;;2005:74;;;;-1:-1:-1;;;2005:74:3;;9393:2:13;2005:74:3;;;9375:21:13;9432:2;9412:18;;;9405:30;9471:34;9451:18;;;9444:62;-1:-1:-1;;;9522:18:13;;;9515:40;9572:19;;2005:74:3;9191:406:13;2005:74:3;-1:-1:-1;;;;;;2096:16:3;;;;;:9;:16;;;;;;;1914:205::o;1668:101:2:-;1108:6;;-1:-1:-1;;;;;1108:6:2;719:10:9;1248:23:2;1240:68;;;;-1:-1:-1;;;1240:68:2;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;2635:102:3:-;2691:13;2723:7;2716:14;;;;;:::i;4268:153::-;4362:52;719:10:9;4395:8:3;4405;4362:18;:52::i;:::-;4268:153;;:::o;1388:106:1:-;1446:4;1480:7;-1:-1:-1;;;;;1469:18:1;:7;1108:6:2;;-1:-1:-1;;;;;1108:6:2;;1036:85;1469:7:1;-1:-1:-1;;;;;1469:18:1;;;1388:106;-1:-1:-1;;1388:106:1:o;5352:320:3:-;5521:41;719:10:9;5554:7:3;5521:18;:41::i;:::-;5513:103;;;;-1:-1:-1;;;5513:103:3;;;;;;;:::i;:::-;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;381:208:1:-;523:13;559:23;574:7;559:14;:23::i;1918:198:2:-;1108:6;;-1:-1:-1;;;;;1108:6:2;719:10:9;1248:23:2;1240:68;;;;-1:-1:-1;;;1240:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:2;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:2;;9804:2:13;1998:73:2::1;::::0;::::1;9786:21:13::0;9843:2;9823:18;;;9816:30;9882:34;9862:18;;;9855:62;-1:-1:-1;;;9933:18:13;;;9926:36;9979:19;;1998:73:2::1;9602:402:13::0;1998:73:2::1;2081:28;2100:8;2081:18;:28::i;7144:125:3:-:0;7209:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:3;:30;;;7144:125::o;10995:171::-;11069:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11069:29:3;-1:-1:-1;;;;;11069:29:3;;;;;;;;:24;;11122:23;11069:24;11122:14;:23::i;:::-;-1:-1:-1;;;;;11113:46:3;;;;;;;;;;;10995:171;;:::o;7427:344::-;7520:4;7544:16;7552:7;7544;:16::i;:::-;7536:73;;;;-1:-1:-1;;;7536:73:3;;10211:2:13;7536:73:3;;;10193:21:13;10250:2;10230:18;;;10223:30;10289:34;10269:18;;;10262:62;-1:-1:-1;;;10340:18:13;;;10333:42;10392:19;;7536:73:3;10009:408:13;7536:73:3;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;-1:-1:-1;;;;;7676:16:3;:7;-1:-1:-1;;;;;7676:16:3;;:51;;;;7720:7;-1:-1:-1;;;;;7696:31:3;:20;7708:7;7696:11;:20::i;:::-;-1:-1:-1;;;;;7696:31:3;;7676:51;:87;;;-1:-1:-1;;;;;;4607:25:3;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7731:32;7668:96;7427:344;-1:-1:-1;;;;7427:344:3:o;10324:560::-;10478:4;-1:-1:-1;;;;;10451:31:3;:23;10466:7;10451:14;:23::i;:::-;-1:-1:-1;;;;;10451:31:3;;10443:85;;;;-1:-1:-1;;;10443:85:3;;10624:2:13;10443:85:3;;;10606:21:13;10663:2;10643:18;;;10636:30;10702:34;10682:18;;;10675:62;-1:-1:-1;;;10753:18:13;;;10746:39;10802:19;;10443:85:3;10422:405:13;10443:85:3;-1:-1:-1;;;;;10546:16:3;;10538:65;;;;-1:-1:-1;;;10538:65:3;;11034:2:13;10538:65:3;;;11016:21:13;11073:2;11053:18;;;11046:30;11112:34;11092:18;;;11085:62;-1:-1:-1;;;11163:18:13;;;11156:34;11207:19;;10538:65:3;10832:400:13;10538:65:3;10715:29;10732:1;10736:7;10715:8;:29::i;:::-;-1:-1:-1;;;;;10755:15:3;;;;;;:9;:15;;;;;:20;;10774:1;;10755:15;:20;;10774:1;;10755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10785:13:3;;;;;;:9;:13;;;;;:18;;10802:1;;10785:13;:18;;10802:1;;10785:18;:::i;:::-;;;;-1:-1:-1;;10813:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10813:21:3;-1:-1:-1;;;;;10813:21:3;;;;;;;;;10850:27;;10813:16;;10850:27;;;;;;;10324:560;;;:::o;595:132:1:-;689:31;712:7;689:22;:31::i;9063:372:3:-;-1:-1:-1;;;;;9142:16:3;;9134:61;;;;-1:-1:-1;;;9134:61:3;;11834:2:13;9134:61:3;;;11816:21:13;;;11853:18;;;11846:30;11912:34;11892:18;;;11885:62;11964:18;;9134:61:3;11632:356:13;9134:61:3;9214:16;9222:7;9214;:16::i;:::-;9213:17;9205:58;;;;-1:-1:-1;;;9205:58:3;;12195:2:13;9205:58:3;;;12177:21:13;12234:2;12214:18;;;12207:30;12273;12253:18;;;12246:58;12321:18;;9205:58:3;11993:352:13;9205:58:3;-1:-1:-1;;;;;9330:13:3;;;;;;:9;:13;;;;;:18;;9347:1;;9330:13;:18;;9347:1;;9330:18;:::i;:::-;;;;-1:-1:-1;;9358:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9358:21:3;-1:-1:-1;;;;;9358:21:3;;;;;;;;9395:33;;9358:16;;;9395:33;;9358:16;;9395:33;9063:372;;:::o;1277:214:6:-;1376:16;1384:7;1376;:16::i;:::-;1368:75;;;;-1:-1:-1;;;1368:75:6;;12552:2:13;1368:75:6;;;12534:21:13;12591:2;12571:18;;;12564:30;12630:34;12610:18;;;12603:62;-1:-1:-1;;;12681:18:13;;;12674:44;12735:19;;1368:75:6;12350:410:13;1368:75:6;1453:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;736:97:0:-;804:22;;;;:7;;:22;;;;;:::i;2270:187:2:-;2362:6;;;-1:-1:-1;;;;;2378:17:2;;;-1:-1:-1;;;;;;2378:17:2;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;11301:307:3:-;11451:8;-1:-1:-1;;;;;11442:17:3;:5;-1:-1:-1;;;;;11442:17:3;;;11434:55;;;;-1:-1:-1;;;11434:55:3;;12967:2:13;11434:55:3;;;12949:21:13;13006:2;12986:18;;;12979:30;13045:27;13025:18;;;13018:55;13090:18;;11434:55:3;12765:349:13;11434:55:3;-1:-1:-1;;;;;11499:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11499:46:3;;;;;;;;;;11560:41;;540::13;;;11560::3;;513:18:13;11560:41:3;;;;;;;11301:307;;;:::o;6534:::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;-1:-1:-1;;;6723:111:3;;;;;;;:::i;467:663:6:-;540:13;573:16;581:7;573;:16::i;:::-;565:78;;;;-1:-1:-1;;;565:78:6;;13740:2:13;565:78:6;;;13722:21:13;13779:2;13759:18;;;13752:30;13818:34;13798:18;;;13791:62;-1:-1:-1;;;13869:18:13;;;13862:47;13926:19;;565:78:6;13538:413:13;565:78:6;654:23;680:19;;;:10;:19;;;;;654:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;709:18;730:10;:8;:10::i;:::-;709:31;;819:4;813:18;835:1;813:23;809:70;;;-1:-1:-1;859:9:6;467:663;-1:-1:-1;;467:663:6:o;809:70::-;981:23;;:27;977:106;;1055:4;1061:9;1038:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1024:48;;;;467:663;;;:::o;977:106::-;1100:23;1115:7;1100:14;:23::i;1708:200::-;1776:20;1788:7;1776:11;:20::i;:::-;1817:19;;;;:10;:19;;;;;1811:33;;;;;:::i;:::-;:38;;-1:-1:-1;1807:95:6;;1872:19;;;;:10;:19;;;;;1865:26;;;:::i;12161:778:3:-;12311:4;-1:-1:-1;;;;;12331:13:3;;1087:20:8;1133:8;12327:606:3;;12366:72;;-1:-1:-1;;;12366:72:3;;-1:-1:-1;;;;;12366:36:3;;;;;:72;;719:10:9;;12417:4:3;;12423:7;;12432:5;;12366:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12366:72:3;;;;;;;;-1:-1:-1;;12366:72:3;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:13:3;;12601:266;;12647:60;;-1:-1:-1;;;12647:60:3;;;;;;;:::i;12601:266::-;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;-1:-1:-1;;;;;;12488:51:3;-1:-1:-1;;;12488:51:3;;-1:-1:-1;12481:58:3;;12327:606;-1:-1:-1;12918:4:3;12161:778;;;;;;:::o;922:138:1:-;1001:13;1033:20;:18;:20::i;:::-;1026:27;;922:138;:::o;448:170:0:-;521:13;577:23;592:7;577:14;:23::i;:::-;560:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;546:65;;448:170;;;:::o;9652:348:3:-;9711:13;9727:23;9742:7;9727:14;:23::i;:::-;9711:39;;9847:29;9864:1;9868:7;9847:8;:29::i;:::-;-1:-1:-1;;;;;9887:16:3;;;;;;:9;:16;;;;;:21;;9907:1;;9887:16;:21;;9907:1;;9887:21;:::i;:::-;;;;-1:-1:-1;;9925:16:3;;;;:7;:16;;;;;;9918:23;;-1:-1:-1;;;;;;9918:23:3;;;9957:36;9933:7;;9925:16;-1:-1:-1;;;;;9957:36:3;;;;;9925:16;;9957:36;9701:299;9652:348;:::o;624:106:0:-;684:13;716:7;709:14;;;;;:::i;2803:329:3:-;2876:13;2909:16;2917:7;2909;:16::i;:::-;2901:76;;;;-1:-1:-1;;;2901:76:3;;15829:2:13;2901:76:3;;;15811:21:13;15868:2;15848:18;;;15841:30;15907:34;15887:18;;;15880:62;-1:-1:-1;;;15958:18:13;;;15951:45;16013:19;;2901:76:3;15627:411:13;2901:76:3;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3063:1;3045:7;3039:21;:25;:86;;;;;;;;;;;;;;;;;3091:7;3100:18;:7;:16;:18::i;:::-;3074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3039:86;3032:93;2803:329;-1:-1:-1;;;2803:329:3:o;328:703:10:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:10;;;;;;;;;;;;-1:-1:-1;;;627:10:10;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:10;;-1:-1:-1;773:2:10;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:10;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:10;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:10;;;;;;;;-1:-1:-1;972:11:10;981:2;972:11;;:::i;:::-;;;844:150;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:13;-1:-1:-1;;;;;;88:32:13;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:13;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:13;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:13:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:13;;1343:180;-1:-1:-1;1343:180:13:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:13;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:13:o;2173:328::-;2250:6;2258;2266;2319:2;2307:9;2298:7;2294:23;2290:32;2287:52;;;2335:1;2332;2325:12;2287:52;2358:29;2377:9;2358:29;:::i;:::-;2348:39;;2406:38;2440:2;2429:9;2425:18;2406:38;:::i;:::-;2396:48;;2491:2;2480:9;2476:18;2463:32;2453:42;;2173:328;;;;;:::o;2506:127::-;2567:10;2562:3;2558:20;2555:1;2548:31;2598:4;2595:1;2588:15;2622:4;2619:1;2612:15;2638:632;2703:5;2733:18;2774:2;2766:6;2763:14;2760:40;;;2780:18;;:::i;:::-;2855:2;2849:9;2823:2;2909:15;;-1:-1:-1;;2905:24:13;;;2931:2;2901:33;2897:42;2885:55;;;2955:18;;;2975:22;;;2952:46;2949:72;;;3001:18;;:::i;:::-;3041:10;3037:2;3030:22;3070:6;3061:15;;3100:6;3092;3085:22;3140:3;3131:6;3126:3;3122:16;3119:25;3116:45;;;3157:1;3154;3147:12;3116:45;3207:6;3202:3;3195:4;3187:6;3183:17;3170:44;3262:1;3255:4;3246:6;3238;3234:19;3230:30;3223:41;;;;2638:632;;;;;:::o;3275:222::-;3318:5;3371:3;3364:4;3356:6;3352:17;3348:27;3338:55;;3389:1;3386;3379:12;3338:55;3411:80;3487:3;3478:6;3465:20;3458:4;3450:6;3446:17;3411:80;:::i;3502:464::-;3589:6;3597;3605;3658:2;3646:9;3637:7;3633:23;3629:32;3626:52;;;3674:1;3671;3664:12;3626:52;3697:29;3716:9;3697:29;:::i;:::-;3687:39;;3773:2;3762:9;3758:18;3745:32;3735:42;;3828:2;3817:9;3813:18;3800:32;3855:18;3847:6;3844:30;3841:50;;;3887:1;3884;3877:12;3841:50;3910;3952:7;3943:6;3932:9;3928:22;3910:50;:::i;:::-;3900:60;;;3502:464;;;;;:::o;3971:322::-;4040:6;4093:2;4081:9;4072:7;4068:23;4064:32;4061:52;;;4109:1;4106;4099:12;4061:52;4149:9;4136:23;4182:18;4174:6;4171:30;4168:50;;;4214:1;4211;4204:12;4168:50;4237;4279:7;4270:6;4259:9;4255:22;4237:50;:::i;4298:186::-;4357:6;4410:2;4398:9;4389:7;4385:23;4381:32;4378:52;;;4426:1;4423;4416:12;4378:52;4449:29;4468:9;4449:29;:::i;4671:347::-;4736:6;4744;4797:2;4785:9;4776:7;4772:23;4768:32;4765:52;;;4813:1;4810;4803:12;4765:52;4836:29;4855:9;4836:29;:::i;:::-;4826:39;;4915:2;4904:9;4900:18;4887:32;4962:5;4955:13;4948:21;4941:5;4938:32;4928:60;;4984:1;4981;4974:12;4928:60;5007:5;4997:15;;;4671:347;;;;;:::o;5023:667::-;5118:6;5126;5134;5142;5195:3;5183:9;5174:7;5170:23;5166:33;5163:53;;;5212:1;5209;5202:12;5163:53;5235:29;5254:9;5235:29;:::i;:::-;5225:39;;5283:38;5317:2;5306:9;5302:18;5283:38;:::i;:::-;5273:48;;5368:2;5357:9;5353:18;5340:32;5330:42;;5423:2;5412:9;5408:18;5395:32;5450:18;5442:6;5439:30;5436:50;;;5482:1;5479;5472:12;5436:50;5505:22;;5558:4;5550:13;;5546:27;-1:-1:-1;5536:55:13;;5587:1;5584;5577:12;5536:55;5610:74;5676:7;5671:2;5658:16;5653:2;5649;5645:11;5610:74;:::i;:::-;5600:84;;;5023:667;;;;;;;:::o;5695:260::-;5763:6;5771;5824:2;5812:9;5803:7;5799:23;5795:32;5792:52;;;5840:1;5837;5830:12;5792:52;5863:29;5882:9;5863:29;:::i;:::-;5853:39;;5911:38;5945:2;5934:9;5930:18;5911:38;:::i;:::-;5901:48;;5695:260;;;;;:::o;5960:380::-;6039:1;6035:12;;;;6082;;;6103:61;;6157:4;6149:6;6145:17;6135:27;;6103:61;6210:2;6202:6;6199:14;6179:18;6176:38;6173:161;;;6256:10;6251:3;6247:20;6244:1;6237:31;6291:4;6288:1;6281:15;6319:4;6316:1;6309:15;6173:161;;5960:380;;;:::o;7585:413::-;7787:2;7769:21;;;7826:2;7806:18;;;7799:30;7865:34;7860:2;7845:18;;7838:62;-1:-1:-1;;;7931:2:13;7916:18;;7909:47;7988:3;7973:19;;7585:413::o;8420:356::-;8622:2;8604:21;;;8641:18;;;8634:30;8700:34;8695:2;8680:18;;8673:62;8767:2;8752:18;;8420:356::o;11237:127::-;11298:10;11293:3;11289:20;11286:1;11279:31;11329:4;11326:1;11319:15;11353:4;11350:1;11343:15;11369:125;11409:4;11437:1;11434;11431:8;11428:34;;;11442:18;;:::i;:::-;-1:-1:-1;11479:9:13;;11369:125::o;11499:128::-;11539:3;11570:1;11566:6;11563:1;11560:13;11557:39;;;11576:18;;:::i;:::-;-1:-1:-1;11612:9:13;;11499:128::o;13119:414::-;13321:2;13303:21;;;13360:2;13340:18;;;13333:30;13399:34;13394:2;13379:18;;13372:62;-1:-1:-1;;;13465:2:13;13450:18;;13443:48;13523:3;13508:19;;13119:414::o;13956:470::-;14135:3;14173:6;14167:13;14189:53;14235:6;14230:3;14223:4;14215:6;14211:17;14189:53;:::i;:::-;14305:13;;14264:16;;;;14327:57;14305:13;14264:16;14361:4;14349:17;;14327:57;:::i;:::-;14400:20;;13956:470;-1:-1:-1;;;;13956:470:13:o;14431:489::-;-1:-1:-1;;;;;14700:15:13;;;14682:34;;14752:15;;14747:2;14732:18;;14725:43;14799:2;14784:18;;14777:34;;;14847:3;14842:2;14827:18;;14820:31;;;14625:4;;14868:46;;14894:19;;14886:6;14868:46;:::i;:::-;14860:54;14431:489;-1:-1:-1;;;;;;14431:489:13:o;14925:249::-;14994:6;15047:2;15035:9;15026:7;15022:23;15018:32;15015:52;;;15063:1;15060;15053:12;15015:52;15095:9;15089:16;15114:30;15138:5;15114:30;:::i;15179:443::-;15411:3;15449:6;15443:13;15465:53;15511:6;15506:3;15499:4;15491:6;15487:17;15465:53;:::i;:::-;-1:-1:-1;;;15540:16:13;;15565:22;;;-1:-1:-1;15614:1:13;15603:13;;15179:443;-1:-1:-1;15179:443:13:o;16043:135::-;16082:3;-1:-1:-1;;16103:17:13;;16100:43;;;16123:18;;:::i;:::-;-1:-1:-1;16170:1:13;16159:13;;16043:135::o;16183:127::-;16244:10;16239:3;16235:20;16232:1;16225:31;16275:4;16272:1;16265:15;16299:4;16296:1;16289:15;16315:120;16355:1;16381;16371:35;;16386:18;;:::i;:::-;-1:-1:-1;16420:9:13;;16315:120::o;16440:112::-;16472:1;16498;16488:35;;16503:18;;:::i;:::-;-1:-1:-1;16537:9:13;;16440:112::o;16557:127::-;16618:10;16613:3;16609:20;16606:1;16599:31;16649:4;16646:1;16639:15;16673:4;16670:1;16663:15
Swarm Source
ipfs://c263d2e061e73b5c2e4acc519861cd7e0e515929951ad92b9f7f0f94f5c905e9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.