Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,000 INVISINOUNS
Holders
1,460
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 INVISINOUNSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NounCatsInvisibles
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity 0.8.10; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ Noun Cats – The Invisibles $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$$$$jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$$$$jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$!!!!!!lllllllll>---------~!!!!!$$$$jjjjjt|||||||||ruuuuuuuuurjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$!!!!!; )$$$$$$$$$C!!!!!$$$$jjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$!!!!!; )$$$$$$$$$C!!!!!$$$$jjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$jjjjjjjjjjjjjjj{!!!!; )$$$$$$$$$C!!!!]jjjjjjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$jjjjjjjjjjjjjjj)!!!!; )$$$$$$$$$C!!!![jjjjjjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$jjjjjjjjjjjjjjj)!!!!; )$$$$$$$$$C!!!![jjjjjjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$jjjjjj$$$$$$$$$!!!!!; )$$$$$$$$$C!!!!!$$$$jjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$jjjjjj$$$$$$$$$!!!!!; )$$$$$$$$$C!!!!!$$$$jjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$jjjjjj$$$$$$$$$!!!!!; )$$$$$$$$$C!!!!!$$$$jjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$jjjjjj$$$$$$$$$!!!!!; )$$$$$$$$$C!!!!!$$$$jjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$jjjjjj$$$$$$$$$!!!!!; )$$$$$$$$$C!!!!!$$$$jjjjj> J$$$$$$$$$Jjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$xjjjjj$$$$$$$$$!!!!!l;;;;;;;;;~)))))))))?!!!!!$$$$jjjjj|{{{{{{{{{nYYYYYYYYYnjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$$$$jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!$$$$jjjjjjjjjjjjjjjjjjjjjjjjjjjjjjj$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // $$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$ // Contract by: @backseats_eth /// Noun Cats is two 5,000 piece collections. This is part one: The Invisibles. The goal is to acquire your Nounterpart, in this case, The Cat, from the forthcoming collection /// and either work solo or with the Nounterpart owner to interact with a contract to mint something completely new! contract NounCatsInvisibles is ERC721, Ownable { using ECDSA for bytes32; using Counters for Counters.Counter; Counters.Counter private _tokenSupply; uint256 public price = 0.075 ether; // We're giving away 500 free Invisibles! uint256 public constant MAX_EARLY_SALE_SUPPLY = 500; // We go one over the actual max supply because < is cheaper than <= gas-wise. uint256 public constant MAX_SUPPLY = 5001; // Tracking which nonces have been used from the server mapping(string => bool) public usedNonces; // Tracking which addresses have minted their 1 free Invisible Noun Cat mapping(address => bool) public didMintEarly; // Tracking how many mints an address has done in pre-sale. Can mint up to 3 mapping(address => uint) public allowListMintCount; // The Merkle tree root for minting a free Invisible Noun Cat to certain addresses bytes32 public freeSaleMerkleRoot; // The Merkle tree root of our allow list addresses. Cheaper than storing an array of addresses or encrypted addresses on-chain bytes32 public allowListMerkleRoot; // The address of the private key that creates nonces and signs signatures for mint address public systemAddress; // The IPFS URI where our data can be found string public _baseTokenURI; // Tracking whether we've minted our 25 Invisibles yet bool public teamMintFinished; // An enum and associated variable tracking the state of the mint enum MintState { CLOSED, EARLY, ALLOWLIST, OPEN } MintState public _mintState; // Constructor constructor() ERC721("Noun Cats Invisibles", "INVISINOUNS") {} // Mint Functions /// @notice The first 500 Noun Cats are free! Each wallet can only mint 1. function mintEarly(bytes32[] calldata _merkleProof) external { require(_mintState == MintState.EARLY, "Early mint closed"); require(totalSupply() < MAX_EARLY_SALE_SUPPLY, "Early mint full"); require(!didMintEarly[msg.sender], 'Already minted'); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, freeSaleMerkleRoot, leaf), 'Not on the list'); didMintEarly[msg.sender] = true; _tokenSupply.increment(); _mint(msg.sender, totalSupply()); } /// @notice Function requires a Merkle proof and will only work if called from the minting site. /// Allows the allowList minter to come back and mint again if they mint under 3 max mints in the first transaction(s). function allowListMint(bytes32[] calldata _merkleProof, uint _amount) external payable { require(_mintState == MintState.ALLOWLIST, "Allow list mint closed"); require(allowListMintCount[msg.sender] + _amount < 4, "Can only mint 3"); require(totalSupply() + _amount < MAX_SUPPLY, "Exceeds max supply"); require(price * _amount == msg.value, "Wrong ETH amount"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, allowListMerkleRoot, leaf), 'Not on the list'); allowListMintCount[msg.sender] = allowListMintCount[msg.sender] + _amount; mint(msg.sender, _amount); } /// @notice Mint up to 10 Invisible Noun Cats in a transaction function publicMint(string calldata _nonce, uint _amount, bytes calldata _signature) external payable { require(_mintState == MintState.OPEN, "Mint closed"); require(msg.sender == tx.origin, "Real users only"); require(_amount < 11, "Wrong amount"); require(totalSupply() + _amount < MAX_SUPPLY, 'Exceeds max supply'); require(price * _amount == msg.value, "Wrong ETH amount"); require(!usedNonces[_nonce], "Nonce already used"); require(isValidSignature(keccak256(abi.encodePacked(msg.sender, _amount, _nonce)), _signature), "Invalid signature"); usedNonces[_nonce] = true; mint(msg.sender, _amount); } /// @notice Allows the team to mint Invisibles to a destination address function promoMint(address _to, uint _amount) external onlyOwner { require(totalSupply() + _amount < MAX_SUPPLY, 'Exceeds max supply'); mint(_to, _amount); } /// @notice Allows the team to do a one-time mint of 25 Invisibles for events, giveaways, collabs, fun future things, etc. /// We like surprises. function teamMint() external onlyOwner { require(!teamMintFinished, "Already minted our Cats"); require(totalSupply() + 25 < MAX_SUPPLY, 'Exceeds max supply'); teamMintFinished = true; mint(msg.sender, 25); } function mint(address _to, uint _amount) private { for(uint i = 0; i < _amount; i++) { _tokenSupply.increment(); _mint(_to, totalSupply()); } } function totalSupply() public view returns (uint) { return _tokenSupply.current(); } /// @notice Checks if the private key that singed the nonce matches the system address of the contract function isValidSignature(bytes32 hash, bytes calldata signature) internal view returns (bool) { require(systemAddress != address(0), "Missing system address"); bytes32 signedHash = hash.toEthSignedMessageHash(); return signedHash.recover(signature) == systemAddress; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } // Ownable Functions function setSystemAddress(address _systemAddress) external onlyOwner { systemAddress = _systemAddress; } function setBaseURI(string calldata _baseURI) external onlyOwner { _baseTokenURI = _baseURI; } function setFreeSaleMerkleRoot(bytes32 _root) external onlyOwner { freeSaleMerkleRoot = _root; } function setAllowListMerkleRoot(bytes32 _root) external onlyOwner { allowListMerkleRoot = _root; } function setMintState(uint256 status) external onlyOwner { require(status <= uint256(MintState.OPEN), "Bad status"); _mintState = MintState(status); } // Important: Set new price in wei (i.e. 50000000000000000 for 0.05 ETH) function setPrice(uint _newPrice) external onlyOwner { price = _newPrice; } function withdraw() external onlyOwner { address w1 = 0x702457481718bEF08C5bb0124083A1369fAB4542; address w2 = 0x5390B04839C6EBaA765886E1EDe2BCE7116e462F; address w3 = 0x02fBd51319bee0c0b135E99E0bABED20dF8414d2; address w4 = 0x3733f44e9FF13d398512449E4d96E78Bc5594708; address w5 = 0x3230086971D2D50D30642e3e344233f56BECB5C5; uint balance = address(this).balance; uint256 smallBal = balance * 50/1000; uint256 largeBal = balance * 425/1000; (bool sent, ) = w1.call{value: smallBal}(""); require(sent, "w1 Send failed"); (bool sent2, ) = w2.call{value: smallBal}(""); require(sent2, "w2 Send failed"); (bool sent3, ) = w3.call{value: smallBal}(""); require(sent3, "w3 Send failed"); (bool sent4, ) = w4.call{value: largeBal}(""); require(sent4, "w4 Send failed"); (bool sent5, ) = w5.call{value: largeBal}(""); require(sent5, "w5 Send failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_EARLY_SALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintState","outputs":[{"internalType":"enum NounCatsInvisibles.MintState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"allowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"didMintEarly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintEarly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_nonce","type":"string"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"bytes32","name":"_root","type":"bytes32"}],"name":"setAllowListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setFreeSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"status","type":"uint256"}],"name":"setMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_systemAddress","type":"address"}],"name":"setSystemAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"systemAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintFinished","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"","type":"string"}],"name":"usedNonces","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405267010a741a462780006008553480156200001d57600080fd5b506040518060400160405280601481526020017f4e6f756e204361747320496e76697369626c65730000000000000000000000008152506040518060400160405280600b81526020017f494e564953494e4f554e530000000000000000000000000000000000000000008152508160009080519060200190620000a2929190620001b2565b508060019080519060200190620000bb929190620001b2565b505050620000de620000d2620000e460201b60201c565b620000ec60201b60201c565b620002c7565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c09062000291565b90600052602060002090601f016020900481019282620001e4576000855562000230565b82601f10620001ff57805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200022f57825182559160200191906001019062000212565b5b5090506200023f919062000243565b5090565b5b808211156200025e57600081600090555060010162000244565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002aa57607f821691505b60208210811415620002c157620002c062000262565b5b50919050565b615f0080620002d76000396000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063cfc86f7b1161007a578063cfc86f7b14610838578063d3e848f114610863578063e4f376f01461088e578063e985e9c5146108cb578063ea7a42e414610908578063f2fde38b1461093157610246565b8063a22cb46514610769578063a2a3eb4d14610792578063b88d4fde146107bb578063ba7a86b8146107e4578063c87b56dd146107fb57610246565b806392ea1de2116100fd57806392ea1de2146106b057806395c2d002146106cc57806395d89b41146106e85780639bb906e014610713578063a035b1fe1461073e57610246565b806370a08231146105dd578063715018a61461061a5780637d4c60eb146106315780638da5cb5b1461065c57806391b7f5ed1461068757610246565b806326ddb3cd116101c75780634c5f6bfc1161018b5780634c5f6bfc146104f857806355f804b3146105235780635a5e8baa1461054c5780636352211e146105755780636f3a1b40146105b257610246565b806326ddb3cd14610425578063290c166c1461046257806332cb6b0c1461048d5780633ccfd60b146104b857806342842e0e146104cf57610246565b80630bb862d11161020e5780630bb862d11461034257806315bee6821461036b57806318160ddd146103a85780631a6ff0f9146103d357806323b872dd146103fc57610246565b806301ffc9a71461024b578063062101971461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b4c565b61095a565b60405161027f9190613b94565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613c0d565b610a3c565b005b3480156102bd57600080fd5b506102c6610afc565b6040516102d39190613cd3565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613d2b565b610b8e565b6040516103109190613d67565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613d82565b610c13565b005b34801561034e57600080fd5b5061036960048036038101906103649190613d2b565b610d2b565b005b34801561037757600080fd5b50610392600480360381019061038d9190613c0d565b610e3b565b60405161039f9190613b94565b60405180910390f35b3480156103b457600080fd5b506103bd610e5b565b6040516103ca9190613dd1565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190613e22565b610e6c565b005b34801561040857600080fd5b50610423600480360381019061041e9190613e4f565b610ef2565b005b34801561043157600080fd5b5061044c60048036038101906104479190613c0d565b610f52565b6040516104599190613dd1565b60405180910390f35b34801561046e57600080fd5b50610477610f6a565b6040516104849190613eb1565b60405180910390f35b34801561049957600080fd5b506104a2610f70565b6040516104af9190613dd1565b60405180910390f35b3480156104c457600080fd5b506104cd610f76565b005b3480156104db57600080fd5b506104f660048036038101906104f19190613e4f565b61141c565b005b34801561050457600080fd5b5061050d61143c565b60405161051a9190613dd1565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613f31565b611442565b005b34801561055857600080fd5b50610573600480360381019061056e9190613fd4565b6114d4565b005b34801561058157600080fd5b5061059c60048036038101906105979190613d2b565b611752565b6040516105a99190613d67565b60405180910390f35b3480156105be57600080fd5b506105c7611804565b6040516105d49190614098565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613c0d565b611817565b6040516106119190613dd1565b60405180910390f35b34801561062657600080fd5b5061062f6118cf565b005b34801561063d57600080fd5b50610646611957565b6040516106539190613b94565b60405180910390f35b34801561066857600080fd5b5061067161196a565b60405161067e9190613d67565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190613d2b565b611994565b005b6106ca60048036038101906106c591906140b3565b611a1a565b005b6106e660048036038101906106e19190614169565b611d18565b005b3480156106f457600080fd5b506106fd612011565b60405161070a9190613cd3565b60405180910390f35b34801561071f57600080fd5b506107286120a3565b6040516107359190613eb1565b60405180910390f35b34801561074a57600080fd5b506107536120a9565b6040516107609190613dd1565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b919061422a565b6120af565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613d82565b6120c5565b005b3480156107c757600080fd5b506107e260048036038101906107dd919061439a565b6121a5565b005b3480156107f057600080fd5b506107f9612207565b005b34801561080757600080fd5b50610822600480360381019061081d9190613d2b565b612352565b60405161082f9190613cd3565b60405180910390f35b34801561084457600080fd5b5061084d6123f9565b60405161085a9190613cd3565b60405180910390f35b34801561086f57600080fd5b50610878612487565b6040516108859190613d67565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b091906144be565b6124ad565b6040516108c29190613b94565b60405180910390f35b3480156108d757600080fd5b506108f260048036038101906108ed9190614507565b6124e3565b6040516108ff9190613b94565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a9190613e22565b612577565b005b34801561093d57600080fd5b5061095860048036038101906109539190613c0d565b6125fd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a355750610a34826126f5565b5b9050919050565b610a4461275f565b73ffffffffffffffffffffffffffffffffffffffff16610a6261196a565b73ffffffffffffffffffffffffffffffffffffffff1614610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90614593565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610b0b906145e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b37906145e2565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b6000610b9982612767565b610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90614686565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1e82611752565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690614718565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cae61275f565b73ffffffffffffffffffffffffffffffffffffffff161480610cdd5750610cdc81610cd761275f565b6124e3565b5b610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906147aa565b60405180910390fd5b610d2683836127d3565b505050565b610d3361275f565b73ffffffffffffffffffffffffffffffffffffffff16610d5161196a565b73ffffffffffffffffffffffffffffffffffffffff1614610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90614593565b60405180910390fd5b600380811115610dba57610db9614021565b5b811115610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390614816565b60405180910390fd5b806003811115610e0f57610e0e614021565b5b601060016101000a81548160ff02191690836003811115610e3357610e32614021565b5b021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000610e67600761288c565b905090565b610e7461275f565b73ffffffffffffffffffffffffffffffffffffffff16610e9261196a565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90614593565b60405180910390fd5b80600c8190555050565b610f03610efd61275f565b8261289a565b610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f39906148a8565b60405180910390fd5b610f4d838383612978565b505050565b600b6020528060005260406000206000915090505481565b600c5481565b61138981565b610f7e61275f565b73ffffffffffffffffffffffffffffffffffffffff16610f9c61196a565b73ffffffffffffffffffffffffffffffffffffffff1614610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe990614593565b60405180910390fd5b600073702457481718bef08c5bb0124083a1369fab454290506000735390b04839c6ebaa765886e1ede2bce7116e462f905060007302fbd51319bee0c0b135e99e0babed20df8414d290506000733733f44e9ff13d398512449e4d96e78bc559470890506000733230086971d2d50d30642e3e344233f56becb5c59050600047905060006103e860328361108691906148f7565b6110909190614980565b905060006103e86101a9846110a591906148f7565b6110af9190614980565b905060008873ffffffffffffffffffffffffffffffffffffffff16836040516110d7906149e2565b60006040518083038185875af1925050503d8060008114611114576040519150601f19603f3d011682016040523d82523d6000602084013e611119565b606091505b505090508061115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490614a43565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff1684604051611183906149e2565b60006040518083038185875af1925050503d80600081146111c0576040519150601f19603f3d011682016040523d82523d6000602084013e6111c5565b606091505b5050905080611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614aaf565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff168560405161122f906149e2565b60006040518083038185875af1925050503d806000811461126c576040519150601f19603f3d011682016040523d82523d6000602084013e611271565b606091505b50509050806112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90614b1b565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff16856040516112db906149e2565b60006040518083038185875af1925050503d8060008114611318576040519150601f19603f3d011682016040523d82523d6000602084013e61131d565b606091505b5050905080611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890614b87565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff1686604051611387906149e2565b60006040518083038185875af1925050503d80600081146113c4576040519150601f19603f3d011682016040523d82523d6000602084013e6113c9565b606091505b505090508061140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490614bf3565b60405180910390fd5b50505050505050505050505050565b611437838383604051806020016040528060008152506121a5565b505050565b6101f481565b61144a61275f565b73ffffffffffffffffffffffffffffffffffffffff1661146861196a565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614593565b60405180910390fd5b8181600f91906114cf929190613a3d565b505050565b600160038111156114e8576114e7614021565b5b601060019054906101000a900460ff16600381111561150a57611509614021565b5b1461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190614c5f565b60405180910390fd5b6101f4611555610e5b565b10611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90614ccb565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614d37565b60405180910390fd5b6000336040516020016116359190614d9f565b60405160208183030381529060405280519060200120905061169b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612bd4565b6116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190614e06565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061173c6007612beb565b61174d33611748610e5b565b612c01565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290614e98565b60405180910390fd5b80915050919050565b601060019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90614f2a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118d761275f565b73ffffffffffffffffffffffffffffffffffffffff166118f561196a565b73ffffffffffffffffffffffffffffffffffffffff161461194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290614593565b60405180910390fd5b6119556000612dcf565b565b601060009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61199c61275f565b73ffffffffffffffffffffffffffffffffffffffff166119ba61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790614593565b60405180910390fd5b8060088190555050565b60026003811115611a2e57611a2d614021565b5b601060019054906101000a900460ff166003811115611a5057611a4f614021565b5b14611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790614f96565b60405180910390fd5b600481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611add9190614fb6565b10611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490615058565b60405180910390fd5b61138981611b29610e5b565b611b339190614fb6565b10611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a906150c4565b60405180910390fd5b3481600854611b8291906148f7565b14611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990615130565b60405180910390fd5b600033604051602001611bd59190614d9f565b604051602081830303815290604052805190602001209050611c3b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612bd4565b611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190614e06565b60405180910390fd5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc59190614fb6565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d123383612e95565b50505050565b600380811115611d2b57611d2a614021565b5b601060019054906101000a900460ff166003811115611d4d57611d4c614021565b5b14611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d849061519c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290615208565b60405180910390fd5b600b8310611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590615274565b60405180910390fd5b61138983611e4a610e5b565b611e549190614fb6565b10611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b906150c4565b60405180910390fd5b3483600854611ea391906148f7565b14611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90615130565b60405180910390fd5b60098585604051611ef59291906152c4565b908152602001604051809103902060009054906101000a900460ff1615611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890615329565b60405180910390fd5b611f8833848787604051602001611f6b949392919061536a565b604051602081830303815290604052805190602001208383612ed3565b611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe906153f1565b60405180910390fd5b600160098686604051611fdb9291906152c4565b908152602001604051809103902060006101000a81548160ff02191690831515021790555061200a3384612e95565b5050505050565b606060018054612020906145e2565b80601f016020809104026020016040519081016040528092919081815260200182805461204c906145e2565b80156120995780601f1061206e57610100808354040283529160200191612099565b820191906000526020600020905b81548152906001019060200180831161207c57829003601f168201915b5050505050905090565b600d5481565b60085481565b6120c16120ba61275f565b8383613024565b5050565b6120cd61275f565b73ffffffffffffffffffffffffffffffffffffffff166120eb61196a565b73ffffffffffffffffffffffffffffffffffffffff1614612141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213890614593565b60405180910390fd5b6113898161214d610e5b565b6121579190614fb6565b10612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906150c4565b60405180910390fd5b6121a18282612e95565b5050565b6121b66121b061275f565b8361289a565b6121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec906148a8565b60405180910390fd5b61220184848484613191565b50505050565b61220f61275f565b73ffffffffffffffffffffffffffffffffffffffff1661222d61196a565b73ffffffffffffffffffffffffffffffffffffffff1614612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90614593565b60405180910390fd5b601060009054906101000a900460ff16156122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca9061545d565b60405180910390fd5b61138960196122e0610e5b565b6122ea9190614fb6565b1061232a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612321906150c4565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550612350336019612e95565b565b606061235d82612767565b61239c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612393906154ef565b60405180910390fd5b60006123a66131ed565b905060008151116123c657604051806020016040528060008152506123f1565b806123d08461327f565b6040516020016123e1929190615540565b6040516020818303038152906040525b915050919050565b600f8054612406906145e2565b80601f0160208091040260200160405190810160405280929190818152602001828054612432906145e2565b801561247f5780601f106124545761010080835404028352916020019161247f565b820191906000526020600020905b81548152906001019060200180831161246257829003601f168201915b505050505081565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6009818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61257f61275f565b73ffffffffffffffffffffffffffffffffffffffff1661259d61196a565b73ffffffffffffffffffffffffffffffffffffffff16146125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90614593565b60405180910390fd5b80600d8190555050565b61260561275f565b73ffffffffffffffffffffffffffffffffffffffff1661262361196a565b73ffffffffffffffffffffffffffffffffffffffff1614612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614593565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e0906155d6565b60405180910390fd5b6126f281612dcf565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661284683611752565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006128a582612767565b6128e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128db90615668565b60405180910390fd5b60006128ef83611752565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061295e57508373ffffffffffffffffffffffffffffffffffffffff1661294684610b8e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061296f575061296e81856124e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661299882611752565b73ffffffffffffffffffffffffffffffffffffffff16146129ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e5906156fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a559061578c565b60405180910390fd5b612a698383836133e0565b612a746000826127d3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac491906157ac565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1b9190614fb6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082612be185846133e5565b1490509392505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c689061582c565b60405180910390fd5b612c7a81612767565b15612cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb190615898565b60405180910390fd5b612cc6600083836133e0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d169190614fb6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612ece57612eaa6007612beb565b612ebb83612eb6610e5b565b612c01565b8080612ec6906158b8565b915050612e98565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d9061594d565b60405180910390fd5b6000612f7185613498565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661300385858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050836134c890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16149150509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308a906159b9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131849190613b94565b60405180910390a3505050565b61319c848484612978565b6131a8848484846134ef565b6131e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131de90615a4b565b60405180910390fd5b50505050565b6060600f80546131fc906145e2565b80601f0160208091040260200160405190810160405280929190818152602001828054613228906145e2565b80156132755780601f1061324a57610100808354040283529160200191613275565b820191906000526020600020905b81548152906001019060200180831161325857829003601f168201915b5050505050905090565b606060008214156132c7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133db565b600082905060005b600082146132f95780806132e2906158b8565b915050600a826132f29190614980565b91506132cf565b60008167ffffffffffffffff8111156133155761331461426f565b5b6040519080825280601f01601f1916602001820160405280156133475781602001600182028036833780820191505090505b5090505b600085146133d45760018261336091906157ac565b9150600a8561336f9190615a6b565b603061337b9190614fb6565b60f81b81838151811061339157613390615a9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133cd9190614980565b945061334b565b8093505050505b919050565b505050565b60008082905060005b845181101561348d57600085828151811061340c5761340b615a9c565b5b6020026020010151905080831161344d578281604051602001613430929190615aec565b604051602081830303815290604052805190602001209250613479565b8083604051602001613460929190615aec565b6040516020818303038152906040528051906020012092505b508080613485906158b8565b9150506133ee565b508091505092915050565b6000816040516020016134ab9190615b64565b604051602081830303815290604052805190602001209050919050565b60008060006134d78585613677565b915091506134e4816136fa565b819250505092915050565b60006135108473ffffffffffffffffffffffffffffffffffffffff166138cf565b1561366a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261353961275f565b8786866040518563ffffffff1660e01b815260040161355b9493929190615bdf565b6020604051808303816000875af192505050801561359757506040513d601f19601f820116820180604052508101906135949190615c40565b60015b61361a573d80600081146135c7576040519150601f19603f3d011682016040523d82523d6000602084013e6135cc565b606091505b50600081511415613612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360990615a4b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061366f565b600190505b949350505050565b6000806041835114156136b95760008060006020860151925060408601519150606086015160001a90506136ad878285856138e2565b945094505050506136f3565b6040835114156136ea5760008060208501519150604085015190506136df8683836139ef565b9350935050506136f3565b60006002915091505b9250929050565b6000600481111561370e5761370d614021565b5b81600481111561372157613720614021565b5b141561372c576138cc565b600160048111156137405761373f614021565b5b81600481111561375357613752614021565b5b1415613794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378b90615cb9565b60405180910390fd5b600260048111156137a8576137a7614021565b5b8160048111156137bb576137ba614021565b5b14156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615d25565b60405180910390fd5b600360048111156138105761380f614021565b5b81600481111561382357613822614021565b5b1415613864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385b90615db7565b60405180910390fd5b60048081111561387757613876614021565b5b81600481111561388a57613889614021565b5b14156138cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c290615e49565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561391d5760006003915091506139e6565b601b8560ff16141580156139355750601c8560ff1614155b156139475760006004915091506139e6565b60006001878787876040516000815260200160405260405161396c9493929190615e85565b6020604051602081039080840390855afa15801561398e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156139dd576000600192509250506139e6565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613a2f878288856138e2565b935093505050935093915050565b828054613a49906145e2565b90600052602060002090601f016020900481019282613a6b5760008555613ab2565b82601f10613a8457803560ff1916838001178555613ab2565b82800160010185558215613ab2579182015b82811115613ab1578235825591602001919060010190613a96565b5b509050613abf9190613ac3565b5090565b5b80821115613adc576000816000905550600101613ac4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b2981613af4565b8114613b3457600080fd5b50565b600081359050613b4681613b20565b92915050565b600060208284031215613b6257613b61613aea565b5b6000613b7084828501613b37565b91505092915050565b60008115159050919050565b613b8e81613b79565b82525050565b6000602082019050613ba96000830184613b85565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bda82613baf565b9050919050565b613bea81613bcf565b8114613bf557600080fd5b50565b600081359050613c0781613be1565b92915050565b600060208284031215613c2357613c22613aea565b5b6000613c3184828501613bf8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c74578082015181840152602081019050613c59565b83811115613c83576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ca582613c3a565b613caf8185613c45565b9350613cbf818560208601613c56565b613cc881613c89565b840191505092915050565b60006020820190508181036000830152613ced8184613c9a565b905092915050565b6000819050919050565b613d0881613cf5565b8114613d1357600080fd5b50565b600081359050613d2581613cff565b92915050565b600060208284031215613d4157613d40613aea565b5b6000613d4f84828501613d16565b91505092915050565b613d6181613bcf565b82525050565b6000602082019050613d7c6000830184613d58565b92915050565b60008060408385031215613d9957613d98613aea565b5b6000613da785828601613bf8565b9250506020613db885828601613d16565b9150509250929050565b613dcb81613cf5565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b6000819050919050565b613dff81613dec565b8114613e0a57600080fd5b50565b600081359050613e1c81613df6565b92915050565b600060208284031215613e3857613e37613aea565b5b6000613e4684828501613e0d565b91505092915050565b600080600060608486031215613e6857613e67613aea565b5b6000613e7686828701613bf8565b9350506020613e8786828701613bf8565b9250506040613e9886828701613d16565b9150509250925092565b613eab81613dec565b82525050565b6000602082019050613ec66000830184613ea2565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613ef157613ef0613ecc565b5b8235905067ffffffffffffffff811115613f0e57613f0d613ed1565b5b602083019150836001820283011115613f2a57613f29613ed6565b5b9250929050565b60008060208385031215613f4857613f47613aea565b5b600083013567ffffffffffffffff811115613f6657613f65613aef565b5b613f7285828601613edb565b92509250509250929050565b60008083601f840112613f9457613f93613ecc565b5b8235905067ffffffffffffffff811115613fb157613fb0613ed1565b5b602083019150836020820283011115613fcd57613fcc613ed6565b5b9250929050565b60008060208385031215613feb57613fea613aea565b5b600083013567ffffffffffffffff81111561400957614008613aef565b5b61401585828601613f7e565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061406157614060614021565b5b50565b600081905061407282614050565b919050565b600061408282614064565b9050919050565b61409281614077565b82525050565b60006020820190506140ad6000830184614089565b92915050565b6000806000604084860312156140cc576140cb613aea565b5b600084013567ffffffffffffffff8111156140ea576140e9613aef565b5b6140f686828701613f7e565b9350935050602061410986828701613d16565b9150509250925092565b60008083601f84011261412957614128613ecc565b5b8235905067ffffffffffffffff81111561414657614145613ed1565b5b60208301915083600182028301111561416257614161613ed6565b5b9250929050565b60008060008060006060868803121561418557614184613aea565b5b600086013567ffffffffffffffff8111156141a3576141a2613aef565b5b6141af88828901613edb565b955095505060206141c288828901613d16565b935050604086013567ffffffffffffffff8111156141e3576141e2613aef565b5b6141ef88828901614113565b92509250509295509295909350565b61420781613b79565b811461421257600080fd5b50565b600081359050614224816141fe565b92915050565b6000806040838503121561424157614240613aea565b5b600061424f85828601613bf8565b925050602061426085828601614215565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142a782613c89565b810181811067ffffffffffffffff821117156142c6576142c561426f565b5b80604052505050565b60006142d9613ae0565b90506142e5828261429e565b919050565b600067ffffffffffffffff8211156143055761430461426f565b5b61430e82613c89565b9050602081019050919050565b82818337600083830152505050565b600061433d614338846142ea565b6142cf565b9050828152602081018484840111156143595761435861426a565b5b61436484828561431b565b509392505050565b600082601f83011261438157614380613ecc565b5b813561439184826020860161432a565b91505092915050565b600080600080608085870312156143b4576143b3613aea565b5b60006143c287828801613bf8565b94505060206143d387828801613bf8565b93505060406143e487828801613d16565b925050606085013567ffffffffffffffff81111561440557614404613aef565b5b6144118782880161436c565b91505092959194509250565b600067ffffffffffffffff8211156144385761443761426f565b5b61444182613c89565b9050602081019050919050565b600061446161445c8461441d565b6142cf565b90508281526020810184848401111561447d5761447c61426a565b5b61448884828561431b565b509392505050565b600082601f8301126144a5576144a4613ecc565b5b81356144b584826020860161444e565b91505092915050565b6000602082840312156144d4576144d3613aea565b5b600082013567ffffffffffffffff8111156144f2576144f1613aef565b5b6144fe84828501614490565b91505092915050565b6000806040838503121561451e5761451d613aea565b5b600061452c85828601613bf8565b925050602061453d85828601613bf8565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061457d602083613c45565b915061458882614547565b602082019050919050565b600060208201905081810360008301526145ac81614570565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145fa57607f821691505b6020821081141561460e5761460d6145b3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614670602c83613c45565b915061467b82614614565b604082019050919050565b6000602082019050818103600083015261469f81614663565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614702602183613c45565b915061470d826146a6565b604082019050919050565b60006020820190508181036000830152614731816146f5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614794603883613c45565b915061479f82614738565b604082019050919050565b600060208201905081810360008301526147c381614787565b9050919050565b7f4261642073746174757300000000000000000000000000000000000000000000600082015250565b6000614800600a83613c45565b915061480b826147ca565b602082019050919050565b6000602082019050818103600083015261482f816147f3565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614892603183613c45565b915061489d82614836565b604082019050919050565b600060208201905081810360008301526148c181614885565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061490282613cf5565b915061490d83613cf5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614946576149456148c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061498b82613cf5565b915061499683613cf5565b9250826149a6576149a5614951565b5b828204905092915050565b600081905092915050565b50565b60006149cc6000836149b1565b91506149d7826149bc565b600082019050919050565b60006149ed826149bf565b9150819050919050565b7f77312053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614a2d600e83613c45565b9150614a38826149f7565b602082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f77322053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614a99600e83613c45565b9150614aa482614a63565b602082019050919050565b60006020820190508181036000830152614ac881614a8c565b9050919050565b7f77332053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614b05600e83613c45565b9150614b1082614acf565b602082019050919050565b60006020820190508181036000830152614b3481614af8565b9050919050565b7f77342053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614b71600e83613c45565b9150614b7c82614b3b565b602082019050919050565b60006020820190508181036000830152614ba081614b64565b9050919050565b7f77352053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614bdd600e83613c45565b9150614be882614ba7565b602082019050919050565b60006020820190508181036000830152614c0c81614bd0565b9050919050565b7f4561726c79206d696e7420636c6f736564000000000000000000000000000000600082015250565b6000614c49601183613c45565b9150614c5482614c13565b602082019050919050565b60006020820190508181036000830152614c7881614c3c565b9050919050565b7f4561726c79206d696e742066756c6c0000000000000000000000000000000000600082015250565b6000614cb5600f83613c45565b9150614cc082614c7f565b602082019050919050565b60006020820190508181036000830152614ce481614ca8565b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b6000614d21600e83613c45565b9150614d2c82614ceb565b602082019050919050565b60006020820190508181036000830152614d5081614d14565b9050919050565b60008160601b9050919050565b6000614d6f82614d57565b9050919050565b6000614d8182614d64565b9050919050565b614d99614d9482613bcf565b614d76565b82525050565b6000614dab8284614d88565b60148201915081905092915050565b7f4e6f74206f6e20746865206c6973740000000000000000000000000000000000600082015250565b6000614df0600f83613c45565b9150614dfb82614dba565b602082019050919050565b60006020820190508181036000830152614e1f81614de3565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614e82602983613c45565b9150614e8d82614e26565b604082019050919050565b60006020820190508181036000830152614eb181614e75565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614f14602a83613c45565b9150614f1f82614eb8565b604082019050919050565b60006020820190508181036000830152614f4381614f07565b9050919050565b7f416c6c6f77206c697374206d696e7420636c6f73656400000000000000000000600082015250565b6000614f80601683613c45565b9150614f8b82614f4a565b602082019050919050565b60006020820190508181036000830152614faf81614f73565b9050919050565b6000614fc182613cf5565b9150614fcc83613cf5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615001576150006148c8565b5b828201905092915050565b7f43616e206f6e6c79206d696e7420330000000000000000000000000000000000600082015250565b6000615042600f83613c45565b915061504d8261500c565b602082019050919050565b6000602082019050818103600083015261507181615035565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006150ae601283613c45565b91506150b982615078565b602082019050919050565b600060208201905081810360008301526150dd816150a1565b9050919050565b7f57726f6e672045544820616d6f756e7400000000000000000000000000000000600082015250565b600061511a601083613c45565b9150615125826150e4565b602082019050919050565b600060208201905081810360008301526151498161510d565b9050919050565b7f4d696e7420636c6f736564000000000000000000000000000000000000000000600082015250565b6000615186600b83613c45565b915061519182615150565b602082019050919050565b600060208201905081810360008301526151b581615179565b9050919050565b7f5265616c207573657273206f6e6c790000000000000000000000000000000000600082015250565b60006151f2600f83613c45565b91506151fd826151bc565b602082019050919050565b60006020820190508181036000830152615221816151e5565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b600061525e600c83613c45565b915061526982615228565b602082019050919050565b6000602082019050818103600083015261528d81615251565b9050919050565b600081905092915050565b60006152ab8385615294565b93506152b883858461431b565b82840190509392505050565b60006152d182848661529f565b91508190509392505050565b7f4e6f6e636520616c726561647920757365640000000000000000000000000000600082015250565b6000615313601283613c45565b915061531e826152dd565b602082019050919050565b6000602082019050818103600083015261534281615306565b9050919050565b6000819050919050565b61536461535f82613cf5565b615349565b82525050565b60006153768287614d88565b6014820191506153868286615353565b60208201915061539782848661529f565b915081905095945050505050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006153db601183613c45565b91506153e6826153a5565b602082019050919050565b6000602082019050818103600083015261540a816153ce565b9050919050565b7f416c7265616479206d696e746564206f75722043617473000000000000000000600082015250565b6000615447601783613c45565b915061545282615411565b602082019050919050565b600060208201905081810360008301526154768161543a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006154d9602f83613c45565b91506154e48261547d565b604082019050919050565b60006020820190508181036000830152615508816154cc565b9050919050565b600061551a82613c3a565b6155248185615294565b9350615534818560208601613c56565b80840191505092915050565b600061554c828561550f565b9150615558828461550f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155c0602683613c45565b91506155cb82615564565b604082019050919050565b600060208201905081810360008301526155ef816155b3565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615652602c83613c45565b915061565d826155f6565b604082019050919050565b6000602082019050818103600083015261568181615645565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006156e4602983613c45565b91506156ef82615688565b604082019050919050565b60006020820190508181036000830152615713816156d7565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615776602483613c45565b91506157818261571a565b604082019050919050565b600060208201905081810360008301526157a581615769565b9050919050565b60006157b782613cf5565b91506157c283613cf5565b9250828210156157d5576157d46148c8565b5b828203905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615816602083613c45565b9150615821826157e0565b602082019050919050565b6000602082019050818103600083015261584581615809565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615882601c83613c45565b915061588d8261584c565b602082019050919050565b600060208201905081810360008301526158b181615875565b9050919050565b60006158c382613cf5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158f6576158f56148c8565b5b600182019050919050565b7f4d697373696e672073797374656d206164647265737300000000000000000000600082015250565b6000615937601683613c45565b915061594282615901565b602082019050919050565b600060208201905081810360008301526159668161592a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006159a3601983613c45565b91506159ae8261596d565b602082019050919050565b600060208201905081810360008301526159d281615996565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615a35603283613c45565b9150615a40826159d9565b604082019050919050565b60006020820190508181036000830152615a6481615a28565b9050919050565b6000615a7682613cf5565b9150615a8183613cf5565b925082615a9157615a90614951565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b615ae6615ae182613dec565b615acb565b82525050565b6000615af88285615ad5565b602082019150615b088284615ad5565b6020820191508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615b4e601c83615294565b9150615b5982615b18565b601c82019050919050565b6000615b6f82615b41565b9150615b7b8284615ad5565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000615bb182615b8a565b615bbb8185615b95565b9350615bcb818560208601613c56565b615bd481613c89565b840191505092915050565b6000608082019050615bf46000830187613d58565b615c016020830186613d58565b615c0e6040830185613dc2565b8181036060830152615c208184615ba6565b905095945050505050565b600081519050615c3a81613b20565b92915050565b600060208284031215615c5657615c55613aea565b5b6000615c6484828501615c2b565b91505092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615ca3601883613c45565b9150615cae82615c6d565b602082019050919050565b60006020820190508181036000830152615cd281615c96565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615d0f601f83613c45565b9150615d1a82615cd9565b602082019050919050565b60006020820190508181036000830152615d3e81615d02565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615da1602283613c45565b9150615dac82615d45565b604082019050919050565b60006020820190508181036000830152615dd081615d94565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e33602283613c45565b9150615e3e82615dd7565b604082019050919050565b60006020820190508181036000830152615e6281615e26565b9050919050565b600060ff82169050919050565b615e7f81615e69565b82525050565b6000608082019050615e9a6000830187613ea2565b615ea76020830186615e76565b615eb46040830185613ea2565b615ec16060830184613ea2565b9594505050505056fea26469706673582212200b2f49e61565d2929bfb3df780e8cfd82499a710f5ef362ab32b34b6cb91269164736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102465760003560e01c806370a0823111610139578063a22cb465116100b6578063cfc86f7b1161007a578063cfc86f7b14610838578063d3e848f114610863578063e4f376f01461088e578063e985e9c5146108cb578063ea7a42e414610908578063f2fde38b1461093157610246565b8063a22cb46514610769578063a2a3eb4d14610792578063b88d4fde146107bb578063ba7a86b8146107e4578063c87b56dd146107fb57610246565b806392ea1de2116100fd57806392ea1de2146106b057806395c2d002146106cc57806395d89b41146106e85780639bb906e014610713578063a035b1fe1461073e57610246565b806370a08231146105dd578063715018a61461061a5780637d4c60eb146106315780638da5cb5b1461065c57806391b7f5ed1461068757610246565b806326ddb3cd116101c75780634c5f6bfc1161018b5780634c5f6bfc146104f857806355f804b3146105235780635a5e8baa1461054c5780636352211e146105755780636f3a1b40146105b257610246565b806326ddb3cd14610425578063290c166c1461046257806332cb6b0c1461048d5780633ccfd60b146104b857806342842e0e146104cf57610246565b80630bb862d11161020e5780630bb862d11461034257806315bee6821461036b57806318160ddd146103a85780631a6ff0f9146103d357806323b872dd146103fc57610246565b806301ffc9a71461024b578063062101971461028857806306fdde03146102b1578063081812fc146102dc578063095ea7b314610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613b4c565b61095a565b60405161027f9190613b94565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613c0d565b610a3c565b005b3480156102bd57600080fd5b506102c6610afc565b6040516102d39190613cd3565b60405180910390f35b3480156102e857600080fd5b5061030360048036038101906102fe9190613d2b565b610b8e565b6040516103109190613d67565b60405180910390f35b34801561032557600080fd5b50610340600480360381019061033b9190613d82565b610c13565b005b34801561034e57600080fd5b5061036960048036038101906103649190613d2b565b610d2b565b005b34801561037757600080fd5b50610392600480360381019061038d9190613c0d565b610e3b565b60405161039f9190613b94565b60405180910390f35b3480156103b457600080fd5b506103bd610e5b565b6040516103ca9190613dd1565b60405180910390f35b3480156103df57600080fd5b506103fa60048036038101906103f59190613e22565b610e6c565b005b34801561040857600080fd5b50610423600480360381019061041e9190613e4f565b610ef2565b005b34801561043157600080fd5b5061044c60048036038101906104479190613c0d565b610f52565b6040516104599190613dd1565b60405180910390f35b34801561046e57600080fd5b50610477610f6a565b6040516104849190613eb1565b60405180910390f35b34801561049957600080fd5b506104a2610f70565b6040516104af9190613dd1565b60405180910390f35b3480156104c457600080fd5b506104cd610f76565b005b3480156104db57600080fd5b506104f660048036038101906104f19190613e4f565b61141c565b005b34801561050457600080fd5b5061050d61143c565b60405161051a9190613dd1565b60405180910390f35b34801561052f57600080fd5b5061054a60048036038101906105459190613f31565b611442565b005b34801561055857600080fd5b50610573600480360381019061056e9190613fd4565b6114d4565b005b34801561058157600080fd5b5061059c60048036038101906105979190613d2b565b611752565b6040516105a99190613d67565b60405180910390f35b3480156105be57600080fd5b506105c7611804565b6040516105d49190614098565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff9190613c0d565b611817565b6040516106119190613dd1565b60405180910390f35b34801561062657600080fd5b5061062f6118cf565b005b34801561063d57600080fd5b50610646611957565b6040516106539190613b94565b60405180910390f35b34801561066857600080fd5b5061067161196a565b60405161067e9190613d67565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190613d2b565b611994565b005b6106ca60048036038101906106c591906140b3565b611a1a565b005b6106e660048036038101906106e19190614169565b611d18565b005b3480156106f457600080fd5b506106fd612011565b60405161070a9190613cd3565b60405180910390f35b34801561071f57600080fd5b506107286120a3565b6040516107359190613eb1565b60405180910390f35b34801561074a57600080fd5b506107536120a9565b6040516107609190613dd1565b60405180910390f35b34801561077557600080fd5b50610790600480360381019061078b919061422a565b6120af565b005b34801561079e57600080fd5b506107b960048036038101906107b49190613d82565b6120c5565b005b3480156107c757600080fd5b506107e260048036038101906107dd919061439a565b6121a5565b005b3480156107f057600080fd5b506107f9612207565b005b34801561080757600080fd5b50610822600480360381019061081d9190613d2b565b612352565b60405161082f9190613cd3565b60405180910390f35b34801561084457600080fd5b5061084d6123f9565b60405161085a9190613cd3565b60405180910390f35b34801561086f57600080fd5b50610878612487565b6040516108859190613d67565b60405180910390f35b34801561089a57600080fd5b506108b560048036038101906108b091906144be565b6124ad565b6040516108c29190613b94565b60405180910390f35b3480156108d757600080fd5b506108f260048036038101906108ed9190614507565b6124e3565b6040516108ff9190613b94565b60405180910390f35b34801561091457600080fd5b5061092f600480360381019061092a9190613e22565b612577565b005b34801561093d57600080fd5b5061095860048036038101906109539190613c0d565b6125fd565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a2557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a355750610a34826126f5565b5b9050919050565b610a4461275f565b73ffffffffffffffffffffffffffffffffffffffff16610a6261196a565b73ffffffffffffffffffffffffffffffffffffffff1614610ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aaf90614593565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610b0b906145e2565b80601f0160208091040260200160405190810160405280929190818152602001828054610b37906145e2565b8015610b845780601f10610b5957610100808354040283529160200191610b84565b820191906000526020600020905b815481529060010190602001808311610b6757829003601f168201915b5050505050905090565b6000610b9982612767565b610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf90614686565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c1e82611752565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8690614718565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cae61275f565b73ffffffffffffffffffffffffffffffffffffffff161480610cdd5750610cdc81610cd761275f565b6124e3565b5b610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906147aa565b60405180910390fd5b610d2683836127d3565b505050565b610d3361275f565b73ffffffffffffffffffffffffffffffffffffffff16610d5161196a565b73ffffffffffffffffffffffffffffffffffffffff1614610da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9e90614593565b60405180910390fd5b600380811115610dba57610db9614021565b5b811115610dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df390614816565b60405180910390fd5b806003811115610e0f57610e0e614021565b5b601060016101000a81548160ff02191690836003811115610e3357610e32614021565b5b021790555050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000610e67600761288c565b905090565b610e7461275f565b73ffffffffffffffffffffffffffffffffffffffff16610e9261196a565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90614593565b60405180910390fd5b80600c8190555050565b610f03610efd61275f565b8261289a565b610f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f39906148a8565b60405180910390fd5b610f4d838383612978565b505050565b600b6020528060005260406000206000915090505481565b600c5481565b61138981565b610f7e61275f565b73ffffffffffffffffffffffffffffffffffffffff16610f9c61196a565b73ffffffffffffffffffffffffffffffffffffffff1614610ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe990614593565b60405180910390fd5b600073702457481718bef08c5bb0124083a1369fab454290506000735390b04839c6ebaa765886e1ede2bce7116e462f905060007302fbd51319bee0c0b135e99e0babed20df8414d290506000733733f44e9ff13d398512449e4d96e78bc559470890506000733230086971d2d50d30642e3e344233f56becb5c59050600047905060006103e860328361108691906148f7565b6110909190614980565b905060006103e86101a9846110a591906148f7565b6110af9190614980565b905060008873ffffffffffffffffffffffffffffffffffffffff16836040516110d7906149e2565b60006040518083038185875af1925050503d8060008114611114576040519150601f19603f3d011682016040523d82523d6000602084013e611119565b606091505b505090508061115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490614a43565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff1684604051611183906149e2565b60006040518083038185875af1925050503d80600081146111c0576040519150601f19603f3d011682016040523d82523d6000602084013e6111c5565b606091505b5050905080611209576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120090614aaf565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff168560405161122f906149e2565b60006040518083038185875af1925050503d806000811461126c576040519150601f19603f3d011682016040523d82523d6000602084013e611271565b606091505b50509050806112b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ac90614b1b565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff16856040516112db906149e2565b60006040518083038185875af1925050503d8060008114611318576040519150601f19603f3d011682016040523d82523d6000602084013e61131d565b606091505b5050905080611361576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135890614b87565b60405180910390fd5b60008873ffffffffffffffffffffffffffffffffffffffff1686604051611387906149e2565b60006040518083038185875af1925050503d80600081146113c4576040519150601f19603f3d011682016040523d82523d6000602084013e6113c9565b606091505b505090508061140d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140490614bf3565b60405180910390fd5b50505050505050505050505050565b611437838383604051806020016040528060008152506121a5565b505050565b6101f481565b61144a61275f565b73ffffffffffffffffffffffffffffffffffffffff1661146861196a565b73ffffffffffffffffffffffffffffffffffffffff16146114be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b590614593565b60405180910390fd5b8181600f91906114cf929190613a3d565b505050565b600160038111156114e8576114e7614021565b5b601060019054906101000a900460ff16600381111561150a57611509614021565b5b1461154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190614c5f565b60405180910390fd5b6101f4611555610e5b565b10611595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158c90614ccb565b60405180910390fd5b600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611622576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161990614d37565b60405180910390fd5b6000336040516020016116359190614d9f565b60405160208183030381529060405280519060200120905061169b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c5483612bd4565b6116da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d190614e06565b60405180910390fd5b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061173c6007612beb565b61174d33611748610e5b565b612c01565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290614e98565b60405180910390fd5b80915050919050565b601060019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611888576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187f90614f2a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6118d761275f565b73ffffffffffffffffffffffffffffffffffffffff166118f561196a565b73ffffffffffffffffffffffffffffffffffffffff161461194b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194290614593565b60405180910390fd5b6119556000612dcf565b565b601060009054906101000a900460ff1681565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61199c61275f565b73ffffffffffffffffffffffffffffffffffffffff166119ba61196a565b73ffffffffffffffffffffffffffffffffffffffff1614611a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0790614593565b60405180910390fd5b8060088190555050565b60026003811115611a2e57611a2d614021565b5b601060019054906101000a900460ff166003811115611a5057611a4f614021565b5b14611a90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8790614f96565b60405180910390fd5b600481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611add9190614fb6565b10611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1490615058565b60405180910390fd5b61138981611b29610e5b565b611b339190614fb6565b10611b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6a906150c4565b60405180910390fd5b3481600854611b8291906148f7565b14611bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb990615130565b60405180910390fd5b600033604051602001611bd59190614d9f565b604051602081830303815290604052805190602001209050611c3b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5483612bd4565b611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190614e06565b60405180910390fd5b81600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cc59190614fb6565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d123383612e95565b50505050565b600380811115611d2b57611d2a614021565b5b601060019054906101000a900460ff166003811115611d4d57611d4c614021565b5b14611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d849061519c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df290615208565b60405180910390fd5b600b8310611e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3590615274565b60405180910390fd5b61138983611e4a610e5b565b611e549190614fb6565b10611e94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8b906150c4565b60405180910390fd5b3483600854611ea391906148f7565b14611ee3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eda90615130565b60405180910390fd5b60098585604051611ef59291906152c4565b908152602001604051809103902060009054906101000a900460ff1615611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4890615329565b60405180910390fd5b611f8833848787604051602001611f6b949392919061536a565b604051602081830303815290604052805190602001208383612ed3565b611fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbe906153f1565b60405180910390fd5b600160098686604051611fdb9291906152c4565b908152602001604051809103902060006101000a81548160ff02191690831515021790555061200a3384612e95565b5050505050565b606060018054612020906145e2565b80601f016020809104026020016040519081016040528092919081815260200182805461204c906145e2565b80156120995780601f1061206e57610100808354040283529160200191612099565b820191906000526020600020905b81548152906001019060200180831161207c57829003601f168201915b5050505050905090565b600d5481565b60085481565b6120c16120ba61275f565b8383613024565b5050565b6120cd61275f565b73ffffffffffffffffffffffffffffffffffffffff166120eb61196a565b73ffffffffffffffffffffffffffffffffffffffff1614612141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213890614593565b60405180910390fd5b6113898161214d610e5b565b6121579190614fb6565b10612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e906150c4565b60405180910390fd5b6121a18282612e95565b5050565b6121b66121b061275f565b8361289a565b6121f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ec906148a8565b60405180910390fd5b61220184848484613191565b50505050565b61220f61275f565b73ffffffffffffffffffffffffffffffffffffffff1661222d61196a565b73ffffffffffffffffffffffffffffffffffffffff1614612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a90614593565b60405180910390fd5b601060009054906101000a900460ff16156122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca9061545d565b60405180910390fd5b61138960196122e0610e5b565b6122ea9190614fb6565b1061232a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612321906150c4565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550612350336019612e95565b565b606061235d82612767565b61239c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612393906154ef565b60405180910390fd5b60006123a66131ed565b905060008151116123c657604051806020016040528060008152506123f1565b806123d08461327f565b6040516020016123e1929190615540565b6040516020818303038152906040525b915050919050565b600f8054612406906145e2565b80601f0160208091040260200160405190810160405280929190818152602001828054612432906145e2565b801561247f5780601f106124545761010080835404028352916020019161247f565b820191906000526020600020905b81548152906001019060200180831161246257829003601f168201915b505050505081565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6009818051602081018201805184825260208301602085012081835280955050505050506000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61257f61275f565b73ffffffffffffffffffffffffffffffffffffffff1661259d61196a565b73ffffffffffffffffffffffffffffffffffffffff16146125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea90614593565b60405180910390fd5b80600d8190555050565b61260561275f565b73ffffffffffffffffffffffffffffffffffffffff1661262361196a565b73ffffffffffffffffffffffffffffffffffffffff1614612679576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267090614593565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e0906155d6565b60405180910390fd5b6126f281612dcf565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661284683611752565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006128a582612767565b6128e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128db90615668565b60405180910390fd5b60006128ef83611752565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061295e57508373ffffffffffffffffffffffffffffffffffffffff1661294684610b8e565b73ffffffffffffffffffffffffffffffffffffffff16145b8061296f575061296e81856124e3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661299882611752565b73ffffffffffffffffffffffffffffffffffffffff16146129ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e5906156fa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a559061578c565b60405180910390fd5b612a698383836133e0565b612a746000826127d3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ac491906157ac565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b1b9190614fb6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600082612be185846133e5565b1490509392505050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c689061582c565b60405180910390fd5b612c7a81612767565b15612cba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb190615898565b60405180910390fd5b612cc6600083836133e0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d169190614fb6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b81811015612ece57612eaa6007612beb565b612ebb83612eb6610e5b565b612c01565b8080612ec6906158b8565b915050612e98565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5d9061594d565b60405180910390fd5b6000612f7185613498565b9050600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661300385858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050836134c890919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16149150509392505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308a906159b9565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131849190613b94565b60405180910390a3505050565b61319c848484612978565b6131a8848484846134ef565b6131e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131de90615a4b565b60405180910390fd5b50505050565b6060600f80546131fc906145e2565b80601f0160208091040260200160405190810160405280929190818152602001828054613228906145e2565b80156132755780601f1061324a57610100808354040283529160200191613275565b820191906000526020600020905b81548152906001019060200180831161325857829003601f168201915b5050505050905090565b606060008214156132c7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506133db565b600082905060005b600082146132f95780806132e2906158b8565b915050600a826132f29190614980565b91506132cf565b60008167ffffffffffffffff8111156133155761331461426f565b5b6040519080825280601f01601f1916602001820160405280156133475781602001600182028036833780820191505090505b5090505b600085146133d45760018261336091906157ac565b9150600a8561336f9190615a6b565b603061337b9190614fb6565b60f81b81838151811061339157613390615a9c565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856133cd9190614980565b945061334b565b8093505050505b919050565b505050565b60008082905060005b845181101561348d57600085828151811061340c5761340b615a9c565b5b6020026020010151905080831161344d578281604051602001613430929190615aec565b604051602081830303815290604052805190602001209250613479565b8083604051602001613460929190615aec565b6040516020818303038152906040528051906020012092505b508080613485906158b8565b9150506133ee565b508091505092915050565b6000816040516020016134ab9190615b64565b604051602081830303815290604052805190602001209050919050565b60008060006134d78585613677565b915091506134e4816136fa565b819250505092915050565b60006135108473ffffffffffffffffffffffffffffffffffffffff166138cf565b1561366a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261353961275f565b8786866040518563ffffffff1660e01b815260040161355b9493929190615bdf565b6020604051808303816000875af192505050801561359757506040513d601f19601f820116820180604052508101906135949190615c40565b60015b61361a573d80600081146135c7576040519150601f19603f3d011682016040523d82523d6000602084013e6135cc565b606091505b50600081511415613612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161360990615a4b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061366f565b600190505b949350505050565b6000806041835114156136b95760008060006020860151925060408601519150606086015160001a90506136ad878285856138e2565b945094505050506136f3565b6040835114156136ea5760008060208501519150604085015190506136df8683836139ef565b9350935050506136f3565b60006002915091505b9250929050565b6000600481111561370e5761370d614021565b5b81600481111561372157613720614021565b5b141561372c576138cc565b600160048111156137405761373f614021565b5b81600481111561375357613752614021565b5b1415613794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161378b90615cb9565b60405180910390fd5b600260048111156137a8576137a7614021565b5b8160048111156137bb576137ba614021565b5b14156137fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137f390615d25565b60405180910390fd5b600360048111156138105761380f614021565b5b81600481111561382357613822614021565b5b1415613864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161385b90615db7565b60405180910390fd5b60048081111561387757613876614021565b5b81600481111561388a57613889614021565b5b14156138cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c290615e49565b60405180910390fd5b5b50565b600080823b905060008111915050919050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c111561391d5760006003915091506139e6565b601b8560ff16141580156139355750601c8560ff1614155b156139475760006004915091506139e6565b60006001878787876040516000815260200160405260405161396c9493929190615e85565b6020604051602081039080840390855afa15801561398e573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156139dd576000600192509250506139e6565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613a2f878288856138e2565b935093505050935093915050565b828054613a49906145e2565b90600052602060002090601f016020900481019282613a6b5760008555613ab2565b82601f10613a8457803560ff1916838001178555613ab2565b82800160010185558215613ab2579182015b82811115613ab1578235825591602001919060010190613a96565b5b509050613abf9190613ac3565b5090565b5b80821115613adc576000816000905550600101613ac4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b2981613af4565b8114613b3457600080fd5b50565b600081359050613b4681613b20565b92915050565b600060208284031215613b6257613b61613aea565b5b6000613b7084828501613b37565b91505092915050565b60008115159050919050565b613b8e81613b79565b82525050565b6000602082019050613ba96000830184613b85565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613bda82613baf565b9050919050565b613bea81613bcf565b8114613bf557600080fd5b50565b600081359050613c0781613be1565b92915050565b600060208284031215613c2357613c22613aea565b5b6000613c3184828501613bf8565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c74578082015181840152602081019050613c59565b83811115613c83576000848401525b50505050565b6000601f19601f8301169050919050565b6000613ca582613c3a565b613caf8185613c45565b9350613cbf818560208601613c56565b613cc881613c89565b840191505092915050565b60006020820190508181036000830152613ced8184613c9a565b905092915050565b6000819050919050565b613d0881613cf5565b8114613d1357600080fd5b50565b600081359050613d2581613cff565b92915050565b600060208284031215613d4157613d40613aea565b5b6000613d4f84828501613d16565b91505092915050565b613d6181613bcf565b82525050565b6000602082019050613d7c6000830184613d58565b92915050565b60008060408385031215613d9957613d98613aea565b5b6000613da785828601613bf8565b9250506020613db885828601613d16565b9150509250929050565b613dcb81613cf5565b82525050565b6000602082019050613de66000830184613dc2565b92915050565b6000819050919050565b613dff81613dec565b8114613e0a57600080fd5b50565b600081359050613e1c81613df6565b92915050565b600060208284031215613e3857613e37613aea565b5b6000613e4684828501613e0d565b91505092915050565b600080600060608486031215613e6857613e67613aea565b5b6000613e7686828701613bf8565b9350506020613e8786828701613bf8565b9250506040613e9886828701613d16565b9150509250925092565b613eab81613dec565b82525050565b6000602082019050613ec66000830184613ea2565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112613ef157613ef0613ecc565b5b8235905067ffffffffffffffff811115613f0e57613f0d613ed1565b5b602083019150836001820283011115613f2a57613f29613ed6565b5b9250929050565b60008060208385031215613f4857613f47613aea565b5b600083013567ffffffffffffffff811115613f6657613f65613aef565b5b613f7285828601613edb565b92509250509250929050565b60008083601f840112613f9457613f93613ecc565b5b8235905067ffffffffffffffff811115613fb157613fb0613ed1565b5b602083019150836020820283011115613fcd57613fcc613ed6565b5b9250929050565b60008060208385031215613feb57613fea613aea565b5b600083013567ffffffffffffffff81111561400957614008613aef565b5b61401585828601613f7e565b92509250509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6004811061406157614060614021565b5b50565b600081905061407282614050565b919050565b600061408282614064565b9050919050565b61409281614077565b82525050565b60006020820190506140ad6000830184614089565b92915050565b6000806000604084860312156140cc576140cb613aea565b5b600084013567ffffffffffffffff8111156140ea576140e9613aef565b5b6140f686828701613f7e565b9350935050602061410986828701613d16565b9150509250925092565b60008083601f84011261412957614128613ecc565b5b8235905067ffffffffffffffff81111561414657614145613ed1565b5b60208301915083600182028301111561416257614161613ed6565b5b9250929050565b60008060008060006060868803121561418557614184613aea565b5b600086013567ffffffffffffffff8111156141a3576141a2613aef565b5b6141af88828901613edb565b955095505060206141c288828901613d16565b935050604086013567ffffffffffffffff8111156141e3576141e2613aef565b5b6141ef88828901614113565b92509250509295509295909350565b61420781613b79565b811461421257600080fd5b50565b600081359050614224816141fe565b92915050565b6000806040838503121561424157614240613aea565b5b600061424f85828601613bf8565b925050602061426085828601614215565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142a782613c89565b810181811067ffffffffffffffff821117156142c6576142c561426f565b5b80604052505050565b60006142d9613ae0565b90506142e5828261429e565b919050565b600067ffffffffffffffff8211156143055761430461426f565b5b61430e82613c89565b9050602081019050919050565b82818337600083830152505050565b600061433d614338846142ea565b6142cf565b9050828152602081018484840111156143595761435861426a565b5b61436484828561431b565b509392505050565b600082601f83011261438157614380613ecc565b5b813561439184826020860161432a565b91505092915050565b600080600080608085870312156143b4576143b3613aea565b5b60006143c287828801613bf8565b94505060206143d387828801613bf8565b93505060406143e487828801613d16565b925050606085013567ffffffffffffffff81111561440557614404613aef565b5b6144118782880161436c565b91505092959194509250565b600067ffffffffffffffff8211156144385761443761426f565b5b61444182613c89565b9050602081019050919050565b600061446161445c8461441d565b6142cf565b90508281526020810184848401111561447d5761447c61426a565b5b61448884828561431b565b509392505050565b600082601f8301126144a5576144a4613ecc565b5b81356144b584826020860161444e565b91505092915050565b6000602082840312156144d4576144d3613aea565b5b600082013567ffffffffffffffff8111156144f2576144f1613aef565b5b6144fe84828501614490565b91505092915050565b6000806040838503121561451e5761451d613aea565b5b600061452c85828601613bf8565b925050602061453d85828601613bf8565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061457d602083613c45565b915061458882614547565b602082019050919050565b600060208201905081810360008301526145ac81614570565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145fa57607f821691505b6020821081141561460e5761460d6145b3565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614670602c83613c45565b915061467b82614614565b604082019050919050565b6000602082019050818103600083015261469f81614663565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614702602183613c45565b915061470d826146a6565b604082019050919050565b60006020820190508181036000830152614731816146f5565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000614794603883613c45565b915061479f82614738565b604082019050919050565b600060208201905081810360008301526147c381614787565b9050919050565b7f4261642073746174757300000000000000000000000000000000000000000000600082015250565b6000614800600a83613c45565b915061480b826147ca565b602082019050919050565b6000602082019050818103600083015261482f816147f3565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000614892603183613c45565b915061489d82614836565b604082019050919050565b600060208201905081810360008301526148c181614885565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061490282613cf5565b915061490d83613cf5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614946576149456148c8565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061498b82613cf5565b915061499683613cf5565b9250826149a6576149a5614951565b5b828204905092915050565b600081905092915050565b50565b60006149cc6000836149b1565b91506149d7826149bc565b600082019050919050565b60006149ed826149bf565b9150819050919050565b7f77312053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614a2d600e83613c45565b9150614a38826149f7565b602082019050919050565b60006020820190508181036000830152614a5c81614a20565b9050919050565b7f77322053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614a99600e83613c45565b9150614aa482614a63565b602082019050919050565b60006020820190508181036000830152614ac881614a8c565b9050919050565b7f77332053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614b05600e83613c45565b9150614b1082614acf565b602082019050919050565b60006020820190508181036000830152614b3481614af8565b9050919050565b7f77342053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614b71600e83613c45565b9150614b7c82614b3b565b602082019050919050565b60006020820190508181036000830152614ba081614b64565b9050919050565b7f77352053656e64206661696c6564000000000000000000000000000000000000600082015250565b6000614bdd600e83613c45565b9150614be882614ba7565b602082019050919050565b60006020820190508181036000830152614c0c81614bd0565b9050919050565b7f4561726c79206d696e7420636c6f736564000000000000000000000000000000600082015250565b6000614c49601183613c45565b9150614c5482614c13565b602082019050919050565b60006020820190508181036000830152614c7881614c3c565b9050919050565b7f4561726c79206d696e742066756c6c0000000000000000000000000000000000600082015250565b6000614cb5600f83613c45565b9150614cc082614c7f565b602082019050919050565b60006020820190508181036000830152614ce481614ca8565b9050919050565b7f416c7265616479206d696e746564000000000000000000000000000000000000600082015250565b6000614d21600e83613c45565b9150614d2c82614ceb565b602082019050919050565b60006020820190508181036000830152614d5081614d14565b9050919050565b60008160601b9050919050565b6000614d6f82614d57565b9050919050565b6000614d8182614d64565b9050919050565b614d99614d9482613bcf565b614d76565b82525050565b6000614dab8284614d88565b60148201915081905092915050565b7f4e6f74206f6e20746865206c6973740000000000000000000000000000000000600082015250565b6000614df0600f83613c45565b9150614dfb82614dba565b602082019050919050565b60006020820190508181036000830152614e1f81614de3565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614e82602983613c45565b9150614e8d82614e26565b604082019050919050565b60006020820190508181036000830152614eb181614e75565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614f14602a83613c45565b9150614f1f82614eb8565b604082019050919050565b60006020820190508181036000830152614f4381614f07565b9050919050565b7f416c6c6f77206c697374206d696e7420636c6f73656400000000000000000000600082015250565b6000614f80601683613c45565b9150614f8b82614f4a565b602082019050919050565b60006020820190508181036000830152614faf81614f73565b9050919050565b6000614fc182613cf5565b9150614fcc83613cf5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615001576150006148c8565b5b828201905092915050565b7f43616e206f6e6c79206d696e7420330000000000000000000000000000000000600082015250565b6000615042600f83613c45565b915061504d8261500c565b602082019050919050565b6000602082019050818103600083015261507181615035565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006150ae601283613c45565b91506150b982615078565b602082019050919050565b600060208201905081810360008301526150dd816150a1565b9050919050565b7f57726f6e672045544820616d6f756e7400000000000000000000000000000000600082015250565b600061511a601083613c45565b9150615125826150e4565b602082019050919050565b600060208201905081810360008301526151498161510d565b9050919050565b7f4d696e7420636c6f736564000000000000000000000000000000000000000000600082015250565b6000615186600b83613c45565b915061519182615150565b602082019050919050565b600060208201905081810360008301526151b581615179565b9050919050565b7f5265616c207573657273206f6e6c790000000000000000000000000000000000600082015250565b60006151f2600f83613c45565b91506151fd826151bc565b602082019050919050565b60006020820190508181036000830152615221816151e5565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b600061525e600c83613c45565b915061526982615228565b602082019050919050565b6000602082019050818103600083015261528d81615251565b9050919050565b600081905092915050565b60006152ab8385615294565b93506152b883858461431b565b82840190509392505050565b60006152d182848661529f565b91508190509392505050565b7f4e6f6e636520616c726561647920757365640000000000000000000000000000600082015250565b6000615313601283613c45565b915061531e826152dd565b602082019050919050565b6000602082019050818103600083015261534281615306565b9050919050565b6000819050919050565b61536461535f82613cf5565b615349565b82525050565b60006153768287614d88565b6014820191506153868286615353565b60208201915061539782848661529f565b915081905095945050505050565b7f496e76616c6964207369676e6174757265000000000000000000000000000000600082015250565b60006153db601183613c45565b91506153e6826153a5565b602082019050919050565b6000602082019050818103600083015261540a816153ce565b9050919050565b7f416c7265616479206d696e746564206f75722043617473000000000000000000600082015250565b6000615447601783613c45565b915061545282615411565b602082019050919050565b600060208201905081810360008301526154768161543a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006154d9602f83613c45565b91506154e48261547d565b604082019050919050565b60006020820190508181036000830152615508816154cc565b9050919050565b600061551a82613c3a565b6155248185615294565b9350615534818560208601613c56565b80840191505092915050565b600061554c828561550f565b9150615558828461550f565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006155c0602683613c45565b91506155cb82615564565b604082019050919050565b600060208201905081810360008301526155ef816155b3565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615652602c83613c45565b915061565d826155f6565b604082019050919050565b6000602082019050818103600083015261568181615645565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006156e4602983613c45565b91506156ef82615688565b604082019050919050565b60006020820190508181036000830152615713816156d7565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615776602483613c45565b91506157818261571a565b604082019050919050565b600060208201905081810360008301526157a581615769565b9050919050565b60006157b782613cf5565b91506157c283613cf5565b9250828210156157d5576157d46148c8565b5b828203905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000615816602083613c45565b9150615821826157e0565b602082019050919050565b6000602082019050818103600083015261584581615809565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615882601c83613c45565b915061588d8261584c565b602082019050919050565b600060208201905081810360008301526158b181615875565b9050919050565b60006158c382613cf5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156158f6576158f56148c8565b5b600182019050919050565b7f4d697373696e672073797374656d206164647265737300000000000000000000600082015250565b6000615937601683613c45565b915061594282615901565b602082019050919050565b600060208201905081810360008301526159668161592a565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006159a3601983613c45565b91506159ae8261596d565b602082019050919050565b600060208201905081810360008301526159d281615996565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000615a35603283613c45565b9150615a40826159d9565b604082019050919050565b60006020820190508181036000830152615a6481615a28565b9050919050565b6000615a7682613cf5565b9150615a8183613cf5565b925082615a9157615a90614951565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b615ae6615ae182613dec565b615acb565b82525050565b6000615af88285615ad5565b602082019150615b088284615ad5565b6020820191508190509392505050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615b4e601c83615294565b9150615b5982615b18565b601c82019050919050565b6000615b6f82615b41565b9150615b7b8284615ad5565b60208201915081905092915050565b600081519050919050565b600082825260208201905092915050565b6000615bb182615b8a565b615bbb8185615b95565b9350615bcb818560208601613c56565b615bd481613c89565b840191505092915050565b6000608082019050615bf46000830187613d58565b615c016020830186613d58565b615c0e6040830185613dc2565b8181036060830152615c208184615ba6565b905095945050505050565b600081519050615c3a81613b20565b92915050565b600060208284031215615c5657615c55613aea565b5b6000615c6484828501615c2b565b91505092915050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615ca3601883613c45565b9150615cae82615c6d565b602082019050919050565b60006020820190508181036000830152615cd281615c96565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615d0f601f83613c45565b9150615d1a82615cd9565b602082019050919050565b60006020820190508181036000830152615d3e81615d02565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615da1602283613c45565b9150615dac82615d45565b604082019050919050565b60006020820190508181036000830152615dd081615d94565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615e33602283613c45565b9150615e3e82615dd7565b604082019050919050565b60006020820190508181036000830152615e6281615e26565b9050919050565b600060ff82169050919050565b615e7f81615e69565b82525050565b6000608082019050615e9a6000830187613ea2565b615ea76020830186615e76565b615eb46040830185613ea2565b615ec16060830184613ea2565b9594505050505056fea26469706673582212200b2f49e61565d2929bfb3df780e8cfd82499a710f5ef362ab32b34b6cb91269164736f6c634300080a0033
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.