ERC-721
Overview
Max Total Supply
24 NFF
Holders
24
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 NFFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NonFungibleFrens
Compiler Version
v0.8.6+commit.11564f7e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "./Lib/Frens.sol"; /* _ _ _____ _ _ _ _____ | \ | | ___ _ __ | ___| _ _ __ __ _(_) |__ | | ___ | ___| __ ___ _ __ ___ | \| |/ _ \| '_ \ | |_ | | | | '_ \ / _` | | '_ \| |/ _ \ | |_ | '__/ _ \ '_ \/ __| | |\ | (_) | | | | | _|| |_| | | | | (_| | | |_) | | __/ | _|| | | __/ | | \__ \ |_| \_|\___/|_| |_| |_| \__,_|_| |_|\__, |_|_.__/|_|\___| |_| |_| \___|_| |_|___/ |___/ */ contract NonFungibleFrens is ERC721 { using Counters for Counters.Counter; Counters.Counter private _tokenIds; struct Traits { string traitName; uint8 traitValue; } bool _pauseContract = true; mapping(address => bool) whitelisted; mapping(address => bool) allowedAddress; mapping(address => uint8) maxTokensPerWallet; mapping(uint => Traits) public traitTypes; address public owner; string imageURI; string animationURI; uint SEED; uint maxValueProp = 100; /** * @dev onlyOwner modifier */ modifier onlyOwner { require(msg.sender == owner, "NFF: You are not the owner"); _; } /** * @dev whitelisting modifier */ modifier onlyWhitelisted { require(whitelisted[msg.sender] == true, "NFF: You are not whitelisted"); _; } /** * @dev onlyAllowedAddress modifier */ modifier onlyAllowedAddress { require(allowedAddress[msg.sender] == true, "NFF: You are not allowed to call this function"); _; } /* __ __ _ _ _ _____ _ _ | \/ (_)_ __ | |_(_)_ __ __ _ | ___| _ _ __ ___| |_(_) ___ _ __ ___ | |\/| | | '_ \| __| | '_ \ / _` | | |_ | | | | '_ \ / __| __| |/ _ \| '_ \/ __| | | | | | | | | |_| | | | | (_| | | _|| |_| | | | | (__| |_| | (_) | | | \__ \ |_| |_|_|_| |_|\__|_|_| |_|\__, | |_| \__,_|_| |_|\___|\__|_|\___/|_| |_|___/ |___/ */ /** * @dev function to claim the Frens NFT */ function claimNFF() external onlyWhitelisted { //validation before minting require( maxTokensPerWallet[msg.sender] == 0, "NFF: You are not allowed to mint anymore tokens" ); require( _pauseContract == false, "NFF: Contract is paused!" ); maxTokensPerWallet[msg.sender] += 1; setTraitName(_tokenIds.current()); setTraitValue(_tokenIds.current()); _safeMint(msg.sender, _tokenIds.current()); _tokenIds.increment(); } /** * @dev override the tokenURI and generate the metadata on-chain */ function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string( abi.encodePacked( "data:application/json;base64,", FrensLib.encode( bytes( string( abi.encodePacked( '{"name": "Non Fungible Frens Cartridge #', FrensLib.toString(tokenId), '","description": "The NFF genesis cartridge permits access to the Frens Discord restricted channels. Each holder is entitled to a vote in the governance of the Non Fungible Frens DAO.", "image":"', imageURI, '","animation_url":"', animationURI, '","attributes":', hashToMetadata(tokenId), "}" ) ) ) ) ) ); } /** * @dev generate the attributes metadata for the tokenURI */ function hashToMetadata(uint _tokenId) public view returns (string memory) { string memory metadataString; metadataString = string( abi.encodePacked( metadataString, '{"trait_type":"', traitTypes[_tokenId].traitName, '","max_value":', FrensLib.toString(maxValueProp), ',"value":', FrensLib.toString(getFriendshipLvl(_tokenId)), '}' ) ); return string(abi.encodePacked("[", metadataString,"]")); } /* ____ _ _ / ___| ___| |_| |_ ___ _ __ ___ \___ \ / _ \ __| __/ _ \ '__/ __| ___) | __/ |_| || __/ | \__ \ |____/ \___|\__|\__\___|_| |___/ */ /** * @dev set the Image URI used for the metadata */ function setImageURI(string memory _imageURI) public onlyOwner { imageURI = _imageURI; } /** * @dev set the Animation URI used for the metadata */ function setAnimationURI(string memory _animationURI) public onlyOwner { animationURI = _animationURI; } /** * @dev set the name of the trait used in the metadata */ function setTraitName(uint _tokenId) internal { traitTypes[_tokenId].traitName = "Friendship"; } /** * @dev set the initial lvl value for the trait */ function setTraitValue(uint _tokenId) internal { SEED++; uint tempValue = uint256( keccak256( abi.encodePacked( block.timestamp, block.difficulty, _tokenId, msg.sender, SEED ) ) ) % 100; if (tempValue == 0) tempValue = 1; traitTypes[_tokenId].traitValue = uint8(tempValue); } /** * @dev set the allowed addresses to interact with specific functions */ function setAllowedAddress (address _addr) public onlyOwner { allowedAddress[_addr] = true; } /** * @dev set whitelisted for multiple wallets at a time. Only owner */ function setMultipleWhitelist(address[] memory _whitelistAddr) public onlyOwner { for (uint i = 0; i < _whitelistAddr.length; i++) { whitelisted[_whitelistAddr[i]] = true; } } /** * @dev set whitelisted for a single wallet. Only owner */ function setWhitelist(address _whitelistAddr) public onlyOwner { whitelisted[_whitelistAddr] = true; } /** * @dev set the update the lvl value */ function updateTraitValue(uint _tokenId, uint8 _newValue) public onlyAllowedAddress { traitTypes[_tokenId].traitValue = _newValue; } /* ____ _ _ / ___| ___| |_| |_ ___ _ __ ___ | | _ / _ \ __| __/ _ \ '__/ __| | |_| | __/ |_| || __/ | \__ \ \____|\___|\__|\__\___|_| |___/ */ /** * @dev set the update the lvl value */ function getFriendshipLvl(uint _tokenId) public view returns(uint8) { return traitTypes[_tokenId].traitValue; } /** * @dev set the update the lvl value */ function getTraitName(uint _tokenId) public view returns(string memory) { return traitTypes[_tokenId].traitName; } /** * @dev Get the current ID to mint / totalSupply minted */ function totalSupply() public view returns (uint) { return _tokenIds.current() - 1; } /* ___ _____ _ _ / _ \__ ___ __ ___ _ __ | ___| _ _ __ ___| |_(_) ___ _ __ ___ | | | \ \ /\ / / '_ \ / _ \ '__| | |_ | | | | '_ \ / __| __| |/ _ \| '_ \/ __| | |_| |\ V V /| | | | __/ | | _|| |_| | | | | (__| |_| | (_) | | | \__ \ \___/ \_/\_/ |_| |_|\___|_| |_| \__,_|_| |_|\___|\__|_|\___/|_| |_|___/ */ /** * @dev function to unpause the smart contract */ function pauseContract() public onlyOwner { _pauseContract = !_pauseContract; } /** * @dev change ownership for the multisig wallet */ function changeOwnership(address _newOwner) public onlyOwner { owner = _newOwner; } constructor (string memory _imageURI, string memory _animationURI) ERC721 ("NonFungibleFrens", "NFF") { owner = msg.sender; imageURI = _imageURI; animationURI = _animationURI; _tokenIds.increment(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT 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.6; library FrensLib { string internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ""; // load the table into memory string memory table = TABLE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for { } lt(dataPtr, endPtr) { } { dataPtr := add(dataPtr, 3) // read 3 bytes let input := mload(dataPtr) // write 4 characters mstore( resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))) ) resultPtr := add(resultPtr, 1) mstore( resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))) ) resultPtr := add(resultPtr, 1) mstore( resultPtr, shl(248, mload(add(tablePtr, and(shr(6, input), 0x3F)))) ) resultPtr := add(resultPtr, 1) mstore( resultPtr, shl(248, mload(add(tablePtr, and(input, 0x3F)))) ) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { 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); } }
// 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; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_imageURI","type":"string"},{"internalType":"string","name":"_animationURI","type":"string"}],"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":"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"changeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimNFF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getFriendshipLvl","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"getTraitName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"hashToMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseContract","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":"_addr","type":"address"}],"name":"setAllowedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_animationURI","type":"string"}],"name":"setAnimationURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_imageURI","type":"string"}],"name":"setImageURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistAddr","type":"address[]"}],"name":"setMultipleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_whitelistAddr","type":"address"}],"name":"setWhitelist","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"traitTypes","outputs":[{"internalType":"string","name":"traitName","type":"string"},{"internalType":"uint8","name":"traitValue","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint8","name":"_newValue","type":"uint8"}],"name":"updateTraitValue","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526001600760006101000a81548160ff02191690831515021790555060646010553480156200003157600080fd5b50604051620049c8380380620049c88339818101604052810190620000579190620002cd565b6040518060400160405280601081526020017f4e6f6e46756e6769626c654672656e73000000000000000000000000000000008152506040518060400160405280600381526020017f4e464600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000db9291906200019f565b508060019080519060200190620000f49291906200019f565b50505033600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600d9080519060200190620001509291906200019f565b5080600e9080519060200190620001699291906200019f565b506200018160066200018960201b620019671760201c565b5050620004d6565b6001816000016000828254019250508190555050565b828054620001ad90620003e7565b90600052602060002090601f016020900481019282620001d157600085556200021d565b82601f10620001ec57805160ff19168380011785556200021d565b828001600101855582156200021d579182015b828111156200021c578251825591602001919060010190620001ff565b5b5090506200022c919062000230565b5090565b5b808211156200024b57600081600090555060010162000231565b5090565b60006200026662000260846200037b565b62000352565b905082815260208101848484011115620002855762000284620004b6565b5b62000292848285620003b1565b509392505050565b600082601f830112620002b257620002b1620004b1565b5b8151620002c48482602086016200024f565b91505092915050565b60008060408385031215620002e757620002e6620004c0565b5b600083015167ffffffffffffffff811115620003085762000307620004bb565b5b62000316858286016200029a565b925050602083015167ffffffffffffffff8111156200033a5762000339620004bb565b5b62000348858286016200029a565b9150509250929050565b60006200035e62000371565b90506200036c82826200041d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000399576200039862000482565b5b620003a482620004c5565b9050602081019050919050565b60005b83811015620003d1578082015181840152602081019050620003b4565b83811115620003e1576000848401525b50505050565b600060028204905060018216806200040057607f821691505b6020821081141562000417576200041662000453565b5b50919050565b6200042882620004c5565b810181811067ffffffffffffffff821117156200044a576200044962000482565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6144e280620004e66000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80636c3e51bd116100f9578063970f6d6611610097578063c5ac58e111610071578063c5ac58e1146104da578063c87b56dd146104f6578063e16f9c3d14610526578063e985e9c514610556576101c4565b8063970f6d6614610486578063a22cb465146104a2578063b88d4fde146104be576101c4565b806388f66f24116100d357806388f66f24146104105780638da5cb5b146104405780639315eea31461045e57806395d89b4114610468576101c4565b80636c3e51bd1461039357806370a08231146103c4578063854cff2f146103f4576101c4565b80631b8fc2f0116101665780633d12fa01116101405780633d12fa011461032157806342842e0e1461033d578063439766ce146103595780636352211e14610363576101c4565b80631b8fc2f0146102cd57806323b872dd146102e95780632af4c31e14610305576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b31461026357806318160ddd1461027f5780631b435efa1461029d576101c4565b806301ffc9a7146101c957806304787ca2146101f957806306fdde0314610215575b600080fd5b6101e360048036038101906101de9190612b3f565b610586565b6040516101f091906133e9565b60405180910390f35b610213600480360381019061020e9190612b99565b610668565b005b61021d610712565b60405161022a9190613404565b60405180910390f35b61024d60048036038101906102489190612be2565b6107a4565b60405161025a9190613382565b60405180910390f35b61027d60048036038101906102789190612ab6565b610829565b005b610287610941565b60405161029491906136b6565b60405180910390f35b6102b760048036038101906102b29190612be2565b61095e565b6040516102c49190613404565b60405180910390f35b6102e760048036038101906102e29190612933565b6109e3565b005b61030360048036038101906102fe91906129a0565b610ace565b005b61031f600480360381019061031a9190612933565b610b2e565b005b61033b60048036038101906103369190612af6565b610c02565b005b610357600480360381019061035291906129a0565b610d27565b005b610361610d47565b005b61037d60048036038101906103789190612be2565b610e03565b60405161038a9190613382565b60405180910390f35b6103ad60048036038101906103a89190612be2565b610eb5565b6040516103bb929190613426565b60405180910390f35b6103de60048036038101906103d99190612933565b610f6e565b6040516103eb91906136b6565b60405180910390f35b61040e60048036038101906104099190612933565b611026565b005b61042a60048036038101906104259190612be2565b611111565b60405161043791906136d1565b60405180910390f35b61044861113e565b6040516104559190613382565b60405180910390f35b610466611164565b005b610470611396565b60405161047d9190613404565b60405180910390f35b6104a0600480360381019061049b9190612c0f565b611428565b005b6104bc60048036038101906104b79190612a76565b6114ee565b005b6104d860048036038101906104d391906129f3565b61166f565b005b6104f460048036038101906104ef9190612b99565b6116d1565b005b610510600480360381019061050b9190612be2565b61177b565b60405161051d9190613404565b60405180910390f35b610540600480360381019061053b9190612be2565b61182b565b60405161054d9190613404565b60405180910390f35b610570600480360381019061056b9190612960565b6118d3565b60405161057d91906133e9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066157506106608261197d565b5b9050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef90613456565b60405180910390fd5b80600d908051906020019061070e929190612694565b5050565b60606000805461072190613a06565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90613a06565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b60006107af826119e7565b6107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590613616565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083482610e03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089c90613676565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c4611a53565b73ffffffffffffffffffffffffffffffffffffffff1614806108f357506108f2816108ed611a53565b6118d3565b5b610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990613596565b60405180910390fd5b61093c8383611a5b565b505050565b6000600161094f6006611b14565b610959919061390f565b905090565b60608080600b6000858152602001908152602001600020600001610983601054611b22565b61099761098f87611111565b60ff16611b22565b6040516020016109aa94939291906131f5565b6040516020818303038152906040529050806040516020016109cc919061325f565b604051602081830303815290604052915050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90613456565b60405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610adf610ad9611a53565b82611c83565b610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613696565b60405180910390fd5b610b29838383611d61565b505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590613456565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990613456565b60405180910390fd5b60005b8151811015610d2357600160086000848481518110610cb757610cb6613b9e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d1b90613a69565b915050610c95565b5050565b610d428383836040518060200160405280600081525061166f565b505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90613456565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906135d6565b60405180910390fd5b80915050919050565b600b602052806000526040600020600091509050806000018054610ed890613a06565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490613a06565b8015610f515780601f10610f2657610100808354040283529160200191610f51565b820191906000526020600020905b815481529060010190602001808311610f3457829003601f168201915b5050505050908060010160009054906101000a900460ff16905082565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906135b6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613456565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b600083815260200190815260200160002060010160009054906101000a900460ff169050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906134b6565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090613576565b60405180910390fd5b60001515600760009054906101000a900460ff161515146112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d6906134f6565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661133b919061384d565b92506101000a81548160ff021916908360ff1602179055506113656113606006611b14565b611fbd565b6113776113726006611b14565b612020565b61138a336113856006611b14565b6120bd565b6113946006611967565b565b6060600180546113a590613a06565b80601f01602080910402602001604051908101604052809291908181526020018280546113d190613a06565b801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b5050505050905090565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290613476565b60405180910390fd5b80600b600084815260200190815260200160002060010160006101000a81548160ff021916908360ff1602179055505050565b6114f6611a53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613536565b60405180910390fd5b8060056000611571611a53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161e611a53565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161166391906133e9565b60405180910390a35050565b61168061167a611a53565b83611c83565b6116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690613696565b60405180910390fd5b6116cb848484846120db565b50505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890613456565b60405180910390fd5b80600e9080519060200190611777929190612694565b5050565b6060611786826119e7565b6117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90613656565b60405180910390fd5b6118056117d183611b22565b600d600e6117de8661095e565b6040516020016117f194939291906132ae565b604051602081830303815290604052612137565b604051602001611815919061328c565b6040516020818303038152906040529050919050565b6060600b6000838152602001908152602001600020600001805461184e90613a06565b80601f016020809104026020016040519081016040528092919081815260200182805461187a90613a06565b80156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ace83610e03565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60606000821415611b6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c7e565b600082905060005b60008214611b9c578080611b8590613a69565b915050600a82611b959190613884565b9150611b72565b60008167ffffffffffffffff811115611bb857611bb7613bcd565b5b6040519080825280601f01601f191660200182016040528015611bea5781602001600182028036833780820191505090505b5090505b60008514611c7757600182611c03919061390f565b9150600a85611c129190613ae0565b6030611c1e91906137f7565b60f81b818381518110611c3457611c33613b9e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c709190613884565b9450611bee565b8093505050505b919050565b6000611c8e826119e7565b611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613556565b60405180910390fd5b6000611cd883610e03565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d4757508373ffffffffffffffffffffffffffffffffffffffff16611d2f846107a4565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d585750611d5781856118d3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d8182610e03565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce90613636565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613516565b60405180910390fd5b611e528383836122bc565b611e5d600082611a5b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ead919061390f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f0491906137f7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6040518060400160405280600a81526020017f467269656e647368697000000000000000000000000000000000000000000000815250600b6000838152602001908152602001600020600001908051906020019061201c929190612694565b5050565b600f600081548092919061203390613a69565b91905055506000606442448433600f54604051602001612057959493929190613323565b6040516020818303038152906040528051906020012060001c61207a9190613ae0565b9050600081141561208a57600190505b80600b600084815260200190815260200160002060010160006101000a81548160ff021916908360ff1602179055505050565b6120d78282604051806020016040528060008152506122c1565b5050565b6120e6848484611d61565b6120f28484848461231c565b612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890613496565b60405180910390fd5b50505050565b606060008251141561215a576040518060200160405280600081525090506122b7565b600060405180606001604052806040815260200161446d604091399050600060036002855161218991906137f7565b6121939190613884565b600461219f91906138b5565b905060006020826121b091906137f7565b67ffffffffffffffff8111156121c9576121c8613bcd565b5b6040519080825280601f01601f1916602001820160405280156121fb5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015612276576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b82526001820191505061220f565b60038951066001811461229057600281146122a0576122ab565b613d3d60f01b60028303526122ab565b603d60f81b60018303525b50505050508093505050505b919050565b505050565b6122cb83836124b3565b6122d8600084848461231c565b612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613496565b60405180910390fd5b505050565b600061233d8473ffffffffffffffffffffffffffffffffffffffff16612681565b156124a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612366611a53565b8786866040518563ffffffff1660e01b8152600401612388949392919061339d565b602060405180830381600087803b1580156123a257600080fd5b505af19250505080156123d357506040513d601f19601f820116820180604052508101906123d09190612b6c565b60015b612456573d8060008114612403576040519150601f19603f3d011682016040523d82523d6000602084013e612408565b606091505b5060008151141561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244590613496565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ab565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a906135f6565b60405180910390fd5b61252c816119e7565b1561256c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612563906134d6565b60405180910390fd5b612578600083836122bc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c891906137f7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126a090613a06565b90600052602060002090601f0160209004810192826126c25760008555612709565b82601f106126db57805160ff1916838001178555612709565b82800160010185558215612709579182015b828111156127085782518255916020019190600101906126ed565b5b509050612716919061271a565b5090565b5b8082111561273357600081600090555060010161271b565b5090565b600061274a61274584613711565b6136ec565b9050808382526020820190508285602086028201111561276d5761276c613c01565b5b60005b8581101561279d5781612783888261282b565b845260208401935060208301925050600181019050612770565b5050509392505050565b60006127ba6127b58461373d565b6136ec565b9050828152602081018484840111156127d6576127d5613c06565b5b6127e18482856139c4565b509392505050565b60006127fc6127f78461376e565b6136ec565b90508281526020810184848401111561281857612817613c06565b5b6128238482856139c4565b509392505050565b60008135905061283a816143f9565b92915050565b600082601f83011261285557612854613bfc565b5b8135612865848260208601612737565b91505092915050565b60008135905061287d81614410565b92915050565b60008135905061289281614427565b92915050565b6000815190506128a781614427565b92915050565b600082601f8301126128c2576128c1613bfc565b5b81356128d28482602086016127a7565b91505092915050565b600082601f8301126128f0576128ef613bfc565b5b81356129008482602086016127e9565b91505092915050565b6000813590506129188161443e565b92915050565b60008135905061292d81614455565b92915050565b60006020828403121561294957612948613c10565b5b60006129578482850161282b565b91505092915050565b6000806040838503121561297757612976613c10565b5b60006129858582860161282b565b92505060206129968582860161282b565b9150509250929050565b6000806000606084860312156129b9576129b8613c10565b5b60006129c78682870161282b565b93505060206129d88682870161282b565b92505060406129e986828701612909565b9150509250925092565b60008060008060808587031215612a0d57612a0c613c10565b5b6000612a1b8782880161282b565b9450506020612a2c8782880161282b565b9350506040612a3d87828801612909565b925050606085013567ffffffffffffffff811115612a5e57612a5d613c0b565b5b612a6a878288016128ad565b91505092959194509250565b60008060408385031215612a8d57612a8c613c10565b5b6000612a9b8582860161282b565b9250506020612aac8582860161286e565b9150509250929050565b60008060408385031215612acd57612acc613c10565b5b6000612adb8582860161282b565b9250506020612aec85828601612909565b9150509250929050565b600060208284031215612b0c57612b0b613c10565b5b600082013567ffffffffffffffff811115612b2a57612b29613c0b565b5b612b3684828501612840565b91505092915050565b600060208284031215612b5557612b54613c10565b5b6000612b6384828501612883565b91505092915050565b600060208284031215612b8257612b81613c10565b5b6000612b9084828501612898565b91505092915050565b600060208284031215612baf57612bae613c10565b5b600082013567ffffffffffffffff811115612bcd57612bcc613c0b565b5b612bd9848285016128db565b91505092915050565b600060208284031215612bf857612bf7613c10565b5b6000612c0684828501612909565b91505092915050565b60008060408385031215612c2657612c25613c10565b5b6000612c3485828601612909565b9250506020612c458582860161291e565b9150509250929050565b612c5881613943565b82525050565b612c6f612c6a82613943565b613ab2565b82525050565b612c7e81613955565b82525050565b6000612c8f826137b4565b612c9981856137ca565b9350612ca98185602086016139d3565b612cb281613c15565b840191505092915050565b6000612cc8826137bf565b612cd281856137db565b9350612ce28185602086016139d3565b612ceb81613c15565b840191505092915050565b6000612d01826137bf565b612d0b81856137ec565b9350612d1b8185602086016139d3565b80840191505092915050565b60008154612d3481613a06565b612d3e81866137ec565b94506001821660008114612d595760018114612d6a57612d9d565b60ff19831686528186019350612d9d565b612d738561379f565b60005b83811015612d9557815481890152600182019150602081019050612d76565b838801955050505b50505092915050565b6000612db3600e836137ec565b9150612dbe82613c33565b600e82019050919050565b6000612dd6601a836137db565b9150612de182613c5c565b602082019050919050565b6000612df9602e836137db565b9150612e0482613c85565b604082019050919050565b6000612e1c6032836137db565b9150612e2782613cd4565b604082019050919050565b6000612e3f6009836137ec565b9150612e4a82613d23565b600982019050919050565b6000612e62601c836137db565b9150612e6d82613d4c565b602082019050919050565b6000612e85601c836137db565b9150612e9082613d75565b602082019050919050565b6000612ea8600f836137ec565b9150612eb382613d9e565b600f82019050919050565b6000612ecb6018836137db565b9150612ed682613dc7565b602082019050919050565b6000612eee6024836137db565b9150612ef982613df0565b604082019050919050565b6000612f116019836137db565b9150612f1c82613e3f565b602082019050919050565b6000612f34600f836137ec565b9150612f3f82613e68565b600f82019050919050565b6000612f57602c836137db565b9150612f6282613e91565b604082019050919050565b6000612f7a6013836137ec565b9150612f8582613ee0565b601382019050919050565b6000612f9d602f836137db565b9150612fa882613f09565b604082019050919050565b6000612fc06038836137db565b9150612fcb82613f58565b604082019050919050565b6000612fe3602a836137db565b9150612fee82613fa7565b604082019050919050565b60006130066029836137db565b915061301182613ff6565b604082019050919050565b60006130296020836137db565b915061303482614045565b602082019050919050565b600061304c6001836137ec565b91506130578261406e565b600182019050919050565b600061306f602c836137db565b915061307a82614097565b604082019050919050565b60006130926001836137ec565b915061309d826140e6565b600182019050919050565b60006130b56029836137db565b91506130c08261410f565b604082019050919050565b60006130d8602f836137db565b91506130e38261415e565b604082019050919050565b60006130fb60c3836137ec565b9150613106826141ad565b60c382019050919050565b600061311e6001836137ec565b9150613129826142ba565b600182019050919050565b60006131416021836137db565b915061314c826142e3565b604082019050919050565b6000613164601d836137ec565b915061316f82614332565b601d82019050919050565b60006131876031836137db565b91506131928261435b565b604082019050919050565b60006131aa6028836137ec565b91506131b5826143aa565b602882019050919050565b6131c9816139ad565b82525050565b6131e06131db826139ad565b613ad6565b82525050565b6131ef816139b7565b82525050565b60006132018287612cf6565b915061320c82612f27565b91506132188286612d27565b915061322382612da6565b915061322f8285612cf6565b915061323a82612e32565b91506132468284612cf6565b91506132518261303f565b915081905095945050505050565b600061326a82613085565b91506132768284612cf6565b915061328182613111565b915081905092915050565b600061329782613157565b91506132a38284612cf6565b915081905092915050565b60006132b98261319d565b91506132c58287612cf6565b91506132d0826130ee565b91506132dc8286612d27565b91506132e782612f6d565b91506132f38285612d27565b91506132fe82612e9b565b915061330a8284612cf6565b91506133158261303f565b915081905095945050505050565b600061332f82886131cf565b60208201915061333f82876131cf565b60208201915061334f82866131cf565b60208201915061335f8285612c5e565b60148201915061336f82846131cf565b6020820191508190509695505050505050565b60006020820190506133976000830184612c4f565b92915050565b60006080820190506133b26000830187612c4f565b6133bf6020830186612c4f565b6133cc60408301856131c0565b81810360608301526133de8184612c84565b905095945050505050565b60006020820190506133fe6000830184612c75565b92915050565b6000602082019050818103600083015261341e8184612cbd565b905092915050565b600060408201905081810360008301526134408185612cbd565b905061344f60208301846131e6565b9392505050565b6000602082019050818103600083015261346f81612dc9565b9050919050565b6000602082019050818103600083015261348f81612dec565b9050919050565b600060208201905081810360008301526134af81612e0f565b9050919050565b600060208201905081810360008301526134cf81612e55565b9050919050565b600060208201905081810360008301526134ef81612e78565b9050919050565b6000602082019050818103600083015261350f81612ebe565b9050919050565b6000602082019050818103600083015261352f81612ee1565b9050919050565b6000602082019050818103600083015261354f81612f04565b9050919050565b6000602082019050818103600083015261356f81612f4a565b9050919050565b6000602082019050818103600083015261358f81612f90565b9050919050565b600060208201905081810360008301526135af81612fb3565b9050919050565b600060208201905081810360008301526135cf81612fd6565b9050919050565b600060208201905081810360008301526135ef81612ff9565b9050919050565b6000602082019050818103600083015261360f8161301c565b9050919050565b6000602082019050818103600083015261362f81613062565b9050919050565b6000602082019050818103600083015261364f816130a8565b9050919050565b6000602082019050818103600083015261366f816130cb565b9050919050565b6000602082019050818103600083015261368f81613134565b9050919050565b600060208201905081810360008301526136af8161317a565b9050919050565b60006020820190506136cb60008301846131c0565b92915050565b60006020820190506136e660008301846131e6565b92915050565b60006136f6613707565b90506137028282613a38565b919050565b6000604051905090565b600067ffffffffffffffff82111561372c5761372b613bcd565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561375857613757613bcd565b5b61376182613c15565b9050602081019050919050565b600067ffffffffffffffff82111561378957613788613bcd565b5b61379282613c15565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613802826139ad565b915061380d836139ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561384257613841613b11565b5b828201905092915050565b6000613858826139b7565b9150613863836139b7565b92508260ff0382111561387957613878613b11565b5b828201905092915050565b600061388f826139ad565b915061389a836139ad565b9250826138aa576138a9613b40565b5b828204905092915050565b60006138c0826139ad565b91506138cb836139ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561390457613903613b11565b5b828202905092915050565b600061391a826139ad565b9150613925836139ad565b92508282101561393857613937613b11565b5b828203905092915050565b600061394e8261398d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156139f15780820151818401526020810190506139d6565b83811115613a00576000848401525b50505050565b60006002820490506001821680613a1e57607f821691505b60208210811415613a3257613a31613b6f565b5b50919050565b613a4182613c15565b810181811067ffffffffffffffff82111715613a6057613a5f613bcd565b5b80604052505050565b6000613a74826139ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613aa757613aa6613b11565b5b600182019050919050565b6000613abd82613ac4565b9050919050565b6000613acf82613c26565b9050919050565b6000819050919050565b6000613aeb826139ad565b9150613af6836139ad565b925082613b0657613b05613b40565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f222c226d61785f76616c7565223a000000000000000000000000000000000000600082015250565b7f4e46463a20596f7520617265206e6f7420746865206f776e6572000000000000600082015250565b7f4e46463a20596f7520617265206e6f7420616c6c6f77656420746f2063616c6c60008201527f20746869732066756e6374696f6e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f2c2276616c7565223a0000000000000000000000000000000000000000000000600082015250565b7f4e46463a20596f7520617265206e6f742077686974656c697374656400000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222c2261747472696275746573223a0000000000000000000000000000000000600082015250565b7f4e46463a20436f6e747261637420697320706175736564210000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f7b2274726169745f74797065223a220000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222c22616e696d6174696f6e5f75726c223a2200000000000000000000000000600082015250565b7f4e46463a20596f7520617265206e6f7420616c6c6f77656420746f206d696e7460008201527f20616e796d6f726520746f6b656e730000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f222c226465736372697074696f6e223a2022546865204e46462067656e65736960008201527f7320636172747269646765207065726d6974732061636365737320746f20746860208201527f65204672656e7320446973636f72642072657374726963746564206368616e6e60408201527f656c732e204561636820686f6c64657220697320656e7469746c656420746f2060608201527f6120766f746520696e2074686520676f7665726e616e6365206f66207468652060808201527f4e6f6e2046756e6769626c65204672656e732044414f2e222c2022696d61676560a08201527f223a22000000000000000000000000000000000000000000000000000000000060c082015250565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7b226e616d65223a20224e6f6e2046756e6769626c65204672656e732043617260008201527f7472696467652023000000000000000000000000000000000000000000000000602082015250565b61440281613943565b811461440d57600080fd5b50565b61441981613955565b811461442457600080fd5b50565b61443081613961565b811461443b57600080fd5b50565b614447816139ad565b811461445257600080fd5b50565b61445e816139b7565b811461446957600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122096ea32bde050ee63907ede8ec2b14fe86eefd1f69d739b0a53bc857f56137eb764736f6c63430008060033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d657777727377735542477a745268473738706445696831483766396b324e32664d504e7561625648654831552f4e65775f566964656f2e6769660000000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d657777727377735542477a745268473738706445696831483766396b324e32664d504e7561625648654831552f4e65775f566964656f2e6d70340000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80636c3e51bd116100f9578063970f6d6611610097578063c5ac58e111610071578063c5ac58e1146104da578063c87b56dd146104f6578063e16f9c3d14610526578063e985e9c514610556576101c4565b8063970f6d6614610486578063a22cb465146104a2578063b88d4fde146104be576101c4565b806388f66f24116100d357806388f66f24146104105780638da5cb5b146104405780639315eea31461045e57806395d89b4114610468576101c4565b80636c3e51bd1461039357806370a08231146103c4578063854cff2f146103f4576101c4565b80631b8fc2f0116101665780633d12fa01116101405780633d12fa011461032157806342842e0e1461033d578063439766ce146103595780636352211e14610363576101c4565b80631b8fc2f0146102cd57806323b872dd146102e95780632af4c31e14610305576101c4565b8063081812fc116101a2578063081812fc14610233578063095ea7b31461026357806318160ddd1461027f5780631b435efa1461029d576101c4565b806301ffc9a7146101c957806304787ca2146101f957806306fdde0314610215575b600080fd5b6101e360048036038101906101de9190612b3f565b610586565b6040516101f091906133e9565b60405180910390f35b610213600480360381019061020e9190612b99565b610668565b005b61021d610712565b60405161022a9190613404565b60405180910390f35b61024d60048036038101906102489190612be2565b6107a4565b60405161025a9190613382565b60405180910390f35b61027d60048036038101906102789190612ab6565b610829565b005b610287610941565b60405161029491906136b6565b60405180910390f35b6102b760048036038101906102b29190612be2565b61095e565b6040516102c49190613404565b60405180910390f35b6102e760048036038101906102e29190612933565b6109e3565b005b61030360048036038101906102fe91906129a0565b610ace565b005b61031f600480360381019061031a9190612933565b610b2e565b005b61033b60048036038101906103369190612af6565b610c02565b005b610357600480360381019061035291906129a0565b610d27565b005b610361610d47565b005b61037d60048036038101906103789190612be2565b610e03565b60405161038a9190613382565b60405180910390f35b6103ad60048036038101906103a89190612be2565b610eb5565b6040516103bb929190613426565b60405180910390f35b6103de60048036038101906103d99190612933565b610f6e565b6040516103eb91906136b6565b60405180910390f35b61040e60048036038101906104099190612933565b611026565b005b61042a60048036038101906104259190612be2565b611111565b60405161043791906136d1565b60405180910390f35b61044861113e565b6040516104559190613382565b60405180910390f35b610466611164565b005b610470611396565b60405161047d9190613404565b60405180910390f35b6104a0600480360381019061049b9190612c0f565b611428565b005b6104bc60048036038101906104b79190612a76565b6114ee565b005b6104d860048036038101906104d391906129f3565b61166f565b005b6104f460048036038101906104ef9190612b99565b6116d1565b005b610510600480360381019061050b9190612be2565b61177b565b60405161051d9190613404565b60405180910390f35b610540600480360381019061053b9190612be2565b61182b565b60405161054d9190613404565b60405180910390f35b610570600480360381019061056b9190612960565b6118d3565b60405161057d91906133e9565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061065157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061066157506106608261197d565b5b9050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ef90613456565b60405180910390fd5b80600d908051906020019061070e929190612694565b5050565b60606000805461072190613a06565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90613a06565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b5050505050905090565b60006107af826119e7565b6107ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e590613616565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083482610e03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089c90613676565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c4611a53565b73ffffffffffffffffffffffffffffffffffffffff1614806108f357506108f2816108ed611a53565b6118d3565b5b610932576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092990613596565b60405180910390fd5b61093c8383611a5b565b505050565b6000600161094f6006611b14565b610959919061390f565b905090565b60608080600b6000858152602001908152602001600020600001610983601054611b22565b61099761098f87611111565b60ff16611b22565b6040516020016109aa94939291906131f5565b6040516020818303038152906040529050806040516020016109cc919061325f565b604051602081830303815290604052915050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a90613456565b60405180910390fd5b6001600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610adf610ad9611a53565b82611c83565b610b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1590613696565b60405180910390fd5b610b29838383611d61565b505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb590613456565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990613456565b60405180910390fd5b60005b8151811015610d2357600160086000848481518110610cb757610cb6613b9e565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610d1b90613a69565b915050610c95565b5050565b610d428383836040518060200160405280600081525061166f565b505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dce90613456565b60405180910390fd5b600760009054906101000a900460ff1615600760006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610eac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea3906135d6565b60405180910390fd5b80915050919050565b600b602052806000526040600020600091509050806000018054610ed890613a06565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0490613a06565b8015610f515780601f10610f2657610100808354040283529160200191610f51565b820191906000526020600020905b815481529060010190602001808311610f3457829003601f168201915b5050505050908060010160009054906101000a900460ff16905082565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906135b6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad90613456565b60405180910390fd5b6001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600b600083815260200190815260200160002060010160009054906101000a900460ff169050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60011515600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146111f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ee906134b6565b60405180910390fd5b6000600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1614611289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128090613576565b60405180910390fd5b60001515600760009054906101000a900460ff161515146112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d6906134f6565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661133b919061384d565b92506101000a81548160ff021916908360ff1602179055506113656113606006611b14565b611fbd565b6113776113726006611b14565b612020565b61138a336113856006611b14565b6120bd565b6113946006611967565b565b6060600180546113a590613a06565b80601f01602080910402602001604051908101604052809291908181526020018280546113d190613a06565b801561141e5780601f106113f35761010080835404028352916020019161141e565b820191906000526020600020905b81548152906001019060200180831161140157829003601f168201915b5050505050905090565b60011515600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515146114bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b290613476565b60405180910390fd5b80600b600084815260200190815260200160002060010160006101000a81548160ff021916908360ff1602179055505050565b6114f6611a53565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90613536565b60405180910390fd5b8060056000611571611a53565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661161e611a53565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161166391906133e9565b60405180910390a35050565b61168061167a611a53565b83611c83565b6116bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b690613696565b60405180910390fd5b6116cb848484846120db565b50505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175890613456565b60405180910390fd5b80600e9080519060200190611777929190612694565b5050565b6060611786826119e7565b6117c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bc90613656565b60405180910390fd5b6118056117d183611b22565b600d600e6117de8661095e565b6040516020016117f194939291906132ae565b604051602081830303815290604052612137565b604051602001611815919061328c565b6040516020818303038152906040529050919050565b6060600b6000838152602001908152602001600020600001805461184e90613a06565b80601f016020809104026020016040519081016040528092919081815260200182805461187a90613a06565b80156118c75780601f1061189c576101008083540402835291602001916118c7565b820191906000526020600020905b8154815290600101906020018083116118aa57829003601f168201915b50505050509050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ace83610e03565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60606000821415611b6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c7e565b600082905060005b60008214611b9c578080611b8590613a69565b915050600a82611b959190613884565b9150611b72565b60008167ffffffffffffffff811115611bb857611bb7613bcd565b5b6040519080825280601f01601f191660200182016040528015611bea5781602001600182028036833780820191505090505b5090505b60008514611c7757600182611c03919061390f565b9150600a85611c129190613ae0565b6030611c1e91906137f7565b60f81b818381518110611c3457611c33613b9e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c709190613884565b9450611bee565b8093505050505b919050565b6000611c8e826119e7565b611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613556565b60405180910390fd5b6000611cd883610e03565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d4757508373ffffffffffffffffffffffffffffffffffffffff16611d2f846107a4565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d585750611d5781856118d3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d8182610e03565b73ffffffffffffffffffffffffffffffffffffffff1614611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce90613636565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613516565b60405180910390fd5b611e528383836122bc565b611e5d600082611a5b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ead919061390f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f0491906137f7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6040518060400160405280600a81526020017f467269656e647368697000000000000000000000000000000000000000000000815250600b6000838152602001908152602001600020600001908051906020019061201c929190612694565b5050565b600f600081548092919061203390613a69565b91905055506000606442448433600f54604051602001612057959493929190613323565b6040516020818303038152906040528051906020012060001c61207a9190613ae0565b9050600081141561208a57600190505b80600b600084815260200190815260200160002060010160006101000a81548160ff021916908360ff1602179055505050565b6120d78282604051806020016040528060008152506122c1565b5050565b6120e6848484611d61565b6120f28484848461231c565b612131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212890613496565b60405180910390fd5b50505050565b606060008251141561215a576040518060200160405280600081525090506122b7565b600060405180606001604052806040815260200161446d604091399050600060036002855161218991906137f7565b6121939190613884565b600461219f91906138b5565b905060006020826121b091906137f7565b67ffffffffffffffff8111156121c9576121c8613bcd565b5b6040519080825280601f01601f1916602001820160405280156121fb5781602001600182028036833780820191505090505b509050818152600183018586518101602084015b81831015612276576003830192508251603f8160121c1685015160f81b8252600182019150603f81600c1c1685015160f81b8252600182019150603f8160061c1685015160f81b8252600182019150603f811685015160f81b82526001820191505061220f565b60038951066001811461229057600281146122a0576122ab565b613d3d60f01b60028303526122ab565b603d60f81b60018303525b50505050508093505050505b919050565b505050565b6122cb83836124b3565b6122d8600084848461231c565b612317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230e90613496565b60405180910390fd5b505050565b600061233d8473ffffffffffffffffffffffffffffffffffffffff16612681565b156124a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612366611a53565b8786866040518563ffffffff1660e01b8152600401612388949392919061339d565b602060405180830381600087803b1580156123a257600080fd5b505af19250505080156123d357506040513d601f19601f820116820180604052508101906123d09190612b6c565b60015b612456573d8060008114612403576040519150601f19603f3d011682016040523d82523d6000602084013e612408565b606091505b5060008151141561244e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244590613496565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124ab565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a906135f6565b60405180910390fd5b61252c816119e7565b1561256c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612563906134d6565b60405180910390fd5b612578600083836122bc565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125c891906137f7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546126a090613a06565b90600052602060002090601f0160209004810192826126c25760008555612709565b82601f106126db57805160ff1916838001178555612709565b82800160010185558215612709579182015b828111156127085782518255916020019190600101906126ed565b5b509050612716919061271a565b5090565b5b8082111561273357600081600090555060010161271b565b5090565b600061274a61274584613711565b6136ec565b9050808382526020820190508285602086028201111561276d5761276c613c01565b5b60005b8581101561279d5781612783888261282b565b845260208401935060208301925050600181019050612770565b5050509392505050565b60006127ba6127b58461373d565b6136ec565b9050828152602081018484840111156127d6576127d5613c06565b5b6127e18482856139c4565b509392505050565b60006127fc6127f78461376e565b6136ec565b90508281526020810184848401111561281857612817613c06565b5b6128238482856139c4565b509392505050565b60008135905061283a816143f9565b92915050565b600082601f83011261285557612854613bfc565b5b8135612865848260208601612737565b91505092915050565b60008135905061287d81614410565b92915050565b60008135905061289281614427565b92915050565b6000815190506128a781614427565b92915050565b600082601f8301126128c2576128c1613bfc565b5b81356128d28482602086016127a7565b91505092915050565b600082601f8301126128f0576128ef613bfc565b5b81356129008482602086016127e9565b91505092915050565b6000813590506129188161443e565b92915050565b60008135905061292d81614455565b92915050565b60006020828403121561294957612948613c10565b5b60006129578482850161282b565b91505092915050565b6000806040838503121561297757612976613c10565b5b60006129858582860161282b565b92505060206129968582860161282b565b9150509250929050565b6000806000606084860312156129b9576129b8613c10565b5b60006129c78682870161282b565b93505060206129d88682870161282b565b92505060406129e986828701612909565b9150509250925092565b60008060008060808587031215612a0d57612a0c613c10565b5b6000612a1b8782880161282b565b9450506020612a2c8782880161282b565b9350506040612a3d87828801612909565b925050606085013567ffffffffffffffff811115612a5e57612a5d613c0b565b5b612a6a878288016128ad565b91505092959194509250565b60008060408385031215612a8d57612a8c613c10565b5b6000612a9b8582860161282b565b9250506020612aac8582860161286e565b9150509250929050565b60008060408385031215612acd57612acc613c10565b5b6000612adb8582860161282b565b9250506020612aec85828601612909565b9150509250929050565b600060208284031215612b0c57612b0b613c10565b5b600082013567ffffffffffffffff811115612b2a57612b29613c0b565b5b612b3684828501612840565b91505092915050565b600060208284031215612b5557612b54613c10565b5b6000612b6384828501612883565b91505092915050565b600060208284031215612b8257612b81613c10565b5b6000612b9084828501612898565b91505092915050565b600060208284031215612baf57612bae613c10565b5b600082013567ffffffffffffffff811115612bcd57612bcc613c0b565b5b612bd9848285016128db565b91505092915050565b600060208284031215612bf857612bf7613c10565b5b6000612c0684828501612909565b91505092915050565b60008060408385031215612c2657612c25613c10565b5b6000612c3485828601612909565b9250506020612c458582860161291e565b9150509250929050565b612c5881613943565b82525050565b612c6f612c6a82613943565b613ab2565b82525050565b612c7e81613955565b82525050565b6000612c8f826137b4565b612c9981856137ca565b9350612ca98185602086016139d3565b612cb281613c15565b840191505092915050565b6000612cc8826137bf565b612cd281856137db565b9350612ce28185602086016139d3565b612ceb81613c15565b840191505092915050565b6000612d01826137bf565b612d0b81856137ec565b9350612d1b8185602086016139d3565b80840191505092915050565b60008154612d3481613a06565b612d3e81866137ec565b94506001821660008114612d595760018114612d6a57612d9d565b60ff19831686528186019350612d9d565b612d738561379f565b60005b83811015612d9557815481890152600182019150602081019050612d76565b838801955050505b50505092915050565b6000612db3600e836137ec565b9150612dbe82613c33565b600e82019050919050565b6000612dd6601a836137db565b9150612de182613c5c565b602082019050919050565b6000612df9602e836137db565b9150612e0482613c85565b604082019050919050565b6000612e1c6032836137db565b9150612e2782613cd4565b604082019050919050565b6000612e3f6009836137ec565b9150612e4a82613d23565b600982019050919050565b6000612e62601c836137db565b9150612e6d82613d4c565b602082019050919050565b6000612e85601c836137db565b9150612e9082613d75565b602082019050919050565b6000612ea8600f836137ec565b9150612eb382613d9e565b600f82019050919050565b6000612ecb6018836137db565b9150612ed682613dc7565b602082019050919050565b6000612eee6024836137db565b9150612ef982613df0565b604082019050919050565b6000612f116019836137db565b9150612f1c82613e3f565b602082019050919050565b6000612f34600f836137ec565b9150612f3f82613e68565b600f82019050919050565b6000612f57602c836137db565b9150612f6282613e91565b604082019050919050565b6000612f7a6013836137ec565b9150612f8582613ee0565b601382019050919050565b6000612f9d602f836137db565b9150612fa882613f09565b604082019050919050565b6000612fc06038836137db565b9150612fcb82613f58565b604082019050919050565b6000612fe3602a836137db565b9150612fee82613fa7565b604082019050919050565b60006130066029836137db565b915061301182613ff6565b604082019050919050565b60006130296020836137db565b915061303482614045565b602082019050919050565b600061304c6001836137ec565b91506130578261406e565b600182019050919050565b600061306f602c836137db565b915061307a82614097565b604082019050919050565b60006130926001836137ec565b915061309d826140e6565b600182019050919050565b60006130b56029836137db565b91506130c08261410f565b604082019050919050565b60006130d8602f836137db565b91506130e38261415e565b604082019050919050565b60006130fb60c3836137ec565b9150613106826141ad565b60c382019050919050565b600061311e6001836137ec565b9150613129826142ba565b600182019050919050565b60006131416021836137db565b915061314c826142e3565b604082019050919050565b6000613164601d836137ec565b915061316f82614332565b601d82019050919050565b60006131876031836137db565b91506131928261435b565b604082019050919050565b60006131aa6028836137ec565b91506131b5826143aa565b602882019050919050565b6131c9816139ad565b82525050565b6131e06131db826139ad565b613ad6565b82525050565b6131ef816139b7565b82525050565b60006132018287612cf6565b915061320c82612f27565b91506132188286612d27565b915061322382612da6565b915061322f8285612cf6565b915061323a82612e32565b91506132468284612cf6565b91506132518261303f565b915081905095945050505050565b600061326a82613085565b91506132768284612cf6565b915061328182613111565b915081905092915050565b600061329782613157565b91506132a38284612cf6565b915081905092915050565b60006132b98261319d565b91506132c58287612cf6565b91506132d0826130ee565b91506132dc8286612d27565b91506132e782612f6d565b91506132f38285612d27565b91506132fe82612e9b565b915061330a8284612cf6565b91506133158261303f565b915081905095945050505050565b600061332f82886131cf565b60208201915061333f82876131cf565b60208201915061334f82866131cf565b60208201915061335f8285612c5e565b60148201915061336f82846131cf565b6020820191508190509695505050505050565b60006020820190506133976000830184612c4f565b92915050565b60006080820190506133b26000830187612c4f565b6133bf6020830186612c4f565b6133cc60408301856131c0565b81810360608301526133de8184612c84565b905095945050505050565b60006020820190506133fe6000830184612c75565b92915050565b6000602082019050818103600083015261341e8184612cbd565b905092915050565b600060408201905081810360008301526134408185612cbd565b905061344f60208301846131e6565b9392505050565b6000602082019050818103600083015261346f81612dc9565b9050919050565b6000602082019050818103600083015261348f81612dec565b9050919050565b600060208201905081810360008301526134af81612e0f565b9050919050565b600060208201905081810360008301526134cf81612e55565b9050919050565b600060208201905081810360008301526134ef81612e78565b9050919050565b6000602082019050818103600083015261350f81612ebe565b9050919050565b6000602082019050818103600083015261352f81612ee1565b9050919050565b6000602082019050818103600083015261354f81612f04565b9050919050565b6000602082019050818103600083015261356f81612f4a565b9050919050565b6000602082019050818103600083015261358f81612f90565b9050919050565b600060208201905081810360008301526135af81612fb3565b9050919050565b600060208201905081810360008301526135cf81612fd6565b9050919050565b600060208201905081810360008301526135ef81612ff9565b9050919050565b6000602082019050818103600083015261360f8161301c565b9050919050565b6000602082019050818103600083015261362f81613062565b9050919050565b6000602082019050818103600083015261364f816130a8565b9050919050565b6000602082019050818103600083015261366f816130cb565b9050919050565b6000602082019050818103600083015261368f81613134565b9050919050565b600060208201905081810360008301526136af8161317a565b9050919050565b60006020820190506136cb60008301846131c0565b92915050565b60006020820190506136e660008301846131e6565b92915050565b60006136f6613707565b90506137028282613a38565b919050565b6000604051905090565b600067ffffffffffffffff82111561372c5761372b613bcd565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561375857613757613bcd565b5b61376182613c15565b9050602081019050919050565b600067ffffffffffffffff82111561378957613788613bcd565b5b61379282613c15565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613802826139ad565b915061380d836139ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561384257613841613b11565b5b828201905092915050565b6000613858826139b7565b9150613863836139b7565b92508260ff0382111561387957613878613b11565b5b828201905092915050565b600061388f826139ad565b915061389a836139ad565b9250826138aa576138a9613b40565b5b828204905092915050565b60006138c0826139ad565b91506138cb836139ad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561390457613903613b11565b5b828202905092915050565b600061391a826139ad565b9150613925836139ad565b92508282101561393857613937613b11565b5b828203905092915050565b600061394e8261398d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156139f15780820151818401526020810190506139d6565b83811115613a00576000848401525b50505050565b60006002820490506001821680613a1e57607f821691505b60208210811415613a3257613a31613b6f565b5b50919050565b613a4182613c15565b810181811067ffffffffffffffff82111715613a6057613a5f613bcd565b5b80604052505050565b6000613a74826139ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613aa757613aa6613b11565b5b600182019050919050565b6000613abd82613ac4565b9050919050565b6000613acf82613c26565b9050919050565b6000819050919050565b6000613aeb826139ad565b9150613af6836139ad565b925082613b0657613b05613b40565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f222c226d61785f76616c7565223a000000000000000000000000000000000000600082015250565b7f4e46463a20596f7520617265206e6f7420746865206f776e6572000000000000600082015250565b7f4e46463a20596f7520617265206e6f7420616c6c6f77656420746f2063616c6c60008201527f20746869732066756e6374696f6e000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f2c2276616c7565223a0000000000000000000000000000000000000000000000600082015250565b7f4e46463a20596f7520617265206e6f742077686974656c697374656400000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222c2261747472696275746573223a0000000000000000000000000000000000600082015250565b7f4e46463a20436f6e747261637420697320706175736564210000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f7b2274726169745f74797065223a220000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222c22616e696d6174696f6e5f75726c223a2200000000000000000000000000600082015250565b7f4e46463a20596f7520617265206e6f7420616c6c6f77656420746f206d696e7460008201527f20616e796d6f726520746f6b656e730000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5b00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f222c226465736372697074696f6e223a2022546865204e46462067656e65736960008201527f7320636172747269646765207065726d6974732061636365737320746f20746860208201527f65204672656e7320446973636f72642072657374726963746564206368616e6e60408201527f656c732e204561636820686f6c64657220697320656e7469746c656420746f2060608201527f6120766f746520696e2074686520676f7665726e616e6365206f66207468652060808201527f4e6f6e2046756e6769626c65204672656e732044414f2e222c2022696d61676560a08201527f223a22000000000000000000000000000000000000000000000000000000000060c082015250565b7f5d00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f7b226e616d65223a20224e6f6e2046756e6769626c65204672656e732043617260008201527f7472696467652023000000000000000000000000000000000000000000000000602082015250565b61440281613943565b811461440d57600080fd5b50565b61441981613955565b811461442457600080fd5b50565b61443081613961565b811461443b57600080fd5b50565b614447816139ad565b811461445257600080fd5b50565b61445e816139b7565b811461446957600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122096ea32bde050ee63907ede8ec2b14fe86eefd1f69d739b0a53bc857f56137eb764736f6c63430008060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d657777727377735542477a745268473738706445696831483766396b324e32664d504e7561625648654831552f4e65775f566964656f2e6769660000000000000000000000000000000000000000000000000000000000000000005e68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d657777727377735542477a745268473738706445696831483766396b324e32664d504e7561625648654831552f4e65775f566964656f2e6d70340000
-----Decoded View---------------
Arg [0] : _imageURI (string): https://gateway.pinata.cloud/ipfs/QmewwrswsUBGztRhG78pdEih1H7f9k2N2fMPNuabVHeH1U/New_Video.gif
Arg [1] : _animationURI (string): https://gateway.pinata.cloud/ipfs/QmewwrswsUBGztRhG78pdEih1H7f9k2N2fMPNuabVHeH1U/New_Video.mp4
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000005e
Arg [3] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [4] : 732f516d657777727377735542477a745268473738706445696831483766396b
Arg [5] : 324e32664d504e7561625648654831552f4e65775f566964656f2e6769660000
Arg [6] : 000000000000000000000000000000000000000000000000000000000000005e
Arg [7] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [8] : 732f516d657777727377735542477a745268473738706445696831483766396b
Arg [9] : 324e32664d504e7561625648654831552f4e65775f566964656f2e6d70340000
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.