Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 22 from a total of 22 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Base URI | 16394653 | 1137 days ago | IN | 0 ETH | 0.00059797 | ||||
| Set Base URI | 16394375 | 1137 days ago | IN | 0 ETH | 0.00077245 | ||||
| Mint Single | 16352511 | 1143 days ago | IN | 0 ETH | 0.0012816 | ||||
| Mint Single | 16324038 | 1147 days ago | IN | 0 ETH | 0.00112914 | ||||
| Mint Single | 16286496 | 1152 days ago | IN | 0 ETH | 0.00112666 | ||||
| Mint Single | 16229466 | 1160 days ago | IN | 0 ETH | 0.00116626 | ||||
| Mint Single | 16072018 | 1182 days ago | IN | 0 ETH | 0.0009321 | ||||
| Mint Single | 15985802 | 1194 days ago | IN | 0 ETH | 0.00128624 | ||||
| Mint Single | 15978292 | 1195 days ago | IN | 0 ETH | 0.00096529 | ||||
| Mint Single | 15977114 | 1196 days ago | IN | 0 ETH | 0.00222726 | ||||
| Mint Single | 15972685 | 1196 days ago | IN | 0 ETH | 0.00564229 | ||||
| Mint Single | 15970873 | 1196 days ago | IN | 0 ETH | 0.00219272 | ||||
| Mint Single | 15970849 | 1196 days ago | IN | 0 ETH | 0.00301839 | ||||
| Mint Single | 15970364 | 1196 days ago | IN | 0 ETH | 0.0012084 | ||||
| Mint Single | 15970229 | 1196 days ago | IN | 0 ETH | 0.00166998 | ||||
| Mint Single | 15967076 | 1197 days ago | IN | 0 ETH | 0.00130609 | ||||
| Mint Single | 15964621 | 1197 days ago | IN | 0 ETH | 0.00090706 | ||||
| Mint Single | 15964372 | 1197 days ago | IN | 0 ETH | 0.00117409 | ||||
| Mint Single | 15963594 | 1197 days ago | IN | 0 ETH | 0.00137972 | ||||
| Set Base URI | 15942582 | 1200 days ago | IN | 0 ETH | 0.00080365 | ||||
| Mint Single | 15942489 | 1200 days ago | IN | 0 ETH | 0.00179972 | ||||
| Set Base URI | 15942474 | 1200 days ago | IN | 0 ETH | 0.0008085 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
EZKey
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
interface IEZMeta is IERC721 {
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* A mint was attempted after max supply was already reached.
*/
error MintAttemptWhenMaxSupplyReached();
}
contract EZKey is IEZMeta, ERC721, Ownable, AccessControl {
uint16 public maxSupply = 1111;
// The tokenId of the next token to be minted.
uint16 private _currentIndex;
string private _baseTokenURI;
bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
constructor(
string memory name,
string memory symbol,
string memory baseUri_,
uint16 maxSupply_,
address minter
) ERC721(name, symbol) {
_currentIndex = 1;
_baseTokenURI = baseUri_;
maxSupply = maxSupply_;
_grantRole(MINTER_ROLE, minter);
}
function mintSingle(address receiver, uint256 id) public {
require(hasRole(MINTER_ROLE, msg.sender), "Caller is not a minter");
if (_currentIndex <= maxSupply) {
_safeMint(receiver, id);
_currentIndex++;
} else {
revert MintAttemptWhenMaxSupplyReached();
}
}
function setBaseURI(string calldata baseURI_) external onlyOwner {
_baseTokenURI = baseURI_;
}
function addMinter(address minter) external onlyOwner {
_grantRole(MINTER_ROLE, minter);
}
function removeMinter(address minter) external onlyOwner {
_revokeRole(MINTER_ROLE, minter);
}
function _baseURI() internal view virtual override returns (string memory) {
return _baseTokenURI;
}
/**
* @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_, Strings.toString(tokenId)))
: "";
}
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC721, IERC165, AccessControl)
returns (bool)
{
return super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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 (interfaces/IERC721.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721.sol";
// 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 (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 (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 (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 (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 v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseUri_","type":"string"},{"internalType":"uint16","name":"maxSupply_","type":"uint16"},{"internalType":"address","name":"minter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"MintAttemptWhenMaxSupplyReached","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mintSingle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"removeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052610457600860006101000a81548161ffff021916908361ffff1602179055503480156200003057600080fd5b506040516200440e3803806200440e8339818101604052810190620000569190620004b8565b848481600090805190602001906200007092919062000368565b5080600190805190602001906200008992919062000368565b505050620000ac620000a06200013d60201b60201c565b6200014560201b60201c565b6001600860026101000a81548161ffff021916908361ffff1602179055508260099080519060200190620000e292919062000368565b5081600860006101000a81548161ffff021916908361ffff160217905550620001327f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826200020b60201b60201c565b50505050506200076b565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021d8282620002fd60201b60201c565b620002f95760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200029e6200013d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b82805462000376906200065c565b90600052602060002090601f0160209004810192826200039a5760008555620003e6565b82601f10620003b557805160ff1916838001178555620003e6565b82800160010185558215620003e6579182015b82811115620003e5578251825591602001919060010190620003c8565b5b509050620003f59190620003f9565b5090565b5b8082111562000414576000816000905550600101620003fa565b5090565b60006200042f6200042984620005ae565b62000585565b9050828152602081018484840111156200044857600080fd5b6200045584828562000626565b509392505050565b6000815190506200046e8162000737565b92915050565b600082601f8301126200048657600080fd5b81516200049884826020860162000418565b91505092915050565b600081519050620004b28162000751565b92915050565b600080600080600060a08688031215620004d157600080fd5b600086015167ffffffffffffffff811115620004ec57600080fd5b620004fa8882890162000474565b955050602086015167ffffffffffffffff8111156200051857600080fd5b620005268882890162000474565b945050604086015167ffffffffffffffff8111156200054457600080fd5b620005528882890162000474565b93505060606200056588828901620004a1565b925050608062000578888289016200045d565b9150509295509295909350565b600062000591620005a4565b90506200059f828262000692565b919050565b6000604051905090565b600067ffffffffffffffff821115620005cc57620005cb620006f7565b5b620005d78262000726565b9050602081019050919050565b6000620005f18262000606565b9050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200064657808201518184015260208101905062000629565b8381111562000656576000848401525b50505050565b600060028204905060018216806200067557607f821691505b602082108114156200068c576200068b620006c8565b5b50919050565b6200069d8262000726565b810181811067ffffffffffffffff82111715620006bf57620006be620006f7565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200074281620005e4565b81146200074e57600080fd5b50565b6200075c81620005f8565b81146200076857600080fd5b50565b613c93806200077b6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b88d4fde11610097578063d547741f11610071578063d547741f146104ed578063d5abeb0114610509578063e985e9c514610527578063f2fde38b14610557576101c4565b8063b88d4fde14610483578063c87b56dd1461049f578063d5391393146104cf576101c4565b806395d89b41116100d357806395d89b411461040f578063983b2d561461042d578063a217fddf14610449578063a22cb46514610467576101c4565b8063715018a6146103b75780638da5cb5b146103c157806391d14854146103df576101c4565b80632f2ff15d1161016657806342842e0e1161014057806342842e0e1461031f57806355f804b31461033b5780636352211e1461035757806370a0823114610387576101c4565b80632f2ff15d146102cb5780633092afd5146102e757806336568abe14610303576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806309be58f81461026357806323b872dd1461027f578063248a9ca31461029b576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612a76565b610573565b6040516101f09190612fa5565b60405180910390f35b610201610585565b60405161020e9190612fdb565b60405180910390f35b610231600480360381019061022c9190612b0d565b610617565b60405161023e9190612f3e565b60405180910390f35b610261600480360381019061025c91906129d5565b61069c565b005b61027d600480360381019061027891906129d5565b6107b4565b005b610299600480360381019061029491906128cf565b6108cc565b005b6102b560048036038101906102b09190612a11565b61092c565b6040516102c29190612fc0565b60405180910390f35b6102e560048036038101906102e09190612a3a565b61094c565b005b61030160048036038101906102fc919061286a565b610975565b005b61031d60048036038101906103189190612a3a565b610a1e565b005b610339600480360381019061033491906128cf565b610aa1565b005b61035560048036038101906103509190612ac8565b610ac1565b005b610371600480360381019061036c9190612b0d565b610b53565b60405161037e9190612f3e565b60405180910390f35b6103a1600480360381019061039c919061286a565b610c05565b6040516103ae9190613258565b60405180910390f35b6103bf610cbd565b005b6103c9610d45565b6040516103d69190612f3e565b60405180910390f35b6103f960048036038101906103f49190612a3a565b610d6f565b6040516104069190612fa5565b60405180910390f35b610417610dda565b6040516104249190612fdb565b60405180910390f35b6104476004803603810190610442919061286a565b610e6c565b005b610451610f15565b60405161045e9190612fc0565b60405180910390f35b610481600480360381019061047c9190612999565b610f1c565b005b61049d6004803603810190610498919061291e565b610f32565b005b6104b960048036038101906104b49190612b0d565b610f94565b6040516104c69190612fdb565b60405180910390f35b6104d7611033565b6040516104e49190612fc0565b60405180910390f35b61050760048036038101906105029190612a3a565b611057565b005b610511611080565b60405161051e919061323d565b60405180910390f35b610541600480360381019061053c9190612893565b611094565b60405161054e9190612fa5565b60405180910390f35b610571600480360381019061056c919061286a565b611128565b005b600061057e82611220565b9050919050565b60606000805461059490613519565b80601f01602080910402602001604051908101604052809291908181526020018280546105c090613519565b801561060d5780601f106105e25761010080835404028352916020019161060d565b820191906000526020600020905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b60006106228261129a565b610661576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106589061319d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a782610b53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906131dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610737611306565b73ffffffffffffffffffffffffffffffffffffffff161480610766575061076581610760611306565b611094565b5b6107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c906130fd565b60405180910390fd5b6107af838361130e565b505050565b6107de7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610d6f565b61081d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108149061311d565b60405180910390fd5b600860009054906101000a900461ffff1661ffff16600860029054906101000a900461ffff1661ffff16116108965761085682826113c7565b6008600281819054906101000a900461ffff16809291906108769061357c565b91906101000a81548161ffff021916908361ffff160217905550506108c8565b6040517ff0e1b57900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6108dd6108d7611306565b826113e5565b61091c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610913906131fd565b60405180910390fd5b6109278383836114c3565b505050565b600060076000838152602001908152602001600020600101549050919050565b6109558261092c565b61096681610961611306565b61172a565b61097083836117c7565b505050565b61097d611306565b73ffffffffffffffffffffffffffffffffffffffff1661099b610d45565b73ffffffffffffffffffffffffffffffffffffffff16146109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e8906131bd565b60405180910390fd5b610a1b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826118a8565b50565b610a26611306565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a9061321d565b60405180910390fd5b610a9d82826118a8565b5050565b610abc83838360405180602001604052806000815250610f32565b505050565b610ac9611306565b73ffffffffffffffffffffffffffffffffffffffff16610ae7610d45565b73ffffffffffffffffffffffffffffffffffffffff1614610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b34906131bd565b60405180910390fd5b818160099190610b4e929190612697565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39061315d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d9061313d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cc5611306565b73ffffffffffffffffffffffffffffffffffffffff16610ce3610d45565b73ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906131bd565b60405180910390fd5b610d43600061198a565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610de990613519565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1590613519565b8015610e625780601f10610e3757610100808354040283529160200191610e62565b820191906000526020600020905b815481529060010190602001808311610e4557829003601f168201915b5050505050905090565b610e74611306565b73ffffffffffffffffffffffffffffffffffffffff16610e92610d45565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906131bd565b60405180910390fd5b610f127f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826117c7565b50565b6000801b81565b610f2e610f27611306565b8383611a50565b5050565b610f43610f3d611306565b836113e5565b610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f79906131fd565b60405180910390fd5b610f8e84848484611bbd565b50505050565b6060610f9f8261129a565b610fd5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610fdf611c19565b9050600081511415611000576040518060200160405280600081525061102b565b8061100a84611cab565b60405160200161101b929190612ee0565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6110608261092c565b6110718161106c611306565b61172a565b61107b83836118a8565b505050565b600860009054906101000a900461ffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611130611306565b73ffffffffffffffffffffffffffffffffffffffff1661114e610d45565b73ffffffffffffffffffffffffffffffffffffffff16146111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b906131bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b9061303d565b60405180910390fd5b61121d8161198a565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611293575061129282611e58565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661138183610b53565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6113e1828260405180602001604052806000815250611f3a565b5050565b60006113f08261129a565b61142f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611426906130dd565b60405180910390fd5b600061143a83610b53565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114a957508373ffffffffffffffffffffffffffffffffffffffff1661149184610617565b73ffffffffffffffffffffffffffffffffffffffff16145b806114ba57506114b98185611094565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114e382610b53565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115309061305d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a09061309d565b60405180910390fd5b6115b4838383611f95565b6115bf60008261130e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461160f91906133ed565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611666919061330c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611725838383611f9a565b505050565b6117348282610d6f565b6117c3576117598173ffffffffffffffffffffffffffffffffffffffff166014611f9f565b6117678360001c6020611f9f565b604051602001611778929190612f04565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba9190612fdb565b60405180910390fd5b5050565b6117d18282610d6f565b6118a45760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611849611306565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6118b28282610d6f565b156119865760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061192b611306565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab6906130bd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb09190612fa5565b60405180910390a3505050565b611bc88484846114c3565b611bd484848484612299565b611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a9061301d565b60405180910390fd5b50505050565b606060098054611c2890613519565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5490613519565b8015611ca15780601f10611c7657610100808354040283529160200191611ca1565b820191906000526020600020905b815481529060010190602001808311611c8457829003601f168201915b5050505050905090565b60606000821415611cf3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e53565b600082905060005b60008214611d25578080611d0e906135a7565b915050600a82611d1e9190613362565b9150611cfb565b60008167ffffffffffffffff811115611d67577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d995781602001600182028036833780820191505090505b5090505b60008514611e4c57600182611db291906133ed565b9150600a85611dc191906135f0565b6030611dcd919061330c565b60f81b818381518110611e09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e459190613362565b9450611d9d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f335750611f3282612430565b5b9050919050565b611f44838361249a565b611f516000848484612299565b611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f879061301d565b60405180910390fd5b505050565b505050565b505050565b606060006002836002611fb29190613393565b611fbc919061330c565b67ffffffffffffffff811115611ffb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561202d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061208b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612115577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121559190613393565b61215f919061330c565b90505b600181111561224b577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106121c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612204577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612244906134ef565b9050612162565b506000841461228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690612ffd565b60405180910390fd5b8091505092915050565b60006122ba8473ffffffffffffffffffffffffffffffffffffffff16612674565b15612423578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e3611306565b8786866040518563ffffffff1660e01b81526004016123059493929190612f59565b602060405180830381600087803b15801561231f57600080fd5b505af192505050801561235057506040513d601f19601f8201168201806040525081019061234d9190612a9f565b60015b6123d3573d8060008114612380576040519150601f19603f3d011682016040523d82523d6000602084013e612385565b606091505b506000815114156123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c29061301d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612428565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125019061317d565b60405180910390fd5b6125138161129a565b15612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a9061307d565b60405180910390fd5b61255f60008383611f95565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125af919061330c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461267060008383611f9a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546126a390613519565b90600052602060002090601f0160209004810192826126c5576000855561270c565b82601f106126de57803560ff191683800117855561270c565b8280016001018555821561270c579182015b8281111561270b5782358255916020019190600101906126f0565b5b509050612719919061271d565b5090565b5b8082111561273657600081600090555060010161271e565b5090565b600061274d61274884613298565b613273565b90508281526020810184848401111561276557600080fd5b6127708482856134ad565b509392505050565b60008135905061278781613bea565b92915050565b60008135905061279c81613c01565b92915050565b6000813590506127b181613c18565b92915050565b6000813590506127c681613c2f565b92915050565b6000815190506127db81613c2f565b92915050565b600082601f8301126127f257600080fd5b813561280284826020860161273a565b91505092915050565b60008083601f84011261281d57600080fd5b8235905067ffffffffffffffff81111561283657600080fd5b60208301915083600182028301111561284e57600080fd5b9250929050565b60008135905061286481613c46565b92915050565b60006020828403121561287c57600080fd5b600061288a84828501612778565b91505092915050565b600080604083850312156128a657600080fd5b60006128b485828601612778565b92505060206128c585828601612778565b9150509250929050565b6000806000606084860312156128e457600080fd5b60006128f286828701612778565b935050602061290386828701612778565b925050604061291486828701612855565b9150509250925092565b6000806000806080858703121561293457600080fd5b600061294287828801612778565b945050602061295387828801612778565b935050604061296487828801612855565b925050606085013567ffffffffffffffff81111561298157600080fd5b61298d878288016127e1565b91505092959194509250565b600080604083850312156129ac57600080fd5b60006129ba85828601612778565b92505060206129cb8582860161278d565b9150509250929050565b600080604083850312156129e857600080fd5b60006129f685828601612778565b9250506020612a0785828601612855565b9150509250929050565b600060208284031215612a2357600080fd5b6000612a31848285016127a2565b91505092915050565b60008060408385031215612a4d57600080fd5b6000612a5b858286016127a2565b9250506020612a6c85828601612778565b9150509250929050565b600060208284031215612a8857600080fd5b6000612a96848285016127b7565b91505092915050565b600060208284031215612ab157600080fd5b6000612abf848285016127cc565b91505092915050565b60008060208385031215612adb57600080fd5b600083013567ffffffffffffffff811115612af557600080fd5b612b018582860161280b565b92509250509250929050565b600060208284031215612b1f57600080fd5b6000612b2d84828501612855565b91505092915050565b612b3f81613421565b82525050565b612b4e81613433565b82525050565b612b5d8161343f565b82525050565b6000612b6e826132c9565b612b7881856132df565b9350612b888185602086016134bc565b612b91816136dd565b840191505092915050565b6000612ba7826132d4565b612bb181856132f0565b9350612bc18185602086016134bc565b612bca816136dd565b840191505092915050565b6000612be0826132d4565b612bea8185613301565b9350612bfa8185602086016134bc565b80840191505092915050565b6000612c136020836132f0565b9150612c1e826136ee565b602082019050919050565b6000612c366032836132f0565b9150612c4182613717565b604082019050919050565b6000612c596026836132f0565b9150612c6482613766565b604082019050919050565b6000612c7c6025836132f0565b9150612c87826137b5565b604082019050919050565b6000612c9f601c836132f0565b9150612caa82613804565b602082019050919050565b6000612cc26024836132f0565b9150612ccd8261382d565b604082019050919050565b6000612ce56019836132f0565b9150612cf08261387c565b602082019050919050565b6000612d08602c836132f0565b9150612d13826138a5565b604082019050919050565b6000612d2b6038836132f0565b9150612d36826138f4565b604082019050919050565b6000612d4e6016836132f0565b9150612d5982613943565b602082019050919050565b6000612d71602a836132f0565b9150612d7c8261396c565b604082019050919050565b6000612d946029836132f0565b9150612d9f826139bb565b604082019050919050565b6000612db76020836132f0565b9150612dc282613a0a565b602082019050919050565b6000612dda602c836132f0565b9150612de582613a33565b604082019050919050565b6000612dfd6020836132f0565b9150612e0882613a82565b602082019050919050565b6000612e206021836132f0565b9150612e2b82613aab565b604082019050919050565b6000612e436031836132f0565b9150612e4e82613afa565b604082019050919050565b6000612e66601783613301565b9150612e7182613b49565b601782019050919050565b6000612e89601183613301565b9150612e9482613b72565b601182019050919050565b6000612eac602f836132f0565b9150612eb782613b9b565b604082019050919050565b612ecb81613475565b82525050565b612eda816134a3565b82525050565b6000612eec8285612bd5565b9150612ef88284612bd5565b91508190509392505050565b6000612f0f82612e59565b9150612f1b8285612bd5565b9150612f2682612e7c565b9150612f328284612bd5565b91508190509392505050565b6000602082019050612f536000830184612b36565b92915050565b6000608082019050612f6e6000830187612b36565b612f7b6020830186612b36565b612f886040830185612ed1565b8181036060830152612f9a8184612b63565b905095945050505050565b6000602082019050612fba6000830184612b45565b92915050565b6000602082019050612fd56000830184612b54565b92915050565b60006020820190508181036000830152612ff58184612b9c565b905092915050565b6000602082019050818103600083015261301681612c06565b9050919050565b6000602082019050818103600083015261303681612c29565b9050919050565b6000602082019050818103600083015261305681612c4c565b9050919050565b6000602082019050818103600083015261307681612c6f565b9050919050565b6000602082019050818103600083015261309681612c92565b9050919050565b600060208201905081810360008301526130b681612cb5565b9050919050565b600060208201905081810360008301526130d681612cd8565b9050919050565b600060208201905081810360008301526130f681612cfb565b9050919050565b6000602082019050818103600083015261311681612d1e565b9050919050565b6000602082019050818103600083015261313681612d41565b9050919050565b6000602082019050818103600083015261315681612d64565b9050919050565b6000602082019050818103600083015261317681612d87565b9050919050565b6000602082019050818103600083015261319681612daa565b9050919050565b600060208201905081810360008301526131b681612dcd565b9050919050565b600060208201905081810360008301526131d681612df0565b9050919050565b600060208201905081810360008301526131f681612e13565b9050919050565b6000602082019050818103600083015261321681612e36565b9050919050565b6000602082019050818103600083015261323681612e9f565b9050919050565b60006020820190506132526000830184612ec2565b92915050565b600060208201905061326d6000830184612ed1565b92915050565b600061327d61328e565b9050613289828261354b565b919050565b6000604051905090565b600067ffffffffffffffff8211156132b3576132b26136ae565b5b6132bc826136dd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613317826134a3565b9150613322836134a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561335757613356613621565b5b828201905092915050565b600061336d826134a3565b9150613378836134a3565b92508261338857613387613650565b5b828204905092915050565b600061339e826134a3565b91506133a9836134a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133e2576133e1613621565b5b828202905092915050565b60006133f8826134a3565b9150613403836134a3565b92508282101561341657613415613621565b5b828203905092915050565b600061342c82613483565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134da5780820151818401526020810190506134bf565b838111156134e9576000848401525b50505050565b60006134fa826134a3565b9150600082141561350e5761350d613621565b5b600182039050919050565b6000600282049050600182168061353157607f821691505b602082108114156135455761354461367f565b5b50919050565b613554826136dd565b810181811067ffffffffffffffff82111715613573576135726136ae565b5b80604052505050565b600061358782613475565b915061ffff82141561359c5761359b613621565b5b600182019050919050565b60006135b2826134a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135e5576135e4613621565b5b600182019050919050565b60006135fb826134a3565b9150613606836134a3565b92508261361657613615613650565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b613bf381613421565b8114613bfe57600080fd5b50565b613c0a81613433565b8114613c1557600080fd5b50565b613c218161343f565b8114613c2c57600080fd5b50565b613c3881613449565b8114613c4357600080fd5b50565b613c4f816134a3565b8114613c5a57600080fd5b5056fea264697066735822122037daf5a21cedfbcac791b14cf9ef8ad22c25b47db7a61946c3631ca1326369c764736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000457000000000000000000000000bbd096ea5682387074a33e57da30db3a5fd3db910000000000000000000000000000000000000000000000000000000000000006455a2e4b657900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005455a4b45590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534752336571754b646235457870437753414a34567961584475414b35534b316f587071344351364e7978482f00000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063715018a6116100f9578063b88d4fde11610097578063d547741f11610071578063d547741f146104ed578063d5abeb0114610509578063e985e9c514610527578063f2fde38b14610557576101c4565b8063b88d4fde14610483578063c87b56dd1461049f578063d5391393146104cf576101c4565b806395d89b41116100d357806395d89b411461040f578063983b2d561461042d578063a217fddf14610449578063a22cb46514610467576101c4565b8063715018a6146103b75780638da5cb5b146103c157806391d14854146103df576101c4565b80632f2ff15d1161016657806342842e0e1161014057806342842e0e1461031f57806355f804b31461033b5780636352211e1461035757806370a0823114610387576101c4565b80632f2ff15d146102cb5780633092afd5146102e757806336568abe14610303576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806309be58f81461026357806323b872dd1461027f578063248a9ca31461029b576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de9190612a76565b610573565b6040516101f09190612fa5565b60405180910390f35b610201610585565b60405161020e9190612fdb565b60405180910390f35b610231600480360381019061022c9190612b0d565b610617565b60405161023e9190612f3e565b60405180910390f35b610261600480360381019061025c91906129d5565b61069c565b005b61027d600480360381019061027891906129d5565b6107b4565b005b610299600480360381019061029491906128cf565b6108cc565b005b6102b560048036038101906102b09190612a11565b61092c565b6040516102c29190612fc0565b60405180910390f35b6102e560048036038101906102e09190612a3a565b61094c565b005b61030160048036038101906102fc919061286a565b610975565b005b61031d60048036038101906103189190612a3a565b610a1e565b005b610339600480360381019061033491906128cf565b610aa1565b005b61035560048036038101906103509190612ac8565b610ac1565b005b610371600480360381019061036c9190612b0d565b610b53565b60405161037e9190612f3e565b60405180910390f35b6103a1600480360381019061039c919061286a565b610c05565b6040516103ae9190613258565b60405180910390f35b6103bf610cbd565b005b6103c9610d45565b6040516103d69190612f3e565b60405180910390f35b6103f960048036038101906103f49190612a3a565b610d6f565b6040516104069190612fa5565b60405180910390f35b610417610dda565b6040516104249190612fdb565b60405180910390f35b6104476004803603810190610442919061286a565b610e6c565b005b610451610f15565b60405161045e9190612fc0565b60405180910390f35b610481600480360381019061047c9190612999565b610f1c565b005b61049d6004803603810190610498919061291e565b610f32565b005b6104b960048036038101906104b49190612b0d565b610f94565b6040516104c69190612fdb565b60405180910390f35b6104d7611033565b6040516104e49190612fc0565b60405180910390f35b61050760048036038101906105029190612a3a565b611057565b005b610511611080565b60405161051e919061323d565b60405180910390f35b610541600480360381019061053c9190612893565b611094565b60405161054e9190612fa5565b60405180910390f35b610571600480360381019061056c919061286a565b611128565b005b600061057e82611220565b9050919050565b60606000805461059490613519565b80601f01602080910402602001604051908101604052809291908181526020018280546105c090613519565b801561060d5780601f106105e25761010080835404028352916020019161060d565b820191906000526020600020905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b60006106228261129a565b610661576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106589061319d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106a782610b53565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070f906131dd565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610737611306565b73ffffffffffffffffffffffffffffffffffffffff161480610766575061076581610760611306565b611094565b5b6107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c906130fd565b60405180910390fd5b6107af838361130e565b505050565b6107de7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633610d6f565b61081d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108149061311d565b60405180910390fd5b600860009054906101000a900461ffff1661ffff16600860029054906101000a900461ffff1661ffff16116108965761085682826113c7565b6008600281819054906101000a900461ffff16809291906108769061357c565b91906101000a81548161ffff021916908361ffff160217905550506108c8565b6040517ff0e1b57900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050565b6108dd6108d7611306565b826113e5565b61091c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610913906131fd565b60405180910390fd5b6109278383836114c3565b505050565b600060076000838152602001908152602001600020600101549050919050565b6109558261092c565b61096681610961611306565b61172a565b61097083836117c7565b505050565b61097d611306565b73ffffffffffffffffffffffffffffffffffffffff1661099b610d45565b73ffffffffffffffffffffffffffffffffffffffff16146109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e8906131bd565b60405180910390fd5b610a1b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826118a8565b50565b610a26611306565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a9061321d565b60405180910390fd5b610a9d82826118a8565b5050565b610abc83838360405180602001604052806000815250610f32565b505050565b610ac9611306565b73ffffffffffffffffffffffffffffffffffffffff16610ae7610d45565b73ffffffffffffffffffffffffffffffffffffffff1614610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b34906131bd565b60405180910390fd5b818160099190610b4e929190612697565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39061315d565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d9061313d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610cc5611306565b73ffffffffffffffffffffffffffffffffffffffff16610ce3610d45565b73ffffffffffffffffffffffffffffffffffffffff1614610d39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d30906131bd565b60405180910390fd5b610d43600061198a565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610de990613519565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1590613519565b8015610e625780601f10610e3757610100808354040283529160200191610e62565b820191906000526020600020905b815481529060010190602001808311610e4557829003601f168201915b5050505050905090565b610e74611306565b73ffffffffffffffffffffffffffffffffffffffff16610e92610d45565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf906131bd565b60405180910390fd5b610f127f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6826117c7565b50565b6000801b81565b610f2e610f27611306565b8383611a50565b5050565b610f43610f3d611306565b836113e5565b610f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f79906131fd565b60405180910390fd5b610f8e84848484611bbd565b50505050565b6060610f9f8261129a565b610fd5576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610fdf611c19565b9050600081511415611000576040518060200160405280600081525061102b565b8061100a84611cab565b60405160200161101b929190612ee0565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6110608261092c565b6110718161106c611306565b61172a565b61107b83836118a8565b505050565b600860009054906101000a900461ffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611130611306565b73ffffffffffffffffffffffffffffffffffffffff1661114e610d45565b73ffffffffffffffffffffffffffffffffffffffff16146111a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119b906131bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611214576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120b9061303d565b60405180910390fd5b61121d8161198a565b50565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611293575061129282611e58565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661138183610b53565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6113e1828260405180602001604052806000815250611f3a565b5050565b60006113f08261129a565b61142f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611426906130dd565b60405180910390fd5b600061143a83610b53565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114a957508373ffffffffffffffffffffffffffffffffffffffff1661149184610617565b73ffffffffffffffffffffffffffffffffffffffff16145b806114ba57506114b98185611094565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114e382610b53565b73ffffffffffffffffffffffffffffffffffffffff1614611539576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115309061305d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115a09061309d565b60405180910390fd5b6115b4838383611f95565b6115bf60008261130e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461160f91906133ed565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611666919061330c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611725838383611f9a565b505050565b6117348282610d6f565b6117c3576117598173ffffffffffffffffffffffffffffffffffffffff166014611f9f565b6117678360001c6020611f9f565b604051602001611778929190612f04565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ba9190612fdb565b60405180910390fd5b5050565b6117d18282610d6f565b6118a45760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611849611306565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6118b28282610d6f565b156119865760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061192b611306565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611abf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab6906130bd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bb09190612fa5565b60405180910390a3505050565b611bc88484846114c3565b611bd484848484612299565b611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a9061301d565b60405180910390fd5b50505050565b606060098054611c2890613519565b80601f0160208091040260200160405190810160405280929190818152602001828054611c5490613519565b8015611ca15780601f10611c7657610100808354040283529160200191611ca1565b820191906000526020600020905b815481529060010190602001808311611c8457829003601f168201915b5050505050905090565b60606000821415611cf3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e53565b600082905060005b60008214611d25578080611d0e906135a7565b915050600a82611d1e9190613362565b9150611cfb565b60008167ffffffffffffffff811115611d67577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d995781602001600182028036833780820191505090505b5090505b60008514611e4c57600182611db291906133ed565b9150600a85611dc191906135f0565b6030611dcd919061330c565b60f81b818381518110611e09577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e459190613362565b9450611d9d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f335750611f3282612430565b5b9050919050565b611f44838361249a565b611f516000848484612299565b611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f879061301d565b60405180910390fd5b505050565b505050565b505050565b606060006002836002611fb29190613393565b611fbc919061330c565b67ffffffffffffffff811115611ffb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561202d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061208b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612115577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026121559190613393565b61215f919061330c565b90505b600181111561224b577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106121c7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612204577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612244906134ef565b9050612162565b506000841461228f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228690612ffd565b60405180910390fd5b8091505092915050565b60006122ba8473ffffffffffffffffffffffffffffffffffffffff16612674565b15612423578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122e3611306565b8786866040518563ffffffff1660e01b81526004016123059493929190612f59565b602060405180830381600087803b15801561231f57600080fd5b505af192505050801561235057506040513d601f19601f8201168201806040525081019061234d9190612a9f565b60015b6123d3573d8060008114612380576040519150601f19603f3d011682016040523d82523d6000602084013e612385565b606091505b506000815114156123cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c29061301d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612428565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561250a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125019061317d565b60405180910390fd5b6125138161129a565b15612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254a9061307d565b60405180910390fd5b61255f60008383611f95565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125af919061330c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461267060008383611f9a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546126a390613519565b90600052602060002090601f0160209004810192826126c5576000855561270c565b82601f106126de57803560ff191683800117855561270c565b8280016001018555821561270c579182015b8281111561270b5782358255916020019190600101906126f0565b5b509050612719919061271d565b5090565b5b8082111561273657600081600090555060010161271e565b5090565b600061274d61274884613298565b613273565b90508281526020810184848401111561276557600080fd5b6127708482856134ad565b509392505050565b60008135905061278781613bea565b92915050565b60008135905061279c81613c01565b92915050565b6000813590506127b181613c18565b92915050565b6000813590506127c681613c2f565b92915050565b6000815190506127db81613c2f565b92915050565b600082601f8301126127f257600080fd5b813561280284826020860161273a565b91505092915050565b60008083601f84011261281d57600080fd5b8235905067ffffffffffffffff81111561283657600080fd5b60208301915083600182028301111561284e57600080fd5b9250929050565b60008135905061286481613c46565b92915050565b60006020828403121561287c57600080fd5b600061288a84828501612778565b91505092915050565b600080604083850312156128a657600080fd5b60006128b485828601612778565b92505060206128c585828601612778565b9150509250929050565b6000806000606084860312156128e457600080fd5b60006128f286828701612778565b935050602061290386828701612778565b925050604061291486828701612855565b9150509250925092565b6000806000806080858703121561293457600080fd5b600061294287828801612778565b945050602061295387828801612778565b935050604061296487828801612855565b925050606085013567ffffffffffffffff81111561298157600080fd5b61298d878288016127e1565b91505092959194509250565b600080604083850312156129ac57600080fd5b60006129ba85828601612778565b92505060206129cb8582860161278d565b9150509250929050565b600080604083850312156129e857600080fd5b60006129f685828601612778565b9250506020612a0785828601612855565b9150509250929050565b600060208284031215612a2357600080fd5b6000612a31848285016127a2565b91505092915050565b60008060408385031215612a4d57600080fd5b6000612a5b858286016127a2565b9250506020612a6c85828601612778565b9150509250929050565b600060208284031215612a8857600080fd5b6000612a96848285016127b7565b91505092915050565b600060208284031215612ab157600080fd5b6000612abf848285016127cc565b91505092915050565b60008060208385031215612adb57600080fd5b600083013567ffffffffffffffff811115612af557600080fd5b612b018582860161280b565b92509250509250929050565b600060208284031215612b1f57600080fd5b6000612b2d84828501612855565b91505092915050565b612b3f81613421565b82525050565b612b4e81613433565b82525050565b612b5d8161343f565b82525050565b6000612b6e826132c9565b612b7881856132df565b9350612b888185602086016134bc565b612b91816136dd565b840191505092915050565b6000612ba7826132d4565b612bb181856132f0565b9350612bc18185602086016134bc565b612bca816136dd565b840191505092915050565b6000612be0826132d4565b612bea8185613301565b9350612bfa8185602086016134bc565b80840191505092915050565b6000612c136020836132f0565b9150612c1e826136ee565b602082019050919050565b6000612c366032836132f0565b9150612c4182613717565b604082019050919050565b6000612c596026836132f0565b9150612c6482613766565b604082019050919050565b6000612c7c6025836132f0565b9150612c87826137b5565b604082019050919050565b6000612c9f601c836132f0565b9150612caa82613804565b602082019050919050565b6000612cc26024836132f0565b9150612ccd8261382d565b604082019050919050565b6000612ce56019836132f0565b9150612cf08261387c565b602082019050919050565b6000612d08602c836132f0565b9150612d13826138a5565b604082019050919050565b6000612d2b6038836132f0565b9150612d36826138f4565b604082019050919050565b6000612d4e6016836132f0565b9150612d5982613943565b602082019050919050565b6000612d71602a836132f0565b9150612d7c8261396c565b604082019050919050565b6000612d946029836132f0565b9150612d9f826139bb565b604082019050919050565b6000612db76020836132f0565b9150612dc282613a0a565b602082019050919050565b6000612dda602c836132f0565b9150612de582613a33565b604082019050919050565b6000612dfd6020836132f0565b9150612e0882613a82565b602082019050919050565b6000612e206021836132f0565b9150612e2b82613aab565b604082019050919050565b6000612e436031836132f0565b9150612e4e82613afa565b604082019050919050565b6000612e66601783613301565b9150612e7182613b49565b601782019050919050565b6000612e89601183613301565b9150612e9482613b72565b601182019050919050565b6000612eac602f836132f0565b9150612eb782613b9b565b604082019050919050565b612ecb81613475565b82525050565b612eda816134a3565b82525050565b6000612eec8285612bd5565b9150612ef88284612bd5565b91508190509392505050565b6000612f0f82612e59565b9150612f1b8285612bd5565b9150612f2682612e7c565b9150612f328284612bd5565b91508190509392505050565b6000602082019050612f536000830184612b36565b92915050565b6000608082019050612f6e6000830187612b36565b612f7b6020830186612b36565b612f886040830185612ed1565b8181036060830152612f9a8184612b63565b905095945050505050565b6000602082019050612fba6000830184612b45565b92915050565b6000602082019050612fd56000830184612b54565b92915050565b60006020820190508181036000830152612ff58184612b9c565b905092915050565b6000602082019050818103600083015261301681612c06565b9050919050565b6000602082019050818103600083015261303681612c29565b9050919050565b6000602082019050818103600083015261305681612c4c565b9050919050565b6000602082019050818103600083015261307681612c6f565b9050919050565b6000602082019050818103600083015261309681612c92565b9050919050565b600060208201905081810360008301526130b681612cb5565b9050919050565b600060208201905081810360008301526130d681612cd8565b9050919050565b600060208201905081810360008301526130f681612cfb565b9050919050565b6000602082019050818103600083015261311681612d1e565b9050919050565b6000602082019050818103600083015261313681612d41565b9050919050565b6000602082019050818103600083015261315681612d64565b9050919050565b6000602082019050818103600083015261317681612d87565b9050919050565b6000602082019050818103600083015261319681612daa565b9050919050565b600060208201905081810360008301526131b681612dcd565b9050919050565b600060208201905081810360008301526131d681612df0565b9050919050565b600060208201905081810360008301526131f681612e13565b9050919050565b6000602082019050818103600083015261321681612e36565b9050919050565b6000602082019050818103600083015261323681612e9f565b9050919050565b60006020820190506132526000830184612ec2565b92915050565b600060208201905061326d6000830184612ed1565b92915050565b600061327d61328e565b9050613289828261354b565b919050565b6000604051905090565b600067ffffffffffffffff8211156132b3576132b26136ae565b5b6132bc826136dd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613317826134a3565b9150613322836134a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561335757613356613621565b5b828201905092915050565b600061336d826134a3565b9150613378836134a3565b92508261338857613387613650565b5b828204905092915050565b600061339e826134a3565b91506133a9836134a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133e2576133e1613621565b5b828202905092915050565b60006133f8826134a3565b9150613403836134a3565b92508282101561341657613415613621565b5b828203905092915050565b600061342c82613483565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134da5780820151818401526020810190506134bf565b838111156134e9576000848401525b50505050565b60006134fa826134a3565b9150600082141561350e5761350d613621565b5b600182039050919050565b6000600282049050600182168061353157607f821691505b602082108114156135455761354461367f565b5b50919050565b613554826136dd565b810181811067ffffffffffffffff82111715613573576135726136ae565b5b80604052505050565b600061358782613475565b915061ffff82141561359c5761359b613621565b5b600182019050919050565b60006135b2826134a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135e5576135e4613621565b5b600182019050919050565b60006135fb826134a3565b9150613606836134a3565b92508261361657613615613650565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f43616c6c6572206973206e6f742061206d696e74657200000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b613bf381613421565b8114613bfe57600080fd5b50565b613c0a81613433565b8114613c1557600080fd5b50565b613c218161343f565b8114613c2c57600080fd5b50565b613c3881613449565b8114613c4357600080fd5b50565b613c4f816134a3565b8114613c5a57600080fd5b5056fea264697066735822122037daf5a21cedfbcac791b14cf9ef8ad22c25b47db7a61946c3631ca1326369c764736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000457000000000000000000000000bbd096ea5682387074a33e57da30db3a5fd3db910000000000000000000000000000000000000000000000000000000000000006455a2e4b657900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005455a4b45590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d534752336571754b646235457870437753414a34567961584475414b35534b316f587071344351364e7978482f00000000000000000000
-----Decoded View---------------
Arg [0] : name (string): EZ.Key
Arg [1] : symbol (string): EZKEY
Arg [2] : baseUri_ (string): ipfs://QmSGR3equKdb5ExpCwSAJ4VyaXDuAK5SK1oXpq4CQ6NyxH/
Arg [3] : maxSupply_ (uint16): 1111
Arg [4] : minter (address): 0xbbD096eA5682387074a33E57da30dB3a5fd3Db91
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000457
Arg [4] : 000000000000000000000000bbd096ea5682387074a33e57da30db3a5fd3db91
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 455a2e4b65790000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 455a4b4559000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d534752336571754b646235457870437753414a34567961
Arg [11] : 584475414b35534b316f587071344351364e7978482f00000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.