Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
6,265 BPC
Holders
1,273
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BPCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BapesParentalCertificate
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.7; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract BapesParentalCertificate is ERC721A, Ownable, AccessControl { using Strings for uint256; bool private paused = false; string private metadataURI; bytes32 private merkleRoot; address private burnAllowed; mapping(address => bool) private mintedWallets; constructor(string memory _metadataURI) ERC721A("Bapes Parental Certificate", "BPC") { _grantRole(DEFAULT_ADMIN_ROLE, _msgSender()); updateMetadataURI(_metadataURI); } function addressToString() internal view returns (string memory) { return Strings.toHexString(uint160(_msgSender()), 20); } function getOwnerTokens(address _owner) internal view returns (uint256[] memory) { uint256 ownerBalance = balanceOf(_owner); uint256[] memory ownerTokens = new uint256[](ownerBalance); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; address latestOwnerAddress; while (ownedTokenIndex < ownerBalance && currentTokenId < _currentIndex) { TokenOwnership memory ownership = _ownerships[currentTokenId]; if (!ownership.burned) { if (ownership.addr != address(0)) { latestOwnerAddress = ownership.addr; } if (latestOwnerAddress == _owner) { ownerTokens[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } } currentTokenId++; } return ownerTokens; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function tokenURI(uint256) public view virtual override returns (string memory) { return metadataURI; } function mint(uint256 _mintAmount, bytes32[] calldata _merkleProof) external { require(!paused, "Minting is paused"); require(!mintedWallets[_msgSender()], "This wallet has already minted the PC"); bytes32 leaf = keccak256(abi.encodePacked(addressToString(), "-", _mintAmount.toString())); require( MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid proof, this wallet is not eligible for selected amount of BapesParentalCertificate" ); mintedWallets[_msgSender()] = true; _safeMint(_msgSender(), _mintAmount); } // admin function updateMetadataURI(string memory _metadataURI) public onlyRole(DEFAULT_ADMIN_ROLE) { metadataURI = _metadataURI; } function updateBurnAllowed(address _address) external onlyRole(DEFAULT_ADMIN_ROLE) { burnAllowed = _address; } function mintFor(uint256 _mintAmount, address _receiver) external onlyRole(DEFAULT_ADMIN_ROLE) { require(!paused, "Minting is paused"); _safeMint(_receiver, _mintAmount); } function togglePause(bool _state) external onlyRole(DEFAULT_ADMIN_ROLE) { paused = _state; } function updateMerkleRoot(bytes32 _merkleRoot) external onlyRole(DEFAULT_ADMIN_ROLE) { merkleRoot = _merkleRoot; } function burn(uint256 _amount, address _address) external returns (bool) { require(msg.sender == burnAllowed, "This address is not allowed to burn"); require(balanceOf(_address) >= _amount, "Not enough PC"); uint256[] memory tokens = getOwnerTokens(_address); for (uint256 i = 0; i < _amount; i++) { _burn(tokens[i]); } return true; } }
// 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/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 MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); 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 extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 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**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { 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; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 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_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * 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 (_startTokenId() <= curr && 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 virtual 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 (to.isContract() && !_checkContractOnERC721Received(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 _startTokenId() <= tokenId && 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 > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 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; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = 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); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.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; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, 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 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { 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)) } } } } /** * @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 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_metadataURI","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":"OwnerQueryForNonexistentToken","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"bool","name":"_state","type":"bool"}],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"updateBurnAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataURI","type":"string"}],"name":"updateMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600a60006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b50604051620052db380380620052db833981810160405281019062000052919062000823565b6040518060400160405280601a81526020017f426170657320506172656e74616c2043657274696669636174650000000000008152506040518060400160405280600381526020017f42504300000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d6929190620006f5565b508060039080519060200190620000ef929190620006f5565b50620001006200016460201b60201c565b6000819055505050620001286200011c6200016960201b60201c565b6200017160201b60201c565b6200014c6000801b620001406200016960201b60201c565b6200023760201b60201c565b6200015d816200032960201b60201c565b5062000d64565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200024982826200036b60201b60201c565b620003255760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002ca6200016960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000801b6200034e81620003426200016960201b60201c565b620003d660201b60201c565b81600b908051906020019062000366929190620006f5565b505050565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b620003e882826200036b60201b60201c565b62000496576200041b8173ffffffffffffffffffffffffffffffffffffffff1660146200049a60201b620014951760201c565b620004368360001c60206200049a60201b620014951760201c565b6040516020016200044992919062000961565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048d9190620009a3565b60405180910390fd5b5050565b606060006002836002620004af919062000acc565b620004bb919062000a6f565b67ffffffffffffffff811115620004d757620004d662000c95565b5b6040519080825280601f01601f1916602001820160405280156200050a5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062000545576200054462000c66565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110620005ac57620005ab62000c66565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002620005ee919062000acc565b620005fa919062000a6f565b90505b6001811115620006a4577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062000640576200063f62000c66565b5b1a60f81b8282815181106200065a576200065962000c66565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806200069c9062000b6d565b9050620005fd565b5060008414620006eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006e290620009c7565b60405180910390fd5b8091505092915050565b828054620007039062000b9c565b90600052602060002090601f01602090048101928262000727576000855562000773565b82601f106200074257805160ff191683800117855562000773565b8280016001018555821562000773579182015b828111156200077257825182559160200191906001019062000755565b5b50905062000782919062000786565b5090565b5b80821115620007a157600081600090555060010162000787565b5090565b6000620007bc620007b68462000a12565b620009e9565b905082815260208101848484011115620007db57620007da62000cc9565b5b620007e884828562000b37565b509392505050565b600082601f83011262000808576200080762000cc4565b5b81516200081a848260208601620007a5565b91505092915050565b6000602082840312156200083c576200083b62000cd3565b5b600082015167ffffffffffffffff8111156200085d576200085c62000cce565b5b6200086b84828501620007f0565b91505092915050565b6000620008818262000a48565b6200088d818562000a53565b93506200089f81856020860162000b37565b620008aa8162000cd8565b840191505092915050565b6000620008c28262000a48565b620008ce818562000a64565b9350620008e081856020860162000b37565b80840191505092915050565b6000620008fb60208362000a53565b9150620009088262000ce9565b602082019050919050565b60006200092260178362000a64565b91506200092f8262000d12565b601782019050919050565b60006200094960118362000a64565b9150620009568262000d3b565b601182019050919050565b60006200096e8262000913565b91506200097c8285620008b5565b915062000989826200093a565b9150620009978284620008b5565b91508190509392505050565b60006020820190508181036000830152620009bf818462000874565b905092915050565b60006020820190508181036000830152620009e281620008ec565b9050919050565b6000620009f562000a08565b905062000a03828262000bd2565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a305762000a2f62000c95565b5b62000a3b8262000cd8565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600062000a7c8262000b2d565b915062000a898362000b2d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000ac15762000ac062000c08565b5b828201905092915050565b600062000ad98262000b2d565b915062000ae68362000b2d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b225762000b2162000c08565b5b828202905092915050565b6000819050919050565b60005b8381101562000b5757808201518184015260208101905062000b3a565b8381111562000b67576000848401525b50505050565b600062000b7a8262000b2d565b9150600082141562000b915762000b9062000c08565b5b600182039050919050565b6000600282049050600182168062000bb557607f821691505b6020821081141562000bcc5762000bcb62000c37565b5b50919050565b62000bdd8262000cd8565b810181811067ffffffffffffffff8211171562000bff5762000bfe62000c95565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6145678062000d746000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063ad62f1ca116100a2578063d547741f11610071578063d547741f1461053b578063e985e9c514610557578063f2fde38b14610587578063fcd3533c146105a3576101da565b8063ad62f1ca146104b7578063b88d4fde146104d3578063ba41b0c6146104ef578063c87b56dd1461050b576101da565b806391d14854116100de57806391d148541461042f57806395d89b411461045f578063a217fddf1461047d578063a22cb4651461049b576101da565b806370a08231146103d7578063715018a6146104075780638da5cb5b14610411576101da565b8063248a9ca31161017c5780634783f0ef1161014b5780634783f0ef1461035357806353fd3e811461036f57806357d159c61461038b5780636352211e146103a7576101da565b8063248a9ca3146102cf5780632f2ff15d146102ff57806336568abe1461031b57806342842e0e14610337576101da565b8063095ea7b3116101b8578063095ea7b31461025d5780630bae7f111461027957806318160ddd1461029557806323b872dd146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f491906136d8565b6105d3565b6040516102069190613b9b565b60405180910390f35b6102176105e5565b6040516102249190613bd1565b60405180910390f35b6102476004803603810190610242919061377b565b610677565b6040516102549190613b34565b60405180910390f35b610277600480360381019061027291906135fe565b6106f3565b005b610293600480360381019061028e919061347b565b6107fe565b005b61029d610858565b6040516102aa9190613d13565b60405180910390f35b6102cd60048036038101906102c891906134e8565b61086f565b005b6102e960048036038101906102e4919061366b565b61087f565b6040516102f69190613bb6565b60405180910390f35b61031960048036038101906103149190613698565b61089f565b005b61033560048036038101906103309190613698565b6108c8565b005b610351600480360381019061034c91906134e8565b61094b565b005b61036d6004803603810190610368919061366b565b61096b565b005b61038960048036038101906103849190613732565b61098b565b005b6103a560048036038101906103a0919061363e565b6109bb565b005b6103c160048036038101906103bc919061377b565b6109ee565b6040516103ce9190613b34565b60405180910390f35b6103f160048036038101906103ec919061347b565b610a04565b6040516103fe9190613d13565b60405180910390f35b61040f610ad4565b005b610419610b5c565b6040516104269190613b34565b60405180910390f35b61044960048036038101906104449190613698565b610b86565b6040516104569190613b9b565b60405180910390f35b610467610bf1565b6040516104749190613bd1565b60405180910390f35b610485610c83565b6040516104929190613bb6565b60405180910390f35b6104b560048036038101906104b091906135be565b610c8a565b005b6104d160048036038101906104cc91906137a8565b610e02565b005b6104ed60048036038101906104e8919061353b565b610e76565b005b610509600480360381019061050491906137e8565b610ef2565b005b6105256004803603810190610520919061377b565b611115565b6040516105329190613bd1565b60405180910390f35b61055560048036038101906105509190613698565b6111a9565b005b610571600480360381019061056c91906134a8565b6111d2565b60405161057e9190613b9b565b60405180910390f35b6105a1600480360381019061059c919061347b565b611266565b005b6105bd60048036038101906105b891906137a8565b61135e565b6040516105ca9190613b9b565b60405180910390f35b60006105de826116d1565b9050919050565b6060600280546105f490613ff7565b80601f016020809104026020016040519081016040528092919081815260200182805461062090613ff7565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b60006106828261174b565b6106b8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fe826109ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610766576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610785611799565b73ffffffffffffffffffffffffffffffffffffffff16141580156107b757506107b5816107b0611799565b6111d2565b155b156107ee576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107f98383836117a1565b505050565b6000801b6108138161080e611799565b611853565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60006108626118f0565b6001546000540303905090565b61087a8383836118f5565b505050565b600060096000838152602001908152602001600020600101549050919050565b6108a88261087f565b6108b9816108b4611799565b611853565b6108c38383611dab565b505050565b6108d0611799565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490613cf3565b60405180910390fd5b6109478282611e8c565b5050565b61096683838360405180602001604052806000815250610e76565b505050565b6000801b6109808161097b611799565b611853565b81600c819055505050565b6000801b6109a08161099b611799565b611853565b81600b90805190602001906109b69291906131e1565b505050565b6000801b6109d0816109cb611799565b611853565b81600a60006101000a81548160ff0219169083151502179055505050565b60006109f982611f6e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610adc611799565b73ffffffffffffffffffffffffffffffffffffffff16610afa610b5c565b73ffffffffffffffffffffffffffffffffffffffff1614610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790613c93565b60405180910390fd5b610b5a60006121fd565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610c0090613ff7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2c90613ff7565b8015610c795780601f10610c4e57610100808354040283529160200191610c79565b820191906000526020600020905b815481529060010190602001808311610c5c57829003601f168201915b5050505050905090565b6000801b81565b610c92611799565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d04611799565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610db1611799565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610df69190613b9b565b60405180910390a35050565b6000801b610e1781610e12611799565b611853565b600a60009054906101000a900460ff1615610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90613cd3565b60405180910390fd5b610e7182846122c3565b505050565b610e818484846118f5565b610ea08373ffffffffffffffffffffffffffffffffffffffff166122e1565b8015610eb55750610eb384848484612304565b155b15610eec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a60009054906101000a900460ff1615610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990613cd3565b60405180910390fd5b600e6000610f4e611799565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613cb3565b60405180910390fd5b6000610fe0612464565b610fe985612493565b604051602001610ffa929190613acb565b604051602081830303815290604052805190602001209050611060838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836125f4565b61109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690613c53565b60405180910390fd5b6001600e60006110ad611799565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061110f611109611799565b856122c3565b50505050565b6060600b805461112490613ff7565b80601f016020809104026020016040519081016040528092919081815260200182805461115090613ff7565b801561119d5780601f106111725761010080835404028352916020019161119d565b820191906000526020600020905b81548152906001019060200180831161118057829003601f168201915b50505050509050919050565b6111b28261087f565b6111c3816111be611799565b611853565b6111cd8383611e8c565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126e611799565b73ffffffffffffffffffffffffffffffffffffffff1661128c610b5c565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613c93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613c13565b60405180910390fd5b61135b816121fd565b50565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790613c73565b60405180910390fd5b826113fa83610a04565b101561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613c33565b60405180910390fd5b60006114468361260b565b905060005b848110156114895761147682828151811061146957611468614161565b5b602002602001015161281f565b80806114819061405a565b91505061144b565b50600191505092915050565b6060600060028360026114a89190613e7f565b6114b29190613df8565b67ffffffffffffffff8111156114cb576114ca614190565b5b6040519080825280601f01601f1916602001820160405280156114fd5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061153557611534614161565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061159957611598614161565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026115d99190613e7f565b6115e39190613df8565b90505b6001811115611683577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061162557611624614161565b5b1a60f81b82828151811061163c5761163b614161565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061167c90613fcd565b90506115e6565b50600084146116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90613bf3565b60405180910390fd5b8091505092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061174457506117438261282d565b5b9050919050565b6000816117566118f0565b11158015611765575060005482105b8015611792575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61185d8282610b86565b6118ec576118828173ffffffffffffffffffffffffffffffffffffffff166014611495565b6118908360001c6020611495565b6040516020016118a1929190613afa565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39190613bd1565b60405180910390fd5b5050565b600090565b600061190082611f6e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461196b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661198c611799565b73ffffffffffffffffffffffffffffffffffffffff1614806119bb57506119ba856119b5611799565b6111d2565b5b80611a0057506119c9611799565b73ffffffffffffffffffffffffffffffffffffffff166119e884610677565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a39576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611aa0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aad858585600161290f565b611ab9600084876117a1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d39576000548214611d3857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611da48585856001612915565b5050505050565b611db58282610b86565b611e885760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611e2d611799565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611e968282610b86565b15611f6a5760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f0f611799565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611f76613267565b600082905080611f846118f0565b11158015611f93575060005481105b156121c6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516121c457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120a85780925050506121f8565b5b6001156121c357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121be5780925050506121f8565b6120a9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122dd82826040518060200160405280600081525061291b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261232a611799565b8786866040518563ffffffff1660e01b815260040161234c9493929190613b4f565b602060405180830381600087803b15801561236657600080fd5b505af192505050801561239757506040513d601f19601f820116820180604052508101906123949190613705565b60015b612411573d80600081146123c7576040519150601f19603f3d011682016040523d82523d6000602084013e6123cc565b606091505b50600081511415612409576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606061248e612471611799565b73ffffffffffffffffffffffffffffffffffffffff166014611495565b905090565b606060008214156124db576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125ef565b600082905060005b6000821461250d5780806124f69061405a565b915050600a826125069190613e4e565b91506124e3565b60008167ffffffffffffffff81111561252957612528614190565b5b6040519080825280601f01601f19166020018201604052801561255b5781602001600182028036833780820191505090505b5090505b600085146125e8576001826125749190613ed9565b9150600a8561258391906140a3565b603061258f9190613df8565b60f81b8183815181106125a5576125a4614161565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125e19190613e4e565b945061255f565b8093505050505b919050565b600082612601858461292d565b1490509392505050565b6060600061261883610a04565b905060008167ffffffffffffffff81111561263657612635614190565b5b6040519080825280602002602001820160405280156126645781602001602082028036833780820191505090505b50905060006126716118f0565b90506000805b8482108015612687575060005483105b15612812576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127fe57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461279a57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fd57838584815181106127e2576127e1614161565b5b60200260200101818152505082806127f99061405a565b9350505b5b83806128099061405a565b94505050612677565b8395505050505050919050565b61282a8160006129a2565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612908575061290782612d92565b5b9050919050565b50505050565b50505050565b6129288383836001612dfc565b505050565b60008082905060005b845181101561299757600085828151811061295457612953614161565b5b602002602001015190508083116129765761296f83826131ca565b9250612983565b61298081846131ca565b92505b50808061298f9061405a565b915050612936565b508091505092915050565b60006129ad83611f6e565b90506000816000015190508215612a8e5760008173ffffffffffffffffffffffffffffffffffffffff166129df611799565b73ffffffffffffffffffffffffffffffffffffffff161480612a0e5750612a0d82612a08611799565b6111d2565b5b80612a535750612a1c611799565b73ffffffffffffffffffffffffffffffffffffffff16612a3b86610677565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a8c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612a9c81600086600161290f565b612aa8600085836117a1565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d0c576000548214612d0b57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7a816000866001612915565b60016000815480929190600101919050555050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e69576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ea4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eb1600086838761290f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561307b575061307a8773ffffffffffffffffffffffffffffffffffffffff166122e1565b5b15613141575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f06000888480600101955088612304565b613126576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561308157826000541461313c57600080fd5b6131ad565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613142575b8160008190555050506131c36000868387612915565b5050505050565b600082600052816020526040600020905092915050565b8280546131ed90613ff7565b90600052602060002090601f01602090048101928261320f5760008555613256565b82601f1061322857805160ff1916838001178555613256565b82800160010185558215613256579182015b8281111561325557825182559160200191906001019061323a565b5b50905061326391906132aa565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156132c35760008160009055506001016132ab565b5090565b60006132da6132d584613d53565b613d2e565b9050828152602081018484840111156132f6576132f56141ce565b5b613301848285613f8b565b509392505050565b600061331c61331784613d84565b613d2e565b905082815260208101848484011115613338576133376141ce565b5b613343848285613f8b565b509392505050565b60008135905061335a816144be565b92915050565b60008083601f840112613376576133756141c4565b5b8235905067ffffffffffffffff811115613393576133926141bf565b5b6020830191508360208202830111156133af576133ae6141c9565b5b9250929050565b6000813590506133c5816144d5565b92915050565b6000813590506133da816144ec565b92915050565b6000813590506133ef81614503565b92915050565b60008151905061340481614503565b92915050565b600082601f83011261341f5761341e6141c4565b5b813561342f8482602086016132c7565b91505092915050565b600082601f83011261344d5761344c6141c4565b5b813561345d848260208601613309565b91505092915050565b6000813590506134758161451a565b92915050565b600060208284031215613491576134906141d8565b5b600061349f8482850161334b565b91505092915050565b600080604083850312156134bf576134be6141d8565b5b60006134cd8582860161334b565b92505060206134de8582860161334b565b9150509250929050565b600080600060608486031215613501576135006141d8565b5b600061350f8682870161334b565b93505060206135208682870161334b565b925050604061353186828701613466565b9150509250925092565b60008060008060808587031215613555576135546141d8565b5b60006135638782880161334b565b94505060206135748782880161334b565b935050604061358587828801613466565b925050606085013567ffffffffffffffff8111156135a6576135a56141d3565b5b6135b28782880161340a565b91505092959194509250565b600080604083850312156135d5576135d46141d8565b5b60006135e38582860161334b565b92505060206135f4858286016133b6565b9150509250929050565b60008060408385031215613615576136146141d8565b5b60006136238582860161334b565b925050602061363485828601613466565b9150509250929050565b600060208284031215613654576136536141d8565b5b6000613662848285016133b6565b91505092915050565b600060208284031215613681576136806141d8565b5b600061368f848285016133cb565b91505092915050565b600080604083850312156136af576136ae6141d8565b5b60006136bd858286016133cb565b92505060206136ce8582860161334b565b9150509250929050565b6000602082840312156136ee576136ed6141d8565b5b60006136fc848285016133e0565b91505092915050565b60006020828403121561371b5761371a6141d8565b5b6000613729848285016133f5565b91505092915050565b600060208284031215613748576137476141d8565b5b600082013567ffffffffffffffff811115613766576137656141d3565b5b61377284828501613438565b91505092915050565b600060208284031215613791576137906141d8565b5b600061379f84828501613466565b91505092915050565b600080604083850312156137bf576137be6141d8565b5b60006137cd85828601613466565b92505060206137de8582860161334b565b9150509250929050565b600080600060408486031215613801576138006141d8565b5b600061380f86828701613466565b935050602084013567ffffffffffffffff8111156138305761382f6141d3565b5b61383c86828701613360565b92509250509250925092565b61385181613f0d565b82525050565b61386081613f1f565b82525050565b61386f81613f2b565b82525050565b600061388082613db5565b61388a8185613dcb565b935061389a818560208601613f9a565b6138a3816141dd565b840191505092915050565b60006138b982613dc0565b6138c38185613ddc565b93506138d3818560208601613f9a565b6138dc816141dd565b840191505092915050565b60006138f282613dc0565b6138fc8185613ded565b935061390c818560208601613f9a565b80840191505092915050565b6000613925602083613ddc565b9150613930826141ee565b602082019050919050565b6000613948602683613ddc565b915061395382614217565b604082019050919050565b600061396b600d83613ddc565b915061397682614266565b602082019050919050565b600061398e605a83613ddc565b91506139998261428f565b606082019050919050565b60006139b1602383613ddc565b91506139bc82614304565b604082019050919050565b60006139d4602083613ddc565b91506139df82614353565b602082019050919050565b60006139f7602583613ddc565b9150613a028261437c565b604082019050919050565b6000613a1a601183613ddc565b9150613a25826143cb565b602082019050919050565b6000613a3d600183613ded565b9150613a48826143f4565b600182019050919050565b6000613a60601783613ded565b9150613a6b8261441d565b601782019050919050565b6000613a83601183613ded565b9150613a8e82614446565b601182019050919050565b6000613aa6602f83613ddc565b9150613ab18261446f565b604082019050919050565b613ac581613f81565b82525050565b6000613ad782856138e7565b9150613ae282613a30565b9150613aee82846138e7565b91508190509392505050565b6000613b0582613a53565b9150613b1182856138e7565b9150613b1c82613a76565b9150613b2882846138e7565b91508190509392505050565b6000602082019050613b496000830184613848565b92915050565b6000608082019050613b646000830187613848565b613b716020830186613848565b613b7e6040830185613abc565b8181036060830152613b908184613875565b905095945050505050565b6000602082019050613bb06000830184613857565b92915050565b6000602082019050613bcb6000830184613866565b92915050565b60006020820190508181036000830152613beb81846138ae565b905092915050565b60006020820190508181036000830152613c0c81613918565b9050919050565b60006020820190508181036000830152613c2c8161393b565b9050919050565b60006020820190508181036000830152613c4c8161395e565b9050919050565b60006020820190508181036000830152613c6c81613981565b9050919050565b60006020820190508181036000830152613c8c816139a4565b9050919050565b60006020820190508181036000830152613cac816139c7565b9050919050565b60006020820190508181036000830152613ccc816139ea565b9050919050565b60006020820190508181036000830152613cec81613a0d565b9050919050565b60006020820190508181036000830152613d0c81613a99565b9050919050565b6000602082019050613d286000830184613abc565b92915050565b6000613d38613d49565b9050613d448282614029565b919050565b6000604051905090565b600067ffffffffffffffff821115613d6e57613d6d614190565b5b613d77826141dd565b9050602081019050919050565b600067ffffffffffffffff821115613d9f57613d9e614190565b5b613da8826141dd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0382613f81565b9150613e0e83613f81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4357613e426140d4565b5b828201905092915050565b6000613e5982613f81565b9150613e6483613f81565b925082613e7457613e73614103565b5b828204905092915050565b6000613e8a82613f81565b9150613e9583613f81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ece57613ecd6140d4565b5b828202905092915050565b6000613ee482613f81565b9150613eef83613f81565b925082821015613f0257613f016140d4565b5b828203905092915050565b6000613f1882613f61565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fb8578082015181840152602081019050613f9d565b83811115613fc7576000848401525b50505050565b6000613fd882613f81565b91506000821415613fec57613feb6140d4565b5b600182039050919050565b6000600282049050600182168061400f57607f821691505b6020821081141561402357614022614132565b5b50919050565b614032826141dd565b810181811067ffffffffffffffff8211171561405157614050614190565b5b80604052505050565b600061406582613f81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614098576140976140d4565b5b600182019050919050565b60006140ae82613f81565b91506140b983613f81565b9250826140c9576140c8614103565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820504300000000000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f662c20746869732077616c6c6574206973206e6f60008201527f7420656c696769626c6520666f722073656c656374656420616d6f756e74206f60208201527f66204261706573506172656e74616c4365727469666963617465000000000000604082015250565b7f546869732061646472657373206973206e6f7420616c6c6f77656420746f206260008201527f75726e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546869732077616c6c65742068617320616c7265616479206d696e746564207460008201527f6865205043000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f2d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6144c781613f0d565b81146144d257600080fd5b50565b6144de81613f1f565b81146144e957600080fd5b50565b6144f581613f2b565b811461450057600080fd5b50565b61450c81613f35565b811461451757600080fd5b50565b61452381613f81565b811461452e57600080fd5b5056fea2646970667358221220aaa8ea41a91c134727ed4fce0bcf8b0bbd154670762e8d65be2c93a077823cca64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6261706573636c616e2e6d7970696e6174612e636c6f75642f697066732f516d556b355a5a4544777a6156537959474345776e4a53693571353771684a335135684576364d55385a4a6f6471000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063ad62f1ca116100a2578063d547741f11610071578063d547741f1461053b578063e985e9c514610557578063f2fde38b14610587578063fcd3533c146105a3576101da565b8063ad62f1ca146104b7578063b88d4fde146104d3578063ba41b0c6146104ef578063c87b56dd1461050b576101da565b806391d14854116100de57806391d148541461042f57806395d89b411461045f578063a217fddf1461047d578063a22cb4651461049b576101da565b806370a08231146103d7578063715018a6146104075780638da5cb5b14610411576101da565b8063248a9ca31161017c5780634783f0ef1161014b5780634783f0ef1461035357806353fd3e811461036f57806357d159c61461038b5780636352211e146103a7576101da565b8063248a9ca3146102cf5780632f2ff15d146102ff57806336568abe1461031b57806342842e0e14610337576101da565b8063095ea7b3116101b8578063095ea7b31461025d5780630bae7f111461027957806318160ddd1461029557806323b872dd146102b3576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f491906136d8565b6105d3565b6040516102069190613b9b565b60405180910390f35b6102176105e5565b6040516102249190613bd1565b60405180910390f35b6102476004803603810190610242919061377b565b610677565b6040516102549190613b34565b60405180910390f35b610277600480360381019061027291906135fe565b6106f3565b005b610293600480360381019061028e919061347b565b6107fe565b005b61029d610858565b6040516102aa9190613d13565b60405180910390f35b6102cd60048036038101906102c891906134e8565b61086f565b005b6102e960048036038101906102e4919061366b565b61087f565b6040516102f69190613bb6565b60405180910390f35b61031960048036038101906103149190613698565b61089f565b005b61033560048036038101906103309190613698565b6108c8565b005b610351600480360381019061034c91906134e8565b61094b565b005b61036d6004803603810190610368919061366b565b61096b565b005b61038960048036038101906103849190613732565b61098b565b005b6103a560048036038101906103a0919061363e565b6109bb565b005b6103c160048036038101906103bc919061377b565b6109ee565b6040516103ce9190613b34565b60405180910390f35b6103f160048036038101906103ec919061347b565b610a04565b6040516103fe9190613d13565b60405180910390f35b61040f610ad4565b005b610419610b5c565b6040516104269190613b34565b60405180910390f35b61044960048036038101906104449190613698565b610b86565b6040516104569190613b9b565b60405180910390f35b610467610bf1565b6040516104749190613bd1565b60405180910390f35b610485610c83565b6040516104929190613bb6565b60405180910390f35b6104b560048036038101906104b091906135be565b610c8a565b005b6104d160048036038101906104cc91906137a8565b610e02565b005b6104ed60048036038101906104e8919061353b565b610e76565b005b610509600480360381019061050491906137e8565b610ef2565b005b6105256004803603810190610520919061377b565b611115565b6040516105329190613bd1565b60405180910390f35b61055560048036038101906105509190613698565b6111a9565b005b610571600480360381019061056c91906134a8565b6111d2565b60405161057e9190613b9b565b60405180910390f35b6105a1600480360381019061059c919061347b565b611266565b005b6105bd60048036038101906105b891906137a8565b61135e565b6040516105ca9190613b9b565b60405180910390f35b60006105de826116d1565b9050919050565b6060600280546105f490613ff7565b80601f016020809104026020016040519081016040528092919081815260200182805461062090613ff7565b801561066d5780601f106106425761010080835404028352916020019161066d565b820191906000526020600020905b81548152906001019060200180831161065057829003601f168201915b5050505050905090565b60006106828261174b565b6106b8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106fe826109ee565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610766576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610785611799565b73ffffffffffffffffffffffffffffffffffffffff16141580156107b757506107b5816107b0611799565b6111d2565b155b156107ee576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107f98383836117a1565b505050565b6000801b6108138161080e611799565b611853565b81600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60006108626118f0565b6001546000540303905090565b61087a8383836118f5565b505050565b600060096000838152602001908152602001600020600101549050919050565b6108a88261087f565b6108b9816108b4611799565b611853565b6108c38383611dab565b505050565b6108d0611799565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461093d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093490613cf3565b60405180910390fd5b6109478282611e8c565b5050565b61096683838360405180602001604052806000815250610e76565b505050565b6000801b6109808161097b611799565b611853565b81600c819055505050565b6000801b6109a08161099b611799565b611853565b81600b90805190602001906109b69291906131e1565b505050565b6000801b6109d0816109cb611799565b611853565b81600a60006101000a81548160ff0219169083151502179055505050565b60006109f982611f6e565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a6c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b610adc611799565b73ffffffffffffffffffffffffffffffffffffffff16610afa610b5c565b73ffffffffffffffffffffffffffffffffffffffff1614610b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4790613c93565b60405180910390fd5b610b5a60006121fd565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060038054610c0090613ff7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2c90613ff7565b8015610c795780601f10610c4e57610100808354040283529160200191610c79565b820191906000526020600020905b815481529060010190602001808311610c5c57829003601f168201915b5050505050905090565b6000801b81565b610c92611799565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cf7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610d04611799565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610db1611799565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610df69190613b9b565b60405180910390a35050565b6000801b610e1781610e12611799565b611853565b600a60009054906101000a900460ff1615610e67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5e90613cd3565b60405180910390fd5b610e7182846122c3565b505050565b610e818484846118f5565b610ea08373ffffffffffffffffffffffffffffffffffffffff166122e1565b8015610eb55750610eb384848484612304565b155b15610eec576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a60009054906101000a900460ff1615610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3990613cd3565b60405180910390fd5b600e6000610f4e611799565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcd90613cb3565b60405180910390fd5b6000610fe0612464565b610fe985612493565b604051602001610ffa929190613acb565b604051602081830303815290604052805190602001209050611060838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836125f4565b61109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690613c53565b60405180910390fd5b6001600e60006110ad611799565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061110f611109611799565b856122c3565b50505050565b6060600b805461112490613ff7565b80601f016020809104026020016040519081016040528092919081815260200182805461115090613ff7565b801561119d5780601f106111725761010080835404028352916020019161119d565b820191906000526020600020905b81548152906001019060200180831161118057829003601f168201915b50505050509050919050565b6111b28261087f565b6111c3816111be611799565b611853565b6111cd8383611e8c565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126e611799565b73ffffffffffffffffffffffffffffffffffffffff1661128c610b5c565b73ffffffffffffffffffffffffffffffffffffffff16146112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613c93565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134990613c13565b60405180910390fd5b61135b816121fd565b50565b6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e790613c73565b60405180910390fd5b826113fa83610a04565b101561143b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143290613c33565b60405180910390fd5b60006114468361260b565b905060005b848110156114895761147682828151811061146957611468614161565b5b602002602001015161281f565b80806114819061405a565b91505061144b565b50600191505092915050565b6060600060028360026114a89190613e7f565b6114b29190613df8565b67ffffffffffffffff8111156114cb576114ca614190565b5b6040519080825280601f01601f1916602001820160405280156114fd5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061153557611534614161565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061159957611598614161565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026115d99190613e7f565b6115e39190613df8565b90505b6001811115611683577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811061162557611624614161565b5b1a60f81b82828151811061163c5761163b614161565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061167c90613fcd565b90506115e6565b50600084146116c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116be90613bf3565b60405180910390fd5b8091505092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061174457506117438261282d565b5b9050919050565b6000816117566118f0565b11158015611765575060005482105b8015611792575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61185d8282610b86565b6118ec576118828173ffffffffffffffffffffffffffffffffffffffff166014611495565b6118908360001c6020611495565b6040516020016118a1929190613afa565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39190613bd1565b60405180910390fd5b5050565b600090565b600061190082611f6e565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461196b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661198c611799565b73ffffffffffffffffffffffffffffffffffffffff1614806119bb57506119ba856119b5611799565b6111d2565b5b80611a0057506119c9611799565b73ffffffffffffffffffffffffffffffffffffffff166119e884610677565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611a39576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611aa0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611aad858585600161290f565b611ab9600084876117a1565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611d39576000548214611d3857878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611da48585856001612915565b5050505050565b611db58282610b86565b611e885760016009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611e2d611799565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611e968282610b86565b15611f6a5760006009600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f0f611799565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611f76613267565b600082905080611f846118f0565b11158015611f93575060005481105b156121c6576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516121c457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146120a85780925050506121f8565b5b6001156121c357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121be5780925050506121f8565b6120a9565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6122dd82826040518060200160405280600081525061291b565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261232a611799565b8786866040518563ffffffff1660e01b815260040161234c9493929190613b4f565b602060405180830381600087803b15801561236657600080fd5b505af192505050801561239757506040513d601f19601f820116820180604052508101906123949190613705565b60015b612411573d80600081146123c7576040519150601f19603f3d011682016040523d82523d6000602084013e6123cc565b606091505b50600081511415612409576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606061248e612471611799565b73ffffffffffffffffffffffffffffffffffffffff166014611495565b905090565b606060008214156124db576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506125ef565b600082905060005b6000821461250d5780806124f69061405a565b915050600a826125069190613e4e565b91506124e3565b60008167ffffffffffffffff81111561252957612528614190565b5b6040519080825280601f01601f19166020018201604052801561255b5781602001600182028036833780820191505090505b5090505b600085146125e8576001826125749190613ed9565b9150600a8561258391906140a3565b603061258f9190613df8565b60f81b8183815181106125a5576125a4614161565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856125e19190613e4e565b945061255f565b8093505050505b919050565b600082612601858461292d565b1490509392505050565b6060600061261883610a04565b905060008167ffffffffffffffff81111561263657612635614190565b5b6040519080825280602002602001820160405280156126645781602001602082028036833780820191505090505b50905060006126716118f0565b90506000805b8482108015612687575060005483105b15612812576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516127fe57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461279a57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fd57838584815181106127e2576127e1614161565b5b60200260200101818152505082806127f99061405a565b9350505b5b83806128099061405a565b94505050612677565b8395505050505050919050565b61282a8160006129a2565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612908575061290782612d92565b5b9050919050565b50505050565b50505050565b6129288383836001612dfc565b505050565b60008082905060005b845181101561299757600085828151811061295457612953614161565b5b602002602001015190508083116129765761296f83826131ca565b9250612983565b61298081846131ca565b92505b50808061298f9061405a565b915050612936565b508091505092915050565b60006129ad83611f6e565b90506000816000015190508215612a8e5760008173ffffffffffffffffffffffffffffffffffffffff166129df611799565b73ffffffffffffffffffffffffffffffffffffffff161480612a0e5750612a0d82612a08611799565b6111d2565b5b80612a535750612a1c611799565b73ffffffffffffffffffffffffffffffffffffffff16612a3b86610677565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a8c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b612a9c81600086600161290f565b612aa8600085836117a1565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612d0c576000548214612d0b57848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d7a816000866001612915565b60016000815480929190600101919050555050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612e69576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ea4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612eb1600086838761290f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561307b575061307a8773ffffffffffffffffffffffffffffffffffffffff166122e1565b5b15613141575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46130f06000888480600101955088612304565b613126576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561308157826000541461313c57600080fd5b6131ad565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613142575b8160008190555050506131c36000868387612915565b5050505050565b600082600052816020526040600020905092915050565b8280546131ed90613ff7565b90600052602060002090601f01602090048101928261320f5760008555613256565b82601f1061322857805160ff1916838001178555613256565b82800160010185558215613256579182015b8281111561325557825182559160200191906001019061323a565b5b50905061326391906132aa565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156132c35760008160009055506001016132ab565b5090565b60006132da6132d584613d53565b613d2e565b9050828152602081018484840111156132f6576132f56141ce565b5b613301848285613f8b565b509392505050565b600061331c61331784613d84565b613d2e565b905082815260208101848484011115613338576133376141ce565b5b613343848285613f8b565b509392505050565b60008135905061335a816144be565b92915050565b60008083601f840112613376576133756141c4565b5b8235905067ffffffffffffffff811115613393576133926141bf565b5b6020830191508360208202830111156133af576133ae6141c9565b5b9250929050565b6000813590506133c5816144d5565b92915050565b6000813590506133da816144ec565b92915050565b6000813590506133ef81614503565b92915050565b60008151905061340481614503565b92915050565b600082601f83011261341f5761341e6141c4565b5b813561342f8482602086016132c7565b91505092915050565b600082601f83011261344d5761344c6141c4565b5b813561345d848260208601613309565b91505092915050565b6000813590506134758161451a565b92915050565b600060208284031215613491576134906141d8565b5b600061349f8482850161334b565b91505092915050565b600080604083850312156134bf576134be6141d8565b5b60006134cd8582860161334b565b92505060206134de8582860161334b565b9150509250929050565b600080600060608486031215613501576135006141d8565b5b600061350f8682870161334b565b93505060206135208682870161334b565b925050604061353186828701613466565b9150509250925092565b60008060008060808587031215613555576135546141d8565b5b60006135638782880161334b565b94505060206135748782880161334b565b935050604061358587828801613466565b925050606085013567ffffffffffffffff8111156135a6576135a56141d3565b5b6135b28782880161340a565b91505092959194509250565b600080604083850312156135d5576135d46141d8565b5b60006135e38582860161334b565b92505060206135f4858286016133b6565b9150509250929050565b60008060408385031215613615576136146141d8565b5b60006136238582860161334b565b925050602061363485828601613466565b9150509250929050565b600060208284031215613654576136536141d8565b5b6000613662848285016133b6565b91505092915050565b600060208284031215613681576136806141d8565b5b600061368f848285016133cb565b91505092915050565b600080604083850312156136af576136ae6141d8565b5b60006136bd858286016133cb565b92505060206136ce8582860161334b565b9150509250929050565b6000602082840312156136ee576136ed6141d8565b5b60006136fc848285016133e0565b91505092915050565b60006020828403121561371b5761371a6141d8565b5b6000613729848285016133f5565b91505092915050565b600060208284031215613748576137476141d8565b5b600082013567ffffffffffffffff811115613766576137656141d3565b5b61377284828501613438565b91505092915050565b600060208284031215613791576137906141d8565b5b600061379f84828501613466565b91505092915050565b600080604083850312156137bf576137be6141d8565b5b60006137cd85828601613466565b92505060206137de8582860161334b565b9150509250929050565b600080600060408486031215613801576138006141d8565b5b600061380f86828701613466565b935050602084013567ffffffffffffffff8111156138305761382f6141d3565b5b61383c86828701613360565b92509250509250925092565b61385181613f0d565b82525050565b61386081613f1f565b82525050565b61386f81613f2b565b82525050565b600061388082613db5565b61388a8185613dcb565b935061389a818560208601613f9a565b6138a3816141dd565b840191505092915050565b60006138b982613dc0565b6138c38185613ddc565b93506138d3818560208601613f9a565b6138dc816141dd565b840191505092915050565b60006138f282613dc0565b6138fc8185613ded565b935061390c818560208601613f9a565b80840191505092915050565b6000613925602083613ddc565b9150613930826141ee565b602082019050919050565b6000613948602683613ddc565b915061395382614217565b604082019050919050565b600061396b600d83613ddc565b915061397682614266565b602082019050919050565b600061398e605a83613ddc565b91506139998261428f565b606082019050919050565b60006139b1602383613ddc565b91506139bc82614304565b604082019050919050565b60006139d4602083613ddc565b91506139df82614353565b602082019050919050565b60006139f7602583613ddc565b9150613a028261437c565b604082019050919050565b6000613a1a601183613ddc565b9150613a25826143cb565b602082019050919050565b6000613a3d600183613ded565b9150613a48826143f4565b600182019050919050565b6000613a60601783613ded565b9150613a6b8261441d565b601782019050919050565b6000613a83601183613ded565b9150613a8e82614446565b601182019050919050565b6000613aa6602f83613ddc565b9150613ab18261446f565b604082019050919050565b613ac581613f81565b82525050565b6000613ad782856138e7565b9150613ae282613a30565b9150613aee82846138e7565b91508190509392505050565b6000613b0582613a53565b9150613b1182856138e7565b9150613b1c82613a76565b9150613b2882846138e7565b91508190509392505050565b6000602082019050613b496000830184613848565b92915050565b6000608082019050613b646000830187613848565b613b716020830186613848565b613b7e6040830185613abc565b8181036060830152613b908184613875565b905095945050505050565b6000602082019050613bb06000830184613857565b92915050565b6000602082019050613bcb6000830184613866565b92915050565b60006020820190508181036000830152613beb81846138ae565b905092915050565b60006020820190508181036000830152613c0c81613918565b9050919050565b60006020820190508181036000830152613c2c8161393b565b9050919050565b60006020820190508181036000830152613c4c8161395e565b9050919050565b60006020820190508181036000830152613c6c81613981565b9050919050565b60006020820190508181036000830152613c8c816139a4565b9050919050565b60006020820190508181036000830152613cac816139c7565b9050919050565b60006020820190508181036000830152613ccc816139ea565b9050919050565b60006020820190508181036000830152613cec81613a0d565b9050919050565b60006020820190508181036000830152613d0c81613a99565b9050919050565b6000602082019050613d286000830184613abc565b92915050565b6000613d38613d49565b9050613d448282614029565b919050565b6000604051905090565b600067ffffffffffffffff821115613d6e57613d6d614190565b5b613d77826141dd565b9050602081019050919050565b600067ffffffffffffffff821115613d9f57613d9e614190565b5b613da8826141dd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e0382613f81565b9150613e0e83613f81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e4357613e426140d4565b5b828201905092915050565b6000613e5982613f81565b9150613e6483613f81565b925082613e7457613e73614103565b5b828204905092915050565b6000613e8a82613f81565b9150613e9583613f81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ece57613ecd6140d4565b5b828202905092915050565b6000613ee482613f81565b9150613eef83613f81565b925082821015613f0257613f016140d4565b5b828203905092915050565b6000613f1882613f61565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fb8578082015181840152602081019050613f9d565b83811115613fc7576000848401525b50505050565b6000613fd882613f81565b91506000821415613fec57613feb6140d4565b5b600182039050919050565b6000600282049050600182168061400f57607f821691505b6020821081141561402357614022614132565b5b50919050565b614032826141dd565b810181811067ffffffffffffffff8211171561405157614050614190565b5b80604052505050565b600061406582613f81565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614098576140976140d4565b5b600182019050919050565b60006140ae82613f81565b91506140b983613f81565b9250826140c9576140c8614103565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820504300000000000000000000000000000000000000600082015250565b7f496e76616c69642070726f6f662c20746869732077616c6c6574206973206e6f60008201527f7420656c696769626c6520666f722073656c656374656420616d6f756e74206f60208201527f66204261706573506172656e74616c4365727469666963617465000000000000604082015250565b7f546869732061646472657373206973206e6f7420616c6c6f77656420746f206260008201527f75726e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546869732077616c6c65742068617320616c7265616479206d696e746564207460008201527f6865205043000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f2d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6144c781613f0d565b81146144d257600080fd5b50565b6144de81613f1f565b81146144e957600080fd5b50565b6144f581613f2b565b811461450057600080fd5b50565b61450c81613f35565b811461451757600080fd5b50565b61452381613f81565b811461452e57600080fd5b5056fea2646970667358221220aaa8ea41a91c134727ed4fce0bcf8b0bbd154670762e8d65be2c93a077823cca64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f6261706573636c616e2e6d7970696e6174612e636c6f75642f697066732f516d556b355a5a4544777a6156537959474345776e4a53693571353771684a335135684576364d55385a4a6f6471000000000000000000000000
-----Decoded View---------------
Arg [0] : _metadataURI (string): https://bapesclan.mypinata.cloud/ipfs/QmUk5ZZEDwzaVSyYGCEwnJSi5q57qhJ3Q5hEv6MU8ZJodq
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [2] : 68747470733a2f2f6261706573636c616e2e6d7970696e6174612e636c6f7564
Arg [3] : 2f697066732f516d556b355a5a4544777a6156537959474345776e4a53693571
Arg [4] : 353771684a335135684576364d55385a4a6f6471000000000000000000000000
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.