ERC-721
Overview
Max Total Supply
0 IGT
Holders
10
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 IGTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
IntergalacticToken
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./IUriProvider.sol"; contract IntergalacticToken is ERC721, AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); mapping(uint256 => address) private uriProviders; address public defaultUriProvider; address private feeRecipient; bytes constant METADATA_START = "data:application/json;charset=UTF-8,%7B%22name%22%3A%20%22Intergalactic%20Tokens%22%2C%20%22description%22%3A%20%22A%20collection%20of%20dynamically%20generated%20intergalactic%20token%20logos%20that%20cruise%20space%20based%20on%20their%20price%20fluctuations.%22%2C%20%22seller_fee_basis_points%22%3A%20250%2C%20%22fee_recipient%22%3A%20%22"; bytes constant METADATA_END = "%22%7D"; constructor(address _defaultUriProvider) ERC721("Intergalactic Tokens", "IGT") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(MINTER_ROLE, msg.sender); feeRecipient = msg.sender; defaultUriProvider = _defaultUriProvider; } function safeMint(address to, uint256 tokenId, address uriProvider) public onlyRole(MINTER_ROLE) { if (uriProvider != defaultUriProvider) { uriProviders[tokenId] = uriProvider; } _safeMint(to, tokenId); } function safeMintWithData(address to, uint256 tokenId, address uriProvider, string memory data) external onlyRole(MINTER_ROLE) { IUriProvider(uriProvider).writeLogo(tokenId, data); safeMint(to, tokenId, uriProvider); } function contractURI() public view returns (string memory) { return string(abi.encodePacked( METADATA_START, Strings.toHexString(uint160(feeRecipient), 20), METADATA_END )); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); address provider = uriProviders[tokenId]; if (provider == address(0)) provider = defaultUriProvider; return IUriProvider(provider).tokenURI(tokenId); } function setUriProvider(uint256 tokenId, address uriProvider) external onlyRole(DEFAULT_ADMIN_ROLE) { uriProviders[tokenId] = uriProvider; } function setDefaultUriProvider(address uriProvider) external onlyRole(DEFAULT_ADMIN_ROLE) { defaultUriProvider = uriProvider; } function setFeeRecipient(address recipient) external onlyRole(DEFAULT_ADMIN_ROLE) { feeRecipient = recipient; } function supportsInterface(bytes4 interfaceId) public view override(ERC721, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT 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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} }
// SPDX-License-Identifier: MIT 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 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 { 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 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 granted `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}. * ==== */ 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); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT 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); } }
interface IUriProvider { function tokenURI(uint256 tokenId) external view returns (string memory); function writeLogo(uint256 tokenId, string memory data) external returns (address logo); }
// SPDX-License-Identifier: MIT 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 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 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 pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 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 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 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 pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_defaultUriProvider","type":"address"}],"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":[{"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":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultUriProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"uriProvider","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"uriProvider","type":"address"},{"internalType":"string","name":"data","type":"string"}],"name":"safeMintWithData","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":"address","name":"uriProvider","type":"address"}],"name":"setDefaultUriProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"setFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"uriProvider","type":"address"}],"name":"setUriProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162003ec138038062003ec183398181016040528101906200003791906200043c565b6040518060400160405280601481526020017f496e74657267616c616374696320546f6b656e730000000000000000000000008152506040518060400160405280600381526020017f49475400000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb92919062000322565b508060019080519060200190620000d492919062000322565b505050620000ec6000801b33620001a760201b60201c565b6200011e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a633620001a760201b60201c565b33600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620004d3565b620001b98282620001bd60201b60201c565b5050565b620001cf8282620002af60201b60201c565b620002ab5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002506200031a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b82805462000330906200049d565b90600052602060002090601f016020900481019282620003545760008555620003a0565b82601f106200036f57805160ff1916838001178555620003a0565b82800160010185558215620003a0579182015b828111156200039f57825182559160200191906001019062000382565b5b509050620003af9190620003b3565b5090565b5b80821115620003ce576000816000905550600101620003b4565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200040482620003d7565b9050919050565b6200041681620003f7565b81146200042257600080fd5b50565b60008151905062000436816200040b565b92915050565b600060208284031215620004555762000454620003d2565b5b6000620004658482850162000425565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b657607f821691505b60208210811415620004cd57620004cc6200046e565b5b50919050565b6139de80620004e36000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806391d14854116100f9578063d539139311610097578063e74b981b11610071578063e74b981b146104c6578063e8a3d485146104e2578063e985e9c514610500578063f3b9438a14610530576101a9565b8063d539139314610470578063d547741f1461048e578063d8fad6d3146104aa576101a9565b8063a22cb465116100d3578063a22cb465146103ec578063b88d4fde14610408578063befeafee14610424578063c87b56dd14610440576101a9565b806391d148541461038057806395d89b41146103b0578063a217fddf146103ce576101a9565b806323b872dd1161016657806336568abe1161014057806336568abe146102e857806342842e0e146103045780636352211e1461032057806370a0823114610350576101a9565b806323b872dd14610280578063248a9ca31461029c5780632f2ff15d146102cc576101a9565b806301ffc9a7146101ae57806306341669146101de57806306fdde03146101fa578063081812fc14610218578063095ea7b31461024857806320e469d614610264575b600080fd5b6101c860048036038101906101c39190612299565b61054e565b6040516101d591906122e1565b60405180910390f35b6101f860048036038101906101f3919061235a565b610560565b005b6102026105ba565b60405161020f9190612420565b60405180910390f35b610232600480360381019061022d9190612478565b61064c565b60405161023f91906124b4565b60405180910390f35b610262600480360381019061025d91906124cf565b6106d1565b005b61027e6004803603810190610279919061250f565b6107e9565b005b61029a60048036038101906102959190612562565b6108d3565b005b6102b660048036038101906102b191906125eb565b610933565b6040516102c39190612627565b60405180910390f35b6102e660048036038101906102e19190612642565b610953565b005b61030260048036038101906102fd9190612642565b61097c565b005b61031e60048036038101906103199190612562565b6109ff565b005b61033a60048036038101906103359190612478565b610a1f565b60405161034791906124b4565b60405180910390f35b61036a6004803603810190610365919061235a565b610ad1565b6040516103779190612691565b60405180910390f35b61039a60048036038101906103959190612642565b610b89565b6040516103a791906122e1565b60405180910390f35b6103b8610bf4565b6040516103c59190612420565b60405180910390f35b6103d6610c86565b6040516103e39190612627565b60405180910390f35b610406600480360381019061040191906126d8565b610c8d565b005b610422600480360381019061041d919061284d565b610e0e565b005b61043e600480360381019061043991906128d0565b610e70565b005b61045a60048036038101906104559190612478565b610edc565b6040516104679190612420565b60405180910390f35b610478611040565b6040516104859190612627565b60405180910390f35b6104a860048036038101906104a39190612642565b611064565b005b6104c460048036038101906104bf91906129b1565b61108d565b005b6104e060048036038101906104db919061235a565b611150565b005b6104ea6111aa565b6040516104f79190612420565b60405180910390f35b61051a60048036038101906105159190612a34565b611267565b60405161052791906122e1565b60405180910390f35b6105386112fb565b60405161054591906124b4565b60405180910390f35b600061055982611321565b9050919050565b6000801b6105758161057061139b565b6113a3565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6060600080546105c990612aa3565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590612aa3565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b600061065782611440565b610696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068d90612b47565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106dc82610a1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490612bd9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661076c61139b565b73ffffffffffffffffffffffffffffffffffffffff16148061079b575061079a8161079561139b565b611267565b5b6107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d190612c6b565b60405180910390fd5b6107e483836114ac565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081b8161081661139b565b6113a3565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146108c357816007600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6108cd8484611565565b50505050565b6108e46108de61139b565b82611583565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90612cfd565b60405180910390fd5b61092e838383611661565b505050565b600060066000838152602001908152602001600020600101549050919050565b61095c82610933565b61096d8161096861139b565b6113a3565b61097783836118bd565b505050565b61098461139b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890612d8f565b60405180910390fd5b6109fb828261199e565b5050565b610a1a83838360405180602001604052806000815250610e0e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90612e21565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612eb3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610c0390612aa3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2f90612aa3565b8015610c7c5780601f10610c5157610100808354040283529160200191610c7c565b820191906000526020600020905b815481529060010190602001808311610c5f57829003601f168201915b5050505050905090565b6000801b81565b610c9561139b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90612f1f565b60405180910390fd5b8060056000610d1061139b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dbd61139b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e0291906122e1565b60405180910390a35050565b610e1f610e1961139b565b83611583565b610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590612cfd565b60405180910390fd5b610e6a84848484611a80565b50505050565b6000801b610e8581610e8061139b565b6113a3565b816007600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6060610ee782611440565b610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90612fb1565b60405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb957600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b8073ffffffffffffffffffffffffffffffffffffffff1663c87b56dd846040518263ffffffff1660e01b8152600401610ff29190612691565b600060405180830381865afa15801561100f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906110389190613041565b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61106d82610933565b61107e8161107961139b565b6113a3565b611088838361199e565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66110bf816110ba61139b565b6113a3565b8273ffffffffffffffffffffffffffffffffffffffff166351d3bc7085846040518363ffffffff1660e01b81526004016110fa92919061308a565b6020604051808303816000875af1158015611119573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113d91906130cf565b506111498585856107e9565b5050505050565b6000801b6111658161116061139b565b6113a3565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606040518061018001604052806101568152602001613853610156913961120b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166014611adc565b6040518060400160405280600681526020017f25323225374400000000000000000000000000000000000000000000000000008152506040516020016112539392919061317f565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611394575061139382611d18565b5b9050919050565b600033905090565b6113ad8282610b89565b61143c576113d28173ffffffffffffffffffffffffffffffffffffffff166014611adc565b6113e08360001c6020611adc565b6040516020016113f1929190613248565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114339190612420565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661151f83610a1f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61157f828260405180602001604052806000815250611dfa565b5050565b600061158e82611440565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906132f4565b60405180910390fd5b60006115d883610a1f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061164757508373ffffffffffffffffffffffffffffffffffffffff1661162f8461064c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061165857506116578185611267565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168182610a1f565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613386565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90613418565b60405180910390fd5b611752838383611e55565b61175d6000826114ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ad9190613467565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611804919061349b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6118c78282610b89565b61199a5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193f61139b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119a88282610b89565b15611a7c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a2161139b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611a8b848484611661565b611a9784848484611e5a565b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd90613563565b60405180910390fd5b50505050565b606060006002836002611aef9190613583565b611af9919061349b565b67ffffffffffffffff811115611b1257611b11612722565b5b6040519080825280601f01601f191660200182016040528015611b445781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b7c57611b7b6135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611be057611bdf6135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c209190613583565b611c2a919061349b565b90505b6001811115611cca577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611c6c57611c6b6135dd565b5b1a60f81b828281518110611c8357611c826135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611cc39061360c565b9050611c2d565b5060008414611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590613682565b60405180910390fd5b8091505092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611de357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611df35750611df282611fe2565b5b9050919050565b611e04838361204c565b611e116000848484611e5a565b611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790613563565b60405180910390fd5b505050565b505050565b6000611e7b8473ffffffffffffffffffffffffffffffffffffffff1661221a565b15611fd5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea461139b565b8786866040518563ffffffff1660e01b8152600401611ec694939291906136ec565b6020604051808303816000875af1925050508015611f0257506040513d601f19601f82011682018060405250810190611eff919061374d565b60015b611f85573d8060008114611f32576040519150601f19603f3d011682016040523d82523d6000602084013e611f37565b606091505b50600081511415611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613563565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fda565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b3906137c6565b60405180910390fd5b6120c581611440565b15612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90613832565b60405180910390fd5b61211160008383611e55565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612161919061349b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61227681612241565b811461228157600080fd5b50565b6000813590506122938161226d565b92915050565b6000602082840312156122af576122ae612237565b5b60006122bd84828501612284565b91505092915050565b60008115159050919050565b6122db816122c6565b82525050565b60006020820190506122f660008301846122d2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612327826122fc565b9050919050565b6123378161231c565b811461234257600080fd5b50565b6000813590506123548161232e565b92915050565b6000602082840312156123705761236f612237565b5b600061237e84828501612345565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123c15780820151818401526020810190506123a6565b838111156123d0576000848401525b50505050565b6000601f19601f8301169050919050565b60006123f282612387565b6123fc8185612392565b935061240c8185602086016123a3565b612415816123d6565b840191505092915050565b6000602082019050818103600083015261243a81846123e7565b905092915050565b6000819050919050565b61245581612442565b811461246057600080fd5b50565b6000813590506124728161244c565b92915050565b60006020828403121561248e5761248d612237565b5b600061249c84828501612463565b91505092915050565b6124ae8161231c565b82525050565b60006020820190506124c960008301846124a5565b92915050565b600080604083850312156124e6576124e5612237565b5b60006124f485828601612345565b925050602061250585828601612463565b9150509250929050565b60008060006060848603121561252857612527612237565b5b600061253686828701612345565b935050602061254786828701612463565b925050604061255886828701612345565b9150509250925092565b60008060006060848603121561257b5761257a612237565b5b600061258986828701612345565b935050602061259a86828701612345565b92505060406125ab86828701612463565b9150509250925092565b6000819050919050565b6125c8816125b5565b81146125d357600080fd5b50565b6000813590506125e5816125bf565b92915050565b60006020828403121561260157612600612237565b5b600061260f848285016125d6565b91505092915050565b612621816125b5565b82525050565b600060208201905061263c6000830184612618565b92915050565b6000806040838503121561265957612658612237565b5b6000612667858286016125d6565b925050602061267885828601612345565b9150509250929050565b61268b81612442565b82525050565b60006020820190506126a66000830184612682565b92915050565b6126b5816122c6565b81146126c057600080fd5b50565b6000813590506126d2816126ac565b92915050565b600080604083850312156126ef576126ee612237565b5b60006126fd85828601612345565b925050602061270e858286016126c3565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61275a826123d6565b810181811067ffffffffffffffff8211171561277957612778612722565b5b80604052505050565b600061278c61222d565b90506127988282612751565b919050565b600067ffffffffffffffff8211156127b8576127b7612722565b5b6127c1826123d6565b9050602081019050919050565b82818337600083830152505050565b60006127f06127eb8461279d565b612782565b90508281526020810184848401111561280c5761280b61271d565b5b6128178482856127ce565b509392505050565b600082601f83011261283457612833612718565b5b81356128448482602086016127dd565b91505092915050565b6000806000806080858703121561286757612866612237565b5b600061287587828801612345565b945050602061288687828801612345565b935050604061289787828801612463565b925050606085013567ffffffffffffffff8111156128b8576128b761223c565b5b6128c48782880161281f565b91505092959194509250565b600080604083850312156128e7576128e6612237565b5b60006128f585828601612463565b925050602061290685828601612345565b9150509250929050565b600067ffffffffffffffff82111561292b5761292a612722565b5b612934826123d6565b9050602081019050919050565b600061295461294f84612910565b612782565b9050828152602081018484840111156129705761296f61271d565b5b61297b8482856127ce565b509392505050565b600082601f83011261299857612997612718565b5b81356129a8848260208601612941565b91505092915050565b600080600080608085870312156129cb576129ca612237565b5b60006129d987828801612345565b94505060206129ea87828801612463565b93505060406129fb87828801612345565b925050606085013567ffffffffffffffff811115612a1c57612a1b61223c565b5b612a2887828801612983565b91505092959194509250565b60008060408385031215612a4b57612a4a612237565b5b6000612a5985828601612345565b9250506020612a6a85828601612345565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612abb57607f821691505b60208210811415612acf57612ace612a74565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b31602c83612392565b9150612b3c82612ad5565b604082019050919050565b60006020820190508181036000830152612b6081612b24565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bc3602183612392565b9150612bce82612b67565b604082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612c55603883612392565b9150612c6082612bf9565b604082019050919050565b60006020820190508181036000830152612c8481612c48565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612ce7603183612392565b9150612cf282612c8b565b604082019050919050565b60006020820190508181036000830152612d1681612cda565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612d79602f83612392565b9150612d8482612d1d565b604082019050919050565b60006020820190508181036000830152612da881612d6c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612e0b602983612392565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612e9d602a83612392565b9150612ea882612e41565b604082019050919050565b60006020820190508181036000830152612ecc81612e90565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612f09601983612392565b9150612f1482612ed3565b602082019050919050565b60006020820190508181036000830152612f3881612efc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f9b602f83612392565b9150612fa682612f3f565b604082019050919050565b60006020820190508181036000830152612fca81612f8e565b9050919050565b6000612fe4612fdf84612910565b612782565b90508281526020810184848401111561300057612fff61271d565b5b61300b8482856123a3565b509392505050565b600082601f83011261302857613027612718565b5b8151613038848260208601612fd1565b91505092915050565b60006020828403121561305757613056612237565b5b600082015167ffffffffffffffff8111156130755761307461223c565b5b61308184828501613013565b91505092915050565b600060408201905061309f6000830185612682565b81810360208301526130b181846123e7565b90509392505050565b6000815190506130c98161232e565b92915050565b6000602082840312156130e5576130e4612237565b5b60006130f3848285016130ba565b91505092915050565b600081519050919050565b600081905092915050565b600061311d826130fc565b6131278185613107565b93506131378185602086016123a3565b80840191505092915050565b600081905092915050565b600061315982612387565b6131638185613143565b93506131738185602086016123a3565b80840191505092915050565b600061318b8286613112565b9150613197828561314e565b91506131a38284613112565b9150819050949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006131e6601783613143565b91506131f1826131b0565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613232601183613143565b915061323d826131fc565b601182019050919050565b6000613253826131d9565b915061325f828561314e565b915061326a82613225565b9150613276828461314e565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006132de602c83612392565b91506132e982613282565b604082019050919050565b6000602082019050818103600083015261330d816132d1565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613370602983612392565b915061337b82613314565b604082019050919050565b6000602082019050818103600083015261339f81613363565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613402602483612392565b915061340d826133a6565b604082019050919050565b60006020820190508181036000830152613431816133f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347282612442565b915061347d83612442565b9250828210156134905761348f613438565b5b828203905092915050565b60006134a682612442565b91506134b183612442565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134e6576134e5613438565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061354d603283612392565b9150613558826134f1565b604082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b600061358e82612442565b915061359983612442565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d2576135d1613438565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061361782612442565b9150600082141561362b5761362a613438565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061366c602083612392565b915061367782613636565b602082019050919050565b6000602082019050818103600083015261369b8161365f565b9050919050565b600082825260208201905092915050565b60006136be826130fc565b6136c881856136a2565b93506136d88185602086016123a3565b6136e1816123d6565b840191505092915050565b600060808201905061370160008301876124a5565b61370e60208301866124a5565b61371b6040830185612682565b818103606083015261372d81846136b3565b905095945050505050565b6000815190506137478161226d565b92915050565b60006020828403121561376357613762612237565b5b600061377184828501613738565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006137b0602083612392565b91506137bb8261377a565b602082019050919050565b600060208201905081810360008301526137df816137a3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061381c601c83612392565b9150613827826137e6565b602082019050919050565b6000602082019050818103600083015261384b8161380f565b905091905056fe646174613a6170706c69636174696f6e2f6a736f6e3b636861727365743d5554462d382c2537422532326e616d65253232253341253230253232496e74657267616c6163746963253230546f6b656e732532322532432532302532326465736372697074696f6e25323225334125323025323241253230636f6c6c656374696f6e2532306f6625323064796e616d6963616c6c7925323067656e657261746564253230696e74657267616c6163746963253230746f6b656e2532306c6f676f7325323074686174253230637275697365253230737061636525323062617365642532306f6e25323074686569722532307072696365253230666c756374756174696f6e732e25323225324325323025323273656c6c65725f6665655f62617369735f706f696e74732532322533412532303235302532432532302532326665655f726563697069656e74253232253341253230253232a264697066735822122086e9f0b72bb85d4f3711c91c8f2cbbde0b98ded7f9c3d0003a7f9a296521bdcb64736f6c634300080a0033000000000000000000000000dcf1751ed8a39b2d08e07a921bb2198bd3cd9f60
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806391d14854116100f9578063d539139311610097578063e74b981b11610071578063e74b981b146104c6578063e8a3d485146104e2578063e985e9c514610500578063f3b9438a14610530576101a9565b8063d539139314610470578063d547741f1461048e578063d8fad6d3146104aa576101a9565b8063a22cb465116100d3578063a22cb465146103ec578063b88d4fde14610408578063befeafee14610424578063c87b56dd14610440576101a9565b806391d148541461038057806395d89b41146103b0578063a217fddf146103ce576101a9565b806323b872dd1161016657806336568abe1161014057806336568abe146102e857806342842e0e146103045780636352211e1461032057806370a0823114610350576101a9565b806323b872dd14610280578063248a9ca31461029c5780632f2ff15d146102cc576101a9565b806301ffc9a7146101ae57806306341669146101de57806306fdde03146101fa578063081812fc14610218578063095ea7b31461024857806320e469d614610264575b600080fd5b6101c860048036038101906101c39190612299565b61054e565b6040516101d591906122e1565b60405180910390f35b6101f860048036038101906101f3919061235a565b610560565b005b6102026105ba565b60405161020f9190612420565b60405180910390f35b610232600480360381019061022d9190612478565b61064c565b60405161023f91906124b4565b60405180910390f35b610262600480360381019061025d91906124cf565b6106d1565b005b61027e6004803603810190610279919061250f565b6107e9565b005b61029a60048036038101906102959190612562565b6108d3565b005b6102b660048036038101906102b191906125eb565b610933565b6040516102c39190612627565b60405180910390f35b6102e660048036038101906102e19190612642565b610953565b005b61030260048036038101906102fd9190612642565b61097c565b005b61031e60048036038101906103199190612562565b6109ff565b005b61033a60048036038101906103359190612478565b610a1f565b60405161034791906124b4565b60405180910390f35b61036a6004803603810190610365919061235a565b610ad1565b6040516103779190612691565b60405180910390f35b61039a60048036038101906103959190612642565b610b89565b6040516103a791906122e1565b60405180910390f35b6103b8610bf4565b6040516103c59190612420565b60405180910390f35b6103d6610c86565b6040516103e39190612627565b60405180910390f35b610406600480360381019061040191906126d8565b610c8d565b005b610422600480360381019061041d919061284d565b610e0e565b005b61043e600480360381019061043991906128d0565b610e70565b005b61045a60048036038101906104559190612478565b610edc565b6040516104679190612420565b60405180910390f35b610478611040565b6040516104859190612627565b60405180910390f35b6104a860048036038101906104a39190612642565b611064565b005b6104c460048036038101906104bf91906129b1565b61108d565b005b6104e060048036038101906104db919061235a565b611150565b005b6104ea6111aa565b6040516104f79190612420565b60405180910390f35b61051a60048036038101906105159190612a34565b611267565b60405161052791906122e1565b60405180910390f35b6105386112fb565b60405161054591906124b4565b60405180910390f35b600061055982611321565b9050919050565b6000801b6105758161057061139b565b6113a3565b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6060600080546105c990612aa3565b80601f01602080910402602001604051908101604052809291908181526020018280546105f590612aa3565b80156106425780601f1061061757610100808354040283529160200191610642565b820191906000526020600020905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b600061065782611440565b610696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068d90612b47565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106dc82610a1f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561074d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074490612bd9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661076c61139b565b73ffffffffffffffffffffffffffffffffffffffff16148061079b575061079a8161079561139b565b611267565b5b6107da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d190612c6b565b60405180910390fd5b6107e483836114ac565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081b8161081661139b565b6113a3565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146108c357816007600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505b6108cd8484611565565b50505050565b6108e46108de61139b565b82611583565b610923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091a90612cfd565b60405180910390fd5b61092e838383611661565b505050565b600060066000838152602001908152602001600020600101549050919050565b61095c82610933565b61096d8161096861139b565b6113a3565b61097783836118bd565b505050565b61098461139b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e890612d8f565b60405180910390fd5b6109fb828261199e565b5050565b610a1a83838360405180602001604052806000815250610e0e565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf90612e21565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3990612eb3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610c0390612aa3565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2f90612aa3565b8015610c7c5780601f10610c5157610100808354040283529160200191610c7c565b820191906000526020600020905b815481529060010190602001808311610c5f57829003601f168201915b5050505050905090565b6000801b81565b610c9561139b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfa90612f1f565b60405180910390fd5b8060056000610d1061139b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610dbd61139b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610e0291906122e1565b60405180910390a35050565b610e1f610e1961139b565b83611583565b610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590612cfd565b60405180910390fd5b610e6a84848484611a80565b50505050565b6000801b610e8581610e8061139b565b6113a3565b816007600085815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6060610ee782611440565b610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90612fb1565b60405180910390fd5b60006007600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb957600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505b8073ffffffffffffffffffffffffffffffffffffffff1663c87b56dd846040518263ffffffff1660e01b8152600401610ff29190612691565b600060405180830381865afa15801561100f573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906110389190613041565b915050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61106d82610933565b61107e8161107961139b565b6113a3565b611088838361199e565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66110bf816110ba61139b565b6113a3565b8273ffffffffffffffffffffffffffffffffffffffff166351d3bc7085846040518363ffffffff1660e01b81526004016110fa92919061308a565b6020604051808303816000875af1158015611119573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113d91906130cf565b506111498585856107e9565b5050505050565b6000801b6111658161116061139b565b6113a3565b81600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b60606040518061018001604052806101568152602001613853610156913961120b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166014611adc565b6040518060400160405280600681526020017f25323225374400000000000000000000000000000000000000000000000000008152506040516020016112539392919061317f565b604051602081830303815290604052905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611394575061139382611d18565b5b9050919050565b600033905090565b6113ad8282610b89565b61143c576113d28173ffffffffffffffffffffffffffffffffffffffff166014611adc565b6113e08360001c6020611adc565b6040516020016113f1929190613248565b6040516020818303038152906040526040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114339190612420565b60405180910390fd5b5050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661151f83610a1f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61157f828260405180602001604052806000815250611dfa565b5050565b600061158e82611440565b6115cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c4906132f4565b60405180910390fd5b60006115d883610a1f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061164757508373ffffffffffffffffffffffffffffffffffffffff1661162f8461064c565b73ffffffffffffffffffffffffffffffffffffffff16145b8061165857506116578185611267565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168182610a1f565b73ffffffffffffffffffffffffffffffffffffffff16146116d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ce90613386565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173e90613418565b60405180910390fd5b611752838383611e55565b61175d6000826114ac565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ad9190613467565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611804919061349b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6118c78282610b89565b61199a5760016006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061193f61139b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119a88282610b89565b15611a7c5760006006600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611a2161139b565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b611a8b848484611661565b611a9784848484611e5a565b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd90613563565b60405180910390fd5b50505050565b606060006002836002611aef9190613583565b611af9919061349b565b67ffffffffffffffff811115611b1257611b11612722565b5b6040519080825280601f01601f191660200182016040528015611b445781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110611b7c57611b7b6135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110611be057611bdf6135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002611c209190613583565b611c2a919061349b565b90505b6001811115611cca577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110611c6c57611c6b6135dd565b5b1a60f81b828281518110611c8357611c826135dd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080611cc39061360c565b9050611c2d565b5060008414611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590613682565b60405180910390fd5b8091505092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611de357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611df35750611df282611fe2565b5b9050919050565b611e04838361204c565b611e116000848484611e5a565b611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790613563565b60405180910390fd5b505050565b505050565b6000611e7b8473ffffffffffffffffffffffffffffffffffffffff1661221a565b15611fd5578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ea461139b565b8786866040518563ffffffff1660e01b8152600401611ec694939291906136ec565b6020604051808303816000875af1925050508015611f0257506040513d601f19601f82011682018060405250810190611eff919061374d565b60015b611f85573d8060008114611f32576040519150601f19603f3d011682016040523d82523d6000602084013e611f37565b606091505b50600081511415611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613563565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fda565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b3906137c6565b60405180910390fd5b6120c581611440565b15612105576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120fc90613832565b60405180910390fd5b61211160008383611e55565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612161919061349b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61227681612241565b811461228157600080fd5b50565b6000813590506122938161226d565b92915050565b6000602082840312156122af576122ae612237565b5b60006122bd84828501612284565b91505092915050565b60008115159050919050565b6122db816122c6565b82525050565b60006020820190506122f660008301846122d2565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612327826122fc565b9050919050565b6123378161231c565b811461234257600080fd5b50565b6000813590506123548161232e565b92915050565b6000602082840312156123705761236f612237565b5b600061237e84828501612345565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156123c15780820151818401526020810190506123a6565b838111156123d0576000848401525b50505050565b6000601f19601f8301169050919050565b60006123f282612387565b6123fc8185612392565b935061240c8185602086016123a3565b612415816123d6565b840191505092915050565b6000602082019050818103600083015261243a81846123e7565b905092915050565b6000819050919050565b61245581612442565b811461246057600080fd5b50565b6000813590506124728161244c565b92915050565b60006020828403121561248e5761248d612237565b5b600061249c84828501612463565b91505092915050565b6124ae8161231c565b82525050565b60006020820190506124c960008301846124a5565b92915050565b600080604083850312156124e6576124e5612237565b5b60006124f485828601612345565b925050602061250585828601612463565b9150509250929050565b60008060006060848603121561252857612527612237565b5b600061253686828701612345565b935050602061254786828701612463565b925050604061255886828701612345565b9150509250925092565b60008060006060848603121561257b5761257a612237565b5b600061258986828701612345565b935050602061259a86828701612345565b92505060406125ab86828701612463565b9150509250925092565b6000819050919050565b6125c8816125b5565b81146125d357600080fd5b50565b6000813590506125e5816125bf565b92915050565b60006020828403121561260157612600612237565b5b600061260f848285016125d6565b91505092915050565b612621816125b5565b82525050565b600060208201905061263c6000830184612618565b92915050565b6000806040838503121561265957612658612237565b5b6000612667858286016125d6565b925050602061267885828601612345565b9150509250929050565b61268b81612442565b82525050565b60006020820190506126a66000830184612682565b92915050565b6126b5816122c6565b81146126c057600080fd5b50565b6000813590506126d2816126ac565b92915050565b600080604083850312156126ef576126ee612237565b5b60006126fd85828601612345565b925050602061270e858286016126c3565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61275a826123d6565b810181811067ffffffffffffffff8211171561277957612778612722565b5b80604052505050565b600061278c61222d565b90506127988282612751565b919050565b600067ffffffffffffffff8211156127b8576127b7612722565b5b6127c1826123d6565b9050602081019050919050565b82818337600083830152505050565b60006127f06127eb8461279d565b612782565b90508281526020810184848401111561280c5761280b61271d565b5b6128178482856127ce565b509392505050565b600082601f83011261283457612833612718565b5b81356128448482602086016127dd565b91505092915050565b6000806000806080858703121561286757612866612237565b5b600061287587828801612345565b945050602061288687828801612345565b935050604061289787828801612463565b925050606085013567ffffffffffffffff8111156128b8576128b761223c565b5b6128c48782880161281f565b91505092959194509250565b600080604083850312156128e7576128e6612237565b5b60006128f585828601612463565b925050602061290685828601612345565b9150509250929050565b600067ffffffffffffffff82111561292b5761292a612722565b5b612934826123d6565b9050602081019050919050565b600061295461294f84612910565b612782565b9050828152602081018484840111156129705761296f61271d565b5b61297b8482856127ce565b509392505050565b600082601f83011261299857612997612718565b5b81356129a8848260208601612941565b91505092915050565b600080600080608085870312156129cb576129ca612237565b5b60006129d987828801612345565b94505060206129ea87828801612463565b93505060406129fb87828801612345565b925050606085013567ffffffffffffffff811115612a1c57612a1b61223c565b5b612a2887828801612983565b91505092959194509250565b60008060408385031215612a4b57612a4a612237565b5b6000612a5985828601612345565b9250506020612a6a85828601612345565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612abb57607f821691505b60208210811415612acf57612ace612a74565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612b31602c83612392565b9150612b3c82612ad5565b604082019050919050565b60006020820190508181036000830152612b6081612b24565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bc3602183612392565b9150612bce82612b67565b604082019050919050565b60006020820190508181036000830152612bf281612bb6565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612c55603883612392565b9150612c6082612bf9565b604082019050919050565b60006020820190508181036000830152612c8481612c48565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612ce7603183612392565b9150612cf282612c8b565b604082019050919050565b60006020820190508181036000830152612d1681612cda565b9050919050565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b6000612d79602f83612392565b9150612d8482612d1d565b604082019050919050565b60006020820190508181036000830152612da881612d6c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612e0b602983612392565b9150612e1682612daf565b604082019050919050565b60006020820190508181036000830152612e3a81612dfe565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612e9d602a83612392565b9150612ea882612e41565b604082019050919050565b60006020820190508181036000830152612ecc81612e90565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000612f09601983612392565b9150612f1482612ed3565b602082019050919050565b60006020820190508181036000830152612f3881612efc565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612f9b602f83612392565b9150612fa682612f3f565b604082019050919050565b60006020820190508181036000830152612fca81612f8e565b9050919050565b6000612fe4612fdf84612910565b612782565b90508281526020810184848401111561300057612fff61271d565b5b61300b8482856123a3565b509392505050565b600082601f83011261302857613027612718565b5b8151613038848260208601612fd1565b91505092915050565b60006020828403121561305757613056612237565b5b600082015167ffffffffffffffff8111156130755761307461223c565b5b61308184828501613013565b91505092915050565b600060408201905061309f6000830185612682565b81810360208301526130b181846123e7565b90509392505050565b6000815190506130c98161232e565b92915050565b6000602082840312156130e5576130e4612237565b5b60006130f3848285016130ba565b91505092915050565b600081519050919050565b600081905092915050565b600061311d826130fc565b6131278185613107565b93506131378185602086016123a3565b80840191505092915050565b600081905092915050565b600061315982612387565b6131638185613143565b93506131738185602086016123a3565b80840191505092915050565b600061318b8286613112565b9150613197828561314e565b91506131a38284613112565b9150819050949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b60006131e6601783613143565b91506131f1826131b0565b601782019050919050565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b6000613232601183613143565b915061323d826131fc565b601182019050919050565b6000613253826131d9565b915061325f828561314e565b915061326a82613225565b9150613276828461314e565b91508190509392505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006132de602c83612392565b91506132e982613282565b604082019050919050565b6000602082019050818103600083015261330d816132d1565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000613370602983612392565b915061337b82613314565b604082019050919050565b6000602082019050818103600083015261339f81613363565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613402602483612392565b915061340d826133a6565b604082019050919050565b60006020820190508181036000830152613431816133f5565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061347282612442565b915061347d83612442565b9250828210156134905761348f613438565b5b828203905092915050565b60006134a682612442565b91506134b183612442565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134e6576134e5613438565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061354d603283612392565b9150613558826134f1565b604082019050919050565b6000602082019050818103600083015261357c81613540565b9050919050565b600061358e82612442565b915061359983612442565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156135d2576135d1613438565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061361782612442565b9150600082141561362b5761362a613438565b5b600182039050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b600061366c602083612392565b915061367782613636565b602082019050919050565b6000602082019050818103600083015261369b8161365f565b9050919050565b600082825260208201905092915050565b60006136be826130fc565b6136c881856136a2565b93506136d88185602086016123a3565b6136e1816123d6565b840191505092915050565b600060808201905061370160008301876124a5565b61370e60208301866124a5565b61371b6040830185612682565b818103606083015261372d81846136b3565b905095945050505050565b6000815190506137478161226d565b92915050565b60006020828403121561376357613762612237565b5b600061377184828501613738565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006137b0602083612392565b91506137bb8261377a565b602082019050919050565b600060208201905081810360008301526137df816137a3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061381c601c83612392565b9150613827826137e6565b602082019050919050565b6000602082019050818103600083015261384b8161380f565b905091905056fe646174613a6170706c69636174696f6e2f6a736f6e3b636861727365743d5554462d382c2537422532326e616d65253232253341253230253232496e74657267616c6163746963253230546f6b656e732532322532432532302532326465736372697074696f6e25323225334125323025323241253230636f6c6c656374696f6e2532306f6625323064796e616d6963616c6c7925323067656e657261746564253230696e74657267616c6163746963253230746f6b656e2532306c6f676f7325323074686174253230637275697365253230737061636525323062617365642532306f6e25323074686569722532307072696365253230666c756374756174696f6e732e25323225324325323025323273656c6c65725f6665655f62617369735f706f696e74732532322533412532303235302532432532302532326665655f726563697069656e74253232253341253230253232a264697066735822122086e9f0b72bb85d4f3711c91c8f2cbbde0b98ded7f9c3d0003a7f9a296521bdcb64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000dcf1751ed8a39b2d08e07a921bb2198bd3cd9f60
-----Decoded View---------------
Arg [0] : _defaultUriProvider (address): 0xDCF1751ed8A39B2D08e07a921bb2198bD3Cd9f60
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000dcf1751ed8a39b2d08e07a921bb2198bd3cd9f60
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.