Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
30 BEERS
Holders
2
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BEERSAROUNDTHEWORLD
Compiler Version
v0.8.7+commit.e28d00a7
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.6; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; contract BEERSAROUNDTHEWORLD is ERC721A, Ownable,ReentrancyGuard { using Strings for uint256; uint256 public maxSupply = 30; string public _baseTokenURI; string public _baseTokenEXT; bool public _paused = false; constructor(string memory _initBaseURI,string memory _initBaseExt) ERC721A("BEERSAROUNDTHEWORLD", "BEERS") { changeURLParams(_initBaseURI,_initBaseExt); } function mint(uint256 _mintAmount) public payable onlyOwner() { require(!_paused, ": Contract Execution paused."); require(_mintAmount > 0, ": Amount should be greater than 0."); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply , ": No more NFTs to mint, decrease the quantity or check out OpenSea."); _safeMint(msg.sender, _mintAmount); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function tooglePause() public onlyOwner() { _paused = !_paused; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(),_baseTokenEXT)) : ""; } function changeURLParams(string memory _nURL, string memory _nBaseExt) public onlyOwner { _baseTokenURI = _nURL; _baseTokenEXT = _nBaseExt; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// 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 v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// 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/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.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initBaseExt","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":"_baseTokenEXT","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"string","name":"_nURL","type":"string"},{"internalType":"string","name":"_nBaseExt","type":"string"}],"name":"changeURLParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tooglePause","outputs":[],"stateMutability":"nonpayable","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052601e6009556000600c60006101000a81548160ff0219169083151502179055503480156200003157600080fd5b506040516200422138038062004221833981810160405281019062000057919062000424565b6040518060400160405280601381526020017f424545525341524f554e44544845574f524c44000000000000000000000000008152506040518060400160405280600581526020017f42454552530000000000000000000000000000000000000000000000000000008152508160019080519060200190620000db929190620002f6565b508060029080519060200190620000f4929190620002f6565b505050620001176200010b6200013960201b60201c565b6200014160201b60201c565b60016008819055506200013182826200020760201b60201c565b5050620006b0565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002176200013960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200023d620002cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000296576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028d90620004d0565b60405180910390fd5b81600a9080519060200190620002ae929190620002f6565b5080600b9080519060200190620002c7929190620002f6565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003049062000598565b90600052602060002090601f01602090048101928262000328576000855562000374565b82601f106200034357805160ff191683800117855562000374565b8280016001018555821562000374579182015b828111156200037357825182559160200191906001019062000356565b5b50905062000383919062000387565b5090565b5b80821115620003a257600081600090555060010162000388565b5090565b6000620003bd620003b7846200051b565b620004f2565b905082815260208101848484011115620003dc57620003db62000667565b5b620003e984828562000562565b509392505050565b600082601f83011262000409576200040862000662565b5b81516200041b848260208601620003a6565b91505092915050565b600080604083850312156200043e576200043d62000671565b5b600083015167ffffffffffffffff8111156200045f576200045e6200066c565b5b6200046d85828601620003f1565b925050602083015167ffffffffffffffff8111156200049157620004906200066c565b5b6200049f85828601620003f1565b9150509250929050565b6000620004b860208362000551565b9150620004c58262000687565b602082019050919050565b60006020820190508181036000830152620004eb81620004a9565b9050919050565b6000620004fe62000511565b90506200050c8282620005ce565b919050565b6000604051905090565b600067ffffffffffffffff82111562000539576200053862000633565b5b620005448262000676565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200058257808201518184015260208101905062000565565b8381111562000592576000848401525b50505050565b60006002820490506001821680620005b157607f821691505b60208210811415620005c857620005c762000604565b5b50919050565b620005d98262000676565b810181811067ffffffffffffffff82111715620005fb57620005fa62000633565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b613b6180620006c06000396000f3fe60806040526004361061019c5760003560e01c8063783fd922116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105b9578063d621a776146105e4578063e985e9c5146105fb578063f2fde38b146106385761019c565b8063b88d4fde14610528578063c87b56dd14610551578063cfc86f7b1461058e5761019c565b806395d89b41116100c657806395d89b41146104a1578063a0712d68146104cc578063a22cb465146104e8578063ac446002146105115761019c565b8063783fd9221461042257806385fee1681461044b5780638da5cb5b146104765761019c565b806323b872dd116101595780634f6ccce7116101335780634f6ccce7146103545780636352211e1461039157806370a08231146103ce578063715018a61461040b5761019c565b806323b872dd146102c55780632f745c59146102ee57806342842e0e1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806316c61ccc1461026f57806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612ef0565b610661565b6040516101d59190613326565b60405180910390f35b3480156101ea57600080fd5b506101f36107ab565b6040516102009190613341565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612fc2565b61083d565b60405161023d91906132bf565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612eb0565b6108b9565b005b34801561027b57600080fd5b506102846109c4565b6040516102919190613326565b60405180910390f35b3480156102a657600080fd5b506102af6109d7565b6040516102bc9190613463565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612d9a565b610a2c565b005b3480156102fa57600080fd5b5061031560048036038101906103109190612eb0565b610a3c565b6040516103229190613463565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612d9a565b610c43565b005b34801561036057600080fd5b5061037b60048036038101906103769190612fc2565b610c63565b6040516103889190613463565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612fc2565b610dd4565b6040516103c591906132bf565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612d2d565b610dea565b6040516104029190613463565b60405180910390f35b34801561041757600080fd5b50610420610eba565b005b34801561042e57600080fd5b5061044960048036038101906104449190612f4a565b610f42565b005b34801561045757600080fd5b50610460610ff0565b60405161046d9190613341565b60405180910390f35b34801561048257600080fd5b5061048b61107e565b60405161049891906132bf565b60405180910390f35b3480156104ad57600080fd5b506104b66110a8565b6040516104c39190613341565b60405180910390f35b6104e660048036038101906104e19190612fc2565b61113a565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612e70565b6112b3565b005b34801561051d57600080fd5b5061052661142b565b005b34801561053457600080fd5b5061054f600480360381019061054a9190612ded565b6115ac565b005b34801561055d57600080fd5b5061057860048036038101906105739190612fc2565b6115ff565b6040516105859190613341565b60405180910390f35b34801561059a57600080fd5b506105a36116a9565b6040516105b09190613341565b60405180910390f35b3480156105c557600080fd5b506105ce611737565b6040516105db9190613463565b60405180910390f35b3480156105f057600080fd5b506105f961173d565b005b34801561060757600080fd5b50610622600480360381019061061d9190612d5a565b6117e5565b60405161062f9190613326565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190612d2d565b611879565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a457506107a382611971565b5b9050919050565b6060600180546107ba906136d9565b80601f01602080910402602001604051908101604052809291908181526020018280546107e6906136d9565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b6000610848826119db565b61087e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c482610dd4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094b611a43565b73ffffffffffffffffffffffffffffffffffffffff161415801561097d575061097b81610976611a43565b6117e5565b155b156109b4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bf838383611a4b565b505050565b600c60009054906101000a900460ff1681565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a37838383611afd565b505050565b6000610a4783610dea565b8210610a7f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610c37576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b965750610c2a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bd657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c285786841415610c1f578195505050505050610c3d565b83806001019450505b505b8080600101915050610ab9565b50600080fd5b92915050565b610c5e838383604051806020016040528060008152506115ac565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610d9c576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610d8e5785831415610d855781945050505050610dcf565b82806001019350505b508080600101915050610c9b565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000610ddf8261201a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e52576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ec2611a43565b73ffffffffffffffffffffffffffffffffffffffff16610ee061107e565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d906133e3565b60405180910390fd5b610f4060006122c2565b565b610f4a611a43565b73ffffffffffffffffffffffffffffffffffffffff16610f6861107e565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb5906133e3565b60405180910390fd5b81600a9080519060200190610fd4929190612afe565b5080600b9080519060200190610feb929190612afe565b505050565b600b8054610ffd906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611029906136d9565b80156110765780601f1061104b57610100808354040283529160200191611076565b820191906000526020600020905b81548152906001019060200180831161105957829003601f168201915b505050505081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110b7906136d9565b80601f01602080910402602001604051908101604052809291908181526020018280546110e3906136d9565b80156111305780601f1061110557610100808354040283529160200191611130565b820191906000526020600020905b81548152906001019060200180831161111357829003601f168201915b5050505050905090565b611142611a43565b73ffffffffffffffffffffffffffffffffffffffff1661116061107e565b73ffffffffffffffffffffffffffffffffffffffff16146111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad906133e3565b60405180910390fd5b600c60009054906101000a900460ff1615611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613363565b60405180910390fd5b60008111611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906133c3565b60405180910390fd5b60006112536109d7565b905060095482826112649190613568565b11156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c906133a3565b60405180910390fd5b6112af3383612388565b5050565b6112bb611a43565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611320576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061132d611a43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113da611a43565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141f9190613326565b60405180910390a35050565b611433611a43565b73ffffffffffffffffffffffffffffffffffffffff1661145161107e565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e906133e3565b60405180910390fd5b600260085414156114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613443565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161151b906132aa565b60006040518083038185875af1925050503d8060008114611558576040519150601f19603f3d011682016040523d82523d6000602084013e61155d565b606091505b50509050806115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613423565b60405180910390fd5b506001600881905550565b6115b7848484611afd565b6115c3848484846123a6565b6115f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061160a826119db565b611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613403565b60405180910390fd5b6000611653612534565b9050600081511161167357604051806020016040528060008152506116a1565b8061167d846125c6565b600b60405160200161169193929190613279565b6040516020818303038152906040525b915050919050565b600a80546116b6906136d9565b80601f01602080910402602001604051908101604052809291908181526020018280546116e2906136d9565b801561172f5780601f106117045761010080835404028352916020019161172f565b820191906000526020600020905b81548152906001019060200180831161171257829003601f168201915b505050505081565b60095481565b611745611a43565b73ffffffffffffffffffffffffffffffffffffffff1661176361107e565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906133e3565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611881611a43565b73ffffffffffffffffffffffffffffffffffffffff1661189f61107e565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec906133e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90613383565b60405180910390fd5b61196e816122c2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611a3c575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b088261201a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b2f611a43565b73ffffffffffffffffffffffffffffffffffffffff161480611b625750611b618260000151611b5c611a43565b6117e5565b5b80611ba75750611b70611a43565b73ffffffffffffffffffffffffffffffffffffffff16611b8f8461083d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611be0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c49576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cb0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cbd8585856001612727565b611ccd6000848460000151611a4b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611faa5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611fa95782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612013858585600161272d565b5050505050565b612022612b84565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561228b576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161228957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461216d5780925050506122bd565b5b60011561228857818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122835780925050506122bd565b61216e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123a2828260405180602001604052806000815250612733565b5050565b60006123c78473ffffffffffffffffffffffffffffffffffffffff16612745565b15612527578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123f0611a43565b8786866040518563ffffffff1660e01b815260040161241294939291906132da565b602060405180830381600087803b15801561242c57600080fd5b505af192505050801561245d57506040513d601f19601f8201168201806040525081019061245a9190612f1d565b60015b6124d7573d806000811461248d576040519150601f19603f3d011682016040523d82523d6000602084013e612492565b606091505b506000815114156124cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061252c565b600190505b949350505050565b6060600a8054612543906136d9565b80601f016020809104026020016040519081016040528092919081815260200182805461256f906136d9565b80156125bc5780601f10612591576101008083540402835291602001916125bc565b820191906000526020600020905b81548152906001019060200180831161259f57829003601f168201915b5050505050905090565b6060600082141561260e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612722565b600082905060005b600082146126405780806126299061373c565b915050600a8261263991906135be565b9150612616565b60008167ffffffffffffffff81111561265c5761265b613872565b5b6040519080825280601f01601f19166020018201604052801561268e5781602001600182028036833780820191505090505b5090505b6000851461271b576001826126a791906135ef565b9150600a856126b69190613785565b60306126c29190613568565b60f81b8183815181106126d8576126d7613843565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561271491906135be565b9450612692565b8093505050505b919050565b50505050565b50505050565b6127408383836001612768565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612803576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561283e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61284b6000868387612727565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ab057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612a645750612a6260008884886123a6565b155b15612a9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506129e9565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612af7600086838761272d565b5050505050565b828054612b0a906136d9565b90600052602060002090601f016020900481019282612b2c5760008555612b73565b82601f10612b4557805160ff1916838001178555612b73565b82800160010185558215612b73579182015b82811115612b72578251825591602001919060010190612b57565b5b509050612b809190612bc7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612be0576000816000905550600101612bc8565b5090565b6000612bf7612bf2846134a3565b61347e565b905082815260208101848484011115612c1357612c126138a6565b5b612c1e848285613697565b509392505050565b6000612c39612c34846134d4565b61347e565b905082815260208101848484011115612c5557612c546138a6565b5b612c60848285613697565b509392505050565b600081359050612c7781613acf565b92915050565b600081359050612c8c81613ae6565b92915050565b600081359050612ca181613afd565b92915050565b600081519050612cb681613afd565b92915050565b600082601f830112612cd157612cd06138a1565b5b8135612ce1848260208601612be4565b91505092915050565b600082601f830112612cff57612cfe6138a1565b5b8135612d0f848260208601612c26565b91505092915050565b600081359050612d2781613b14565b92915050565b600060208284031215612d4357612d426138b0565b5b6000612d5184828501612c68565b91505092915050565b60008060408385031215612d7157612d706138b0565b5b6000612d7f85828601612c68565b9250506020612d9085828601612c68565b9150509250929050565b600080600060608486031215612db357612db26138b0565b5b6000612dc186828701612c68565b9350506020612dd286828701612c68565b9250506040612de386828701612d18565b9150509250925092565b60008060008060808587031215612e0757612e066138b0565b5b6000612e1587828801612c68565b9450506020612e2687828801612c68565b9350506040612e3787828801612d18565b925050606085013567ffffffffffffffff811115612e5857612e576138ab565b5b612e6487828801612cbc565b91505092959194509250565b60008060408385031215612e8757612e866138b0565b5b6000612e9585828601612c68565b9250506020612ea685828601612c7d565b9150509250929050565b60008060408385031215612ec757612ec66138b0565b5b6000612ed585828601612c68565b9250506020612ee685828601612d18565b9150509250929050565b600060208284031215612f0657612f056138b0565b5b6000612f1484828501612c92565b91505092915050565b600060208284031215612f3357612f326138b0565b5b6000612f4184828501612ca7565b91505092915050565b60008060408385031215612f6157612f606138b0565b5b600083013567ffffffffffffffff811115612f7f57612f7e6138ab565b5b612f8b85828601612cea565b925050602083013567ffffffffffffffff811115612fac57612fab6138ab565b5b612fb885828601612cea565b9150509250929050565b600060208284031215612fd857612fd76138b0565b5b6000612fe684828501612d18565b91505092915050565b612ff881613623565b82525050565b61300781613635565b82525050565b60006130188261351a565b6130228185613530565b93506130328185602086016136a6565b61303b816138b5565b840191505092915050565b600061305182613525565b61305b818561354c565b935061306b8185602086016136a6565b613074816138b5565b840191505092915050565b600061308a82613525565b613094818561355d565b93506130a48185602086016136a6565b80840191505092915050565b600081546130bd816136d9565b6130c7818661355d565b945060018216600081146130e257600181146130f357613126565b60ff19831686528186019350613126565b6130fc85613505565b60005b8381101561311e578154818901526001820191506020810190506130ff565b838801955050505b50505092915050565b600061313c601c8361354c565b9150613147826138c6565b602082019050919050565b600061315f60268361354c565b915061316a826138ef565b604082019050919050565b600061318260438361354c565b915061318d8261393e565b606082019050919050565b60006131a560228361354c565b91506131b0826139b3565b604082019050919050565b60006131c860208361354c565b91506131d382613a02565b602082019050919050565b60006131eb602f8361354c565b91506131f682613a2b565b604082019050919050565b600061320e600083613541565b915061321982613a7a565b600082019050919050565b600061323160108361354c565b915061323c82613a7d565b602082019050919050565b6000613254601f8361354c565b915061325f82613aa6565b602082019050919050565b6132738161368d565b82525050565b6000613285828661307f565b9150613291828561307f565b915061329d82846130b0565b9150819050949350505050565b60006132b582613201565b9150819050919050565b60006020820190506132d46000830184612fef565b92915050565b60006080820190506132ef6000830187612fef565b6132fc6020830186612fef565b613309604083018561326a565b818103606083015261331b818461300d565b905095945050505050565b600060208201905061333b6000830184612ffe565b92915050565b6000602082019050818103600083015261335b8184613046565b905092915050565b6000602082019050818103600083015261337c8161312f565b9050919050565b6000602082019050818103600083015261339c81613152565b9050919050565b600060208201905081810360008301526133bc81613175565b9050919050565b600060208201905081810360008301526133dc81613198565b9050919050565b600060208201905081810360008301526133fc816131bb565b9050919050565b6000602082019050818103600083015261341c816131de565b9050919050565b6000602082019050818103600083015261343c81613224565b9050919050565b6000602082019050818103600083015261345c81613247565b9050919050565b6000602082019050613478600083018461326a565b92915050565b6000613488613499565b9050613494828261370b565b919050565b6000604051905090565b600067ffffffffffffffff8211156134be576134bd613872565b5b6134c7826138b5565b9050602081019050919050565b600067ffffffffffffffff8211156134ef576134ee613872565b5b6134f8826138b5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135738261368d565b915061357e8361368d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135b3576135b26137b6565b5b828201905092915050565b60006135c98261368d565b91506135d48361368d565b9250826135e4576135e36137e5565b5b828204905092915050565b60006135fa8261368d565b91506136058361368d565b925082821015613618576136176137b6565b5b828203905092915050565b600061362e8261366d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136c45780820151818401526020810190506136a9565b838111156136d3576000848401525b50505050565b600060028204905060018216806136f157607f821691505b6020821081141561370557613704613814565b5b50919050565b613714826138b5565b810181811067ffffffffffffffff8211171561373357613732613872565b5b80604052505050565b60006137478261368d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561377a576137796137b6565b5b600182019050919050565b60006137908261368d565b915061379b8361368d565b9250826137ab576137aa6137e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f3a20436f6e747261637420457865637574696f6e207061757365642e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f3a204e6f206d6f7265204e46547320746f206d696e742c20646563726561736560008201527f20746865207175616e74697479206f7220636865636b206f7574204f70656e5360208201527f65612e0000000000000000000000000000000000000000000000000000000000604082015250565b7f3a20416d6f756e742073686f756c642062652067726561746572207468616e2060008201527f302e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613ad881613623565b8114613ae357600080fd5b50565b613aef81613635565b8114613afa57600080fd5b50565b613b0681613641565b8114613b1157600080fd5b50565b613b1d8161368d565b8114613b2857600080fd5b5056fea264697066735822122038bfb95c27f20071b6033a82aadfab1ea2970a5402dd77e660fa614fe939635964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e626565727361726f756e64746865776f726c646e66742e636f6d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061019c5760003560e01c8063783fd922116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105b9578063d621a776146105e4578063e985e9c5146105fb578063f2fde38b146106385761019c565b8063b88d4fde14610528578063c87b56dd14610551578063cfc86f7b1461058e5761019c565b806395d89b41116100c657806395d89b41146104a1578063a0712d68146104cc578063a22cb465146104e8578063ac446002146105115761019c565b8063783fd9221461042257806385fee1681461044b5780638da5cb5b146104765761019c565b806323b872dd116101595780634f6ccce7116101335780634f6ccce7146103545780636352211e1461039157806370a08231146103ce578063715018a61461040b5761019c565b806323b872dd146102c55780632f745c59146102ee57806342842e0e1461032b5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b31461024657806316c61ccc1461026f57806318160ddd1461029a575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612ef0565b610661565b6040516101d59190613326565b60405180910390f35b3480156101ea57600080fd5b506101f36107ab565b6040516102009190613341565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612fc2565b61083d565b60405161023d91906132bf565b60405180910390f35b34801561025257600080fd5b5061026d60048036038101906102689190612eb0565b6108b9565b005b34801561027b57600080fd5b506102846109c4565b6040516102919190613326565b60405180910390f35b3480156102a657600080fd5b506102af6109d7565b6040516102bc9190613463565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e79190612d9a565b610a2c565b005b3480156102fa57600080fd5b5061031560048036038101906103109190612eb0565b610a3c565b6040516103229190613463565b60405180910390f35b34801561033757600080fd5b50610352600480360381019061034d9190612d9a565b610c43565b005b34801561036057600080fd5b5061037b60048036038101906103769190612fc2565b610c63565b6040516103889190613463565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b39190612fc2565b610dd4565b6040516103c591906132bf565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612d2d565b610dea565b6040516104029190613463565b60405180910390f35b34801561041757600080fd5b50610420610eba565b005b34801561042e57600080fd5b5061044960048036038101906104449190612f4a565b610f42565b005b34801561045757600080fd5b50610460610ff0565b60405161046d9190613341565b60405180910390f35b34801561048257600080fd5b5061048b61107e565b60405161049891906132bf565b60405180910390f35b3480156104ad57600080fd5b506104b66110a8565b6040516104c39190613341565b60405180910390f35b6104e660048036038101906104e19190612fc2565b61113a565b005b3480156104f457600080fd5b5061050f600480360381019061050a9190612e70565b6112b3565b005b34801561051d57600080fd5b5061052661142b565b005b34801561053457600080fd5b5061054f600480360381019061054a9190612ded565b6115ac565b005b34801561055d57600080fd5b5061057860048036038101906105739190612fc2565b6115ff565b6040516105859190613341565b60405180910390f35b34801561059a57600080fd5b506105a36116a9565b6040516105b09190613341565b60405180910390f35b3480156105c557600080fd5b506105ce611737565b6040516105db9190613463565b60405180910390f35b3480156105f057600080fd5b506105f961173d565b005b34801561060757600080fd5b50610622600480360381019061061d9190612d5a565b6117e5565b60405161062f9190613326565b60405180910390f35b34801561064457600080fd5b5061065f600480360381019061065a9190612d2d565b611879565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061079457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107a457506107a382611971565b5b9050919050565b6060600180546107ba906136d9565b80601f01602080910402602001604051908101604052809291908181526020018280546107e6906136d9565b80156108335780601f1061080857610100808354040283529160200191610833565b820191906000526020600020905b81548152906001019060200180831161081657829003601f168201915b5050505050905090565b6000610848826119db565b61087e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c482610dd4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561092c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661094b611a43565b73ffffffffffffffffffffffffffffffffffffffff161415801561097d575061097b81610976611a43565b6117e5565b155b156109b4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109bf838383611a4b565b505050565b600c60009054906101000a900460ff1681565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610a37838383611afd565b505050565b6000610a4783610dea565b8210610a7f576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610c37576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610b965750610c2a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610bd657806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c285786841415610c1f578195505050505050610c3d565b83806001019450505b505b8080600101915050610ab9565b50600080fd5b92915050565b610c5e838383604051806020016040528060008152506115ac565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610d9c576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610d8e5785831415610d855781945050505050610dcf565b82806001019350505b508080600101915050610c9b565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000610ddf8261201a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e52576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610ec2611a43565b73ffffffffffffffffffffffffffffffffffffffff16610ee061107e565b73ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d906133e3565b60405180910390fd5b610f4060006122c2565b565b610f4a611a43565b73ffffffffffffffffffffffffffffffffffffffff16610f6861107e565b73ffffffffffffffffffffffffffffffffffffffff1614610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb5906133e3565b60405180910390fd5b81600a9080519060200190610fd4929190612afe565b5080600b9080519060200190610feb929190612afe565b505050565b600b8054610ffd906136d9565b80601f0160208091040260200160405190810160405280929190818152602001828054611029906136d9565b80156110765780601f1061104b57610100808354040283529160200191611076565b820191906000526020600020905b81548152906001019060200180831161105957829003601f168201915b505050505081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600280546110b7906136d9565b80601f01602080910402602001604051908101604052809291908181526020018280546110e3906136d9565b80156111305780601f1061110557610100808354040283529160200191611130565b820191906000526020600020905b81548152906001019060200180831161111357829003601f168201915b5050505050905090565b611142611a43565b73ffffffffffffffffffffffffffffffffffffffff1661116061107e565b73ffffffffffffffffffffffffffffffffffffffff16146111b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ad906133e3565b60405180910390fd5b600c60009054906101000a900460ff1615611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90613363565b60405180910390fd5b60008111611249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611240906133c3565b60405180910390fd5b60006112536109d7565b905060095482826112649190613568565b11156112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c906133a3565b60405180910390fd5b6112af3383612388565b5050565b6112bb611a43565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611320576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806006600061132d611a43565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166113da611a43565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161141f9190613326565b60405180910390a35050565b611433611a43565b73ffffffffffffffffffffffffffffffffffffffff1661145161107e565b73ffffffffffffffffffffffffffffffffffffffff16146114a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149e906133e3565b60405180910390fd5b600260085414156114ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e490613443565b60405180910390fd5b600260088190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161151b906132aa565b60006040518083038185875af1925050503d8060008114611558576040519150601f19603f3d011682016040523d82523d6000602084013e61155d565b606091505b50509050806115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890613423565b60405180910390fd5b506001600881905550565b6115b7848484611afd565b6115c3848484846123a6565b6115f9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b606061160a826119db565b611649576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164090613403565b60405180910390fd5b6000611653612534565b9050600081511161167357604051806020016040528060008152506116a1565b8061167d846125c6565b600b60405160200161169193929190613279565b6040516020818303038152906040525b915050919050565b600a80546116b6906136d9565b80601f01602080910402602001604051908101604052809291908181526020018280546116e2906136d9565b801561172f5780601f106117045761010080835404028352916020019161172f565b820191906000526020600020905b81548152906001019060200180831161171257829003601f168201915b505050505081565b60095481565b611745611a43565b73ffffffffffffffffffffffffffffffffffffffff1661176361107e565b73ffffffffffffffffffffffffffffffffffffffff16146117b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b0906133e3565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611881611a43565b73ffffffffffffffffffffffffffffffffffffffff1661189f61107e565b73ffffffffffffffffffffffffffffffffffffffff16146118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec906133e3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c90613383565b60405180910390fd5b61196e816122c2565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611a3c575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b088261201a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b2f611a43565b73ffffffffffffffffffffffffffffffffffffffff161480611b625750611b618260000151611b5c611a43565b6117e5565b5b80611ba75750611b70611a43565b73ffffffffffffffffffffffffffffffffffffffff16611b8f8461083d565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611be0576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c49576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cb0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611cbd8585856001612727565b611ccd6000848460000151611a4b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611faa5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015611fa95782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612013858585600161272d565b5050505050565b612022612b84565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561228b576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161228957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461216d5780925050506122bd565b5b60011561228857818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122835780925050506122bd565b61216e565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6123a2828260405180602001604052806000815250612733565b5050565b60006123c78473ffffffffffffffffffffffffffffffffffffffff16612745565b15612527578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123f0611a43565b8786866040518563ffffffff1660e01b815260040161241294939291906132da565b602060405180830381600087803b15801561242c57600080fd5b505af192505050801561245d57506040513d601f19601f8201168201806040525081019061245a9190612f1d565b60015b6124d7573d806000811461248d576040519150601f19603f3d011682016040523d82523d6000602084013e612492565b606091505b506000815114156124cf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061252c565b600190505b949350505050565b6060600a8054612543906136d9565b80601f016020809104026020016040519081016040528092919081815260200182805461256f906136d9565b80156125bc5780601f10612591576101008083540402835291602001916125bc565b820191906000526020600020905b81548152906001019060200180831161259f57829003601f168201915b5050505050905090565b6060600082141561260e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612722565b600082905060005b600082146126405780806126299061373c565b915050600a8261263991906135be565b9150612616565b60008167ffffffffffffffff81111561265c5761265b613872565b5b6040519080825280601f01601f19166020018201604052801561268e5781602001600182028036833780820191505090505b5090505b6000851461271b576001826126a791906135ef565b9150600a856126b69190613785565b60306126c29190613568565b60f81b8183815181106126d8576126d7613843565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561271491906135be565b9450612692565b8093505050505b919050565b50505050565b50505050565b6127408383836001612768565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612803576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561283e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61284b6000868387612727565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612ab057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612a645750612a6260008884886123a6565b155b15612a9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506129e9565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612af7600086838761272d565b5050505050565b828054612b0a906136d9565b90600052602060002090601f016020900481019282612b2c5760008555612b73565b82601f10612b4557805160ff1916838001178555612b73565b82800160010185558215612b73579182015b82811115612b72578251825591602001919060010190612b57565b5b509050612b809190612bc7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612be0576000816000905550600101612bc8565b5090565b6000612bf7612bf2846134a3565b61347e565b905082815260208101848484011115612c1357612c126138a6565b5b612c1e848285613697565b509392505050565b6000612c39612c34846134d4565b61347e565b905082815260208101848484011115612c5557612c546138a6565b5b612c60848285613697565b509392505050565b600081359050612c7781613acf565b92915050565b600081359050612c8c81613ae6565b92915050565b600081359050612ca181613afd565b92915050565b600081519050612cb681613afd565b92915050565b600082601f830112612cd157612cd06138a1565b5b8135612ce1848260208601612be4565b91505092915050565b600082601f830112612cff57612cfe6138a1565b5b8135612d0f848260208601612c26565b91505092915050565b600081359050612d2781613b14565b92915050565b600060208284031215612d4357612d426138b0565b5b6000612d5184828501612c68565b91505092915050565b60008060408385031215612d7157612d706138b0565b5b6000612d7f85828601612c68565b9250506020612d9085828601612c68565b9150509250929050565b600080600060608486031215612db357612db26138b0565b5b6000612dc186828701612c68565b9350506020612dd286828701612c68565b9250506040612de386828701612d18565b9150509250925092565b60008060008060808587031215612e0757612e066138b0565b5b6000612e1587828801612c68565b9450506020612e2687828801612c68565b9350506040612e3787828801612d18565b925050606085013567ffffffffffffffff811115612e5857612e576138ab565b5b612e6487828801612cbc565b91505092959194509250565b60008060408385031215612e8757612e866138b0565b5b6000612e9585828601612c68565b9250506020612ea685828601612c7d565b9150509250929050565b60008060408385031215612ec757612ec66138b0565b5b6000612ed585828601612c68565b9250506020612ee685828601612d18565b9150509250929050565b600060208284031215612f0657612f056138b0565b5b6000612f1484828501612c92565b91505092915050565b600060208284031215612f3357612f326138b0565b5b6000612f4184828501612ca7565b91505092915050565b60008060408385031215612f6157612f606138b0565b5b600083013567ffffffffffffffff811115612f7f57612f7e6138ab565b5b612f8b85828601612cea565b925050602083013567ffffffffffffffff811115612fac57612fab6138ab565b5b612fb885828601612cea565b9150509250929050565b600060208284031215612fd857612fd76138b0565b5b6000612fe684828501612d18565b91505092915050565b612ff881613623565b82525050565b61300781613635565b82525050565b60006130188261351a565b6130228185613530565b93506130328185602086016136a6565b61303b816138b5565b840191505092915050565b600061305182613525565b61305b818561354c565b935061306b8185602086016136a6565b613074816138b5565b840191505092915050565b600061308a82613525565b613094818561355d565b93506130a48185602086016136a6565b80840191505092915050565b600081546130bd816136d9565b6130c7818661355d565b945060018216600081146130e257600181146130f357613126565b60ff19831686528186019350613126565b6130fc85613505565b60005b8381101561311e578154818901526001820191506020810190506130ff565b838801955050505b50505092915050565b600061313c601c8361354c565b9150613147826138c6565b602082019050919050565b600061315f60268361354c565b915061316a826138ef565b604082019050919050565b600061318260438361354c565b915061318d8261393e565b606082019050919050565b60006131a560228361354c565b91506131b0826139b3565b604082019050919050565b60006131c860208361354c565b91506131d382613a02565b602082019050919050565b60006131eb602f8361354c565b91506131f682613a2b565b604082019050919050565b600061320e600083613541565b915061321982613a7a565b600082019050919050565b600061323160108361354c565b915061323c82613a7d565b602082019050919050565b6000613254601f8361354c565b915061325f82613aa6565b602082019050919050565b6132738161368d565b82525050565b6000613285828661307f565b9150613291828561307f565b915061329d82846130b0565b9150819050949350505050565b60006132b582613201565b9150819050919050565b60006020820190506132d46000830184612fef565b92915050565b60006080820190506132ef6000830187612fef565b6132fc6020830186612fef565b613309604083018561326a565b818103606083015261331b818461300d565b905095945050505050565b600060208201905061333b6000830184612ffe565b92915050565b6000602082019050818103600083015261335b8184613046565b905092915050565b6000602082019050818103600083015261337c8161312f565b9050919050565b6000602082019050818103600083015261339c81613152565b9050919050565b600060208201905081810360008301526133bc81613175565b9050919050565b600060208201905081810360008301526133dc81613198565b9050919050565b600060208201905081810360008301526133fc816131bb565b9050919050565b6000602082019050818103600083015261341c816131de565b9050919050565b6000602082019050818103600083015261343c81613224565b9050919050565b6000602082019050818103600083015261345c81613247565b9050919050565b6000602082019050613478600083018461326a565b92915050565b6000613488613499565b9050613494828261370b565b919050565b6000604051905090565b600067ffffffffffffffff8211156134be576134bd613872565b5b6134c7826138b5565b9050602081019050919050565b600067ffffffffffffffff8211156134ef576134ee613872565b5b6134f8826138b5565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006135738261368d565b915061357e8361368d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135b3576135b26137b6565b5b828201905092915050565b60006135c98261368d565b91506135d48361368d565b9250826135e4576135e36137e5565b5b828204905092915050565b60006135fa8261368d565b91506136058361368d565b925082821015613618576136176137b6565b5b828203905092915050565b600061362e8261366d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136c45780820151818401526020810190506136a9565b838111156136d3576000848401525b50505050565b600060028204905060018216806136f157607f821691505b6020821081141561370557613704613814565b5b50919050565b613714826138b5565b810181811067ffffffffffffffff8211171561373357613732613872565b5b80604052505050565b60006137478261368d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561377a576137796137b6565b5b600182019050919050565b60006137908261368d565b915061379b8361368d565b9250826137ab576137aa6137e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f3a20436f6e747261637420457865637574696f6e207061757365642e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f3a204e6f206d6f7265204e46547320746f206d696e742c20646563726561736560008201527f20746865207175616e74697479206f7220636865636b206f7574204f70656e5360208201527f65612e0000000000000000000000000000000000000000000000000000000000604082015250565b7f3a20416d6f756e742073686f756c642062652067726561746572207468616e2060008201527f302e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b613ad881613623565b8114613ae357600080fd5b50565b613aef81613635565b8114613afa57600080fd5b50565b613b0681613641565b8114613b1157600080fd5b50565b613b1d8161368d565b8114613b2857600080fd5b5056fea264697066735822122038bfb95c27f20071b6033a82aadfab1ea2970a5402dd77e660fa614fe939635964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000002768747470733a2f2f6170692e626565727361726f756e64746865776f726c646e66742e636f6d2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://api.beersaroundtheworldnft.com/
Arg [1] : _initBaseExt (string):
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [3] : 68747470733a2f2f6170692e626565727361726f756e64746865776f726c646e
Arg [4] : 66742e636f6d2f00000000000000000000000000000000000000000000000000
Arg [5] : 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.