ERC-721
Overview
Max Total Supply
420 420
Holders
225
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 420Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ClubFourTwenty
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; /** * @title Delegate Proxy * @notice delegate ownership of a contract to another address, to save on unneeded transactions to approve contract use for users */ contract OwnableDelegateProxy { } /** * @title Proxy Registory * @notice map address to the delegate proxy */ contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ClubFourTwenty NFT * @notice ERC721 contract */ contract ClubFourTwenty is ERC721Royalty, Ownable { /** * Libraries */ using Counters for Counters.Counter; /** * Events */ event Withdraw(address indexed operator); event SetBaseTokenURI(string baseTokenURI); event SetContractURI(string contractURI); event SetProxyRegistryAddress(address indexed proxyRegistryAddress); event SetFee(uint256 fee); event SetDefaultRoyalty(address indexed receiver, uint96 feeNumerator); event SetTokenRoyalty( uint256 tokenId, address indexed receiver, uint96 feeNumerator ); /** * Public Variables */ uint256 public MAX_SUPPLY = 420; uint256 public fee; address public proxyRegistryAddress; string public baseTokenURI; string public contractURI; /** * Private Variables */ Counters.Counter private _totalSupply; /** * Constructor * @notice Owner address will be automatically set to deployer address in the parent contract (Ownable) * @param _baseTokenURI - base uri to be set as a initial baseURI * @param _contractURI - base contract uri to be set as a initial _contractURI * @param _proxyRegistryAddress - proxy address to be set as a initial proxyRegistryAddress */ constructor( string memory _baseTokenURI, string memory _contractURI, address _proxyRegistryAddress ) ERC721("420Club", "420") { baseTokenURI = _baseTokenURI; contractURI = _contractURI; proxyRegistryAddress = _proxyRegistryAddress; // _totalSupply is initialized to 1, since starting at 0 leads to higher gas cost for the first minter _totalSupply.increment(); } /** * Receive function */ receive() external payable {} /** * Fallback function */ fallback() external payable {} /** * @notice update contractURI * @param _contractURI - contract uri to be set as a new contractURI */ function setContractURI(string memory _contractURI) external onlyOwner { contractURI = _contractURI; emit SetContractURI(contractURI); } /** * @notice Set base token uri for this contract * @dev onlyOwner * @param _baseTokenURI - string to be set as a new baseTokenURI */ function setBaseTokenURI(string memory _baseTokenURI) external onlyOwner { baseTokenURI = _baseTokenURI; emit SetBaseTokenURI(_baseTokenURI); } /** * @notice Register proxy registry address * @dev onlyOwner * @param _proxyRegistryAddress - address to be set as a new proxyRegistryAddress */ function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner { proxyRegistryAddress = _proxyRegistryAddress; emit SetProxyRegistryAddress(_proxyRegistryAddress); } /** * @notice Set fee * @dev onlyOwner * @param _fee - fee to be set as a new fee */ function setFee(uint256 _fee) external onlyOwner { fee = _fee; emit SetFee(_fee); } /** * @notice Set Defualt Royalty * @dev onlyOwner * @param _receiver - address, cannot be the zero address * @param _feeNumerator - fee numerator, can not be greater then 10000 */ function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external onlyOwner { _setDefaultRoyalty(_receiver, _feeNumerator); emit SetDefaultRoyalty(_receiver, _feeNumerator); } /** * @notice Sets the royalty information for a specific token id, overriding the global default. * @dev onlyOwner * @param _tokenId - tokenId, must be already minted. * @param _receiver - address, cannot be the zero address * @param _feeNumerator - cannot be greater than 10000 */ function setTokenRoyalty( uint256 _tokenId, address _receiver, uint96 _feeNumerator ) external onlyOwner { _setTokenRoyalty(_tokenId, _receiver, _feeNumerator); emit SetTokenRoyalty(_tokenId, _receiver, _feeNumerator); } /** * @notice Transfer balance in contract to the owner address * @dev onlyOwner */ function withdraw() external onlyOwner { require(address(this).balance > 0, "Not Enough Balance Of Contract"); (bool success, ) = owner().call{value: address(this).balance}(""); require(success, "Transfer Failed"); emit Withdraw(msg.sender); } /** * @notice Return totalSupply * @return uint256 */ function totalSupply() public view returns (uint256) { return _totalSupply.current() - 1; } /** * @notice Return bool if the token exists * @param _tokenId - tokenId to be check if exists * @return bool */ function exists(uint256 _tokenId) public view returns (bool) { return _exists(_tokenId); } /** * @notice Mint token to msg.sender */ function mint() public payable { mintTo(_msgSender()); } /** * @notice Mint token to the beneficiary * @param _beneficiary - address eligible to get the token */ function mintTo(address _beneficiary) public payable { require(msg.value >= fee, "Insufficient Fee"); require(totalSupply() < MAX_SUPPLY, "Max Supply"); uint256 tokenId = _totalSupply.current(); _safeMint(_beneficiary, tokenId); _totalSupply.increment(); } /** * @notice Check if the owner approve the operator address * @dev Override to allow proxy contracts for gas less approval * @param _owner - owner address * @param _operator - operator address * @return bool */ function isApprovedForAll(address _owner, address _operator) public view override returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(_owner)) == _operator) { return true; } return super.isApprovedForAll(_owner, _operator); } /** * @notice See {ERC721-_baseURI} * @dev Override to return baseTokenURI set by the owner * @return string memory */ function _baseURI() internal view override returns (string memory) { return baseTokenURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/ERC721Royalty.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../common/ERC2981.sol"; import "../../../utils/introspection/ERC165.sol"; /** * @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment * information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC721Royalty is ERC2981, ERC721 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); _resetTokenRoyalty(tokenId); } }
// 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/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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// 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; } }
// 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 (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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 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/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 (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/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 (last updated v4.5.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be payed in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","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":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"SetBaseTokenURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractURI","type":"string"}],"name":"SetContractURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"SetDefaultRoyalty","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"SetFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"proxyRegistryAddress","type":"address"}],"name":"SetProxyRegistryAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"SetTokenRoyalty","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"}],"name":"Withdraw","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526101a46009553480156200001757600080fd5b5060405162004d9438038062004d9483398181016040528101906200003d9190620003ad565b6040518060400160405280600781526020017f343230436c7562000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f34323000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000c192919062000274565b508060039080519060200190620000da92919062000274565b505050620000fd620000f16200019060201b60201c565b6200019860201b60201c565b82600c90805190602001906200011592919062000274565b5081600d90805190602001906200012e92919062000274565b5080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000187600e6200025e60201b62001b251760201c565b505050620005f3565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001816000016000828254019250508190555050565b8280546200028290620004fe565b90600052602060002090601f016020900481019282620002a65760008555620002f2565b82601f10620002c157805160ff1916838001178555620002f2565b82800160010185558215620002f2579182015b82811115620002f1578251825591602001919060010190620002d4565b5b50905062000301919062000305565b5090565b5b808211156200032057600081600090555060010162000306565b5090565b60006200033b62000335846200045e565b62000435565b9050828152602081018484840111156200035457600080fd5b62000361848285620004c8565b509392505050565b6000815190506200037a81620005d9565b92915050565b600082601f8301126200039257600080fd5b8151620003a484826020860162000324565b91505092915050565b600080600060608486031215620003c357600080fd5b600084015167ffffffffffffffff811115620003de57600080fd5b620003ec8682870162000380565b935050602084015167ffffffffffffffff8111156200040a57600080fd5b620004188682870162000380565b92505060406200042b8682870162000369565b9150509250925092565b60006200044162000454565b90506200044f828262000534565b919050565b6000604051905090565b600067ffffffffffffffff8211156200047c576200047b62000599565b5b6200048782620005c8565b9050602081019050919050565b6000620004a182620004a8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620004e8578082015181840152602081019050620004cb565b83811115620004f8576000848401525b50505050565b600060028204905060018216806200051757607f821691505b602082108114156200052e576200052d6200056a565b5b50919050565b6200053f82620005c8565b810181811067ffffffffffffffff8211171562000561576200056062000599565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620005e48162000494565b8114620005f057600080fd5b50565b61479180620006036000396000f3fe6080604052600436106101f25760003560e01c806369fe0e2d1161010d578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb7146106c0578063ddca3f43146106eb578063e8a3d48514610716578063e985e9c514610741578063f2fde38b1461077e576101f9565b8063b88d4fde14610606578063c87b56dd1461062f578063cd7c03261461066c578063d26ea6c014610697576101f9565b80638da5cb5b116100dc5780638da5cb5b1461055e578063938e3d7b1461058957806395d89b41146105b2578063a22cb465146105dd576101f9565b806369fe0e2d146104c557806370a08231146104ee578063715018a61461052b578063755edd1714610542576101f9565b80632a55205a1161018557806342842e0e1161015457806342842e0e146103f95780634f558e79146104225780635944c7531461045f5780636352211e14610488576101f9565b80632a55205a1461035057806330176e131461038e57806332cb6b0c146103b75780633ccfd60b146103e2576101f9565b8063095ea7b3116101c1578063095ea7b3146102c95780631249c58b146102f257806318160ddd146102fc57806323b872dd14610327576101f9565b806301ffc9a7146101fb57806304634d8d1461023857806306fdde0314610261578063081812fc1461028c576101f9565b366101f957005b005b34801561020757600080fd5b50610222600480360381019061021d919061322a565b6107a7565b60405161022f919061390a565b60405180910390f35b34801561024457600080fd5b5061025f600480360381019061025a91906131ee565b6107b9565b005b34801561026d57600080fd5b50610276610891565b6040516102839190613925565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae91906132e6565b610923565b6040516102c0919061387a565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906131b2565b6109a8565b005b6102fa610ac0565b005b34801561030857600080fd5b50610311610ad2565b60405161031e9190613c49565b60405180910390f35b34801561033357600080fd5b5061034e600480360381019061034991906130ac565b610aef565b005b34801561035c57600080fd5b506103776004803603810190610372919061335e565b610b4f565b6040516103859291906138e1565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b091906132a5565b610d3a565b005b3480156103c357600080fd5b506103cc610e07565b6040516103d99190613c49565b60405180910390f35b3480156103ee57600080fd5b506103f7610e0d565b005b34801561040557600080fd5b50610420600480360381019061041b91906130ac565b610fc5565b005b34801561042e57600080fd5b50610449600480360381019061044491906132e6565b610fe5565b604051610456919061390a565b60405180910390f35b34801561046b57600080fd5b506104866004803603810190610481919061330f565b610ff7565b005b34801561049457600080fd5b506104af60048036038101906104aa91906132e6565b6110d3565b6040516104bc919061387a565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906132e6565b611185565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613047565b611241565b6040516105229190613c49565b60405180910390f35b34801561053757600080fd5b506105406112f9565b005b61055c60048036038101906105579190613047565b611381565b005b34801561056a57600080fd5b50610573611437565b604051610580919061387a565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906132a5565b611461565b005b3480156105be57600080fd5b506105c761152f565b6040516105d49190613925565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613176565b6115c1565b005b34801561061257600080fd5b5061062d600480360381019061062891906130fb565b6115d7565b005b34801561063b57600080fd5b50610656600480360381019061065191906132e6565b611639565b6040516106639190613925565b60405180910390f35b34801561067857600080fd5b506106816116e0565b60405161068e919061387a565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613047565b611706565b005b3480156106cc57600080fd5b506106d5611809565b6040516106e29190613925565b60405180910390f35b3480156106f757600080fd5b50610700611897565b60405161070d9190613c49565b60405180910390f35b34801561072257600080fd5b5061072b61189d565b6040516107389190613925565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613070565b61192b565b604051610775919061390a565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190613047565b611a2d565b005b60006107b282611b3b565b9050919050565b6107c1611c1d565b73ffffffffffffffffffffffffffffffffffffffff166107df611437565b73ffffffffffffffffffffffffffffffffffffffff1614610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90613ae9565b60405180910390fd5b61083f8282611c25565b8173ffffffffffffffffffffffffffffffffffffffff167fa1edde4ed5c1392c90dccd8e051a4080b761850e49a24c77d826348a51e1f8dc826040516108859190613c8d565b60405180910390a25050565b6060600280546108a090613f87565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613f87565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611dba565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613ac9565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b3826110d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613b29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611c1d565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611c1d565b61192b565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890613a49565b60405180910390fd5b610abb8383611e26565b505050565b610ad0610acb611c1d565b611381565b565b60006001610ae0600e611edf565b610aea9190613e73565b905090565b610b00610afa611c1d565b82611eed565b610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690613b69565b60405180910390fd5b610b4a838383611fcb565b505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610ce55760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610cef612232565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d1b9190613e19565b610d259190613de8565b90508160000151819350935050509250929050565b610d42611c1d565b73ffffffffffffffffffffffffffffffffffffffff16610d60611437565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90613ae9565b60405180910390fd5b80600c9080519060200190610dcc929190612e41565b507f199e933997358e1789d8b56ea8c551befeb05ce2fe3fe506199f1230f5a591b481604051610dfc9190613925565b60405180910390a150565b60095481565b610e15611c1d565b73ffffffffffffffffffffffffffffffffffffffff16610e33611437565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613ae9565b60405180910390fd5b60004711610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390613be9565b60405180910390fd5b6000610ed6611437565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ef990613865565b60006040518083038185875af1925050503d8060008114610f36576040519150601f19603f3d011682016040523d82523d6000602084013e610f3b565b606091505b5050905080610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690613b49565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e60405160405180910390a250565b610fe0838383604051806020016040528060008152506115d7565b505050565b6000610ff082611dba565b9050919050565b610fff611c1d565b73ffffffffffffffffffffffffffffffffffffffff1661101d611437565b73ffffffffffffffffffffffffffffffffffffffff1614611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90613ae9565b60405180910390fd5b61107e83838361223c565b8173ffffffffffffffffffffffffffffffffffffffff167f2595213009f64247e2789cf9981bcc53ee736a6aa52042a651aa1549ae6fff6184836040516110c6929190613c64565b60405180910390a2505050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613a89565b60405180910390fd5b80915050919050565b61118d611c1d565b73ffffffffffffffffffffffffffffffffffffffff166111ab611437565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613ae9565b60405180910390fd5b80600a819055507e172ddfc5ae88d08b3de01a5a187667c37a5a53989e8c175055cb6c993792a7816040516112369190613c49565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990613a69565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611301611c1d565b73ffffffffffffffffffffffffffffffffffffffff1661131f611437565b73ffffffffffffffffffffffffffffffffffffffff1614611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90613ae9565b60405180910390fd5b61137f60006123e4565b565b600a543410156113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90613ba9565b60405180910390fd5b6009546113d1610ad2565b10611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613c09565b60405180910390fd5b600061141d600e611edf565b905061142982826124aa565b611433600e611b25565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611469611c1d565b73ffffffffffffffffffffffffffffffffffffffff16611487611437565b73ffffffffffffffffffffffffffffffffffffffff16146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613ae9565b60405180910390fd5b80600d90805190602001906114f3929190612e41565b507f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea52600d6040516115249190613947565b60405180910390a150565b60606003805461153e90613f87565b80601f016020809104026020016040519081016040528092919081815260200182805461156a90613f87565b80156115b75780601f1061158c576101008083540402835291602001916115b7565b820191906000526020600020905b81548152906001019060200180831161159a57829003601f168201915b5050505050905090565b6115d36115cc611c1d565b83836124c8565b5050565b6115e86115e2611c1d565b83611eed565b611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90613b69565b60405180910390fd5b61163384848484612635565b50505050565b606061164482611dba565b611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90613b09565b60405180910390fd5b600061168d612691565b905060008151116116ad57604051806020016040528060008152506116d8565b806116b784612723565b6040516020016116c8929190613841565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61170e611c1d565b73ffffffffffffffffffffffffffffffffffffffff1661172c611437565b73ffffffffffffffffffffffffffffffffffffffff1614611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613ae9565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f191f22b6f37d18fc193c636df441fbe362909a26338c46a59122134ba99d91e860405160405180910390a250565b600c805461181690613f87565b80601f016020809104026020016040519081016040528092919081815260200182805461184290613f87565b801561188f5780601f106118645761010080835404028352916020019161188f565b820191906000526020600020905b81548152906001019060200180831161187257829003601f168201915b505050505081565b600a5481565b600d80546118aa90613f87565b80601f01602080910402602001604051908101604052809291908181526020018280546118d690613f87565b80156119235780601f106118f857610100808354040283529160200191611923565b820191906000526020600020905b81548152906001019060200180831161190657829003601f168201915b505050505081565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119a3919061387a565b60206040518083038186803b1580156119bb57600080fd5b505afa1580156119cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f3919061327c565b73ffffffffffffffffffffffffffffffffffffffff161415611a19576001915050611a27565b611a2384846128d0565b9150505b92915050565b611a35611c1d565b73ffffffffffffffffffffffffffffffffffffffff16611a53611437565b73ffffffffffffffffffffffffffffffffffffffff1614611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa090613ae9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090613989565b60405180910390fd5b611b22816123e4565b50565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c0657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c165750611c1582612964565b5b9050919050565b600033905090565b611c2d612232565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf290613c29565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e99836110d3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611ef882611dba565b611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613a29565b60405180910390fd5b6000611f42836110d3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fb157508373ffffffffffffffffffffffffffffffffffffffff16611f9984610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fc25750611fc1818561192b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611feb826110d3565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906139a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a8906139e9565b60405180910390fd5b6120bc8383836129de565b6120c7600082611e26565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121179190613e73565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216e9190613d92565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461222d8383836129e3565b505050565b6000612710905090565b612244612232565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230990613b89565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506001600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124c48282604051806020016040528060008152506129e8565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e90613a09565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612628919061390a565b60405180910390a3505050565b612640848484611fcb565b61264c84848484612a43565b61268b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268290613969565b60405180910390fd5b50505050565b6060600c80546126a090613f87565b80601f01602080910402602001604051908101604052809291908181526020018280546126cc90613f87565b80156127195780601f106126ee57610100808354040283529160200191612719565b820191906000526020600020905b8154815290600101906020018083116126fc57829003601f168201915b5050505050905090565b6060600082141561276b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128cb565b600082905060005b6000821461279d57808061278690613fea565b915050600a826127969190613de8565b9150612773565b60008167ffffffffffffffff8111156127df577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128115781602001600182028036833780820191505090505b5090505b600085146128c45760018261282a9190613e73565b9150600a856128399190614033565b60306128459190613d92565b60f81b818381518110612881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128bd9190613de8565b9450612815565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129d757506129d682612bda565b5b9050919050565b505050565b505050565b6129f28383612c44565b6129ff6000848484612a43565b612a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3590613969565b60405180910390fd5b505050565b6000612a648473ffffffffffffffffffffffffffffffffffffffff16612e1e565b15612bcd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8d611c1d565b8786866040518563ffffffff1660e01b8152600401612aaf9493929190613895565b602060405180830381600087803b158015612ac957600080fd5b505af1925050508015612afa57506040513d601f19601f82011682018060405250810190612af79190613253565b60015b612b7d573d8060008114612b2a576040519150601f19603f3d011682016040523d82523d6000602084013e612b2f565b606091505b50600081511415612b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6c90613969565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bd2565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab90613aa9565b60405180910390fd5b612cbd81611dba565b15612cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf4906139c9565b60405180910390fd5b612d09600083836129de565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d599190613d92565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e1a600083836129e3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e4d90613f87565b90600052602060002090601f016020900481019282612e6f5760008555612eb6565b82601f10612e8857805160ff1916838001178555612eb6565b82800160010185558215612eb6579182015b82811115612eb5578251825591602001919060010190612e9a565b5b509050612ec39190612ec7565b5090565b5b80821115612ee0576000816000905550600101612ec8565b5090565b6000612ef7612ef284613ccd565b613ca8565b905082815260208101848484011115612f0f57600080fd5b612f1a848285613f45565b509392505050565b6000612f35612f3084613cfe565b613ca8565b905082815260208101848484011115612f4d57600080fd5b612f58848285613f45565b509392505050565b600081359050612f6f816146d1565b92915050565b600081359050612f84816146e8565b92915050565b600081359050612f99816146ff565b92915050565b600081519050612fae816146ff565b92915050565b600082601f830112612fc557600080fd5b8135612fd5848260208601612ee4565b91505092915050565b600081519050612fed81614716565b92915050565b600082601f83011261300457600080fd5b8135613014848260208601612f22565b91505092915050565b60008135905061302c8161472d565b92915050565b60008135905061304181614744565b92915050565b60006020828403121561305957600080fd5b600061306784828501612f60565b91505092915050565b6000806040838503121561308357600080fd5b600061309185828601612f60565b92505060206130a285828601612f60565b9150509250929050565b6000806000606084860312156130c157600080fd5b60006130cf86828701612f60565b93505060206130e086828701612f60565b92505060406130f18682870161301d565b9150509250925092565b6000806000806080858703121561311157600080fd5b600061311f87828801612f60565b945050602061313087828801612f60565b93505060406131418782880161301d565b925050606085013567ffffffffffffffff81111561315e57600080fd5b61316a87828801612fb4565b91505092959194509250565b6000806040838503121561318957600080fd5b600061319785828601612f60565b92505060206131a885828601612f75565b9150509250929050565b600080604083850312156131c557600080fd5b60006131d385828601612f60565b92505060206131e48582860161301d565b9150509250929050565b6000806040838503121561320157600080fd5b600061320f85828601612f60565b925050602061322085828601613032565b9150509250929050565b60006020828403121561323c57600080fd5b600061324a84828501612f8a565b91505092915050565b60006020828403121561326557600080fd5b600061327384828501612f9f565b91505092915050565b60006020828403121561328e57600080fd5b600061329c84828501612fde565b91505092915050565b6000602082840312156132b757600080fd5b600082013567ffffffffffffffff8111156132d157600080fd5b6132dd84828501612ff3565b91505092915050565b6000602082840312156132f857600080fd5b60006133068482850161301d565b91505092915050565b60008060006060848603121561332457600080fd5b60006133328682870161301d565b935050602061334386828701612f60565b925050604061335486828701613032565b9150509250925092565b6000806040838503121561337157600080fd5b600061337f8582860161301d565b92505060206133908582860161301d565b9150509250929050565b6133a381613ea7565b82525050565b6133b281613eb9565b82525050565b60006133c382613d44565b6133cd8185613d5a565b93506133dd818560208601613f54565b6133e681614120565b840191505092915050565b60006133fc82613d4f565b6134068185613d76565b9350613416818560208601613f54565b61341f81614120565b840191505092915050565b600061343582613d4f565b61343f8185613d87565b935061344f818560208601613f54565b80840191505092915050565b6000815461346881613f87565b6134728186613d76565b9450600182166000811461348d576001811461349f576134d2565b60ff19831686526020860193506134d2565b6134a885613d2f565b60005b838110156134ca578154818901526001820191506020810190506134ab565b808801955050505b50505092915050565b60006134e8603283613d76565b91506134f382614131565b604082019050919050565b600061350b602683613d76565b915061351682614180565b604082019050919050565b600061352e602583613d76565b9150613539826141cf565b604082019050919050565b6000613551601c83613d76565b915061355c8261421e565b602082019050919050565b6000613574602483613d76565b915061357f82614247565b604082019050919050565b6000613597601983613d76565b91506135a282614296565b602082019050919050565b60006135ba602c83613d76565b91506135c5826142bf565b604082019050919050565b60006135dd603883613d76565b91506135e88261430e565b604082019050919050565b6000613600602a83613d76565b915061360b8261435d565b604082019050919050565b6000613623602983613d76565b915061362e826143ac565b604082019050919050565b6000613646602083613d76565b9150613651826143fb565b602082019050919050565b6000613669602c83613d76565b915061367482614424565b604082019050919050565b600061368c602083613d76565b915061369782614473565b602082019050919050565b60006136af602f83613d76565b91506136ba8261449c565b604082019050919050565b60006136d2602183613d76565b91506136dd826144eb565b604082019050919050565b60006136f5600f83613d76565b91506137008261453a565b602082019050919050565b6000613718600083613d6b565b915061372382614563565b600082019050919050565b600061373b603183613d76565b915061374682614566565b604082019050919050565b600061375e601b83613d76565b9150613769826145b5565b602082019050919050565b6000613781601083613d76565b915061378c826145de565b602082019050919050565b60006137a4602a83613d76565b91506137af82614607565b604082019050919050565b60006137c7601e83613d76565b91506137d282614656565b602082019050919050565b60006137ea600a83613d76565b91506137f58261467f565b602082019050919050565b600061380d601983613d76565b9150613818826146a8565b602082019050919050565b61382c81613f23565b82525050565b61383b81613f2d565b82525050565b600061384d828561342a565b9150613859828461342a565b91508190509392505050565b60006138708261370b565b9150819050919050565b600060208201905061388f600083018461339a565b92915050565b60006080820190506138aa600083018761339a565b6138b7602083018661339a565b6138c46040830185613823565b81810360608301526138d681846133b8565b905095945050505050565b60006040820190506138f6600083018561339a565b6139036020830184613823565b9392505050565b600060208201905061391f60008301846133a9565b92915050565b6000602082019050818103600083015261393f81846133f1565b905092915050565b60006020820190508181036000830152613961818461345b565b905092915050565b60006020820190508181036000830152613982816134db565b9050919050565b600060208201905081810360008301526139a2816134fe565b9050919050565b600060208201905081810360008301526139c281613521565b9050919050565b600060208201905081810360008301526139e281613544565b9050919050565b60006020820190508181036000830152613a0281613567565b9050919050565b60006020820190508181036000830152613a228161358a565b9050919050565b60006020820190508181036000830152613a42816135ad565b9050919050565b60006020820190508181036000830152613a62816135d0565b9050919050565b60006020820190508181036000830152613a82816135f3565b9050919050565b60006020820190508181036000830152613aa281613616565b9050919050565b60006020820190508181036000830152613ac281613639565b9050919050565b60006020820190508181036000830152613ae28161365c565b9050919050565b60006020820190508181036000830152613b028161367f565b9050919050565b60006020820190508181036000830152613b22816136a2565b9050919050565b60006020820190508181036000830152613b42816136c5565b9050919050565b60006020820190508181036000830152613b62816136e8565b9050919050565b60006020820190508181036000830152613b828161372e565b9050919050565b60006020820190508181036000830152613ba281613751565b9050919050565b60006020820190508181036000830152613bc281613774565b9050919050565b60006020820190508181036000830152613be281613797565b9050919050565b60006020820190508181036000830152613c02816137ba565b9050919050565b60006020820190508181036000830152613c22816137dd565b9050919050565b60006020820190508181036000830152613c4281613800565b9050919050565b6000602082019050613c5e6000830184613823565b92915050565b6000604082019050613c796000830185613823565b613c866020830184613832565b9392505050565b6000602082019050613ca26000830184613832565b92915050565b6000613cb2613cc3565b9050613cbe8282613fb9565b919050565b6000604051905090565b600067ffffffffffffffff821115613ce857613ce76140f1565b5b613cf182614120565b9050602081019050919050565b600067ffffffffffffffff821115613d1957613d186140f1565b5b613d2282614120565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9d82613f23565b9150613da883613f23565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddd57613ddc614064565b5b828201905092915050565b6000613df382613f23565b9150613dfe83613f23565b925082613e0e57613e0d614093565b5b828204905092915050565b6000613e2482613f23565b9150613e2f83613f23565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6857613e67614064565b5b828202905092915050565b6000613e7e82613f23565b9150613e8983613f23565b925082821015613e9c57613e9b614064565b5b828203905092915050565b6000613eb282613f03565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613efc82613ea7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613f72578082015181840152602081019050613f57565b83811115613f81576000848401525b50505050565b60006002820490506001821680613f9f57607f821691505b60208210811415613fb357613fb26140c2565b5b50919050565b613fc282614120565b810181811067ffffffffffffffff82111715613fe157613fe06140f1565b5b80604052505050565b6000613ff582613f23565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561402857614027614064565b5b600182019050919050565b600061403e82613f23565b915061404983613f23565b92508261405957614058614093565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b7f496e73756666696369656e742046656500000000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4e6f7420456e6f7567682042616c616e6365204f6620436f6e74726163740000600082015250565b7f4d617820537570706c7900000000000000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6146da81613ea7565b81146146e557600080fd5b50565b6146f181613eb9565b81146146fc57600080fd5b50565b61470881613ec5565b811461471357600080fd5b50565b61471f81613ef1565b811461472a57600080fd5b50565b61473681613f23565b811461474157600080fd5b50565b61474d81613f2d565b811461475857600080fd5b5056fea264697066735822122074b077c9f93cbe30e82de0bab44b805ac1fdc8c9ae558f31e7d2c4131cb8c3b164736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f6d657461646174612d6170692d6d333533736c786966612d75772e612e72756e2e6170702f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f6d657461646174612d6170692d6d333533736c786966612d75772e612e72756e2e6170702f636f6e74726163740000000000000000000000
Deployed Bytecode
0x6080604052600436106101f25760003560e01c806369fe0e2d1161010d578063b88d4fde116100a0578063d547cfb71161006f578063d547cfb7146106c0578063ddca3f43146106eb578063e8a3d48514610716578063e985e9c514610741578063f2fde38b1461077e576101f9565b8063b88d4fde14610606578063c87b56dd1461062f578063cd7c03261461066c578063d26ea6c014610697576101f9565b80638da5cb5b116100dc5780638da5cb5b1461055e578063938e3d7b1461058957806395d89b41146105b2578063a22cb465146105dd576101f9565b806369fe0e2d146104c557806370a08231146104ee578063715018a61461052b578063755edd1714610542576101f9565b80632a55205a1161018557806342842e0e1161015457806342842e0e146103f95780634f558e79146104225780635944c7531461045f5780636352211e14610488576101f9565b80632a55205a1461035057806330176e131461038e57806332cb6b0c146103b75780633ccfd60b146103e2576101f9565b8063095ea7b3116101c1578063095ea7b3146102c95780631249c58b146102f257806318160ddd146102fc57806323b872dd14610327576101f9565b806301ffc9a7146101fb57806304634d8d1461023857806306fdde0314610261578063081812fc1461028c576101f9565b366101f957005b005b34801561020757600080fd5b50610222600480360381019061021d919061322a565b6107a7565b60405161022f919061390a565b60405180910390f35b34801561024457600080fd5b5061025f600480360381019061025a91906131ee565b6107b9565b005b34801561026d57600080fd5b50610276610891565b6040516102839190613925565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae91906132e6565b610923565b6040516102c0919061387a565b60405180910390f35b3480156102d557600080fd5b506102f060048036038101906102eb91906131b2565b6109a8565b005b6102fa610ac0565b005b34801561030857600080fd5b50610311610ad2565b60405161031e9190613c49565b60405180910390f35b34801561033357600080fd5b5061034e600480360381019061034991906130ac565b610aef565b005b34801561035c57600080fd5b506103776004803603810190610372919061335e565b610b4f565b6040516103859291906138e1565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b091906132a5565b610d3a565b005b3480156103c357600080fd5b506103cc610e07565b6040516103d99190613c49565b60405180910390f35b3480156103ee57600080fd5b506103f7610e0d565b005b34801561040557600080fd5b50610420600480360381019061041b91906130ac565b610fc5565b005b34801561042e57600080fd5b50610449600480360381019061044491906132e6565b610fe5565b604051610456919061390a565b60405180910390f35b34801561046b57600080fd5b506104866004803603810190610481919061330f565b610ff7565b005b34801561049457600080fd5b506104af60048036038101906104aa91906132e6565b6110d3565b6040516104bc919061387a565b60405180910390f35b3480156104d157600080fd5b506104ec60048036038101906104e791906132e6565b611185565b005b3480156104fa57600080fd5b5061051560048036038101906105109190613047565b611241565b6040516105229190613c49565b60405180910390f35b34801561053757600080fd5b506105406112f9565b005b61055c60048036038101906105579190613047565b611381565b005b34801561056a57600080fd5b50610573611437565b604051610580919061387a565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906132a5565b611461565b005b3480156105be57600080fd5b506105c761152f565b6040516105d49190613925565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613176565b6115c1565b005b34801561061257600080fd5b5061062d600480360381019061062891906130fb565b6115d7565b005b34801561063b57600080fd5b50610656600480360381019061065191906132e6565b611639565b6040516106639190613925565b60405180910390f35b34801561067857600080fd5b506106816116e0565b60405161068e919061387a565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190613047565b611706565b005b3480156106cc57600080fd5b506106d5611809565b6040516106e29190613925565b60405180910390f35b3480156106f757600080fd5b50610700611897565b60405161070d9190613c49565b60405180910390f35b34801561072257600080fd5b5061072b61189d565b6040516107389190613925565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190613070565b61192b565b604051610775919061390a565b60405180910390f35b34801561078a57600080fd5b506107a560048036038101906107a09190613047565b611a2d565b005b60006107b282611b3b565b9050919050565b6107c1611c1d565b73ffffffffffffffffffffffffffffffffffffffff166107df611437565b73ffffffffffffffffffffffffffffffffffffffff1614610835576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082c90613ae9565b60405180910390fd5b61083f8282611c25565b8173ffffffffffffffffffffffffffffffffffffffff167fa1edde4ed5c1392c90dccd8e051a4080b761850e49a24c77d826348a51e1f8dc826040516108859190613c8d565b60405180910390a25050565b6060600280546108a090613f87565b80601f01602080910402602001604051908101604052809291908181526020018280546108cc90613f87565b80156109195780601f106108ee57610100808354040283529160200191610919565b820191906000526020600020905b8154815290600101906020018083116108fc57829003601f168201915b5050505050905090565b600061092e82611dba565b61096d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096490613ac9565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109b3826110d3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1b90613b29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a43611c1d565b73ffffffffffffffffffffffffffffffffffffffff161480610a725750610a7181610a6c611c1d565b61192b565b5b610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa890613a49565b60405180910390fd5b610abb8383611e26565b505050565b610ad0610acb611c1d565b611381565b565b60006001610ae0600e611edf565b610aea9190613e73565b905090565b610b00610afa611c1d565b82611eed565b610b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3690613b69565b60405180910390fd5b610b4a838383611fcb565b505050565b6000806000600160008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610ce55760006040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610cef612232565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610d1b9190613e19565b610d259190613de8565b90508160000151819350935050509250929050565b610d42611c1d565b73ffffffffffffffffffffffffffffffffffffffff16610d60611437565b73ffffffffffffffffffffffffffffffffffffffff1614610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90613ae9565b60405180910390fd5b80600c9080519060200190610dcc929190612e41565b507f199e933997358e1789d8b56ea8c551befeb05ce2fe3fe506199f1230f5a591b481604051610dfc9190613925565b60405180910390a150565b60095481565b610e15611c1d565b73ffffffffffffffffffffffffffffffffffffffff16610e33611437565b73ffffffffffffffffffffffffffffffffffffffff1614610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090613ae9565b60405180910390fd5b60004711610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390613be9565b60405180910390fd5b6000610ed6611437565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ef990613865565b60006040518083038185875af1925050503d8060008114610f36576040519150601f19603f3d011682016040523d82523d6000602084013e610f3b565b606091505b5050905080610f7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7690613b49565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff67611512e0a2d90c96fd3f08dca4971bc45fba9dc679eabe839a32abbe58a8e60405160405180910390a250565b610fe0838383604051806020016040528060008152506115d7565b505050565b6000610ff082611dba565b9050919050565b610fff611c1d565b73ffffffffffffffffffffffffffffffffffffffff1661101d611437565b73ffffffffffffffffffffffffffffffffffffffff1614611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a90613ae9565b60405180910390fd5b61107e83838361223c565b8173ffffffffffffffffffffffffffffffffffffffff167f2595213009f64247e2789cf9981bcc53ee736a6aa52042a651aa1549ae6fff6184836040516110c6929190613c64565b60405180910390a2505050565b6000806004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561117c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117390613a89565b60405180910390fd5b80915050919050565b61118d611c1d565b73ffffffffffffffffffffffffffffffffffffffff166111ab611437565b73ffffffffffffffffffffffffffffffffffffffff1614611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613ae9565b60405180910390fd5b80600a819055507e172ddfc5ae88d08b3de01a5a187667c37a5a53989e8c175055cb6c993792a7816040516112369190613c49565b60405180910390a150565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a990613a69565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611301611c1d565b73ffffffffffffffffffffffffffffffffffffffff1661131f611437565b73ffffffffffffffffffffffffffffffffffffffff1614611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90613ae9565b60405180910390fd5b61137f60006123e4565b565b600a543410156113c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bd90613ba9565b60405180910390fd5b6009546113d1610ad2565b10611411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140890613c09565b60405180910390fd5b600061141d600e611edf565b905061142982826124aa565b611433600e611b25565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611469611c1d565b73ffffffffffffffffffffffffffffffffffffffff16611487611437565b73ffffffffffffffffffffffffffffffffffffffff16146114dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d490613ae9565b60405180910390fd5b80600d90805190602001906114f3929190612e41565b507f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea52600d6040516115249190613947565b60405180910390a150565b60606003805461153e90613f87565b80601f016020809104026020016040519081016040528092919081815260200182805461156a90613f87565b80156115b75780601f1061158c576101008083540402835291602001916115b7565b820191906000526020600020905b81548152906001019060200180831161159a57829003601f168201915b5050505050905090565b6115d36115cc611c1d565b83836124c8565b5050565b6115e86115e2611c1d565b83611eed565b611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90613b69565b60405180910390fd5b61163384848484612635565b50505050565b606061164482611dba565b611683576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167a90613b09565b60405180910390fd5b600061168d612691565b905060008151116116ad57604051806020016040528060008152506116d8565b806116b784612723565b6040516020016116c8929190613841565b6040516020818303038152906040525b915050919050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61170e611c1d565b73ffffffffffffffffffffffffffffffffffffffff1661172c611437565b73ffffffffffffffffffffffffffffffffffffffff1614611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990613ae9565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f191f22b6f37d18fc193c636df441fbe362909a26338c46a59122134ba99d91e860405160405180910390a250565b600c805461181690613f87565b80601f016020809104026020016040519081016040528092919081815260200182805461184290613f87565b801561188f5780601f106118645761010080835404028352916020019161188f565b820191906000526020600020905b81548152906001019060200180831161187257829003601f168201915b505050505081565b600a5481565b600d80546118aa90613f87565b80601f01602080910402602001604051908101604052809291908181526020018280546118d690613f87565b80156119235780601f106118f857610100808354040283529160200191611923565b820191906000526020600020905b81548152906001019060200180831161190657829003601f168201915b505050505081565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b81526004016119a3919061387a565b60206040518083038186803b1580156119bb57600080fd5b505afa1580156119cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119f3919061327c565b73ffffffffffffffffffffffffffffffffffffffff161415611a19576001915050611a27565b611a2384846128d0565b9150505b92915050565b611a35611c1d565b73ffffffffffffffffffffffffffffffffffffffff16611a53611437565b73ffffffffffffffffffffffffffffffffffffffff1614611aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa090613ae9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1090613989565b60405180910390fd5b611b22816123e4565b50565b6001816000016000828254019250508190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c0657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c165750611c1582612964565b5b9050919050565b600033905090565b611c2d612232565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf290613c29565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506000808201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60008073ffffffffffffffffffffffffffffffffffffffff166004600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611e99836110d3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6000611ef882611dba565b611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90613a29565b60405180910390fd5b6000611f42836110d3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fb157508373ffffffffffffffffffffffffffffffffffffffff16611f9984610923565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fc25750611fc1818561192b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611feb826110d3565b73ffffffffffffffffffffffffffffffffffffffff1614612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906139a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a8906139e9565b60405180910390fd5b6120bc8383836129de565b6120c7600082611e26565b6001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121179190613e73565b925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461216e9190613d92565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461222d8383836129e3565b505050565b6000612710905090565b612244612232565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff1611156122a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229990613bc9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612312576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230990613b89565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff168152506001600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124c48282604051806020016040528060008152506129e8565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252e90613a09565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612628919061390a565b60405180910390a3505050565b612640848484611fcb565b61264c84848484612a43565b61268b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268290613969565b60405180910390fd5b50505050565b6060600c80546126a090613f87565b80601f01602080910402602001604051908101604052809291908181526020018280546126cc90613f87565b80156127195780601f106126ee57610100808354040283529160200191612719565b820191906000526020600020905b8154815290600101906020018083116126fc57829003601f168201915b5050505050905090565b6060600082141561276b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128cb565b600082905060005b6000821461279d57808061278690613fea565b915050600a826127969190613de8565b9150612773565b60008167ffffffffffffffff8111156127df577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128115781602001600182028036833780820191505090505b5090505b600085146128c45760018261282a9190613e73565b9150600a856128399190614033565b60306128459190613d92565b60f81b818381518110612881577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128bd9190613de8565b9450612815565b8093505050505b919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129d757506129d682612bda565b5b9050919050565b505050565b505050565b6129f28383612c44565b6129ff6000848484612a43565b612a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3590613969565b60405180910390fd5b505050565b6000612a648473ffffffffffffffffffffffffffffffffffffffff16612e1e565b15612bcd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8d611c1d565b8786866040518563ffffffff1660e01b8152600401612aaf9493929190613895565b602060405180830381600087803b158015612ac957600080fd5b505af1925050508015612afa57506040513d601f19601f82011682018060405250810190612af79190613253565b60015b612b7d573d8060008114612b2a576040519150601f19603f3d011682016040523d82523d6000602084013e612b2f565b606091505b50600081511415612b75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6c90613969565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bd2565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cab90613aa9565b60405180910390fd5b612cbd81611dba565b15612cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf4906139c9565b60405180910390fd5b612d09600083836129de565b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d599190613d92565b92505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e1a600083836129e3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e4d90613f87565b90600052602060002090601f016020900481019282612e6f5760008555612eb6565b82601f10612e8857805160ff1916838001178555612eb6565b82800160010185558215612eb6579182015b82811115612eb5578251825591602001919060010190612e9a565b5b509050612ec39190612ec7565b5090565b5b80821115612ee0576000816000905550600101612ec8565b5090565b6000612ef7612ef284613ccd565b613ca8565b905082815260208101848484011115612f0f57600080fd5b612f1a848285613f45565b509392505050565b6000612f35612f3084613cfe565b613ca8565b905082815260208101848484011115612f4d57600080fd5b612f58848285613f45565b509392505050565b600081359050612f6f816146d1565b92915050565b600081359050612f84816146e8565b92915050565b600081359050612f99816146ff565b92915050565b600081519050612fae816146ff565b92915050565b600082601f830112612fc557600080fd5b8135612fd5848260208601612ee4565b91505092915050565b600081519050612fed81614716565b92915050565b600082601f83011261300457600080fd5b8135613014848260208601612f22565b91505092915050565b60008135905061302c8161472d565b92915050565b60008135905061304181614744565b92915050565b60006020828403121561305957600080fd5b600061306784828501612f60565b91505092915050565b6000806040838503121561308357600080fd5b600061309185828601612f60565b92505060206130a285828601612f60565b9150509250929050565b6000806000606084860312156130c157600080fd5b60006130cf86828701612f60565b93505060206130e086828701612f60565b92505060406130f18682870161301d565b9150509250925092565b6000806000806080858703121561311157600080fd5b600061311f87828801612f60565b945050602061313087828801612f60565b93505060406131418782880161301d565b925050606085013567ffffffffffffffff81111561315e57600080fd5b61316a87828801612fb4565b91505092959194509250565b6000806040838503121561318957600080fd5b600061319785828601612f60565b92505060206131a885828601612f75565b9150509250929050565b600080604083850312156131c557600080fd5b60006131d385828601612f60565b92505060206131e48582860161301d565b9150509250929050565b6000806040838503121561320157600080fd5b600061320f85828601612f60565b925050602061322085828601613032565b9150509250929050565b60006020828403121561323c57600080fd5b600061324a84828501612f8a565b91505092915050565b60006020828403121561326557600080fd5b600061327384828501612f9f565b91505092915050565b60006020828403121561328e57600080fd5b600061329c84828501612fde565b91505092915050565b6000602082840312156132b757600080fd5b600082013567ffffffffffffffff8111156132d157600080fd5b6132dd84828501612ff3565b91505092915050565b6000602082840312156132f857600080fd5b60006133068482850161301d565b91505092915050565b60008060006060848603121561332457600080fd5b60006133328682870161301d565b935050602061334386828701612f60565b925050604061335486828701613032565b9150509250925092565b6000806040838503121561337157600080fd5b600061337f8582860161301d565b92505060206133908582860161301d565b9150509250929050565b6133a381613ea7565b82525050565b6133b281613eb9565b82525050565b60006133c382613d44565b6133cd8185613d5a565b93506133dd818560208601613f54565b6133e681614120565b840191505092915050565b60006133fc82613d4f565b6134068185613d76565b9350613416818560208601613f54565b61341f81614120565b840191505092915050565b600061343582613d4f565b61343f8185613d87565b935061344f818560208601613f54565b80840191505092915050565b6000815461346881613f87565b6134728186613d76565b9450600182166000811461348d576001811461349f576134d2565b60ff19831686526020860193506134d2565b6134a885613d2f565b60005b838110156134ca578154818901526001820191506020810190506134ab565b808801955050505b50505092915050565b60006134e8603283613d76565b91506134f382614131565b604082019050919050565b600061350b602683613d76565b915061351682614180565b604082019050919050565b600061352e602583613d76565b9150613539826141cf565b604082019050919050565b6000613551601c83613d76565b915061355c8261421e565b602082019050919050565b6000613574602483613d76565b915061357f82614247565b604082019050919050565b6000613597601983613d76565b91506135a282614296565b602082019050919050565b60006135ba602c83613d76565b91506135c5826142bf565b604082019050919050565b60006135dd603883613d76565b91506135e88261430e565b604082019050919050565b6000613600602a83613d76565b915061360b8261435d565b604082019050919050565b6000613623602983613d76565b915061362e826143ac565b604082019050919050565b6000613646602083613d76565b9150613651826143fb565b602082019050919050565b6000613669602c83613d76565b915061367482614424565b604082019050919050565b600061368c602083613d76565b915061369782614473565b602082019050919050565b60006136af602f83613d76565b91506136ba8261449c565b604082019050919050565b60006136d2602183613d76565b91506136dd826144eb565b604082019050919050565b60006136f5600f83613d76565b91506137008261453a565b602082019050919050565b6000613718600083613d6b565b915061372382614563565b600082019050919050565b600061373b603183613d76565b915061374682614566565b604082019050919050565b600061375e601b83613d76565b9150613769826145b5565b602082019050919050565b6000613781601083613d76565b915061378c826145de565b602082019050919050565b60006137a4602a83613d76565b91506137af82614607565b604082019050919050565b60006137c7601e83613d76565b91506137d282614656565b602082019050919050565b60006137ea600a83613d76565b91506137f58261467f565b602082019050919050565b600061380d601983613d76565b9150613818826146a8565b602082019050919050565b61382c81613f23565b82525050565b61383b81613f2d565b82525050565b600061384d828561342a565b9150613859828461342a565b91508190509392505050565b60006138708261370b565b9150819050919050565b600060208201905061388f600083018461339a565b92915050565b60006080820190506138aa600083018761339a565b6138b7602083018661339a565b6138c46040830185613823565b81810360608301526138d681846133b8565b905095945050505050565b60006040820190506138f6600083018561339a565b6139036020830184613823565b9392505050565b600060208201905061391f60008301846133a9565b92915050565b6000602082019050818103600083015261393f81846133f1565b905092915050565b60006020820190508181036000830152613961818461345b565b905092915050565b60006020820190508181036000830152613982816134db565b9050919050565b600060208201905081810360008301526139a2816134fe565b9050919050565b600060208201905081810360008301526139c281613521565b9050919050565b600060208201905081810360008301526139e281613544565b9050919050565b60006020820190508181036000830152613a0281613567565b9050919050565b60006020820190508181036000830152613a228161358a565b9050919050565b60006020820190508181036000830152613a42816135ad565b9050919050565b60006020820190508181036000830152613a62816135d0565b9050919050565b60006020820190508181036000830152613a82816135f3565b9050919050565b60006020820190508181036000830152613aa281613616565b9050919050565b60006020820190508181036000830152613ac281613639565b9050919050565b60006020820190508181036000830152613ae28161365c565b9050919050565b60006020820190508181036000830152613b028161367f565b9050919050565b60006020820190508181036000830152613b22816136a2565b9050919050565b60006020820190508181036000830152613b42816136c5565b9050919050565b60006020820190508181036000830152613b62816136e8565b9050919050565b60006020820190508181036000830152613b828161372e565b9050919050565b60006020820190508181036000830152613ba281613751565b9050919050565b60006020820190508181036000830152613bc281613774565b9050919050565b60006020820190508181036000830152613be281613797565b9050919050565b60006020820190508181036000830152613c02816137ba565b9050919050565b60006020820190508181036000830152613c22816137dd565b9050919050565b60006020820190508181036000830152613c4281613800565b9050919050565b6000602082019050613c5e6000830184613823565b92915050565b6000604082019050613c796000830185613823565b613c866020830184613832565b9392505050565b6000602082019050613ca26000830184613832565b92915050565b6000613cb2613cc3565b9050613cbe8282613fb9565b919050565b6000604051905090565b600067ffffffffffffffff821115613ce857613ce76140f1565b5b613cf182614120565b9050602081019050919050565b600067ffffffffffffffff821115613d1957613d186140f1565b5b613d2282614120565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d9d82613f23565b9150613da883613f23565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ddd57613ddc614064565b5b828201905092915050565b6000613df382613f23565b9150613dfe83613f23565b925082613e0e57613e0d614093565b5b828204905092915050565b6000613e2482613f23565b9150613e2f83613f23565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e6857613e67614064565b5b828202905092915050565b6000613e7e82613f23565b9150613e8983613f23565b925082821015613e9c57613e9b614064565b5b828203905092915050565b6000613eb282613f03565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000613efc82613ea7565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613f72578082015181840152602081019050613f57565b83811115613f81576000848401525b50505050565b60006002820490506001821680613f9f57607f821691505b60208210811415613fb357613fb26140c2565b5b50919050565b613fc282614120565b810181811067ffffffffffffffff82111715613fe157613fe06140f1565b5b80604052505050565b6000613ff582613f23565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561402857614027614064565b5b600182019050919050565b600061403e82613f23565b915061404983613f23565b92508261405957614058614093565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572204661696c65640000000000000000000000000000000000600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b7f496e73756666696369656e742046656500000000000000000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f4e6f7420456e6f7567682042616c616e6365204f6620436f6e74726163740000600082015250565b7f4d617820537570706c7900000000000000000000000000000000000000000000600082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b6146da81613ea7565b81146146e557600080fd5b50565b6146f181613eb9565b81146146fc57600080fd5b50565b61470881613ec5565b811461471357600080fd5b50565b61471f81613ef1565b811461472a57600080fd5b50565b61473681613f23565b811461474157600080fd5b50565b61474d81613f2d565b811461475857600080fd5b5056fea264697066735822122074b077c9f93cbe30e82de0bab44b805ac1fdc8c9ae558f31e7d2c4131cb8c3b164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1000000000000000000000000000000000000000000000000000000000000003368747470733a2f2f6d657461646174612d6170692d6d333533736c786966612d75772e612e72756e2e6170702f746f6b656e2f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000003568747470733a2f2f6d657461646174612d6170692d6d333533736c786966612d75772e612e72756e2e6170702f636f6e74726163740000000000000000000000
-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://metadata-api-m353slxifa-uw.a.run.app/token/
Arg [1] : _contractURI (string): https://metadata-api-m353slxifa-uw.a.run.app/contract
Arg [2] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000033
Arg [4] : 68747470733a2f2f6d657461646174612d6170692d6d333533736c786966612d
Arg [5] : 75772e612e72756e2e6170702f746f6b656e2f00000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [7] : 68747470733a2f2f6d657461646174612d6170692d6d333533736c786966612d
Arg [8] : 75772e612e72756e2e6170702f636f6e74726163740000000000000000000000
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.