Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Base URI | 15820376 | 799 days ago | IN | 0 ETH | 0.0016544 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
15820353 | 799 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
Token
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 150 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// contracts/Token.sol // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract Token is ERC721A, Pausable, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); string public baseURI; uint64 public totalTokens; uint64 public tokenReserve; event Mint(address indexed _to, uint256 indexed _tokenId, uint256 _option); event ChangeTotalTokens(uint64 _totalTokens); event ChangeTokenReserve(uint64 _tokenReserve); event ChangeBaseURI(string _baseURI); constructor( string memory _tokenName, string memory _tokenSymbol, string memory _uri, uint64 _totalTokens, uint32 _tokenReserve ) ERC721A(_tokenName, _tokenSymbol) { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); totalTokens = _totalTokens; tokenReserve = _tokenReserve; baseURI = _uri; } function setAdmin(address _newAdmin) external onlyRole(DEFAULT_ADMIN_ROLE) { require(_newAdmin != address(0), 'empty address'); _grantRole(DEFAULT_ADMIN_ROLE, _newAdmin); _revokeRole(DEFAULT_ADMIN_ROLE, msg.sender); } function setTotalTokens(uint64 _totalTokens) external onlyRole(DEFAULT_ADMIN_ROLE) { totalTokens = _totalTokens; emit ChangeTotalTokens(_totalTokens); } function setTokenReserve(uint64 _tokenReserve) external onlyRole(DEFAULT_ADMIN_ROLE) { tokenReserve = _tokenReserve; emit ChangeTokenReserve(_tokenReserve); } function setBaseURI(string calldata _uri) external onlyRole(DEFAULT_ADMIN_ROLE) { baseURI = _uri; emit ChangeBaseURI(_uri); } function addMinter(address _minter) external onlyRole(DEFAULT_ADMIN_ROLE) { _grantRole(MINTER_ROLE, _minter); } function _baseURI() internal override view returns (string memory) { return baseURI; } function mint(address _owner, uint256 _amount, uint256[] calldata _options) external onlyRole(MINTER_ROLE) { uint256 oldTotalSupply = totalSupply(); require(oldTotalSupply + _amount <= totalTokens - tokenReserve, "no supply left"); require(_amount == _options.length, "not enough options"); _safeMint(_owner, _amount); _emitMintEvents(_owner, oldTotalSupply, _amount, _options); } function adminMint(address _owner, uint256 _amount, uint256[] calldata _options) external onlyRole(DEFAULT_ADMIN_ROLE) { uint256 oldTotalSupply = totalSupply(); require(oldTotalSupply + _amount <= totalTokens, "no supply left"); require(_amount == _options.length, "not enough options"); _safeMint(_owner, _amount); _emitMintEvents(_owner, oldTotalSupply, _amount, _options); } function pause() external onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } function unPause() external onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); } function adminBurn(uint256 _tokenId) external onlyRole(DEFAULT_ADMIN_ROLE) { _burn(_tokenId); } function burn(uint256 _tokenId) external { _burn(_tokenId, true); } function _beforeTokenTransfers( address from, address to, uint256 tokenId, uint256 quantity ) internal virtual override(ERC721A) { super._beforeTokenTransfers(from, to, tokenId, quantity); } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function _emitMintEvents(address _to, uint256 _startTokenId, uint256 _amount, uint256[] calldata _options) internal { for (uint256 i = 0; i < _amount; i++) { emit Mint(_to, i+_startTokenId, _options[i]); } } }
// 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 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// 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 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": true, "runs": 150 }, "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":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint64","name":"_totalTokens","type":"uint64"},{"internalType":"uint32","name":"_tokenReserve","type":"uint32"}],"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"ChangeBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"_tokenReserve","type":"uint64"}],"name":"ChangeTokenReserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"_totalTokens","type":"uint64"}],"name":"ChangeTotalTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_option","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"addMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"adminBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256[]","name":"_options","type":"uint256[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256[]","name":"_options","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newAdmin","type":"address"}],"name":"setAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_tokenReserve","type":"uint64"}],"name":"setTokenReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_totalTokens","type":"uint64"}],"name":"setTotalTokens","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":[],"name":"tokenReserve","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokens","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"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":[],"name":"unPause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002746380380620027468339810160408190526200003491620002df565b8451859085906200004d90600290602085019062000186565b5080516200006390600390602084019062000186565b505060008080556008805460ff1916905562000081915033620000d2565b600b80546801000000000000000063ffffffff8416026001600160801b03199091166001600160401b038516171790558251620000c690600a90602086019062000186565b505050505050620003f7565b620000de8282620000e2565b5050565b60008281526009602090815260408083206001600160a01b038516845290915290205460ff16620000de5760008281526009602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620001423390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b8280546200019490620003a4565b90600052602060002090601f016020900481019282620001b8576000855562000203565b82601f10620001d357805160ff191683800117855562000203565b8280016001018555821562000203579182015b8281111562000203578251825591602001919060010190620001e6565b506200021192915062000215565b5090565b5b8082111562000211576000815560010162000216565b600082601f8301126200023d578081fd5b81516001600160401b03808211156200025a576200025a620003e1565b604051601f8301601f19908116603f01168101908282118183101715620002855762000285620003e1565b81604052838152602092508683858801011115620002a1578485fd5b8491505b83821015620002c45785820183015181830184015290820190620002a5565b83821115620002d557848385830101525b9695505050505050565b600080600080600060a08688031215620002f7578081fd5b85516001600160401b03808211156200030e578283fd5b6200031c89838a016200022c565b9650602088015191508082111562000332578283fd5b6200034089838a016200022c565b9550604088015191508082111562000356578283fd5b6200036489838a016200022c565b94506060880151915080821682146200037b578283fd5b50608087015190925063ffffffff8116811462000396578182fd5b809150509295509295909350565b600181811c90821680620003b957607f821691505b60208210811415620003db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61233f80620004076000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80638456cb5911610125578063c87b56dd116100ad578063d67ea9311161007c578063d67ea931146104b1578063d6d520b5146104c4578063e985e9c5146104d7578063f7b188a514610513578063fe23245a1461051b57600080fd5b8063c87b56dd1461044a578063cbcb31711461045d578063d539139314610477578063d547741f1461049e57600080fd5b8063983b2d56116100f4578063983b2d56146103f6578063a217fddf14610409578063a22cb46514610411578063b88d4fde14610424578063badb97ff1461043757600080fd5b80638456cb59146103c0578063881a37c6146103c857806391d14854146103db57806395d89b41146103ee57600080fd5b806342842e0e116101a85780636352211e116101775780636352211e146103545780636c0360eb14610367578063704b6c021461036f57806370a08231146103825780637e1c0c091461039557600080fd5b806342842e0e1461031057806342966c681461032357806355f804b3146103365780635c975abb1461034957600080fd5b806318160ddd116101ef57806318160ddd1461029e57806323b872dd146102b4578063248a9ca3146102c75780632f2ff15d146102ea57806336568abe146102fd57600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f366004611f46565b61052e565b60405190151581526020015b60405180910390f35b61025161053f565b6040516102409190612147565b61027161026c366004611f0c565b6105d1565b6040516001600160a01b039091168152602001610240565b61029c610297366004611e5f565b610615565b005b600154600054035b604051908152602001610240565b61029c6102c2366004611d16565b6106a3565b6102a66102d5366004611f0c565b60009081526009602052604090206001015490565b61029c6102f8366004611f24565b6106ae565b61029c61030b366004611f24565b6106d4565b61029c61031e366004611d16565b610757565b61029c610331366004611f0c565b610772565b61029c610344366004611f7e565b610780565b60085460ff16610234565b610271610362366004611f0c565b6107d7565b6102516107e9565b61029c61037d366004611cca565b610877565b6102a6610390366004611cca565b6108df565b600b546103a8906001600160401b031681565b6040516001600160401b039091168152602001610240565b61029c61092d565b61029c6103d6366004611e88565b610941565b6102346103e9366004611f24565b610a17565b610251610a42565b61029c610404366004611cca565b610a51565b6102a6600081565b61029c61041f366004611e25565b610a87565b61029c610432366004611d51565b610b1d565b61029c610445366004611f0c565b610b6e565b610251610458366004611f0c565b610b83565b600b546103a890600160401b90046001600160401b031681565b6102a67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61029c6104ac366004611f24565b610c08565b61029c6104bf366004611fea565b610c2e565b61029c6104d2366004611fea565b610c9d565b6102346104e5366004611ce4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61029c610cf8565b61029c610529366004611e88565b610d0c565b600061053982610d7b565b92915050565b60606002805461054e90612227565b80601f016020809104026020016040519081016040528092919081815260200182805461057a90612227565b80156105c75780601f1061059c576101008083540402835291602001916105c7565b820191906000526020600020905b8154815290600101906020018083116105aa57829003601f168201915b5050505050905090565b60006105dc82610da0565b6105f9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610620826107d7565b9050806001600160a01b0316836001600160a01b031614156106555760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610675575061067381336104e5565b155b15610693576040516367d9dca160e11b815260040160405180910390fd5b61069e838383610dcb565b505050565b61069e838383610e27565b6000828152600960205260409020600101546106ca8133611010565b61069e8383611074565b6001600160a01b03811633146107495760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b61075382826110fa565b5050565b61069e83838360405180602001604052806000815250610b1d565b61077d816001611161565b50565b600061078c8133611010565b610798600a8484611c15565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376783836040516107ca929190612118565b60405180910390a1505050565b60006107e282611322565b5192915050565b600a80546107f690612227565b80601f016020809104026020016040519081016040528092919081815260200182805461082290612227565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b505050505081565b60006108838133611010565b6001600160a01b0382166108c95760405162461bcd60e51b815260206004820152600d60248201526c656d707479206164647265737360981b6044820152606401610740565b6108d4600083611074565b6107536000336110fa565b60006001600160a01b038216610908576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b60006109398133611010565b61077d61143c565b600061094d8133611010565b600061095c6001546000540390565b600b549091506001600160401b0316610975868361215a565b11156109b45760405162461bcd60e51b815260206004820152600e60248201526d1b9bc81cdd5c1c1b1e481b19599d60921b6044820152606401610740565b8483146109f85760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f756768206f7074696f6e7360701b6044820152606401610740565b610a0286866114d4565b610a0f86828787876114ee565b505050505050565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606003805461054e90612227565b6000610a5d8133611010565b6107537f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683611074565b6001600160a01b038216331415610ab15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b28848484610e27565b6001600160a01b0383163b15158015610b4a5750610b488484848461157e565b155b15610b68576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610b7a8133611010565b61075382611676565b6060610b8e82610da0565b610bab57604051630a14c4b560e41b815260040160405180910390fd5b6000610bb5611681565b9050805160001415610bd65760405180602001604052806000815250610c01565b80610be084611690565b604051602001610bf192919061203d565b6040516020818303038152906040525b9392505050565b600082815260096020526040902060010154610c248133611010565b61069e83836110fa565b6000610c3a8133611010565b600b805467ffffffffffffffff60401b1916600160401b6001600160401b038516908102919091179091556040519081527ff2b698662aa2f458b8cc665061f374e1b45c19bbe360d2d563fe36d7c897e476906020015b60405180910390a15050565b6000610ca98133611010565b600b805467ffffffffffffffff19166001600160401b0384169081179091556040519081527f6a2edcb813ff44ec25c8b7c45a3852b6d1cfc0b00d989163adad43d5ecc5003090602001610c91565b6000610d048133611010565b61077d6117a9565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d378133611010565b6000610d466001546000540390565b600b54909150610d68906001600160401b03600160401b8204811691166121bc565b6001600160401b0316610975868361215a565b60006001600160e01b03198216637965db0b60e01b1480610539575061053982611823565b6000805482108015610539575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e3282611322565b9050836001600160a01b031681600001516001600160a01b031614610e695760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e875750610e8785336104e5565b80610ea2575033610e97846105d1565b6001600160a01b0316145b905080610ec257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ee957604051633a954ecd60e21b815260040160405180910390fd5b610ef68585856001611873565b610f0260008487610dcb565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fd6576000548214610fd657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206122ea83398151915260405160405180910390a45b5050505050565b61101a8282610a17565b61075357611032816001600160a01b03166014611878565b61103d836020611878565b60405160200161104e92919061206c565b60408051601f198184030181529082905262461bcd60e51b825261074091600401612147565b61107e8282610a17565b6107535760008281526009602090815260408083206001600160a01b03851684529091529020805460ff191660011790556110b63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6111048282610a17565b156107535760008281526009602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061116c83611322565b805190915082156111d2576000336001600160a01b0383161480611195575061119582336104e5565b806111b05750336111a5866105d1565b6001600160a01b0316145b9050806111d057604051632ce44b5f60e11b815260040160405180910390fd5b505b6111e0816000866001611873565b6111ec60008583610dcb565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166112ea5760005482146112ea57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206122ea833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528160005481101561142357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114215780516001600160a01b0316156113b8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561141c579392505050565b6113b8565b505b604051636f96cda160e11b815260040160405180910390fd5b60085460ff16156114825760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610740565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114b73390565b6040516001600160a01b03909116815260200160405180910390a1565b610753828260405180602001604052806000815250611a59565b60005b83811015610a0f57611503858261215a565b866001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f85858581811061154e57634e487b7160e01b600052603260045260246000fd5b9050602002013560405161156491815260200190565b60405180910390a38061157681612262565b9150506114f1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115b39033908990889088906004016120db565b602060405180830381600087803b1580156115cd57600080fd5b505af19250505080156115fd575060408051601f3d908101601f191682019092526115fa91810190611f62565b60015b611658573d80801561162b576040519150601f19603f3d011682016040523d82523d6000602084013e611630565b606091505b508051611650576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b61077d816000611161565b6060600a805461054e90612227565b6060816116b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116de57806116c881612262565b91506116d79050600a83612172565b91506116b8565b6000816001600160401b0381111561170657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611730576020820181803683370190505b5090505b841561166e576117456001836121a5565b9150611752600a8661227d565b61175d90603061215a565b60f81b81838151811061178057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117a2600a86612172565b9450611734565b60085460ff166117f25760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610740565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336114b7565b60006001600160e01b031982166380ac58cd60e01b148061185457506001600160e01b03198216635b5e139f60e01b145b8061053957506301ffc9a760e01b6001600160e01b0319831614610539565b610b68565b60606000611887836002612186565b61189290600261215a565b6001600160401b038111156118b757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118e1576020820181803683370190505b509050600360fc1b8160008151811061190a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061194757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061196b846002612186565b61197690600161215a565b90505b6001811115611a0a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106119b857634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106119dc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611a0381612210565b9050611979565b508315610c015760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610740565b61069e83838360016000546001600160a01b038516611a8a57604051622e076360e81b815260040160405180910390fd5b83611aa85760405163b562e8dd60e01b815260040160405180910390fd5b611ab56000868387611873565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b6157506001600160a01b0387163b15155b15611bd8575b60405182906001600160a01b038916906000906000805160206122ea833981519152908290a4611ba0600088848060010195508861157e565b611bbd576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b67578260005414611bd357600080fd5b611c0c565b5b6040516001830192906001600160a01b038916906000906000805160206122ea833981519152908290a480821415611bd9575b50600055611009565b828054611c2190612227565b90600052602060002090601f016020900481019282611c435760008555611c89565b82601f10611c5c5782800160ff19823516178555611c89565b82800160010185558215611c89579182015b82811115611c89578235825591602001919060010190611c6e565b50611c95929150611c99565b5090565b5b80821115611c955760008155600101611c9a565b80356001600160a01b0381168114611cc557600080fd5b919050565b600060208284031215611cdb578081fd5b610c0182611cae565b60008060408385031215611cf6578081fd5b611cff83611cae565b9150611d0d60208401611cae565b90509250929050565b600080600060608486031215611d2a578081fd5b611d3384611cae565b9250611d4160208501611cae565b9150604084013590509250925092565b60008060008060808587031215611d66578081fd5b611d6f85611cae565b9350611d7d60208601611cae565b92506040850135915060608501356001600160401b0380821115611d9f578283fd5b818701915087601f830112611db2578283fd5b813581811115611dc457611dc46122bd565b604051601f8201601f19908116603f01168101908382118183101715611dec57611dec6122bd565b816040528281528a6020848701011115611e04578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611e37578182fd5b611e4083611cae565b915060208301358015158114611e54578182fd5b809150509250929050565b60008060408385031215611e71578182fd5b611e7a83611cae565b946020939093013593505050565b60008060008060608587031215611e9d578384fd5b611ea685611cae565b93506020850135925060408501356001600160401b0380821115611ec8578384fd5b818701915087601f830112611edb578384fd5b813581811115611ee9578485fd5b8860208260051b8501011115611efd578485fd5b95989497505060200194505050565b600060208284031215611f1d578081fd5b5035919050565b60008060408385031215611f36578182fd5b82359150611d0d60208401611cae565b600060208284031215611f57578081fd5b8135610c01816122d3565b600060208284031215611f73578081fd5b8151610c01816122d3565b60008060208385031215611f90578182fd5b82356001600160401b0380821115611fa6578384fd5b818501915085601f830112611fb9578384fd5b813581811115611fc7578485fd5b866020828501011115611fd8578485fd5b60209290920196919550909350505050565b600060208284031215611ffb578081fd5b81356001600160401b0381168114610c01578182fd5b600081518084526120298160208601602086016121e4565b601f01601f19169290920160200192915050565b6000835161204f8184602088016121e4565b8351908301906120638183602088016121e4565b01949350505050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b81526000835161209e8160178501602088016121e4565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120cf8160288401602088016121e4565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210e90830184612011565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000610c016020830184612011565b6000821982111561216d5761216d612291565b500190565b600082612181576121816122a7565b500490565b60008160001904831182151516156121a0576121a0612291565b500290565b6000828210156121b7576121b7612291565b500390565b60006001600160401b03838116908316818110156121dc576121dc612291565b039392505050565b60005b838110156121ff5781810151838201526020016121e7565b83811115610b685750506000910152565b60008161221f5761221f612291565b506000190190565b600181811c9082168061223b57607f821691505b6020821081141561225c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561227657612276612291565b5060010190565b60008261228c5761228c6122a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461077d57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220bb5df352f222d3d7eb3a87794b7df4afd097f40b0e650a8696eb0f58cddb079a64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000003de000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064f472e415254000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c80638456cb5911610125578063c87b56dd116100ad578063d67ea9311161007c578063d67ea931146104b1578063d6d520b5146104c4578063e985e9c5146104d7578063f7b188a514610513578063fe23245a1461051b57600080fd5b8063c87b56dd1461044a578063cbcb31711461045d578063d539139314610477578063d547741f1461049e57600080fd5b8063983b2d56116100f4578063983b2d56146103f6578063a217fddf14610409578063a22cb46514610411578063b88d4fde14610424578063badb97ff1461043757600080fd5b80638456cb59146103c0578063881a37c6146103c857806391d14854146103db57806395d89b41146103ee57600080fd5b806342842e0e116101a85780636352211e116101775780636352211e146103545780636c0360eb14610367578063704b6c021461036f57806370a08231146103825780637e1c0c091461039557600080fd5b806342842e0e1461031057806342966c681461032357806355f804b3146103365780635c975abb1461034957600080fd5b806318160ddd116101ef57806318160ddd1461029e57806323b872dd146102b4578063248a9ca3146102c75780632f2ff15d146102ea57806336568abe146102fd57600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f366004611f46565b61052e565b60405190151581526020015b60405180910390f35b61025161053f565b6040516102409190612147565b61027161026c366004611f0c565b6105d1565b6040516001600160a01b039091168152602001610240565b61029c610297366004611e5f565b610615565b005b600154600054035b604051908152602001610240565b61029c6102c2366004611d16565b6106a3565b6102a66102d5366004611f0c565b60009081526009602052604090206001015490565b61029c6102f8366004611f24565b6106ae565b61029c61030b366004611f24565b6106d4565b61029c61031e366004611d16565b610757565b61029c610331366004611f0c565b610772565b61029c610344366004611f7e565b610780565b60085460ff16610234565b610271610362366004611f0c565b6107d7565b6102516107e9565b61029c61037d366004611cca565b610877565b6102a6610390366004611cca565b6108df565b600b546103a8906001600160401b031681565b6040516001600160401b039091168152602001610240565b61029c61092d565b61029c6103d6366004611e88565b610941565b6102346103e9366004611f24565b610a17565b610251610a42565b61029c610404366004611cca565b610a51565b6102a6600081565b61029c61041f366004611e25565b610a87565b61029c610432366004611d51565b610b1d565b61029c610445366004611f0c565b610b6e565b610251610458366004611f0c565b610b83565b600b546103a890600160401b90046001600160401b031681565b6102a67f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61029c6104ac366004611f24565b610c08565b61029c6104bf366004611fea565b610c2e565b61029c6104d2366004611fea565b610c9d565b6102346104e5366004611ce4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61029c610cf8565b61029c610529366004611e88565b610d0c565b600061053982610d7b565b92915050565b60606002805461054e90612227565b80601f016020809104026020016040519081016040528092919081815260200182805461057a90612227565b80156105c75780601f1061059c576101008083540402835291602001916105c7565b820191906000526020600020905b8154815290600101906020018083116105aa57829003601f168201915b5050505050905090565b60006105dc82610da0565b6105f9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610620826107d7565b9050806001600160a01b0316836001600160a01b031614156106555760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610675575061067381336104e5565b155b15610693576040516367d9dca160e11b815260040160405180910390fd5b61069e838383610dcb565b505050565b61069e838383610e27565b6000828152600960205260409020600101546106ca8133611010565b61069e8383611074565b6001600160a01b03811633146107495760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b60648201526084015b60405180910390fd5b61075382826110fa565b5050565b61069e83838360405180602001604052806000815250610b1d565b61077d816001611161565b50565b600061078c8133611010565b610798600a8484611c15565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376783836040516107ca929190612118565b60405180910390a1505050565b60006107e282611322565b5192915050565b600a80546107f690612227565b80601f016020809104026020016040519081016040528092919081815260200182805461082290612227565b801561086f5780601f106108445761010080835404028352916020019161086f565b820191906000526020600020905b81548152906001019060200180831161085257829003601f168201915b505050505081565b60006108838133611010565b6001600160a01b0382166108c95760405162461bcd60e51b815260206004820152600d60248201526c656d707479206164647265737360981b6044820152606401610740565b6108d4600083611074565b6107536000336110fa565b60006001600160a01b038216610908576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b60006109398133611010565b61077d61143c565b600061094d8133611010565b600061095c6001546000540390565b600b549091506001600160401b0316610975868361215a565b11156109b45760405162461bcd60e51b815260206004820152600e60248201526d1b9bc81cdd5c1c1b1e481b19599d60921b6044820152606401610740565b8483146109f85760405162461bcd60e51b81526020600482015260126024820152716e6f7420656e6f756768206f7074696f6e7360701b6044820152606401610740565b610a0286866114d4565b610a0f86828787876114ee565b505050505050565b60009182526009602090815260408084206001600160a01b0393909316845291905290205460ff1690565b60606003805461054e90612227565b6000610a5d8133611010565b6107537f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a683611074565b6001600160a01b038216331415610ab15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610b28848484610e27565b6001600160a01b0383163b15158015610b4a5750610b488484848461157e565b155b15610b68576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000610b7a8133611010565b61075382611676565b6060610b8e82610da0565b610bab57604051630a14c4b560e41b815260040160405180910390fd5b6000610bb5611681565b9050805160001415610bd65760405180602001604052806000815250610c01565b80610be084611690565b604051602001610bf192919061203d565b6040516020818303038152906040525b9392505050565b600082815260096020526040902060010154610c248133611010565b61069e83836110fa565b6000610c3a8133611010565b600b805467ffffffffffffffff60401b1916600160401b6001600160401b038516908102919091179091556040519081527ff2b698662aa2f458b8cc665061f374e1b45c19bbe360d2d563fe36d7c897e476906020015b60405180910390a15050565b6000610ca98133611010565b600b805467ffffffffffffffff19166001600160401b0384169081179091556040519081527f6a2edcb813ff44ec25c8b7c45a3852b6d1cfc0b00d989163adad43d5ecc5003090602001610c91565b6000610d048133611010565b61077d6117a9565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610d378133611010565b6000610d466001546000540390565b600b54909150610d68906001600160401b03600160401b8204811691166121bc565b6001600160401b0316610975868361215a565b60006001600160e01b03198216637965db0b60e01b1480610539575061053982611823565b6000805482108015610539575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e3282611322565b9050836001600160a01b031681600001516001600160a01b031614610e695760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610e875750610e8785336104e5565b80610ea2575033610e97846105d1565b6001600160a01b0316145b905080610ec257604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610ee957604051633a954ecd60e21b815260040160405180910390fd5b610ef68585856001611873565b610f0260008487610dcb565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610fd6576000548214610fd657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206122ea83398151915260405160405180910390a45b5050505050565b61101a8282610a17565b61075357611032816001600160a01b03166014611878565b61103d836020611878565b60405160200161104e92919061206c565b60408051601f198184030181529082905262461bcd60e51b825261074091600401612147565b61107e8282610a17565b6107535760008281526009602090815260408083206001600160a01b03851684529091529020805460ff191660011790556110b63390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6111048282610a17565b156107535760008281526009602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600061116c83611322565b805190915082156111d2576000336001600160a01b0383161480611195575061119582336104e5565b806111b05750336111a5866105d1565b6001600160a01b0316145b9050806111d057604051632ce44b5f60e11b815260040160405180910390fd5b505b6111e0816000866001611873565b6111ec60008583610dcb565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b1785559189018084529220805491949091166112ea5760005482146112ea57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206122ea833981519152908390a4505060018054810190555050565b60408051606081018252600080825260208201819052918101919091528160005481101561142357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906114215780516001600160a01b0316156113b8579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561141c579392505050565b6113b8565b505b604051636f96cda160e11b815260040160405180910390fd5b60085460ff16156114825760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610740565b6008805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586114b73390565b6040516001600160a01b03909116815260200160405180910390a1565b610753828260405180602001604052806000815250611a59565b60005b83811015610a0f57611503858261215a565b866001600160a01b03167f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f85858581811061154e57634e487b7160e01b600052603260045260246000fd5b9050602002013560405161156491815260200190565b60405180910390a38061157681612262565b9150506114f1565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906115b39033908990889088906004016120db565b602060405180830381600087803b1580156115cd57600080fd5b505af19250505080156115fd575060408051601f3d908101601f191682019092526115fa91810190611f62565b60015b611658573d80801561162b576040519150601f19603f3d011682016040523d82523d6000602084013e611630565b606091505b508051611650576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b61077d816000611161565b6060600a805461054e90612227565b6060816116b45750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116de57806116c881612262565b91506116d79050600a83612172565b91506116b8565b6000816001600160401b0381111561170657634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611730576020820181803683370190505b5090505b841561166e576117456001836121a5565b9150611752600a8661227d565b61175d90603061215a565b60f81b81838151811061178057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506117a2600a86612172565b9450611734565b60085460ff166117f25760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610740565b6008805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336114b7565b60006001600160e01b031982166380ac58cd60e01b148061185457506001600160e01b03198216635b5e139f60e01b145b8061053957506301ffc9a760e01b6001600160e01b0319831614610539565b610b68565b60606000611887836002612186565b61189290600261215a565b6001600160401b038111156118b757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118e1576020820181803683370190505b509050600360fc1b8160008151811061190a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061194757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600061196b846002612186565b61197690600161215a565b90505b6001811115611a0a576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106119b857634e487b7160e01b600052603260045260246000fd5b1a60f81b8282815181106119dc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93611a0381612210565b9050611979565b508315610c015760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610740565b61069e83838360016000546001600160a01b038516611a8a57604051622e076360e81b815260040160405180910390fd5b83611aa85760405163b562e8dd60e01b815260040160405180910390fd5b611ab56000868387611873565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b6157506001600160a01b0387163b15155b15611bd8575b60405182906001600160a01b038916906000906000805160206122ea833981519152908290a4611ba0600088848060010195508861157e565b611bbd576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611b67578260005414611bd357600080fd5b611c0c565b5b6040516001830192906001600160a01b038916906000906000805160206122ea833981519152908290a480821415611bd9575b50600055611009565b828054611c2190612227565b90600052602060002090601f016020900481019282611c435760008555611c89565b82601f10611c5c5782800160ff19823516178555611c89565b82800160010185558215611c89579182015b82811115611c89578235825591602001919060010190611c6e565b50611c95929150611c99565b5090565b5b80821115611c955760008155600101611c9a565b80356001600160a01b0381168114611cc557600080fd5b919050565b600060208284031215611cdb578081fd5b610c0182611cae565b60008060408385031215611cf6578081fd5b611cff83611cae565b9150611d0d60208401611cae565b90509250929050565b600080600060608486031215611d2a578081fd5b611d3384611cae565b9250611d4160208501611cae565b9150604084013590509250925092565b60008060008060808587031215611d66578081fd5b611d6f85611cae565b9350611d7d60208601611cae565b92506040850135915060608501356001600160401b0380821115611d9f578283fd5b818701915087601f830112611db2578283fd5b813581811115611dc457611dc46122bd565b604051601f8201601f19908116603f01168101908382118183101715611dec57611dec6122bd565b816040528281528a6020848701011115611e04578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611e37578182fd5b611e4083611cae565b915060208301358015158114611e54578182fd5b809150509250929050565b60008060408385031215611e71578182fd5b611e7a83611cae565b946020939093013593505050565b60008060008060608587031215611e9d578384fd5b611ea685611cae565b93506020850135925060408501356001600160401b0380821115611ec8578384fd5b818701915087601f830112611edb578384fd5b813581811115611ee9578485fd5b8860208260051b8501011115611efd578485fd5b95989497505060200194505050565b600060208284031215611f1d578081fd5b5035919050565b60008060408385031215611f36578182fd5b82359150611d0d60208401611cae565b600060208284031215611f57578081fd5b8135610c01816122d3565b600060208284031215611f73578081fd5b8151610c01816122d3565b60008060208385031215611f90578182fd5b82356001600160401b0380821115611fa6578384fd5b818501915085601f830112611fb9578384fd5b813581811115611fc7578485fd5b866020828501011115611fd8578485fd5b60209290920196919550909350505050565b600060208284031215611ffb578081fd5b81356001600160401b0381168114610c01578182fd5b600081518084526120298160208601602086016121e4565b601f01601f19169290920160200192915050565b6000835161204f8184602088016121e4565b8351908301906120638183602088016121e4565b01949350505050565b76020b1b1b2b9b9a1b7b73a3937b61d1030b1b1b7bab73a1604d1b81526000835161209e8160178501602088016121e4565b7001034b99036b4b9b9b4b733903937b6329607d1b60179184019182015283516120cf8160288401602088016121e4565b01602801949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061210e90830184612011565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000610c016020830184612011565b6000821982111561216d5761216d612291565b500190565b600082612181576121816122a7565b500490565b60008160001904831182151516156121a0576121a0612291565b500290565b6000828210156121b7576121b7612291565b500390565b60006001600160401b03838116908316818110156121dc576121dc612291565b039392505050565b60005b838110156121ff5781810151838201526020016121e7565b83811115610b685750506000910152565b60008161221f5761221f612291565b506000190190565b600181811c9082168061223b57607f821691505b6020821081141561225c57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561227657612276612291565b5060010190565b60008261228c5761228c6122a7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461077d57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220bb5df352f222d3d7eb3a87794b7df4afd097f40b0e650a8696eb0f58cddb079a64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000003de000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064f472e415254000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024f470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): OG.ART
Arg [1] : _tokenSymbol (string): OG
Arg [2] : _uri (string):
Arg [3] : _totalTokens (uint64): 990
Arg [4] : _tokenReserve (uint32): 0
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003de
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4f472e4152540000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 4f47000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.