Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 232 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 19672092 | 263 days ago | IN | 0 ETH | 0.00127835 | ||||
Set Approval For... | 19451631 | 294 days ago | IN | 0 ETH | 0.00118606 | ||||
Set Approval For... | 19398143 | 302 days ago | IN | 0 ETH | 0.00334783 | ||||
Set Approval For... | 19284192 | 318 days ago | IN | 0 ETH | 0.00260153 | ||||
Mint | 19268245 | 320 days ago | IN | 0 ETH | 0.00595026 | ||||
Mint | 19260706 | 321 days ago | IN | 0 ETH | 0.0046662 | ||||
Safe Transfer Fr... | 19260629 | 321 days ago | IN | 0 ETH | 0.00262884 | ||||
Safe Transfer Fr... | 19260627 | 321 days ago | IN | 0 ETH | 0.00267889 | ||||
Mint | 19022919 | 354 days ago | IN | 0 ETH | 0.00495517 | ||||
Safe Transfer Fr... | 19022856 | 354 days ago | IN | 0 ETH | 0.00218669 | ||||
Mint | 19022825 | 354 days ago | IN | 0 ETH | 0.00444622 | ||||
Safe Transfer Fr... | 18967435 | 362 days ago | IN | 0 ETH | 0.00145974 | ||||
Mint | 18893450 | 373 days ago | IN | 0 ETH | 0.00291888 | ||||
Mint | 18850274 | 379 days ago | IN | 0 ETH | 0.00344403 | ||||
Mint | 18827390 | 382 days ago | IN | 0 ETH | 0.0105751 | ||||
Mint | 18827381 | 382 days ago | IN | 0 ETH | 0.01073159 | ||||
Set Approval For... | 18665509 | 405 days ago | IN | 0 ETH | 0.00140049 | ||||
Safe Transfer Fr... | 18616345 | 411 days ago | IN | 0 ETH | 0.00260051 | ||||
Safe Transfer Fr... | 18587811 | 415 days ago | IN | 0 ETH | 0.00231353 | ||||
Mint | 18576224 | 417 days ago | IN | 0 ETH | 0.00414372 | ||||
Mint | 18576180 | 417 days ago | IN | 0 ETH | 0.00424958 | ||||
Set Approval For... | 18574190 | 417 days ago | IN | 0 ETH | 0.00085773 | ||||
Set Approval For... | 18574176 | 417 days ago | IN | 0 ETH | 0.00064651 | ||||
Safe Transfer Fr... | 18530919 | 423 days ago | IN | 0 ETH | 0.00265246 | ||||
Set Approval For... | 18499155 | 428 days ago | IN | 0 ETH | 0.00105506 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Farm
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: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; contract Farm is ERC721Enumerable, AccessControl { using Counters for Counters.Counter; using Strings for uint256; bytes32 public constant OWNER_ROLE = keccak256("OWNER_ROLE"); bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); string public baseURI; Counters.Counter private tokenIdCounter; constructor() ERC721("Bad Bunnies Farm", "BBFA") { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(OWNER_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); } // views function _baseURI() internal view override(ERC721) returns(string memory) { return baseURI; } // minter function mint(address to, uint256 qty) public onlyMinter { for (uint256 i = 0; i < qty; i++) { tokenIdCounter.increment(); uint256 tokenId = tokenIdCounter.current(); _safeMint(to, tokenId); } } function burn(uint256 tokenId) public virtual { require( _isApprovedOrOwner(_msgSender(), tokenId) || hasRole(MINTER_ROLE, _msgSender()), "ERC721: caller is not token owner or approved" ); _burn(tokenId); } // owner function setBaseURI(string memory _URI) external onlyOwner { baseURI = _URI; } // misc modifier onlyMinter() { require(hasRole(MINTER_ROLE, _msgSender()), "Only minter"); _; } modifier onlyOwner() { require(hasRole(OWNER_ROLE, _msgSender()), "Only owner"); _; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable, AccessControl) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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` cannot be the zero address. * - `to` cannot be the zero address. * * 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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[],"name":"OWNER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"_URI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280601081526020017f4261642042756e6e696573204661726d000000000000000000000000000000008152506040518060400160405280600481526020017f4242464100000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620002d9565b508060019080519060200190620000af929190620002d9565b505050620000d66000801b620000ca6200015e60201b60201c565b6200016660201b60201c565b620001177fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e6200010b6200015e60201b60201c565b6200016660201b60201c565b620001587f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200014c6200015e60201b60201c565b6200016660201b60201c565b620003ee565b600033905090565b6200017882826200017c60201b60201c565b5050565b6200018e82826200026e60201b60201c565b6200026a576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200020f6200015e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b828054620002e79062000389565b90600052602060002090601f0160209004810192826200030b576000855562000357565b82601f106200032657805160ff191683800117855562000357565b8280016001018555821562000357579182015b828111156200035657825182559160200191906001019062000339565b5b5090506200036691906200036a565b5090565b5b80821115620003855760008160009055506001016200036b565b5090565b60006002820490506001821680620003a257607f821691505b60208210811415620003b957620003b8620003bf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6143db80620003fe6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c806355f804b3116100f9578063a22cb46511610097578063d539139311610071578063d539139314610527578063d547741f14610545578063e58378bb14610561578063e985e9c51461057f576101c4565b8063a22cb465146104bf578063b88d4fde146104db578063c87b56dd146104f7576101c4565b806370a08231116100d357806370a082311461042357806391d148541461045357806395d89b4114610483578063a217fddf146104a1576101c4565b806355f804b3146103b95780636352211e146103d55780636c0360eb14610405576101c4565b80632f2ff15d1161016657806340c10f191161014057806340c10f191461033557806342842e0e1461035157806342966c681461036d5780634f6ccce714610389576101c4565b80632f2ff15d146102cd5780632f745c59146102e957806336568abe14610319576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd14610281578063248a9ca31461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061303e565b6105af565b6040516101f091906135c3565b60405180910390f35b610201610691565b60405161020e91906135f9565b60405180910390f35b610231600480360381019061022c91906130d1565b610723565b60405161023e919061355c565b60405180910390f35b610261600480360381019061025c9190612f9d565b6107a8565b005b61026b6108c0565b60405161027891906138bb565b60405180910390f35b61029b60048036038101906102969190612e97565b6108cd565b005b6102b760048036038101906102b29190612fd9565b61092d565b6040516102c491906135de565b60405180910390f35b6102e760048036038101906102e29190613002565b61094d565b005b61030360048036038101906102fe9190612f9d565b610976565b60405161031091906138bb565b60405180910390f35b610333600480360381019061032e9190613002565b610a1b565b005b61034f600480360381019061034a9190612f9d565b610a9e565b005b61036b60048036038101906103669190612e97565b610b54565b005b610387600480360381019061038291906130d1565b610b74565b005b6103a3600480360381019061039e91906130d1565b610c08565b6040516103b091906138bb565b60405180910390f35b6103d360048036038101906103ce9190613090565b610c9f565b005b6103ef60048036038101906103ea91906130d1565b610d29565b6040516103fc919061355c565b60405180910390f35b61040d610ddb565b60405161041a91906135f9565b60405180910390f35b61043d60048036038101906104389190612e32565b610e69565b60405161044a91906138bb565b60405180910390f35b61046d60048036038101906104689190613002565b610f21565b60405161047a91906135c3565b60405180910390f35b61048b610f8c565b60405161049891906135f9565b60405180910390f35b6104a961101e565b6040516104b691906135de565b60405180910390f35b6104d960048036038101906104d49190612f61565b611025565b005b6104f560048036038101906104f09190612ee6565b61103b565b005b610511600480360381019061050c91906130d1565b61109d565b60405161051e91906135f9565b60405180910390f35b61052f611144565b60405161053c91906135de565b60405180910390f35b61055f600480360381019061055a9190613002565b611168565b005b610569611191565b60405161057691906135de565b60405180910390f35b61059960048036038101906105949190612e5b565b6111b5565b6040516105a691906135c3565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067a57507f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068a575061068982611249565b5b9050919050565b6060600080546106a090613b9f565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc90613b9f565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b600061072e826112c3565b61076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610764906137fb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b382610d29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b9061383b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661084361132f565b73ffffffffffffffffffffffffffffffffffffffff16148061087257506108718161086c61132f565b6111b5565b5b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a89061377b565b60405180910390fd5b6108bb8383611337565b505050565b6000600880549050905090565b6108de6108d861132f565b826113f0565b61091d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109149061385b565b60405180910390fd5b6109288383836114ce565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6109568261092d565b6109678161096261132f565b611735565b61097183836117d2565b505050565b600061098183610e69565b82106109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b99061367b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a2361132f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a879061389b565b60405180910390fd5b610a9a82826118b3565b5050565b610acf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610aca61132f565b610f21565b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061373b565b60405180910390fd5b60005b81811015610b4f57610b23600c611995565b6000610b2f600c6119ab565b9050610b3b84826119b9565b508080610b4790613c02565b915050610b11565b505050565b610b6f8383836040518060200160405280600081525061103b565b505050565b610b85610b7f61132f565b826113f0565b80610bbd5750610bbc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610bb761132f565b610f21565b5b610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39061363b565b60405180910390fd5b610c05816119d7565b50565b6000610c126108c0565b8210610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a9061387b565b60405180910390fd5b60088281548110610c8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cd07fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e610ccb61132f565b610f21565b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d069061365b565b60405180910390fd5b80600b9080519060200190610d25929190612c41565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906137bb565b60405180910390fd5b80915050919050565b600b8054610de890613b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490613b9f565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19061379b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610f9b90613b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc790613b9f565b80156110145780601f10610fe957610100808354040283529160200191611014565b820191906000526020600020905b815481529060010190602001808311610ff757829003601f168201915b5050505050905090565b6000801b81565b61103761103061132f565b8383611af4565b5050565b61104c61104661132f565b836113f0565b61108b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110829061385b565b60405180910390fd5b61109784848484611c61565b50505050565b60606110a8826112c3565b6110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9061381b565b60405180910390fd5b60006110f1611cbd565b90506000815111611111576040518060200160405280600081525061113c565b8061111b84611d4f565b60405160200161112c9291906134fe565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6111718261092d565b6111828161117d61132f565b611735565b61118c83836118b3565b505050565b7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112bc57506112bb82611efc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113aa83610d29565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113fb826112c3565b61143a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114319061375b565b60405180910390fd5b600061144583610d29565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114b457508373ffffffffffffffffffffffffffffffffffffffff1661149c84610723565b73ffffffffffffffffffffffffffffffffffffffff16145b806114c557506114c481856111b5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114ee82610d29565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b906136bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab906136fb565b60405180910390fd5b6115bf838383611f76565b6115ca600082611337565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161a9190613a81565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461167191906139a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461173083838361208a565b505050565b61173f8282610f21565b6117ce576117648173ffffffffffffffffffffffffffffffffffffffff16601461208f565b6117728360001c602061208f565b604051602001611783929190613522565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c591906135f9565b60405180910390fd5b5050565b6117dc8282610f21565b6118af576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061185461132f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6118bd8282610f21565b15611991576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193661132f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6119d3828260405180602001604052806000815250612389565b5050565b60006119e282610d29565b90506119f081600084611f76565b6119fb600083611337565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4b9190613a81565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af08160008461208a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a9061371b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5491906135c3565b60405180910390a3505050565b611c6c8484846114ce565b611c78848484846123e4565b611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae9061369b565b60405180910390fd5b50505050565b6060600b8054611ccc90613b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf890613b9f565b8015611d455780601f10611d1a57610100808354040283529160200191611d45565b820191906000526020600020905b815481529060010190602001808311611d2857829003601f168201915b5050505050905090565b60606000821415611d97576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ef7565b600082905060005b60008214611dc9578080611db290613c02565b915050600a82611dc291906139f6565b9150611d9f565b60008167ffffffffffffffff811115611e0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e3d5781602001600182028036833780820191505090505b5090505b60008514611ef057600182611e569190613a81565b9150600a85611e659190613c4b565b6030611e7191906139a0565b60f81b818381518110611ead577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ee991906139f6565b9450611e41565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f6f5750611f6e8261257b565b5b9050919050565b611f8183838361265d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fc457611fbf81612662565b612003565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146120025761200183826126ab565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120465761204181612818565b612085565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461208457612083828261295b565b5b5b505050565b505050565b6060600060028360026120a29190613a27565b6120ac91906139a0565b67ffffffffffffffff8111156120eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561211d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061217b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612205577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026122459190613a27565b61224f91906139a0565b90505b600181111561233b577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106122b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106122f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061233490613b75565b9050612252565b506000841461237f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123769061361b565b60405180910390fd5b8091505092915050565b61239383836129da565b6123a060008484846123e4565b6123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d69061369b565b60405180910390fd5b505050565b60006124058473ffffffffffffffffffffffffffffffffffffffff16612bb4565b1561256e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261242e61132f565b8786866040518563ffffffff1660e01b81526004016124509493929190613577565b602060405180830381600087803b15801561246a57600080fd5b505af192505050801561249b57506040513d601f19601f820116820180604052508101906124989190613067565b60015b61251e573d80600081146124cb576040519150601f19603f3d011682016040523d82523d6000602084013e6124d0565b606091505b50600081511415612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d9061369b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612573565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061264657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612656575061265582612bd7565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126b884610e69565b6126c29190613a81565b90506000600760008481526020019081526020016000205490508181146127a7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061282c9190613a81565b9050600060096000848152602001908152602001600020549050600060088381548110612882577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106128ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061293f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061296683610e69565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a41906137db565b60405180910390fd5b612a53816112c3565b15612a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8a906136db565b60405180910390fd5b612a9f60008383611f76565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aef91906139a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bb06000838361208a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612c4d90613b9f565b90600052602060002090601f016020900481019282612c6f5760008555612cb6565b82601f10612c8857805160ff1916838001178555612cb6565b82800160010185558215612cb6579182015b82811115612cb5578251825591602001919060010190612c9a565b5b509050612cc39190612cc7565b5090565b5b80821115612ce0576000816000905550600101612cc8565b5090565b6000612cf7612cf2846138fb565b6138d6565b905082815260208101848484011115612d0f57600080fd5b612d1a848285613b33565b509392505050565b6000612d35612d308461392c565b6138d6565b905082815260208101848484011115612d4d57600080fd5b612d58848285613b33565b509392505050565b600081359050612d6f81614332565b92915050565b600081359050612d8481614349565b92915050565b600081359050612d9981614360565b92915050565b600081359050612dae81614377565b92915050565b600081519050612dc381614377565b92915050565b600082601f830112612dda57600080fd5b8135612dea848260208601612ce4565b91505092915050565b600082601f830112612e0457600080fd5b8135612e14848260208601612d22565b91505092915050565b600081359050612e2c8161438e565b92915050565b600060208284031215612e4457600080fd5b6000612e5284828501612d60565b91505092915050565b60008060408385031215612e6e57600080fd5b6000612e7c85828601612d60565b9250506020612e8d85828601612d60565b9150509250929050565b600080600060608486031215612eac57600080fd5b6000612eba86828701612d60565b9350506020612ecb86828701612d60565b9250506040612edc86828701612e1d565b9150509250925092565b60008060008060808587031215612efc57600080fd5b6000612f0a87828801612d60565b9450506020612f1b87828801612d60565b9350506040612f2c87828801612e1d565b925050606085013567ffffffffffffffff811115612f4957600080fd5b612f5587828801612dc9565b91505092959194509250565b60008060408385031215612f7457600080fd5b6000612f8285828601612d60565b9250506020612f9385828601612d75565b9150509250929050565b60008060408385031215612fb057600080fd5b6000612fbe85828601612d60565b9250506020612fcf85828601612e1d565b9150509250929050565b600060208284031215612feb57600080fd5b6000612ff984828501612d8a565b91505092915050565b6000806040838503121561301557600080fd5b600061302385828601612d8a565b925050602061303485828601612d60565b9150509250929050565b60006020828403121561305057600080fd5b600061305e84828501612d9f565b91505092915050565b60006020828403121561307957600080fd5b600061308784828501612db4565b91505092915050565b6000602082840312156130a257600080fd5b600082013567ffffffffffffffff8111156130bc57600080fd5b6130c884828501612df3565b91505092915050565b6000602082840312156130e357600080fd5b60006130f184828501612e1d565b91505092915050565b61310381613ab5565b82525050565b61311281613ac7565b82525050565b61312181613ad3565b82525050565b60006131328261395d565b61313c8185613973565b935061314c818560208601613b42565b61315581613d38565b840191505092915050565b600061316b82613968565b6131758185613984565b9350613185818560208601613b42565b61318e81613d38565b840191505092915050565b60006131a482613968565b6131ae8185613995565b93506131be818560208601613b42565b80840191505092915050565b60006131d7602083613984565b91506131e282613d49565b602082019050919050565b60006131fa602d83613984565b915061320582613d72565b604082019050919050565b600061321d600a83613984565b915061322882613dc1565b602082019050919050565b6000613240602b83613984565b915061324b82613dea565b604082019050919050565b6000613263603283613984565b915061326e82613e39565b604082019050919050565b6000613286602583613984565b915061329182613e88565b604082019050919050565b60006132a9601c83613984565b91506132b482613ed7565b602082019050919050565b60006132cc602483613984565b91506132d782613f00565b604082019050919050565b60006132ef601983613984565b91506132fa82613f4f565b602082019050919050565b6000613312600b83613984565b915061331d82613f78565b602082019050919050565b6000613335602c83613984565b915061334082613fa1565b604082019050919050565b6000613358603883613984565b915061336382613ff0565b604082019050919050565b600061337b602a83613984565b91506133868261403f565b604082019050919050565b600061339e602983613984565b91506133a98261408e565b604082019050919050565b60006133c1602083613984565b91506133cc826140dd565b602082019050919050565b60006133e4602c83613984565b91506133ef82614106565b604082019050919050565b6000613407602f83613984565b915061341282614155565b604082019050919050565b600061342a602183613984565b9150613435826141a4565b604082019050919050565b600061344d603183613984565b9150613458826141f3565b604082019050919050565b6000613470602c83613984565b915061347b82614242565b604082019050919050565b6000613493601783613995565b915061349e82614291565b601782019050919050565b60006134b6601183613995565b91506134c1826142ba565b601182019050919050565b60006134d9602f83613984565b91506134e4826142e3565b604082019050919050565b6134f881613b29565b82525050565b600061350a8285613199565b91506135168284613199565b91508190509392505050565b600061352d82613486565b91506135398285613199565b9150613544826134a9565b91506135508284613199565b91508190509392505050565b600060208201905061357160008301846130fa565b92915050565b600060808201905061358c60008301876130fa565b61359960208301866130fa565b6135a660408301856134ef565b81810360608301526135b88184613127565b905095945050505050565b60006020820190506135d86000830184613109565b92915050565b60006020820190506135f36000830184613118565b92915050565b600060208201905081810360008301526136138184613160565b905092915050565b60006020820190508181036000830152613634816131ca565b9050919050565b60006020820190508181036000830152613654816131ed565b9050919050565b6000602082019050818103600083015261367481613210565b9050919050565b6000602082019050818103600083015261369481613233565b9050919050565b600060208201905081810360008301526136b481613256565b9050919050565b600060208201905081810360008301526136d481613279565b9050919050565b600060208201905081810360008301526136f48161329c565b9050919050565b60006020820190508181036000830152613714816132bf565b9050919050565b60006020820190508181036000830152613734816132e2565b9050919050565b6000602082019050818103600083015261375481613305565b9050919050565b6000602082019050818103600083015261377481613328565b9050919050565b600060208201905081810360008301526137948161334b565b9050919050565b600060208201905081810360008301526137b48161336e565b9050919050565b600060208201905081810360008301526137d481613391565b9050919050565b600060208201905081810360008301526137f4816133b4565b9050919050565b60006020820190508181036000830152613814816133d7565b9050919050565b60006020820190508181036000830152613834816133fa565b9050919050565b600060208201905081810360008301526138548161341d565b9050919050565b6000602082019050818103600083015261387481613440565b9050919050565b6000602082019050818103600083015261389481613463565b9050919050565b600060208201905081810360008301526138b4816134cc565b9050919050565b60006020820190506138d060008301846134ef565b92915050565b60006138e06138f1565b90506138ec8282613bd1565b919050565b6000604051905090565b600067ffffffffffffffff82111561391657613915613d09565b5b61391f82613d38565b9050602081019050919050565b600067ffffffffffffffff82111561394757613946613d09565b5b61395082613d38565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139ab82613b29565b91506139b683613b29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139eb576139ea613c7c565b5b828201905092915050565b6000613a0182613b29565b9150613a0c83613b29565b925082613a1c57613a1b613cab565b5b828204905092915050565b6000613a3282613b29565b9150613a3d83613b29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a7657613a75613c7c565b5b828202905092915050565b6000613a8c82613b29565b9150613a9783613b29565b925082821015613aaa57613aa9613c7c565b5b828203905092915050565b6000613ac082613b09565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b60578082015181840152602081019050613b45565b83811115613b6f576000848401525b50505050565b6000613b8082613b29565b91506000821415613b9457613b93613c7c565b5b600182039050919050565b60006002820490506001821680613bb757607f821691505b60208210811415613bcb57613bca613cda565b5b50919050565b613bda82613d38565b810181811067ffffffffffffffff82111715613bf957613bf8613d09565b5b80604052505050565b6000613c0d82613b29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c4057613c3f613c7c565b5b600182019050919050565b6000613c5682613b29565b9150613c6183613b29565b925082613c7157613c70613cab565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f6e6c79206d696e746572000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61433b81613ab5565b811461434657600080fd5b50565b61435281613ac7565b811461435d57600080fd5b50565b61436981613ad3565b811461437457600080fd5b50565b61438081613add565b811461438b57600080fd5b50565b61439781613b29565b81146143a257600080fd5b5056fea26469706673582212207596f52b373e6c7fe69a1cce129e6e6634d63e839836fc23f3339d893e42b6ec64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c806355f804b3116100f9578063a22cb46511610097578063d539139311610071578063d539139314610527578063d547741f14610545578063e58378bb14610561578063e985e9c51461057f576101c4565b8063a22cb465146104bf578063b88d4fde146104db578063c87b56dd146104f7576101c4565b806370a08231116100d357806370a082311461042357806391d148541461045357806395d89b4114610483578063a217fddf146104a1576101c4565b806355f804b3146103b95780636352211e146103d55780636c0360eb14610405576101c4565b80632f2ff15d1161016657806340c10f191161014057806340c10f191461033557806342842e0e1461035157806342966c681461036d5780634f6ccce714610389576101c4565b80632f2ff15d146102cd5780632f745c59146102e957806336568abe14610319576101c4565b8063095ea7b3116101a2578063095ea7b31461024757806318160ddd1461026357806323b872dd14610281578063248a9ca31461029d576101c4565b806301ffc9a7146101c957806306fdde03146101f9578063081812fc14610217575b600080fd5b6101e360048036038101906101de919061303e565b6105af565b6040516101f091906135c3565b60405180910390f35b610201610691565b60405161020e91906135f9565b60405180910390f35b610231600480360381019061022c91906130d1565b610723565b60405161023e919061355c565b60405180910390f35b610261600480360381019061025c9190612f9d565b6107a8565b005b61026b6108c0565b60405161027891906138bb565b60405180910390f35b61029b60048036038101906102969190612e97565b6108cd565b005b6102b760048036038101906102b29190612fd9565b61092d565b6040516102c491906135de565b60405180910390f35b6102e760048036038101906102e29190613002565b61094d565b005b61030360048036038101906102fe9190612f9d565b610976565b60405161031091906138bb565b60405180910390f35b610333600480360381019061032e9190613002565b610a1b565b005b61034f600480360381019061034a9190612f9d565b610a9e565b005b61036b60048036038101906103669190612e97565b610b54565b005b610387600480360381019061038291906130d1565b610b74565b005b6103a3600480360381019061039e91906130d1565b610c08565b6040516103b091906138bb565b60405180910390f35b6103d360048036038101906103ce9190613090565b610c9f565b005b6103ef60048036038101906103ea91906130d1565b610d29565b6040516103fc919061355c565b60405180910390f35b61040d610ddb565b60405161041a91906135f9565b60405180910390f35b61043d60048036038101906104389190612e32565b610e69565b60405161044a91906138bb565b60405180910390f35b61046d60048036038101906104689190613002565b610f21565b60405161047a91906135c3565b60405180910390f35b61048b610f8c565b60405161049891906135f9565b60405180910390f35b6104a961101e565b6040516104b691906135de565b60405180910390f35b6104d960048036038101906104d49190612f61565b611025565b005b6104f560048036038101906104f09190612ee6565b61103b565b005b610511600480360381019061050c91906130d1565b61109d565b60405161051e91906135f9565b60405180910390f35b61052f611144565b60405161053c91906135de565b60405180910390f35b61055f600480360381019061055a9190613002565b611168565b005b610569611191565b60405161057691906135de565b60405180910390f35b61059960048036038101906105949190612e5b565b6111b5565b6040516105a691906135c3565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067a57507f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061068a575061068982611249565b5b9050919050565b6060600080546106a090613b9f565b80601f01602080910402602001604051908101604052809291908181526020018280546106cc90613b9f565b80156107195780601f106106ee57610100808354040283529160200191610719565b820191906000526020600020905b8154815290600101906020018083116106fc57829003601f168201915b5050505050905090565b600061072e826112c3565b61076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610764906137fb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b382610d29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610824576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081b9061383b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661084361132f565b73ffffffffffffffffffffffffffffffffffffffff16148061087257506108718161086c61132f565b6111b5565b5b6108b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a89061377b565b60405180910390fd5b6108bb8383611337565b505050565b6000600880549050905090565b6108de6108d861132f565b826113f0565b61091d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109149061385b565b60405180910390fd5b6109288383836114ce565b505050565b6000600a6000838152602001908152602001600020600101549050919050565b6109568261092d565b6109678161096261132f565b611735565b61097183836117d2565b505050565b600061098183610e69565b82106109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b99061367b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a2361132f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a879061389b565b60405180910390fd5b610a9a82826118b3565b5050565b610acf7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610aca61132f565b610f21565b610b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b059061373b565b60405180910390fd5b60005b81811015610b4f57610b23600c611995565b6000610b2f600c6119ab565b9050610b3b84826119b9565b508080610b4790613c02565b915050610b11565b505050565b610b6f8383836040518060200160405280600081525061103b565b505050565b610b85610b7f61132f565b826113f0565b80610bbd5750610bbc7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610bb761132f565b610f21565b5b610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf39061363b565b60405180910390fd5b610c05816119d7565b50565b6000610c126108c0565b8210610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a9061387b565b60405180910390fd5b60088281548110610c8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610cd07fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e610ccb61132f565b610f21565b610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d069061365b565b60405180910390fd5b80600b9080519060200190610d25929190612c41565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc9906137bb565b60405180910390fd5b80915050919050565b600b8054610de890613b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490613b9f565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed19061379b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610f9b90613b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054610fc790613b9f565b80156110145780601f10610fe957610100808354040283529160200191611014565b820191906000526020600020905b815481529060010190602001808311610ff757829003601f168201915b5050505050905090565b6000801b81565b61103761103061132f565b8383611af4565b5050565b61104c61104661132f565b836113f0565b61108b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110829061385b565b60405180910390fd5b61109784848484611c61565b50505050565b60606110a8826112c3565b6110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de9061381b565b60405180910390fd5b60006110f1611cbd565b90506000815111611111576040518060200160405280600081525061113c565b8061111b84611d4f565b60405160200161112c9291906134fe565b6040516020818303038152906040525b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6111718261092d565b6111828161117d61132f565b611735565b61118c83836118b3565b505050565b7fb19546dff01e856fb3f010c267a7b1c60363cf8a4664e21cc89c26224620214e81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112bc57506112bb82611efc565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113aa83610d29565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113fb826112c3565b61143a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114319061375b565b60405180910390fd5b600061144583610d29565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114b457508373ffffffffffffffffffffffffffffffffffffffff1661149c84610723565b73ffffffffffffffffffffffffffffffffffffffff16145b806114c557506114c481856111b5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114ee82610d29565b73ffffffffffffffffffffffffffffffffffffffff1614611544576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153b906136bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ab906136fb565b60405180910390fd5b6115bf838383611f76565b6115ca600082611337565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161a9190613a81565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461167191906139a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461173083838361208a565b505050565b61173f8282610f21565b6117ce576117648173ffffffffffffffffffffffffffffffffffffffff16601461208f565b6117728360001c602061208f565b604051602001611783929190613522565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c591906135f9565b60405180910390fd5b5050565b6117dc8282610f21565b6118af576001600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061185461132f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6118bd8282610f21565b15611991576000600a600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193661132f565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6119d3828260405180602001604052806000815250612389565b5050565b60006119e282610d29565b90506119f081600084611f76565b6119fb600083611337565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a4b9190613a81565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af08160008461208a565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5a9061371b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c5491906135c3565b60405180910390a3505050565b611c6c8484846114ce565b611c78848484846123e4565b611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae9061369b565b60405180910390fd5b50505050565b6060600b8054611ccc90613b9f565b80601f0160208091040260200160405190810160405280929190818152602001828054611cf890613b9f565b8015611d455780601f10611d1a57610100808354040283529160200191611d45565b820191906000526020600020905b815481529060010190602001808311611d2857829003601f168201915b5050505050905090565b60606000821415611d97576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ef7565b600082905060005b60008214611dc9578080611db290613c02565b915050600a82611dc291906139f6565b9150611d9f565b60008167ffffffffffffffff811115611e0b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e3d5781602001600182028036833780820191505090505b5090505b60008514611ef057600182611e569190613a81565b9150600a85611e659190613c4b565b6030611e7191906139a0565b60f81b818381518110611ead577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ee991906139f6565b9450611e41565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f6f5750611f6e8261257b565b5b9050919050565b611f8183838361265d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fc457611fbf81612662565b612003565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146120025761200183826126ab565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120465761204181612818565b612085565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461208457612083828261295b565b5b5b505050565b505050565b6060600060028360026120a29190613a27565b6120ac91906139a0565b67ffffffffffffffff8111156120eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561211d5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061217b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612205577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026122459190613a27565b61224f91906139a0565b90505b600181111561233b577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106122b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106122f4577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061233490613b75565b9050612252565b506000841461237f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123769061361b565b60405180910390fd5b8091505092915050565b61239383836129da565b6123a060008484846123e4565b6123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d69061369b565b60405180910390fd5b505050565b60006124058473ffffffffffffffffffffffffffffffffffffffff16612bb4565b1561256e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261242e61132f565b8786866040518563ffffffff1660e01b81526004016124509493929190613577565b602060405180830381600087803b15801561246a57600080fd5b505af192505050801561249b57506040513d601f19601f820116820180604052508101906124989190613067565b60015b61251e573d80600081146124cb576040519150601f19603f3d011682016040523d82523d6000602084013e6124d0565b606091505b50600081511415612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d9061369b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612573565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061264657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612656575061265582612bd7565b5b9050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016126b884610e69565b6126c29190613a81565b90506000600760008481526020019081526020016000205490508181146127a7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061282c9190613a81565b9050600060096000848152602001908152602001600020549050600060088381548110612882577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106128ca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061293f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061296683610e69565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a41906137db565b60405180910390fd5b612a53816112c3565b15612a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8a906136db565b60405180910390fd5b612a9f60008383611f76565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aef91906139a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612bb06000838361208a565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b828054612c4d90613b9f565b90600052602060002090601f016020900481019282612c6f5760008555612cb6565b82601f10612c8857805160ff1916838001178555612cb6565b82800160010185558215612cb6579182015b82811115612cb5578251825591602001919060010190612c9a565b5b509050612cc39190612cc7565b5090565b5b80821115612ce0576000816000905550600101612cc8565b5090565b6000612cf7612cf2846138fb565b6138d6565b905082815260208101848484011115612d0f57600080fd5b612d1a848285613b33565b509392505050565b6000612d35612d308461392c565b6138d6565b905082815260208101848484011115612d4d57600080fd5b612d58848285613b33565b509392505050565b600081359050612d6f81614332565b92915050565b600081359050612d8481614349565b92915050565b600081359050612d9981614360565b92915050565b600081359050612dae81614377565b92915050565b600081519050612dc381614377565b92915050565b600082601f830112612dda57600080fd5b8135612dea848260208601612ce4565b91505092915050565b600082601f830112612e0457600080fd5b8135612e14848260208601612d22565b91505092915050565b600081359050612e2c8161438e565b92915050565b600060208284031215612e4457600080fd5b6000612e5284828501612d60565b91505092915050565b60008060408385031215612e6e57600080fd5b6000612e7c85828601612d60565b9250506020612e8d85828601612d60565b9150509250929050565b600080600060608486031215612eac57600080fd5b6000612eba86828701612d60565b9350506020612ecb86828701612d60565b9250506040612edc86828701612e1d565b9150509250925092565b60008060008060808587031215612efc57600080fd5b6000612f0a87828801612d60565b9450506020612f1b87828801612d60565b9350506040612f2c87828801612e1d565b925050606085013567ffffffffffffffff811115612f4957600080fd5b612f5587828801612dc9565b91505092959194509250565b60008060408385031215612f7457600080fd5b6000612f8285828601612d60565b9250506020612f9385828601612d75565b9150509250929050565b60008060408385031215612fb057600080fd5b6000612fbe85828601612d60565b9250506020612fcf85828601612e1d565b9150509250929050565b600060208284031215612feb57600080fd5b6000612ff984828501612d8a565b91505092915050565b6000806040838503121561301557600080fd5b600061302385828601612d8a565b925050602061303485828601612d60565b9150509250929050565b60006020828403121561305057600080fd5b600061305e84828501612d9f565b91505092915050565b60006020828403121561307957600080fd5b600061308784828501612db4565b91505092915050565b6000602082840312156130a257600080fd5b600082013567ffffffffffffffff8111156130bc57600080fd5b6130c884828501612df3565b91505092915050565b6000602082840312156130e357600080fd5b60006130f184828501612e1d565b91505092915050565b61310381613ab5565b82525050565b61311281613ac7565b82525050565b61312181613ad3565b82525050565b60006131328261395d565b61313c8185613973565b935061314c818560208601613b42565b61315581613d38565b840191505092915050565b600061316b82613968565b6131758185613984565b9350613185818560208601613b42565b61318e81613d38565b840191505092915050565b60006131a482613968565b6131ae8185613995565b93506131be818560208601613b42565b80840191505092915050565b60006131d7602083613984565b91506131e282613d49565b602082019050919050565b60006131fa602d83613984565b915061320582613d72565b604082019050919050565b600061321d600a83613984565b915061322882613dc1565b602082019050919050565b6000613240602b83613984565b915061324b82613dea565b604082019050919050565b6000613263603283613984565b915061326e82613e39565b604082019050919050565b6000613286602583613984565b915061329182613e88565b604082019050919050565b60006132a9601c83613984565b91506132b482613ed7565b602082019050919050565b60006132cc602483613984565b91506132d782613f00565b604082019050919050565b60006132ef601983613984565b91506132fa82613f4f565b602082019050919050565b6000613312600b83613984565b915061331d82613f78565b602082019050919050565b6000613335602c83613984565b915061334082613fa1565b604082019050919050565b6000613358603883613984565b915061336382613ff0565b604082019050919050565b600061337b602a83613984565b91506133868261403f565b604082019050919050565b600061339e602983613984565b91506133a98261408e565b604082019050919050565b60006133c1602083613984565b91506133cc826140dd565b602082019050919050565b60006133e4602c83613984565b91506133ef82614106565b604082019050919050565b6000613407602f83613984565b915061341282614155565b604082019050919050565b600061342a602183613984565b9150613435826141a4565b604082019050919050565b600061344d603183613984565b9150613458826141f3565b604082019050919050565b6000613470602c83613984565b915061347b82614242565b604082019050919050565b6000613493601783613995565b915061349e82614291565b601782019050919050565b60006134b6601183613995565b91506134c1826142ba565b601182019050919050565b60006134d9602f83613984565b91506134e4826142e3565b604082019050919050565b6134f881613b29565b82525050565b600061350a8285613199565b91506135168284613199565b91508190509392505050565b600061352d82613486565b91506135398285613199565b9150613544826134a9565b91506135508284613199565b91508190509392505050565b600060208201905061357160008301846130fa565b92915050565b600060808201905061358c60008301876130fa565b61359960208301866130fa565b6135a660408301856134ef565b81810360608301526135b88184613127565b905095945050505050565b60006020820190506135d86000830184613109565b92915050565b60006020820190506135f36000830184613118565b92915050565b600060208201905081810360008301526136138184613160565b905092915050565b60006020820190508181036000830152613634816131ca565b9050919050565b60006020820190508181036000830152613654816131ed565b9050919050565b6000602082019050818103600083015261367481613210565b9050919050565b6000602082019050818103600083015261369481613233565b9050919050565b600060208201905081810360008301526136b481613256565b9050919050565b600060208201905081810360008301526136d481613279565b9050919050565b600060208201905081810360008301526136f48161329c565b9050919050565b60006020820190508181036000830152613714816132bf565b9050919050565b60006020820190508181036000830152613734816132e2565b9050919050565b6000602082019050818103600083015261375481613305565b9050919050565b6000602082019050818103600083015261377481613328565b9050919050565b600060208201905081810360008301526137948161334b565b9050919050565b600060208201905081810360008301526137b48161336e565b9050919050565b600060208201905081810360008301526137d481613391565b9050919050565b600060208201905081810360008301526137f4816133b4565b9050919050565b60006020820190508181036000830152613814816133d7565b9050919050565b60006020820190508181036000830152613834816133fa565b9050919050565b600060208201905081810360008301526138548161341d565b9050919050565b6000602082019050818103600083015261387481613440565b9050919050565b6000602082019050818103600083015261389481613463565b9050919050565b600060208201905081810360008301526138b4816134cc565b9050919050565b60006020820190506138d060008301846134ef565b92915050565b60006138e06138f1565b90506138ec8282613bd1565b919050565b6000604051905090565b600067ffffffffffffffff82111561391657613915613d09565b5b61391f82613d38565b9050602081019050919050565b600067ffffffffffffffff82111561394757613946613d09565b5b61395082613d38565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139ab82613b29565b91506139b683613b29565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139eb576139ea613c7c565b5b828201905092915050565b6000613a0182613b29565b9150613a0c83613b29565b925082613a1c57613a1b613cab565b5b828204905092915050565b6000613a3282613b29565b9150613a3d83613b29565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a7657613a75613c7c565b5b828202905092915050565b6000613a8c82613b29565b9150613a9783613b29565b925082821015613aaa57613aa9613c7c565b5b828203905092915050565b6000613ac082613b09565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b60578082015181840152602081019050613b45565b83811115613b6f576000848401525b50505050565b6000613b8082613b29565b91506000821415613b9457613b93613c7c565b5b600182039050919050565b60006002820490506001821680613bb757607f821691505b60208210811415613bcb57613bca613cda565b5b50919050565b613bda82613d38565b810181811067ffffffffffffffff82111715613bf957613bf8613d09565b5b80604052505050565b6000613c0d82613b29565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c4057613c3f613c7c565b5b600182019050919050565b6000613c5682613b29565b9150613c6183613b29565b925082613c7157613c70613cab565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b7f4f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4f6e6c79206d696e746572000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61433b81613ab5565b811461434657600080fd5b50565b61435281613ac7565b811461435d57600080fd5b50565b61436981613ad3565b811461437457600080fd5b50565b61438081613add565b811461438b57600080fd5b50565b61439781613b29565b81146143a257600080fd5b5056fea26469706673582212207596f52b373e6c7fe69a1cce129e6e6634d63e839836fc23f3339d893e42b6ec64736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.