Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
420 SBNFT-PASS
Holders
355
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SBNFT-PASSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SBPASS
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT //------------------------------------------------------------------======================== //-----------------------------------------------------------------========================= //-----------------------------------------------------------------========================= //-----------------------------------=+++++=------------------------======================== //--------------------------------++=-:...:-+*--------------==++==-----===================== //-----------------------------=*=........:::-#------==++==--:..:-=++-------------========== //----------------------------*=..........::::=*=++==-:.............:+*-----------========== //--------------------------=*...........::::::=-...................::=*----------========== //--------------------------*...........::::::::::................:::::#----------========== //-------------------------#..........:::::::::::::::.........:::::::::#---------=========== //------------------------+=.........:::::::::::::::::::::::::::::::::-#---------=========== //-----------------+=====+#.:::::::::::::::::::::::::::::::::::::::::-%+---------=========== //---------------+*.......::::::::::::::::::::::::::::::::::::::::::::.:-=+=-----=========== //---------------#::....::::::::::::::::::::::::::::::::::::::::::::::.....=*--------------- //---------------*=::::::::::::::::::::::::::::::::::::::::::::::::::.......=+-------------- //----------------+*=::::::::::::::::::::::::::::::::::::::::::::::::.......:*-------------- //----------------++-::::::::::::::::::::::::::-#++-::::::::::::::::::......==-------------- //----------------#...:::::::::::::::-=-===-==+*:::=+++-========::::::::::.:*--------------- //======----------*+==::::::::::::-+*:.......:#:::::::-*:.......==::::--=+++---------------- //========-::::::::--%:::::::::::.==*==+======+:::::::-*=======-=#::: #=--:::::::::::::::::: //========-:::::::::=#=+++++::::..+=::::::::::::::::::::::::::---#::. %::::::::::::::::::::: //========-:::::::-*-:-==---*::...+-:::::-=-=+::::::::::::-=-::::#:.. #::::::::::::::::::::: //=======-::::::::*::++--#--#::...*::::::* -+:::::::::-*. .*-::#:..:*::::::::::::::::::::: //======-::::::::-*.:*-:-*=-+=:.. #::::::*: .+-:::::::::-+ =-::*-..=+::::::::::::::::::..: //=====-::::::::::#.::++=----*--=+=:::::::-==::::::::::::=====::::*--*:::::::::::::::::::::: //====-:::::::::::*:::#--==---==----::::::::::::::::::::::::::::::*--::::::::::::::::::::::: //===-:::::::::::::*-::==-----------+-:::::::::::::::::::::::::::*:::::::::::::::::::::::::: //===-::::::::::::::=+=++=++--------=*+=-:::::::::::::::::::::::*::::::::::::::::::::::::::: //====-::::::::::::::::::::=*----------=+++++:::::::::::::::::++:::::::::::::::.....:::::::: //======---::::::::::::::::::+*-------------::::::::::::::::=+-:::::::::::::.::::::::::::::: //===========---:::::::::::::::+*+-------------::::::::::-=+-::::::::::::::.:::::::::::::::: //===============--::::::::::::::=#*+=--------------:-=++*+++=-::::::::::::.:::::::::::::::: //=================-::::::::-=+++-:::-+++*++++++=====:*::::::-=++-:::::::::::::............. //=================-:::::=++=::::::::::::-*-:........*- ...::::.*-::::::::::::::::::::::::: //=================-::::-#:::::::::::::::::++=-:::=++........::::.*-:::::::::::::::::::::::: //================-:::::*: .:::::::::::::::::-===:::::::::::--:...*:::::::::::::::::::::::: //=============--::::::-*. .:::-=:::::::::::::::::::::::::*::. .*::::::::::::::::::::::: //=======-----:::::::::*-::::.....:==:::::::::::::::::::::....#:. :*:::::::::::::::::::::: //--::::::::::::::::::-*::::.......*-:::::::::................*:.. -+::::::::::::::::::::: //::::::::::::::::::::#-::::.......#......:::............... ==::.-==%:::::::::::::::-----: //::::::::::::::::::::**+===------:# ................ .#++=-:.+=:::::::::::--------- //::::::::::::::::::::=+::::::-----+... ..... #::.....*-:::::::::---------- //::::::::::::::::::::#::.........-+:::::::::...... +:.......#::::::::----------- //:::::::::::::::::::-*::.........+-:::::::::..................-=:......:*:::::::----------- //:::::::::::::::::::#-:......... *::::::::::...................*:...... ==::::::----------- pragma solidity ^0.8.9; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract SBPASS is ERC721, Ownable, ReentrancyGuard { string private _collectionURI; string public baseURI; uint256 public constant MAX_SUPPLY = 2222; uint256 public supply = 0; uint256 public cost = 0.00 ether; mapping(uint256 => string) internal tokenUris; mapping(address => uint256) internal walletCap; using Counters for Counters.Counter; Counters.Counter private _tokenSupply; constructor(string memory _baseURI, string memory collectionURI) ERC721("SmallBrosNFT Pass", "SBNFT-PASS") { baseURI = _baseURI; _collectionURI = collectionURI; } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: query for nonexistent token"); // Custom tokenURI exists if (bytes(tokenUris[tokenId]).length != 0) { return tokenUris[tokenId]; } else { return string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json")); } } function totalSupply() public view returns (uint256) { return _tokenSupply.current(); } function contractURI() public view returns (string memory) { return _collectionURI; } function numMintedForAddress(address addr) external view returns (uint256) { return walletCap[addr]; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function mintToAddress(address _to, uint256 _mintAmount) external onlyOwner { require(_mintAmount > 0, "Error: You must mint more than 0 tokens."); require(_tokenSupply.current() + _mintAmount <= supply, "Error: Can't mint more than the max available supply."); require(_tokenSupply.current() + _mintAmount <= MAX_SUPPLY, "Error: Can't mint more than the max supply."); for (uint256 i = 0; i < _mintAmount; i++) { _tokenSupply.increment(); _mint(_to, _tokenSupply.current()); } } function bulkMintToAddress(address[] memory _recipients, uint256 _totalMintAmount) external onlyOwner { require(_totalMintAmount > 0, "Error: You must mint more than 0 tokens."); require(_tokenSupply.current() + _totalMintAmount <= supply, "Error: Can't mint more than the max available supply."); require(_tokenSupply.current() + _totalMintAmount <= MAX_SUPPLY, "Error: Can't mint more than the max supply."); for (uint256 i = 0; i < _totalMintAmount; i++) { _tokenSupply.increment(); _mint(_recipients[i], _tokenSupply.current()); } } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function setCollectionURI(string memory collectionURI) internal virtual onlyOwner { _collectionURI = collectionURI; } function setTokenURI(uint256 _tokenId, string memory _uri) external onlyOwner { tokenUris[_tokenId] = _uri; } function setSupply(uint256 _newSupply) external onlyOwner { require(supply < _newSupply, "Error: You can only increase the supply."); require(_newSupply <= MAX_SUPPLY, "Error: You cannot increase the supply greater than the max supply."); supply = _newSupply; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly 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.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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 v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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.7.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 /// @solidity memory-safe-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 (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// 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 (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); }
{ "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":"_baseURI","type":"string"},{"internalType":"string","name":"collectionURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256","name":"_totalMintAmount","type":"uint256"}],"name":"bulkMintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","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":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numMintedForAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]
Contract Creation Code
60806040526000600a556000600b553480156200001b57600080fd5b5060405162003d4038038062003d4083398181016040528101906200004191906200045e565b6040518060400160405280601181526020017f536d616c6c42726f734e465420506173730000000000000000000000000000008152506040518060400160405280600a81526020017f53424e46542d50415353000000000000000000000000000000000000000000008152508160009080519060200190620000c592919062000211565b508060019080519060200190620000de92919062000211565b50505062000101620000f56200014360201b60201c565b6200014b60201b60201c565b600160078190555081600990805190602001906200012192919062000211565b5080600890805190602001906200013a92919062000211565b50505062000548565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021f9062000512565b90600052602060002090601f0160209004810192826200024357600085556200028f565b82601f106200025e57805160ff19168380011785556200028f565b828001600101855582156200028f579182015b828111156200028e57825182559160200191906001019062000271565b5b5090506200029e9190620002a2565b5090565b5b80821115620002bd576000816000905550600101620002a3565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200032a82620002df565b810181811067ffffffffffffffff821117156200034c576200034b620002f0565b5b80604052505050565b600062000361620002c1565b90506200036f82826200031f565b919050565b600067ffffffffffffffff821115620003925762000391620002f0565b5b6200039d82620002df565b9050602081019050919050565b60005b83811015620003ca578082015181840152602081019050620003ad565b83811115620003da576000848401525b50505050565b6000620003f7620003f18462000374565b62000355565b905082815260208101848484011115620004165762000415620002da565b5b62000423848285620003aa565b509392505050565b600082601f830112620004435762000442620002d5565b5b815162000455848260208601620003e0565b91505092915050565b60008060408385031215620004785762000477620002cb565b5b600083015167ffffffffffffffff811115620004995762000498620002d0565b5b620004a7858286016200042b565b925050602083015167ffffffffffffffff811115620004cb57620004ca620002d0565b5b620004d9858286016200042b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052b57607f821691505b60208210811415620005425762000541620004e3565b5b50919050565b6137e880620005586000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806355f804b311610104578063a22cb465116100a2578063e8a3d48511610071578063e8a3d485146104f4578063e985e9c514610512578063eca5404c14610542578063f2fde38b1461055e576101cf565b8063a22cb4651461045c578063b88d4fde14610478578063c81cd3be14610494578063c87b56dd146104c4576101cf565b806370a08231116100de57806370a08231146103e6578063715018a6146104165780638da5cb5b1461042057806395d89b411461043e576101cf565b806355f804b31461037c5780636352211e146103985780636c0360eb146103c8576101cf565b806318160ddd1161017157806332cb6b0c1161014b57806332cb6b0c1461031c5780633b4c4b251461033a5780633ccfd60b1461035657806342842e0e14610360576101cf565b806318160ddd146102c657806321ca4236146102e457806323b872dd14610300576101cf565b8063081812fc116101ad578063081812fc14610240578063095ea7b31461027057806313faede61461028c578063162094c4146102aa576101cf565b806301ffc9a7146101d4578063047fc9aa1461020457806306fdde0314610222575b600080fd5b6101ee60048036038101906101e99190612162565b61057a565b6040516101fb91906121aa565b60405180910390f35b61020c61065c565b60405161021991906121de565b60405180910390f35b61022a610662565b6040516102379190612292565b60405180910390f35b61025a600480360381019061025591906122e0565b6106f4565b604051610267919061234e565b60405180910390f35b61028a60048036038101906102859190612395565b61073a565b005b610294610852565b6040516102a191906121de565b60405180910390f35b6102c460048036038101906102bf919061250a565b610858565b005b6102ce61088c565b6040516102db91906121de565b60405180910390f35b6102fe60048036038101906102f99190612395565b61089d565b005b61031a60048036038101906103159190612566565b6109da565b005b610324610a3a565b60405161033191906121de565b60405180910390f35b610354600480360381019061034f91906122e0565b610a40565b005b61035e610adb565b005b61037a60048036038101906103759190612566565b610b32565b005b610396600480360381019061039191906125b9565b610b52565b005b6103b260048036038101906103ad91906122e0565b610b74565b6040516103bf919061234e565b60405180910390f35b6103d0610c26565b6040516103dd9190612292565b60405180910390f35b61040060048036038101906103fb9190612602565b610cb4565b60405161040d91906121de565b60405180910390f35b61041e610d6c565b005b610428610d80565b604051610435919061234e565b60405180910390f35b610446610daa565b6040516104539190612292565b60405180910390f35b6104766004803603810190610471919061265b565b610e3c565b005b610492600480360381019061048d919061273c565b610e52565b005b6104ae60048036038101906104a99190612602565b610eb4565b6040516104bb91906121de565b60405180910390f35b6104de60048036038101906104d991906122e0565b610efd565b6040516104eb9190612292565b60405180910390f35b6104fc611044565b6040516105099190612292565b60405180910390f35b61052c600480360381019061052791906127bf565b6110d6565b60405161053991906121aa565b60405180910390f35b61055c600480360381019061055791906128c7565b61116a565b005b61057860048036038101906105739190612602565b6112c1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610655575061065482611345565b5b9050919050565b600a5481565b60606000805461067190612952565b80601f016020809104026020016040519081016040528092919081815260200182805461069d90612952565b80156106ea5780601f106106bf576101008083540402835291602001916106ea565b820191906000526020600020905b8154815290600101906020018083116106cd57829003601f168201915b5050505050905090565b60006106ff826113af565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074582610b74565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad906129f6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d56113fa565b73ffffffffffffffffffffffffffffffffffffffff1614806108045750610803816107fe6113fa565b6110d6565b5b610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90612a88565b60405180910390fd5b61084d8383611402565b505050565b600b5481565b6108606114bb565b80600c60008481526020019081526020016000209080519060200190610887929190612053565b505050565b6000610898600e611539565b905090565b6108a56114bb565b600081116108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df90612b1a565b60405180910390fd5b600a54816108f6600e611539565b6109009190612b69565b1115610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890612c31565b60405180910390fd5b6108ae8161094f600e611539565b6109599190612b69565b111561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190612cc3565b60405180910390fd5b60005b818110156109d5576109af600e611547565b6109c2836109bd600e611539565b61155d565b80806109cd90612ce3565b91505061099d565b505050565b6109eb6109e56113fa565b82611737565b610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190612d9e565b60405180910390fd5b610a358383836117cc565b505050565b6108ae81565b610a486114bb565b80600a5410610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390612e30565b60405180910390fd5b6108ae811115610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890612ee8565b60405180910390fd5b80600a8190555050565b610ae36114bb565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b2e573d6000803e3d6000fd5b5050565b610b4d83838360405180602001604052806000815250610e52565b505050565b610b5a6114bb565b8060099080519060200190610b70929190612053565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490612f54565b60405180910390fd5b80915050919050565b60098054610c3390612952565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5f90612952565b8015610cac5780601f10610c8157610100808354040283529160200191610cac565b820191906000526020600020905b815481529060010190602001808311610c8f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90612fe6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d746114bb565b610d7e6000611a33565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610db990612952565b80601f0160208091040260200160405190810160405280929190818152602001828054610de590612952565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b5050505050905090565b610e4e610e476113fa565b8383611af9565b5050565b610e63610e5d6113fa565b83611737565b610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990612d9e565b60405180910390fd5b610eae84848484611c66565b50505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060610f0882611cc2565b610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613078565b60405180910390fd5b6000600c60008481526020019081526020016000208054610f6790612952565b90501461101157600c60008381526020019081526020016000208054610f8c90612952565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb890612952565b80156110055780601f10610fda57610100808354040283529160200191611005565b820191906000526020600020905b815481529060010190602001808311610fe857829003601f168201915b5050505050905061103f565b600961101c83611d2e565b60405160200161102d9291906131b4565b60405160208183030381529060405290505b919050565b60606008805461105390612952565b80601f016020809104026020016040519081016040528092919081815260200182805461107f90612952565b80156110cc5780601f106110a1576101008083540402835291602001916110cc565b820191906000526020600020905b8154815290600101906020018083116110af57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111726114bb565b600081116111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90612b1a565b60405180910390fd5b600a54816111c3600e611539565b6111cd9190612b69565b111561120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612c31565b60405180910390fd5b6108ae8161121c600e611539565b6112269190612b69565b1115611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90612cc3565b60405180910390fd5b60005b818110156112bc5761127c600e611547565b6112a9838281518110611292576112916131e3565b5b60200260200101516112a4600e611539565b61155d565b80806112b490612ce3565b91505061126a565b505050565b6112c96114bb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090613284565b60405180910390fd5b61134281611a33565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6113b881611cc2565b6113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90612f54565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661147583610b74565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114c36113fa565b73ffffffffffffffffffffffffffffffffffffffff166114e1610d80565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e906132f0565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c49061335c565b60405180910390fd5b6115d681611cc2565b15611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d906133c8565b60405180910390fd5b61162260008383611e8f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116729190612b69565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461173360008383611e94565b5050565b60008061174383610b74565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611785575061178481856110d6565b5b806117c357508373ffffffffffffffffffffffffffffffffffffffff166117ab846106f4565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117ec82610b74565b73ffffffffffffffffffffffffffffffffffffffff1614611842576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118399061345a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a9906134ec565b60405180910390fd5b6118bd838383611e8f565b6118c8600082611402565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611918919061350c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461196f9190612b69565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a2e838383611e94565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f9061358c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5991906121aa565b60405180910390a3505050565b611c718484846117cc565b611c7d84848484611e99565b611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb39061361e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611d76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e8a565b600082905060005b60008214611da8578080611d9190612ce3565b915050600a82611da1919061366d565b9150611d7e565b60008167ffffffffffffffff811115611dc457611dc36123df565b5b6040519080825280601f01601f191660200182016040528015611df65781602001600182028036833780820191505090505b5090505b60008514611e8357600182611e0f919061350c565b9150600a85611e1e919061369e565b6030611e2a9190612b69565b60f81b818381518110611e4057611e3f6131e3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e7c919061366d565b9450611dfa565b8093505050505b919050565b505050565b505050565b6000611eba8473ffffffffffffffffffffffffffffffffffffffff16612030565b15612023578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ee36113fa565b8786866040518563ffffffff1660e01b8152600401611f059493929190613724565b602060405180830381600087803b158015611f1f57600080fd5b505af1925050508015611f5057506040513d601f19601f82011682018060405250810190611f4d9190613785565b60015b611fd3573d8060008114611f80576040519150601f19603f3d011682016040523d82523d6000602084013e611f85565b606091505b50600081511415611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc29061361e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612028565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461205f90612952565b90600052602060002090601f01602090048101928261208157600085556120c8565b82601f1061209a57805160ff19168380011785556120c8565b828001600101855582156120c8579182015b828111156120c75782518255916020019190600101906120ac565b5b5090506120d591906120d9565b5090565b5b808211156120f25760008160009055506001016120da565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61213f8161210a565b811461214a57600080fd5b50565b60008135905061215c81612136565b92915050565b60006020828403121561217857612177612100565b5b60006121868482850161214d565b91505092915050565b60008115159050919050565b6121a48161218f565b82525050565b60006020820190506121bf600083018461219b565b92915050565b6000819050919050565b6121d8816121c5565b82525050565b60006020820190506121f360008301846121cf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612233578082015181840152602081019050612218565b83811115612242576000848401525b50505050565b6000601f19601f8301169050919050565b6000612264826121f9565b61226e8185612204565b935061227e818560208601612215565b61228781612248565b840191505092915050565b600060208201905081810360008301526122ac8184612259565b905092915050565b6122bd816121c5565b81146122c857600080fd5b50565b6000813590506122da816122b4565b92915050565b6000602082840312156122f6576122f5612100565b5b6000612304848285016122cb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123388261230d565b9050919050565b6123488161232d565b82525050565b6000602082019050612363600083018461233f565b92915050565b6123728161232d565b811461237d57600080fd5b50565b60008135905061238f81612369565b92915050565b600080604083850312156123ac576123ab612100565b5b60006123ba85828601612380565b92505060206123cb858286016122cb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61241782612248565b810181811067ffffffffffffffff82111715612436576124356123df565b5b80604052505050565b60006124496120f6565b9050612455828261240e565b919050565b600067ffffffffffffffff821115612475576124746123df565b5b61247e82612248565b9050602081019050919050565b82818337600083830152505050565b60006124ad6124a88461245a565b61243f565b9050828152602081018484840111156124c9576124c86123da565b5b6124d484828561248b565b509392505050565b600082601f8301126124f1576124f06123d5565b5b813561250184826020860161249a565b91505092915050565b6000806040838503121561252157612520612100565b5b600061252f858286016122cb565b925050602083013567ffffffffffffffff8111156125505761254f612105565b5b61255c858286016124dc565b9150509250929050565b60008060006060848603121561257f5761257e612100565b5b600061258d86828701612380565b935050602061259e86828701612380565b92505060406125af868287016122cb565b9150509250925092565b6000602082840312156125cf576125ce612100565b5b600082013567ffffffffffffffff8111156125ed576125ec612105565b5b6125f9848285016124dc565b91505092915050565b60006020828403121561261857612617612100565b5b600061262684828501612380565b91505092915050565b6126388161218f565b811461264357600080fd5b50565b6000813590506126558161262f565b92915050565b6000806040838503121561267257612671612100565b5b600061268085828601612380565b925050602061269185828601612646565b9150509250929050565b600067ffffffffffffffff8211156126b6576126b56123df565b5b6126bf82612248565b9050602081019050919050565b60006126df6126da8461269b565b61243f565b9050828152602081018484840111156126fb576126fa6123da565b5b61270684828561248b565b509392505050565b600082601f830112612723576127226123d5565b5b81356127338482602086016126cc565b91505092915050565b6000806000806080858703121561275657612755612100565b5b600061276487828801612380565b945050602061277587828801612380565b9350506040612786878288016122cb565b925050606085013567ffffffffffffffff8111156127a7576127a6612105565b5b6127b38782880161270e565b91505092959194509250565b600080604083850312156127d6576127d5612100565b5b60006127e485828601612380565b92505060206127f585828601612380565b9150509250929050565b600067ffffffffffffffff82111561281a576128196123df565b5b602082029050602081019050919050565b600080fd5b600061284361283e846127ff565b61243f565b905080838252602082019050602084028301858111156128665761286561282b565b5b835b8181101561288f578061287b8882612380565b845260208401935050602081019050612868565b5050509392505050565b600082601f8301126128ae576128ad6123d5565b5b81356128be848260208601612830565b91505092915050565b600080604083850312156128de576128dd612100565b5b600083013567ffffffffffffffff8111156128fc576128fb612105565b5b61290885828601612899565b9250506020612919858286016122cb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061296a57607f821691505b6020821081141561297e5761297d612923565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006129e0602183612204565b91506129eb82612984565b604082019050919050565b60006020820190508181036000830152612a0f816129d3565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612a72603e83612204565b9150612a7d82612a16565b604082019050919050565b60006020820190508181036000830152612aa181612a65565b9050919050565b7f4572726f723a20596f75206d757374206d696e74206d6f7265207468616e203060008201527f20746f6b656e732e000000000000000000000000000000000000000000000000602082015250565b6000612b04602883612204565b9150612b0f82612aa8565b604082019050919050565b60006020820190508181036000830152612b3381612af7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b74826121c5565b9150612b7f836121c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bb457612bb3612b3a565b5b828201905092915050565b7f4572726f723a2043616e2774206d696e74206d6f7265207468616e207468652060008201527f6d617820617661696c61626c6520737570706c792e0000000000000000000000602082015250565b6000612c1b603583612204565b9150612c2682612bbf565b604082019050919050565b60006020820190508181036000830152612c4a81612c0e565b9050919050565b7f4572726f723a2043616e2774206d696e74206d6f7265207468616e207468652060008201527f6d617820737570706c792e000000000000000000000000000000000000000000602082015250565b6000612cad602b83612204565b9150612cb882612c51565b604082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b6000612cee826121c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d2157612d20612b3a565b5b600182019050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612d88602e83612204565b9150612d9382612d2c565b604082019050919050565b60006020820190508181036000830152612db781612d7b565b9050919050565b7f4572726f723a20596f752063616e206f6e6c7920696e6372656173652074686560008201527f20737570706c792e000000000000000000000000000000000000000000000000602082015250565b6000612e1a602883612204565b9150612e2582612dbe565b604082019050919050565b60006020820190508181036000830152612e4981612e0d565b9050919050565b7f4572726f723a20596f752063616e6e6f7420696e63726561736520746865207360008201527f7570706c792067726561746572207468616e20746865206d617820737570706c60208201527f792e000000000000000000000000000000000000000000000000000000000000604082015250565b6000612ed2604283612204565b9150612edd82612e50565b606082019050919050565b60006020820190508181036000830152612f0181612ec5565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f3e601883612204565b9150612f4982612f08565b602082019050919050565b60006020820190508181036000830152612f6d81612f31565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612fd0602983612204565b9150612fdb82612f74565b604082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b7f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b6000613062602b83612204565b915061306d82613006565b604082019050919050565b6000602082019050818103600083015261309181613055565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130c581612952565b6130cf8186613098565b945060018216600081146130ea57600181146130fb5761312e565b60ff1983168652818601935061312e565b613104856130a3565b60005b8381101561312657815481890152600182019150602081019050613107565b838801955050505b50505092915050565b6000613142826121f9565b61314c8185613098565b935061315c818560208601612215565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061319e600583613098565b91506131a982613168565b600582019050919050565b60006131c082856130b8565b91506131cc8284613137565b91506131d782613191565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061326e602683612204565b915061327982613212565b604082019050919050565b6000602082019050818103600083015261329d81613261565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132da602083612204565b91506132e5826132a4565b602082019050919050565b60006020820190508181036000830152613309816132cd565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613346602083612204565b915061335182613310565b602082019050919050565b6000602082019050818103600083015261337581613339565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006133b2601c83612204565b91506133bd8261337c565b602082019050919050565b600060208201905081810360008301526133e1816133a5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613444602583612204565b915061344f826133e8565b604082019050919050565b6000602082019050818103600083015261347381613437565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134d6602483612204565b91506134e18261347a565b604082019050919050565b60006020820190508181036000830152613505816134c9565b9050919050565b6000613517826121c5565b9150613522836121c5565b92508282101561353557613534612b3a565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613576601983612204565b915061358182613540565b602082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613608603283612204565b9150613613826135ac565b604082019050919050565b60006020820190508181036000830152613637816135fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613678826121c5565b9150613683836121c5565b9250826136935761369261363e565b5b828204905092915050565b60006136a9826121c5565b91506136b4836121c5565b9250826136c4576136c361363e565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006136f6826136cf565b61370081856136da565b9350613710818560208601612215565b61371981612248565b840191505092915050565b6000608082019050613739600083018761233f565b613746602083018661233f565b61375360408301856121cf565b818103606083015261376581846136eb565b905095945050505050565b60008151905061377f81612136565b92915050565b60006020828403121561379b5761379a612100565b5b60006137a984828501613770565b9150509291505056fea2646970667358221220b8e9df44a8dfacb1fd53982a72bf2594a162ca1c07c97df75ffff0fb366db14c64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f697066733a2f2f6578616d706c652f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806355f804b311610104578063a22cb465116100a2578063e8a3d48511610071578063e8a3d485146104f4578063e985e9c514610512578063eca5404c14610542578063f2fde38b1461055e576101cf565b8063a22cb4651461045c578063b88d4fde14610478578063c81cd3be14610494578063c87b56dd146104c4576101cf565b806370a08231116100de57806370a08231146103e6578063715018a6146104165780638da5cb5b1461042057806395d89b411461043e576101cf565b806355f804b31461037c5780636352211e146103985780636c0360eb146103c8576101cf565b806318160ddd1161017157806332cb6b0c1161014b57806332cb6b0c1461031c5780633b4c4b251461033a5780633ccfd60b1461035657806342842e0e14610360576101cf565b806318160ddd146102c657806321ca4236146102e457806323b872dd14610300576101cf565b8063081812fc116101ad578063081812fc14610240578063095ea7b31461027057806313faede61461028c578063162094c4146102aa576101cf565b806301ffc9a7146101d4578063047fc9aa1461020457806306fdde0314610222575b600080fd5b6101ee60048036038101906101e99190612162565b61057a565b6040516101fb91906121aa565b60405180910390f35b61020c61065c565b60405161021991906121de565b60405180910390f35b61022a610662565b6040516102379190612292565b60405180910390f35b61025a600480360381019061025591906122e0565b6106f4565b604051610267919061234e565b60405180910390f35b61028a60048036038101906102859190612395565b61073a565b005b610294610852565b6040516102a191906121de565b60405180910390f35b6102c460048036038101906102bf919061250a565b610858565b005b6102ce61088c565b6040516102db91906121de565b60405180910390f35b6102fe60048036038101906102f99190612395565b61089d565b005b61031a60048036038101906103159190612566565b6109da565b005b610324610a3a565b60405161033191906121de565b60405180910390f35b610354600480360381019061034f91906122e0565b610a40565b005b61035e610adb565b005b61037a60048036038101906103759190612566565b610b32565b005b610396600480360381019061039191906125b9565b610b52565b005b6103b260048036038101906103ad91906122e0565b610b74565b6040516103bf919061234e565b60405180910390f35b6103d0610c26565b6040516103dd9190612292565b60405180910390f35b61040060048036038101906103fb9190612602565b610cb4565b60405161040d91906121de565b60405180910390f35b61041e610d6c565b005b610428610d80565b604051610435919061234e565b60405180910390f35b610446610daa565b6040516104539190612292565b60405180910390f35b6104766004803603810190610471919061265b565b610e3c565b005b610492600480360381019061048d919061273c565b610e52565b005b6104ae60048036038101906104a99190612602565b610eb4565b6040516104bb91906121de565b60405180910390f35b6104de60048036038101906104d991906122e0565b610efd565b6040516104eb9190612292565b60405180910390f35b6104fc611044565b6040516105099190612292565b60405180910390f35b61052c600480360381019061052791906127bf565b6110d6565b60405161053991906121aa565b60405180910390f35b61055c600480360381019061055791906128c7565b61116a565b005b61057860048036038101906105739190612602565b6112c1565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610655575061065482611345565b5b9050919050565b600a5481565b60606000805461067190612952565b80601f016020809104026020016040519081016040528092919081815260200182805461069d90612952565b80156106ea5780601f106106bf576101008083540402835291602001916106ea565b820191906000526020600020905b8154815290600101906020018083116106cd57829003601f168201915b5050505050905090565b60006106ff826113af565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074582610b74565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ad906129f6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d56113fa565b73ffffffffffffffffffffffffffffffffffffffff1614806108045750610803816107fe6113fa565b6110d6565b5b610843576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083a90612a88565b60405180910390fd5b61084d8383611402565b505050565b600b5481565b6108606114bb565b80600c60008481526020019081526020016000209080519060200190610887929190612053565b505050565b6000610898600e611539565b905090565b6108a56114bb565b600081116108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df90612b1a565b60405180910390fd5b600a54816108f6600e611539565b6109009190612b69565b1115610941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093890612c31565b60405180910390fd5b6108ae8161094f600e611539565b6109599190612b69565b111561099a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099190612cc3565b60405180910390fd5b60005b818110156109d5576109af600e611547565b6109c2836109bd600e611539565b61155d565b80806109cd90612ce3565b91505061099d565b505050565b6109eb6109e56113fa565b82611737565b610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2190612d9e565b60405180910390fd5b610a358383836117cc565b505050565b6108ae81565b610a486114bb565b80600a5410610a8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8390612e30565b60405180910390fd5b6108ae811115610ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac890612ee8565b60405180910390fd5b80600a8190555050565b610ae36114bb565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610b2e573d6000803e3d6000fd5b5050565b610b4d83838360405180602001604052806000815250610e52565b505050565b610b5a6114bb565b8060099080519060200190610b70929190612053565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1490612f54565b60405180910390fd5b80915050919050565b60098054610c3390612952565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5f90612952565b8015610cac5780601f10610c8157610100808354040283529160200191610cac565b820191906000526020600020905b815481529060010190602001808311610c8f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c90612fe6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d746114bb565b610d7e6000611a33565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610db990612952565b80601f0160208091040260200160405190810160405280929190818152602001828054610de590612952565b8015610e325780601f10610e0757610100808354040283529160200191610e32565b820191906000526020600020905b815481529060010190602001808311610e1557829003601f168201915b5050505050905090565b610e4e610e476113fa565b8383611af9565b5050565b610e63610e5d6113fa565b83611737565b610ea2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9990612d9e565b60405180910390fd5b610eae84848484611c66565b50505050565b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060610f0882611cc2565b610f47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3e90613078565b60405180910390fd5b6000600c60008481526020019081526020016000208054610f6790612952565b90501461101157600c60008381526020019081526020016000208054610f8c90612952565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb890612952565b80156110055780601f10610fda57610100808354040283529160200191611005565b820191906000526020600020905b815481529060010190602001808311610fe857829003601f168201915b5050505050905061103f565b600961101c83611d2e565b60405160200161102d9291906131b4565b60405160208183030381529060405290505b919050565b60606008805461105390612952565b80601f016020809104026020016040519081016040528092919081815260200182805461107f90612952565b80156110cc5780601f106110a1576101008083540402835291602001916110cc565b820191906000526020600020905b8154815290600101906020018083116110af57829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111726114bb565b600081116111b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ac90612b1a565b60405180910390fd5b600a54816111c3600e611539565b6111cd9190612b69565b111561120e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120590612c31565b60405180910390fd5b6108ae8161121c600e611539565b6112269190612b69565b1115611267576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125e90612cc3565b60405180910390fd5b60005b818110156112bc5761127c600e611547565b6112a9838281518110611292576112916131e3565b5b60200260200101516112a4600e611539565b61155d565b80806112b490612ce3565b91505061126a565b505050565b6112c96114bb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611339576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133090613284565b60405180910390fd5b61134281611a33565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6113b881611cc2565b6113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee90612f54565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661147583610b74565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114c36113fa565b73ffffffffffffffffffffffffffffffffffffffff166114e1610d80565b73ffffffffffffffffffffffffffffffffffffffff1614611537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152e906132f0565b60405180910390fd5b565b600081600001549050919050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c49061335c565b60405180910390fd5b6115d681611cc2565b15611616576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160d906133c8565b60405180910390fd5b61162260008383611e8f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116729190612b69565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461173360008383611e94565b5050565b60008061174383610b74565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611785575061178481856110d6565b5b806117c357508373ffffffffffffffffffffffffffffffffffffffff166117ab846106f4565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166117ec82610b74565b73ffffffffffffffffffffffffffffffffffffffff1614611842576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118399061345a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a9906134ec565b60405180910390fd5b6118bd838383611e8f565b6118c8600082611402565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611918919061350c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461196f9190612b69565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a2e838383611e94565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5f9061358c565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5991906121aa565b60405180910390a3505050565b611c718484846117cc565b611c7d84848484611e99565b611cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb39061361e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000821415611d76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e8a565b600082905060005b60008214611da8578080611d9190612ce3565b915050600a82611da1919061366d565b9150611d7e565b60008167ffffffffffffffff811115611dc457611dc36123df565b5b6040519080825280601f01601f191660200182016040528015611df65781602001600182028036833780820191505090505b5090505b60008514611e8357600182611e0f919061350c565b9150600a85611e1e919061369e565b6030611e2a9190612b69565b60f81b818381518110611e4057611e3f6131e3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e7c919061366d565b9450611dfa565b8093505050505b919050565b505050565b505050565b6000611eba8473ffffffffffffffffffffffffffffffffffffffff16612030565b15612023578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ee36113fa565b8786866040518563ffffffff1660e01b8152600401611f059493929190613724565b602060405180830381600087803b158015611f1f57600080fd5b505af1925050508015611f5057506040513d601f19601f82011682018060405250810190611f4d9190613785565b60015b611fd3573d8060008114611f80576040519150601f19603f3d011682016040523d82523d6000602084013e611f85565b606091505b50600081511415611fcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc29061361e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612028565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461205f90612952565b90600052602060002090601f01602090048101928261208157600085556120c8565b82601f1061209a57805160ff19168380011785556120c8565b828001600101855582156120c8579182015b828111156120c75782518255916020019190600101906120ac565b5b5090506120d591906120d9565b5090565b5b808211156120f25760008160009055506001016120da565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61213f8161210a565b811461214a57600080fd5b50565b60008135905061215c81612136565b92915050565b60006020828403121561217857612177612100565b5b60006121868482850161214d565b91505092915050565b60008115159050919050565b6121a48161218f565b82525050565b60006020820190506121bf600083018461219b565b92915050565b6000819050919050565b6121d8816121c5565b82525050565b60006020820190506121f360008301846121cf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612233578082015181840152602081019050612218565b83811115612242576000848401525b50505050565b6000601f19601f8301169050919050565b6000612264826121f9565b61226e8185612204565b935061227e818560208601612215565b61228781612248565b840191505092915050565b600060208201905081810360008301526122ac8184612259565b905092915050565b6122bd816121c5565b81146122c857600080fd5b50565b6000813590506122da816122b4565b92915050565b6000602082840312156122f6576122f5612100565b5b6000612304848285016122cb565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123388261230d565b9050919050565b6123488161232d565b82525050565b6000602082019050612363600083018461233f565b92915050565b6123728161232d565b811461237d57600080fd5b50565b60008135905061238f81612369565b92915050565b600080604083850312156123ac576123ab612100565b5b60006123ba85828601612380565b92505060206123cb858286016122cb565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61241782612248565b810181811067ffffffffffffffff82111715612436576124356123df565b5b80604052505050565b60006124496120f6565b9050612455828261240e565b919050565b600067ffffffffffffffff821115612475576124746123df565b5b61247e82612248565b9050602081019050919050565b82818337600083830152505050565b60006124ad6124a88461245a565b61243f565b9050828152602081018484840111156124c9576124c86123da565b5b6124d484828561248b565b509392505050565b600082601f8301126124f1576124f06123d5565b5b813561250184826020860161249a565b91505092915050565b6000806040838503121561252157612520612100565b5b600061252f858286016122cb565b925050602083013567ffffffffffffffff8111156125505761254f612105565b5b61255c858286016124dc565b9150509250929050565b60008060006060848603121561257f5761257e612100565b5b600061258d86828701612380565b935050602061259e86828701612380565b92505060406125af868287016122cb565b9150509250925092565b6000602082840312156125cf576125ce612100565b5b600082013567ffffffffffffffff8111156125ed576125ec612105565b5b6125f9848285016124dc565b91505092915050565b60006020828403121561261857612617612100565b5b600061262684828501612380565b91505092915050565b6126388161218f565b811461264357600080fd5b50565b6000813590506126558161262f565b92915050565b6000806040838503121561267257612671612100565b5b600061268085828601612380565b925050602061269185828601612646565b9150509250929050565b600067ffffffffffffffff8211156126b6576126b56123df565b5b6126bf82612248565b9050602081019050919050565b60006126df6126da8461269b565b61243f565b9050828152602081018484840111156126fb576126fa6123da565b5b61270684828561248b565b509392505050565b600082601f830112612723576127226123d5565b5b81356127338482602086016126cc565b91505092915050565b6000806000806080858703121561275657612755612100565b5b600061276487828801612380565b945050602061277587828801612380565b9350506040612786878288016122cb565b925050606085013567ffffffffffffffff8111156127a7576127a6612105565b5b6127b38782880161270e565b91505092959194509250565b600080604083850312156127d6576127d5612100565b5b60006127e485828601612380565b92505060206127f585828601612380565b9150509250929050565b600067ffffffffffffffff82111561281a576128196123df565b5b602082029050602081019050919050565b600080fd5b600061284361283e846127ff565b61243f565b905080838252602082019050602084028301858111156128665761286561282b565b5b835b8181101561288f578061287b8882612380565b845260208401935050602081019050612868565b5050509392505050565b600082601f8301126128ae576128ad6123d5565b5b81356128be848260208601612830565b91505092915050565b600080604083850312156128de576128dd612100565b5b600083013567ffffffffffffffff8111156128fc576128fb612105565b5b61290885828601612899565b9250506020612919858286016122cb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061296a57607f821691505b6020821081141561297e5761297d612923565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006129e0602183612204565b91506129eb82612984565b604082019050919050565b60006020820190508181036000830152612a0f816129d3565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b6000612a72603e83612204565b9150612a7d82612a16565b604082019050919050565b60006020820190508181036000830152612aa181612a65565b9050919050565b7f4572726f723a20596f75206d757374206d696e74206d6f7265207468616e203060008201527f20746f6b656e732e000000000000000000000000000000000000000000000000602082015250565b6000612b04602883612204565b9150612b0f82612aa8565b604082019050919050565b60006020820190508181036000830152612b3381612af7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b74826121c5565b9150612b7f836121c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612bb457612bb3612b3a565b5b828201905092915050565b7f4572726f723a2043616e2774206d696e74206d6f7265207468616e207468652060008201527f6d617820617661696c61626c6520737570706c792e0000000000000000000000602082015250565b6000612c1b603583612204565b9150612c2682612bbf565b604082019050919050565b60006020820190508181036000830152612c4a81612c0e565b9050919050565b7f4572726f723a2043616e2774206d696e74206d6f7265207468616e207468652060008201527f6d617820737570706c792e000000000000000000000000000000000000000000602082015250565b6000612cad602b83612204565b9150612cb882612c51565b604082019050919050565b60006020820190508181036000830152612cdc81612ca0565b9050919050565b6000612cee826121c5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d2157612d20612b3a565b5b600182019050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6000612d88602e83612204565b9150612d9382612d2c565b604082019050919050565b60006020820190508181036000830152612db781612d7b565b9050919050565b7f4572726f723a20596f752063616e206f6e6c7920696e6372656173652074686560008201527f20737570706c792e000000000000000000000000000000000000000000000000602082015250565b6000612e1a602883612204565b9150612e2582612dbe565b604082019050919050565b60006020820190508181036000830152612e4981612e0d565b9050919050565b7f4572726f723a20596f752063616e6e6f7420696e63726561736520746865207360008201527f7570706c792067726561746572207468616e20746865206d617820737570706c60208201527f792e000000000000000000000000000000000000000000000000000000000000604082015250565b6000612ed2604283612204565b9150612edd82612e50565b606082019050919050565b60006020820190508181036000830152612f0181612ec5565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000612f3e601883612204565b9150612f4982612f08565b602082019050919050565b60006020820190508181036000830152612f6d81612f31565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b6000612fd0602983612204565b9150612fdb82612f74565b604082019050919050565b60006020820190508181036000830152612fff81612fc3565b9050919050565b7f4552433732314d657461646174613a20717565727920666f72206e6f6e65786960008201527f7374656e7420746f6b656e000000000000000000000000000000000000000000602082015250565b6000613062602b83612204565b915061306d82613006565b604082019050919050565b6000602082019050818103600083015261309181613055565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130c581612952565b6130cf8186613098565b945060018216600081146130ea57600181146130fb5761312e565b60ff1983168652818601935061312e565b613104856130a3565b60005b8381101561312657815481890152600182019150602081019050613107565b838801955050505b50505092915050565b6000613142826121f9565b61314c8185613098565b935061315c818560208601612215565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061319e600583613098565b91506131a982613168565b600582019050919050565b60006131c082856130b8565b91506131cc8284613137565b91506131d782613191565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061326e602683612204565b915061327982613212565b604082019050919050565b6000602082019050818103600083015261329d81613261565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006132da602083612204565b91506132e5826132a4565b602082019050919050565b60006020820190508181036000830152613309816132cd565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613346602083612204565b915061335182613310565b602082019050919050565b6000602082019050818103600083015261337581613339565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006133b2601c83612204565b91506133bd8261337c565b602082019050919050565b600060208201905081810360008301526133e1816133a5565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613444602583612204565b915061344f826133e8565b604082019050919050565b6000602082019050818103600083015261347381613437565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134d6602483612204565b91506134e18261347a565b604082019050919050565b60006020820190508181036000830152613505816134c9565b9050919050565b6000613517826121c5565b9150613522836121c5565b92508282101561353557613534612b3a565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613576601983612204565b915061358182613540565b602082019050919050565b600060208201905081810360008301526135a581613569565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613608603283612204565b9150613613826135ac565b604082019050919050565b60006020820190508181036000830152613637816135fb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613678826121c5565b9150613683836121c5565b9250826136935761369261363e565b5b828204905092915050565b60006136a9826121c5565b91506136b4836121c5565b9250826136c4576136c361363e565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006136f6826136cf565b61370081856136da565b9350613710818560208601612215565b61371981612248565b840191505092915050565b6000608082019050613739600083018761233f565b613746602083018661233f565b61375360408301856121cf565b818103606083015261376581846136eb565b905095945050505050565b60008151905061377f81612136565b92915050565b60006020828403121561379b5761379a612100565b5b60006137a984828501613770565b9150509291505056fea2646970667358221220b8e9df44a8dfacb1fd53982a72bf2594a162ca1c07c97df75ffff0fb366db14c64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000f697066733a2f2f6578616d706c652f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): ipfs://example/
Arg [1] : collectionURI (string):
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 697066733a2f2f6578616d706c652f0000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
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.