Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
CigPass
Compiler Version
v0.8.15+commit.e14f2714
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.15; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract CigPass is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable { using Counters for Counters.Counter; // the passz's url string[] public cigPassz; // the whitelist mapping(address,address) mapping(address => address) public whiteLists; // all the whitelist address address[] private whiteListAddressList ; string private _pass_img_url = "https://cigdao.xyz/web3/static/pass_static.png"; Counters.Counter private _tokenIdCounter; // Total amount from pass sales uint256 public balanceReceived; // the bagage uint256[] public badgeExchangePassz; uint256 private allowTotalSupply = 50000; uint256 private _airDropTotalSupply; uint256 private allowAirDropTotalSupply = 77; uint256 private _whitelistTotalSupply; uint256 private allowWhitelistTotalSupply = 300; struct Item { uint256 id; address owner; string uri; //metadata url } mapping(uint256 => Item) public Items; //id => Item constructor() ERC721("CigPass", "CPass") {} function airDropTotalSupply() public view returns (uint256) { return _airDropTotalSupply; } function whitelistTotalSupply() public view returns (uint256) { return _whitelistTotalSupply; } function checkAirDropTotalSupply() view internal { uint256 will_num = airDropTotalSupply() + 1; require(will_num > 0 && will_num < allowAirDropTotalSupply, "Exceeds airdrop supply"); } function checkWhitelistTotalSupply() view internal { uint256 will_num = whitelistTotalSupply() + 1; require(will_num > 0 && will_num < allowWhitelistTotalSupply, "Exceeds whitelist supply"); } function checkTotalSupply() view internal { uint256 will_num = totalSupply() + 1; require(will_num > 0 && will_num < allowTotalSupply, "Exceeds token supply"); } /** Members on the whitelist can buy the pass at the whitelist price */ function addWhiteList(address[] memory addresses) public onlyOwner { for(uint256 i = 0 ; i < addresses.length; i++){ address to = addresses[i]; whiteLists[to] = to; whiteListAddressList.push(to); } } /** * Those on the whitelist can buy the pass at 0.1 eth */ function getWhiteList() public view returns (address[] memory){ return whiteListAddressList; } /** * The admin can give someone a pass for free */ function mintAirDropBatch(address[] memory addresses) public onlyOwner { checkAirDropTotalSupply(); for(uint256 i = 0 ; i < addresses.length; i++){ address to = addresses[i]; _mint(to); } } /** * Exchange 100 regular badges for 1 pass or for members with the Professional badge, Honour badge or 50 Contribution badges, they can exchange for 1 pass */ function badgeExchangePass(address to) public onlyOwner returns (uint256){ checkTotalSupply(); uint256 tokenId = _mint(to); badgeExchangePassz.push(tokenId); return tokenId; } /** * Buy the pass with whitelist price of 0.1 eth */ function mintWithWhiteList(address to) public payable returns (uint256) { checkWhitelistTotalSupply(); require(whiteLists[to] != address(0),"the address does not exist in the whitelist"); require(msg.value == .1 ether, "Not enough ETH sent: check price."); balanceReceived += msg.value; uint256 tokenId = _mint(to); return tokenId; } /** Buy the pass with the public sale price of 0.2 eth */ function mintPublic(address to) public payable returns (uint256) { checkTotalSupply(); require(msg.value == .2 ether, "Not enough ETH sent: check price."); balanceReceived += msg.value; uint256 tokenId = _mint(to); return tokenId; } function getNftTotal(address addr)public view returns (uint256){ uint256 token_total = _tokenIdCounter.current(); uint256 total = 0; for(uint256 i = 1 ; i <= token_total; i++){ address t_add = Items[i].owner; if(t_add == addr){ total = total + 1; } } return total; } function _mint(address to) internal returns (uint256) { _tokenIdCounter.increment(); uint256 tokenId = _tokenIdCounter.current(); _safeMint(to, tokenId); _setTokenURI(tokenId, _pass_img_url); cigPassz.push(_pass_img_url); Items[tokenId] = Item({id: tokenId, owner: to, uri: _pass_img_url}); return tokenId; } function getBalance() public view returns (uint256) { return address(this).balance; } /** * The admin can withdraw the balance */ function withdrawMoney() public onlyOwner { address payable to = payable(msg.sender); to.transfer(getBalance()); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Items","outputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"address","name":"owner","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airDropTotalSupply","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":"to","type":"address"}],"name":"badgeExchangePass","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"badgeExchangePassz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"balanceReceived","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cigPassz","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getNftTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteList","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":"address[]","name":"addresses","type":"address[]"}],"name":"mintAirDropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"mintWithWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","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":"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteLists","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280602e815260200162005478602e9139600f90816200002e91906200044e565b5061c350601355604d60155561012c6017553480156200004d57600080fd5b506040518060400160405280600781526020017f43696750617373000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f43506173730000000000000000000000000000000000000000000000000000008152508160009081620000cb91906200044e565b508060019081620000dd91906200044e565b50505062000100620000f46200010660201b60201c565b6200010e60201b60201c565b62000535565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025657607f821691505b6020821081036200026c576200026b6200020e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002d67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000297565b620002e2868362000297565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200032f620003296200032384620002fa565b62000304565b620002fa565b9050919050565b6000819050919050565b6200034b836200030e565b620003636200035a8262000336565b848454620002a4565b825550505050565b600090565b6200037a6200036b565b6200038781848462000340565b505050565b5b81811015620003af57620003a360008262000370565b6001810190506200038d565b5050565b601f821115620003fe57620003c88162000272565b620003d38462000287565b81016020851015620003e3578190505b620003fb620003f28562000287565b8301826200038c565b50505b505050565b600082821c905092915050565b6000620004236000198460080262000403565b1980831691505092915050565b60006200043e838362000410565b9150826002028217905092915050565b6200045982620001d4565b67ffffffffffffffff811115620004755762000474620001df565b5b6200048182546200023d565b6200048e828285620003b3565b600060209050601f831160018114620004c65760008415620004b1578287015190505b620004bd858262000430565b8655506200052d565b601f198416620004d68662000272565b60005b828110156200050057848901518255600182019150602085019450602081019050620004d9565b868310156200052057848901516200051c601f89168262000410565b8355505b6001600288020188555050505b505050505050565b614f3380620005456000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a97fe7b6116100a0578063c87b56dd1161006f578063c87b56dd146107aa578063e19582db146107e7578063e985e9c514610817578063f2fde38b14610854578063fd0d79941461087d57610204565b8063a97fe7b614610714578063ac4460021461073f578063b88d4fde14610756578063bd4af89c1461077f57610204565b8063715018a6116100e7578063715018a61461064e5780638da5cb5b1461066557806395d89b4114610690578063a06cb719146106bb578063a22cb465146106eb57610204565b80636352211e1461056e578063683dcaf4146105ab5780636926de83146105e857806370a082311461061157610204565b806318160ddd1161019b57806342842e0e1161016a57806342842e0e146104775780634f6ccce7146104a057806352a90c42146104dd57806353dc840b146105085780635e1045ec1461054557610204565b806318160ddd146103a957806323b872dd146103d45780632a69f515146103fd5780632f745c591461043a57610204565b806309a9d76c116101d757806309a9d76c146102d7578063104cd8c21461030257806312065fe01461033f57806317b47cc41461036a57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061331b565b6108ba565b60405161023d9190613363565b60405180910390f35b34801561025257600080fd5b5061025b6108cc565b6040516102689190613417565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061346f565b61095e565b6040516102a591906134dd565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613524565b6109e3565b005b3480156102e357600080fd5b506102ec610afa565b6040516102f99190613622565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613644565b610b88565b6040516103369190613680565b60405180910390f35b34801561034b57600080fd5b50610354610c4d565b6040516103619190613680565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061346f565b610c55565b6040516103a09392919061369b565b60405180910390f35b3480156103b557600080fd5b506103be610d27565b6040516103cb9190613680565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906136d9565b610d34565b005b34801561040957600080fd5b50610424600480360381019061041f9190613644565b610d94565b6040516104319190613680565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613524565b610e4f565b60405161046e9190613680565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906136d9565b610ef4565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061346f565b610f14565b6040516104d49190613680565b60405180910390f35b3480156104e957600080fd5b506104f2610f85565b6040516104ff9190613680565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613644565b610f8b565b60405161053c91906134dd565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613874565b610fbe565b005b34801561057a57600080fd5b506105956004803603810190610590919061346f565b61115e565b6040516105a291906134dd565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd919061346f565b61120f565b6040516105df9190613680565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613874565b611233565b005b34801561061d57600080fd5b5061063860048036038101906106339190613644565b611304565b6040516106459190613680565b60405180910390f35b34801561065a57600080fd5b506106636113bb565b005b34801561067157600080fd5b5061067a611443565b60405161068791906134dd565b60405180910390f35b34801561069c57600080fd5b506106a561146d565b6040516106b29190613417565b60405180910390f35b6106d560048036038101906106d09190613644565b6114ff565b6040516106e29190613680565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906138e9565b611582565b005b34801561072057600080fd5b50610729611702565b6040516107369190613680565b60405180910390f35b34801561074b57600080fd5b5061075461170c565b005b34801561076257600080fd5b5061077d600480360381019061077891906139de565b6117de565b005b34801561078b57600080fd5b50610794611840565b6040516107a19190613680565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061346f565b61184a565b6040516107de9190613417565b60405180910390f35b61080160048036038101906107fc9190613644565b61185c565b60405161080e9190613680565b60405180910390f35b34801561082357600080fd5b5061083e60048036038101906108399190613a61565b6119ad565b60405161084b9190613363565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190613644565b611a41565b005b34801561088957600080fd5b506108a4600480360381019061089f919061346f565b611b38565b6040516108b19190613417565b60405180910390f35b60006108c582611be4565b9050919050565b6060600080546108db90613ad0565b80601f016020809104026020016040519081016040528092919081815260200182805461090790613ad0565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096982611c5e565b6109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90613b73565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ee8261115e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590613c05565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7d611cca565b73ffffffffffffffffffffffffffffffffffffffff161480610aac5750610aab81610aa6611cca565b6119ad565b5b610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290613c97565b60405180910390fd5b610af58383611cd2565b505050565b6060600e805480602002602001604051908101604052809291908181526020018280548015610b7e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610b34575b5050505050905090565b6000610b92611cca565b73ffffffffffffffffffffffffffffffffffffffff16610bb0611443565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90613d03565b60405180910390fd5b610c0e611d8b565b6000610c1983611df6565b9050601281908060018154018082558091505060019003906000526020600020016000909190919091505580915050919050565b600047905090565b60186020528060005260406000206000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806002018054610ca490613ad0565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd090613ad0565b8015610d1d5780601f10610cf257610100808354040283529160200191610d1d565b820191906000526020600020905b815481529060010190602001808311610d0057829003601f168201915b5050505050905083565b6000600880549050905090565b610d45610d3f611cca565b82612025565b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90613d95565b60405180910390fd5b610d8f838383612103565b505050565b600080610da1601061235e565b9050600080600190505b828111610e445760006018600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e3057600183610e2d9190613de4565b92505b508080610e3c90613e3a565b915050610dab565b508092505050919050565b6000610e5a83611304565b8210610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613ef4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f0f838383604051806020016040528060008152506117de565b505050565b6000610f1e610d27565b8210610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690613f86565b60405180910390fd5b60088281548110610f7357610f72613fa6565b5b90600052602060002001549050919050565b60115481565b600d6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fc6611cca565b73ffffffffffffffffffffffffffffffffffffffff16610fe4611443565b73ffffffffffffffffffffffffffffffffffffffff161461103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190613d03565b60405180910390fd5b60005b815181101561115a57600082828151811061105b5761105a613fa6565b5b6020026020010151905080600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050808061115290613e3a565b91505061103d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90614047565b60405180910390fd5b80915050919050565b6012818154811061121f57600080fd5b906000526020600020016000915090505481565b61123b611cca565b73ffffffffffffffffffffffffffffffffffffffff16611259611443565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613d03565b60405180910390fd5b6112b761236c565b60005b81518110156113005760008282815181106112d8576112d7613fa6565b5b602002602001015190506112eb81611df6565b505080806112f890613e3a565b9150506112ba565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b906140d9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113c3611cca565b73ffffffffffffffffffffffffffffffffffffffff166113e1611443565b73ffffffffffffffffffffffffffffffffffffffff1614611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90613d03565b60405180910390fd5b61144160006123d7565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461147c90613ad0565b80601f01602080910402602001604051908101604052809291908181526020018280546114a890613ad0565b80156114f55780601f106114ca576101008083540402835291602001916114f5565b820191906000526020600020905b8154815290600101906020018083116114d857829003601f168201915b5050505050905090565b6000611509611d8b565b6702c68af0bb1400003414611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a9061416b565b60405180910390fd5b34601160008282546115659190613de4565b92505081905550600061157783611df6565b905080915050919050565b61158a611cca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906141d7565b60405180910390fd5b8060056000611604611cca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116b1611cca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116f69190613363565b60405180910390a35050565b6000601454905090565b611714611cca565b73ffffffffffffffffffffffffffffffffffffffff16611732611443565b73ffffffffffffffffffffffffffffffffffffffff1614611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90613d03565b60405180910390fd5b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc6117af610c4d565b9081150290604051600060405180830381858888f193505050501580156117da573d6000803e3d6000fd5b5050565b6117ef6117e9611cca565b83612025565b61182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613d95565b60405180910390fd5b61183a8484848461249d565b50505050565b6000601654905090565b6060611855826124f9565b9050919050565b600061186661264a565b600073ffffffffffffffffffffffffffffffffffffffff16600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614269565b60405180910390fd5b67016345785d8a0000341461197e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119759061416b565b60405180910390fd5b34601160008282546119909190613de4565b9250508190555060006119a283611df6565b905080915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a49611cca565b73ffffffffffffffffffffffffffffffffffffffff16611a67611443565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490613d03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b23906142fb565b60405180910390fd5b611b35816123d7565b50565b600c8181548110611b4857600080fd5b906000526020600020016000915090508054611b6390613ad0565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8f90613ad0565b8015611bdc5780601f10611bb157610100808354040283529160200191611bdc565b820191906000526020600020905b815481529060010190602001808311611bbf57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c575750611c56826126b5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d458361115e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001611d97610d27565b611da19190613de4565b9050600081118015611db4575060135481105b611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90614367565b60405180910390fd5b50565b6000611e026010612797565b6000611e0e601061235e565b9050611e1a83826127ad565b611eae81600f8054611e2b90613ad0565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5790613ad0565b8015611ea45780601f10611e7957610100808354040283529160200191611ea4565b820191906000526020600020905b815481529060010190602001808311611e8757829003601f168201915b50505050506127cb565b600c600f908060018154018082558091505060019003906000526020600020016000909190919091509081611ee3919061455e565b5060405180606001604052808281526020018473ffffffffffffffffffffffffffffffffffffffff168152602001600f8054611f1e90613ad0565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4a90613ad0565b8015611f975780601f10611f6c57610100808354040283529160200191611f97565b820191906000526020600020905b815481529060010190602001808311611f7a57829003601f168201915b5050505050815250601860008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020190816120189190614646565b5090505080915050919050565b600061203082611c5e565b61206f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120669061478a565b60405180910390fd5b600061207a8361115e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120e957508373ffffffffffffffffffffffffffffffffffffffff166120d18461095e565b73ffffffffffffffffffffffffffffffffffffffff16145b806120fa57506120f981856119ad565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121238261115e565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121709061481c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df906148ae565b60405180910390fd5b6121f3838383612838565b6121fe600082611cd2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224e91906148ce565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a59190613de4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60006001612378611702565b6123829190613de4565b9050600081118015612395575060155481105b6123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb9061494e565b60405180910390fd5b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124a8848484612103565b6124b484848484612848565b6124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea906149e0565b60405180910390fd5b50505050565b606061250482611c5e565b612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90614a72565b60405180910390fd5b6000600a6000848152602001908152602001600020805461256390613ad0565b80601f016020809104026020016040519081016040528092919081815260200182805461258f90613ad0565b80156125dc5780601f106125b1576101008083540402835291602001916125dc565b820191906000526020600020905b8154815290600101906020018083116125bf57829003601f168201915b5050505050905060006125ed6129cf565b90506000815103612602578192505050612645565b60008251111561263757808260405160200161261f929190614ace565b60405160208183030381529060405292505050612645565b612640846129e6565b925050505b919050565b60006001612656611840565b6126609190613de4565b9050600081118015612673575060175481105b6126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990614b3e565b60405180910390fd5b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061278057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612790575061278f82612a8d565b5b9050919050565b6001816000016000828254019250508190555050565b6127c7828260405180602001604052806000815250612af7565b5050565b6127d482611c5e565b612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614bd0565b60405180910390fd5b80600a600084815260200190815260200160002090816128339190614646565b505050565b612843838383612b52565b505050565b60006128698473ffffffffffffffffffffffffffffffffffffffff16612c64565b156129c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612892611cca565b8786866040518563ffffffff1660e01b81526004016128b49493929190614c45565b6020604051808303816000875af19250505080156128f057506040513d601f19601f820116820180604052508101906128ed9190614ca6565b60015b612972573d8060008114612920576040519150601f19603f3d011682016040523d82523d6000602084013e612925565b606091505b50600081510361296a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612961906149e0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129c7565b600190505b949350505050565b606060405180602001604052806000815250905090565b60606129f182611c5e565b612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790614d45565b60405180910390fd5b6000612a3a6129cf565b90506000815111612a5a5760405180602001604052806000815250612a85565b80612a6484612c77565b604051602001612a75929190614ace565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b018383612dd7565b612b0e6000848484612848565b612b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b44906149e0565b60405180910390fd5b505050565b612b5d838383612fa4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b9f57612b9a81612fa9565b612bde565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bdd57612bdc8382612ff2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c2057612c1b8161315f565b612c5f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c5e57612c5d8282613230565b5b5b505050565b600080823b905060008111915050919050565b606060008203612cbe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dd2565b600082905060005b60008214612cf0578080612cd990613e3a565b915050600a82612ce99190614d94565b9150612cc6565b60008167ffffffffffffffff811115612d0c57612d0b613731565b5b6040519080825280601f01601f191660200182016040528015612d3e5781602001600182028036833780820191505090505b5090505b60008514612dcb57600182612d5791906148ce565b9150600a85612d669190614dc5565b6030612d729190613de4565b60f81b818381518110612d8857612d87613fa6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc49190614d94565b9450612d42565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d90614e42565b60405180910390fd5b612e4f81611c5e565b15612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8690614eae565b60405180910390fd5b612e9b60008383612838565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eeb9190613de4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fff84611304565b61300991906148ce565b90506000600760008481526020019081526020016000205490508181146130ee576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061317391906148ce565b90506000600960008481526020019081526020016000205490506000600883815481106131a3576131a2613fa6565b5b9060005260206000200154905080600883815481106131c5576131c4613fa6565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061321457613213614ece565b5b6001900381819060005260206000200160009055905550505050565b600061323b83611304565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132f8816132c3565b811461330357600080fd5b50565b600081359050613315816132ef565b92915050565b600060208284031215613331576133306132b9565b5b600061333f84828501613306565b91505092915050565b60008115159050919050565b61335d81613348565b82525050565b60006020820190506133786000830184613354565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133b857808201518184015260208101905061339d565b838111156133c7576000848401525b50505050565b6000601f19601f8301169050919050565b60006133e98261337e565b6133f38185613389565b935061340381856020860161339a565b61340c816133cd565b840191505092915050565b6000602082019050818103600083015261343181846133de565b905092915050565b6000819050919050565b61344c81613439565b811461345757600080fd5b50565b60008135905061346981613443565b92915050565b600060208284031215613485576134846132b9565b5b60006134938482850161345a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134c78261349c565b9050919050565b6134d7816134bc565b82525050565b60006020820190506134f260008301846134ce565b92915050565b613501816134bc565b811461350c57600080fd5b50565b60008135905061351e816134f8565b92915050565b6000806040838503121561353b5761353a6132b9565b5b60006135498582860161350f565b925050602061355a8582860161345a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613599816134bc565b82525050565b60006135ab8383613590565b60208301905092915050565b6000602082019050919050565b60006135cf82613564565b6135d9818561356f565b93506135e483613580565b8060005b838110156136155781516135fc888261359f565b9750613607836135b7565b9250506001810190506135e8565b5085935050505092915050565b6000602082019050818103600083015261363c81846135c4565b905092915050565b60006020828403121561365a576136596132b9565b5b60006136688482850161350f565b91505092915050565b61367a81613439565b82525050565b60006020820190506136956000830184613671565b92915050565b60006060820190506136b06000830186613671565b6136bd60208301856134ce565b81810360408301526136cf81846133de565b9050949350505050565b6000806000606084860312156136f2576136f16132b9565b5b60006137008682870161350f565b93505060206137118682870161350f565b92505060406137228682870161345a565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613769826133cd565b810181811067ffffffffffffffff8211171561378857613787613731565b5b80604052505050565b600061379b6132af565b90506137a78282613760565b919050565b600067ffffffffffffffff8211156137c7576137c6613731565b5b602082029050602081019050919050565b600080fd5b60006137f06137eb846137ac565b613791565b90508083825260208201905060208402830185811115613813576138126137d8565b5b835b8181101561383c5780613828888261350f565b845260208401935050602081019050613815565b5050509392505050565b600082601f83011261385b5761385a61372c565b5b813561386b8482602086016137dd565b91505092915050565b60006020828403121561388a576138896132b9565b5b600082013567ffffffffffffffff8111156138a8576138a76132be565b5b6138b484828501613846565b91505092915050565b6138c681613348565b81146138d157600080fd5b50565b6000813590506138e3816138bd565b92915050565b60008060408385031215613900576138ff6132b9565b5b600061390e8582860161350f565b925050602061391f858286016138d4565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561394957613948613731565b5b613952826133cd565b9050602081019050919050565b82818337600083830152505050565b600061398161397c8461392e565b613791565b90508281526020810184848401111561399d5761399c613929565b5b6139a884828561395f565b509392505050565b600082601f8301126139c5576139c461372c565b5b81356139d584826020860161396e565b91505092915050565b600080600080608085870312156139f8576139f76132b9565b5b6000613a068782880161350f565b9450506020613a178782880161350f565b9350506040613a288782880161345a565b925050606085013567ffffffffffffffff811115613a4957613a486132be565b5b613a55878288016139b0565b91505092959194509250565b60008060408385031215613a7857613a776132b9565b5b6000613a868582860161350f565b9250506020613a978582860161350f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae857607f821691505b602082108103613afb57613afa613aa1565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613b5d602c83613389565b9150613b6882613b01565b604082019050919050565b60006020820190508181036000830152613b8c81613b50565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bef602183613389565b9150613bfa82613b93565b604082019050919050565b60006020820190508181036000830152613c1e81613be2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613c81603883613389565b9150613c8c82613c25565b604082019050919050565b60006020820190508181036000830152613cb081613c74565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ced602083613389565b9150613cf882613cb7565b602082019050919050565b60006020820190508181036000830152613d1c81613ce0565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613d7f603183613389565b9150613d8a82613d23565b604082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613def82613439565b9150613dfa83613439565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2f57613e2e613db5565b5b828201905092915050565b6000613e4582613439565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e7757613e76613db5565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613ede602b83613389565b9150613ee982613e82565b604082019050919050565b60006020820190508181036000830152613f0d81613ed1565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613f70602c83613389565b9150613f7b82613f14565b604082019050919050565b60006020820190508181036000830152613f9f81613f63565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614031602983613389565b915061403c82613fd5565b604082019050919050565b6000602082019050818103600083015261406081614024565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006140c3602a83613389565b91506140ce82614067565b604082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f4e6f7420656e6f756768204554482073656e743a20636865636b20707269636560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614155602183613389565b9150614160826140f9565b604082019050919050565b6000602082019050818103600083015261418481614148565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006141c1601983613389565b91506141cc8261418b565b602082019050919050565b600060208201905081810360008301526141f0816141b4565b9050919050565b7f746865206164647265737320646f6573206e6f7420657869737420696e20746860008201527f65202077686974656c6973740000000000000000000000000000000000000000602082015250565b6000614253602c83613389565b915061425e826141f7565b604082019050919050565b6000602082019050818103600083015261428281614246565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142e5602683613389565b91506142f082614289565b604082019050919050565b60006020820190508181036000830152614314816142d8565b9050919050565b7f4578636565647320746f6b656e20737570706c79000000000000000000000000600082015250565b6000614351601483613389565b915061435c8261431b565b602082019050919050565b6000602082019050818103600083015261438081614344565b9050919050565b60008154905061439681613ad0565b9050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026144147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826143d7565b61441e86836143d7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061445b61445661445184613439565b614436565b613439565b9050919050565b6000819050919050565b61447583614440565b61448961448182614462565b8484546143e4565b825550505050565b600090565b61449e614491565b6144a981848461446c565b505050565b5b818110156144cd576144c2600082614496565b6001810190506144af565b5050565b601f821115614512576144e38161439d565b6144ec846143c7565b810160208510156144fb578190505b61450f614507856143c7565b8301826144ae565b50505b505050565b600082821c905092915050565b600061453560001984600802614517565b1980831691505092915050565b600061454e8383614524565b9150826002028217905092915050565b81810361456c575050614644565b61457582614387565b67ffffffffffffffff81111561458e5761458d613731565b5b6145988254613ad0565b6145a38282856144d1565b6000601f8311600181146145d257600084156145c0578287015490505b6145ca8582614542565b86555061463d565b601f1984166145e0876143b2565b96506145eb8661439d565b60005b82811015614613578489015482556001820191506001850194506020810190506145ee565b86831015614630578489015461462c601f891682614524565b8355505b6001600288020188555050505b5050505050505b565b61464f8261337e565b67ffffffffffffffff81111561466857614667613731565b5b6146728254613ad0565b61467d8282856144d1565b600060209050601f8311600181146146b0576000841561469e578287015190505b6146a88582614542565b865550614710565b601f1984166146be8661439d565b60005b828110156146e6578489015182556001820191506020850194506020810190506146c1565b8683101561470357848901516146ff601f891682614524565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614774602c83613389565b915061477f82614718565b604082019050919050565b600060208201905081810360008301526147a381614767565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614806602983613389565b9150614811826147aa565b604082019050919050565b60006020820190508181036000830152614835816147f9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614898602483613389565b91506148a38261483c565b604082019050919050565b600060208201905081810360008301526148c78161488b565b9050919050565b60006148d982613439565b91506148e483613439565b9250828210156148f7576148f6613db5565b5b828203905092915050565b7f457863656564732061697264726f7020737570706c7900000000000000000000600082015250565b6000614938601683613389565b915061494382614902565b602082019050919050565b600060208201905081810360008301526149678161492b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149ca603283613389565b91506149d58261496e565b604082019050919050565b600060208201905081810360008301526149f9816149bd565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614a5c603183613389565b9150614a6782614a00565b604082019050919050565b60006020820190508181036000830152614a8b81614a4f565b9050919050565b600081905092915050565b6000614aa88261337e565b614ab28185614a92565b9350614ac281856020860161339a565b80840191505092915050565b6000614ada8285614a9d565b9150614ae68284614a9d565b91508190509392505050565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b6000614b28601883613389565b9150614b3382614af2565b602082019050919050565b60006020820190508181036000830152614b5781614b1b565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000614bba602e83613389565b9150614bc582614b5e565b604082019050919050565b60006020820190508181036000830152614be981614bad565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c1782614bf0565b614c218185614bfb565b9350614c3181856020860161339a565b614c3a816133cd565b840191505092915050565b6000608082019050614c5a60008301876134ce565b614c6760208301866134ce565b614c746040830185613671565b8181036060830152614c868184614c0c565b905095945050505050565b600081519050614ca0816132ef565b92915050565b600060208284031215614cbc57614cbb6132b9565b5b6000614cca84828501614c91565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614d2f602f83613389565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d9f82613439565b9150614daa83613439565b925082614dba57614db9614d65565b5b828204905092915050565b6000614dd082613439565b9150614ddb83613439565b925082614deb57614dea614d65565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e2c602083613389565b9150614e3782614df6565b602082019050919050565b60006020820190508181036000830152614e5b81614e1f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e98601c83613389565b9150614ea382614e62565b602082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122099b534f766e9c6b0c12ac56618724c3dd256717a680e4795c701af771a6f1dc264736f6c634300080f003368747470733a2f2f63696764616f2e78797a2f776562332f7374617469632f706173735f7374617469632e706e67
Deployed Bytecode
0x6080604052600436106102045760003560e01c80636352211e11610118578063a97fe7b6116100a0578063c87b56dd1161006f578063c87b56dd146107aa578063e19582db146107e7578063e985e9c514610817578063f2fde38b14610854578063fd0d79941461087d57610204565b8063a97fe7b614610714578063ac4460021461073f578063b88d4fde14610756578063bd4af89c1461077f57610204565b8063715018a6116100e7578063715018a61461064e5780638da5cb5b1461066557806395d89b4114610690578063a06cb719146106bb578063a22cb465146106eb57610204565b80636352211e1461056e578063683dcaf4146105ab5780636926de83146105e857806370a082311461061157610204565b806318160ddd1161019b57806342842e0e1161016a57806342842e0e146104775780634f6ccce7146104a057806352a90c42146104dd57806353dc840b146105085780635e1045ec1461054557610204565b806318160ddd146103a957806323b872dd146103d45780632a69f515146103fd5780632f745c591461043a57610204565b806309a9d76c116101d757806309a9d76c146102d7578063104cd8c21461030257806312065fe01461033f57806317b47cc41461036a57610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061331b565b6108ba565b60405161023d9190613363565b60405180910390f35b34801561025257600080fd5b5061025b6108cc565b6040516102689190613417565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061346f565b61095e565b6040516102a591906134dd565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d09190613524565b6109e3565b005b3480156102e357600080fd5b506102ec610afa565b6040516102f99190613622565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190613644565b610b88565b6040516103369190613680565b60405180910390f35b34801561034b57600080fd5b50610354610c4d565b6040516103619190613680565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c919061346f565b610c55565b6040516103a09392919061369b565b60405180910390f35b3480156103b557600080fd5b506103be610d27565b6040516103cb9190613680565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f691906136d9565b610d34565b005b34801561040957600080fd5b50610424600480360381019061041f9190613644565b610d94565b6040516104319190613680565b60405180910390f35b34801561044657600080fd5b50610461600480360381019061045c9190613524565b610e4f565b60405161046e9190613680565b60405180910390f35b34801561048357600080fd5b5061049e600480360381019061049991906136d9565b610ef4565b005b3480156104ac57600080fd5b506104c760048036038101906104c2919061346f565b610f14565b6040516104d49190613680565b60405180910390f35b3480156104e957600080fd5b506104f2610f85565b6040516104ff9190613680565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190613644565b610f8b565b60405161053c91906134dd565b60405180910390f35b34801561055157600080fd5b5061056c60048036038101906105679190613874565b610fbe565b005b34801561057a57600080fd5b506105956004803603810190610590919061346f565b61115e565b6040516105a291906134dd565b60405180910390f35b3480156105b757600080fd5b506105d260048036038101906105cd919061346f565b61120f565b6040516105df9190613680565b60405180910390f35b3480156105f457600080fd5b5061060f600480360381019061060a9190613874565b611233565b005b34801561061d57600080fd5b5061063860048036038101906106339190613644565b611304565b6040516106459190613680565b60405180910390f35b34801561065a57600080fd5b506106636113bb565b005b34801561067157600080fd5b5061067a611443565b60405161068791906134dd565b60405180910390f35b34801561069c57600080fd5b506106a561146d565b6040516106b29190613417565b60405180910390f35b6106d560048036038101906106d09190613644565b6114ff565b6040516106e29190613680565b60405180910390f35b3480156106f757600080fd5b50610712600480360381019061070d91906138e9565b611582565b005b34801561072057600080fd5b50610729611702565b6040516107369190613680565b60405180910390f35b34801561074b57600080fd5b5061075461170c565b005b34801561076257600080fd5b5061077d600480360381019061077891906139de565b6117de565b005b34801561078b57600080fd5b50610794611840565b6040516107a19190613680565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061346f565b61184a565b6040516107de9190613417565b60405180910390f35b61080160048036038101906107fc9190613644565b61185c565b60405161080e9190613680565b60405180910390f35b34801561082357600080fd5b5061083e60048036038101906108399190613a61565b6119ad565b60405161084b9190613363565b60405180910390f35b34801561086057600080fd5b5061087b60048036038101906108769190613644565b611a41565b005b34801561088957600080fd5b506108a4600480360381019061089f919061346f565b611b38565b6040516108b19190613417565b60405180910390f35b60006108c582611be4565b9050919050565b6060600080546108db90613ad0565b80601f016020809104026020016040519081016040528092919081815260200182805461090790613ad0565b80156109545780601f1061092957610100808354040283529160200191610954565b820191906000526020600020905b81548152906001019060200180831161093757829003601f168201915b5050505050905090565b600061096982611c5e565b6109a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099f90613b73565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109ee8261115e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5590613c05565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7d611cca565b73ffffffffffffffffffffffffffffffffffffffff161480610aac5750610aab81610aa6611cca565b6119ad565b5b610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290613c97565b60405180910390fd5b610af58383611cd2565b505050565b6060600e805480602002602001604051908101604052809291908181526020018280548015610b7e57602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610b34575b5050505050905090565b6000610b92611cca565b73ffffffffffffffffffffffffffffffffffffffff16610bb0611443565b73ffffffffffffffffffffffffffffffffffffffff1614610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90613d03565b60405180910390fd5b610c0e611d8b565b6000610c1983611df6565b9050601281908060018154018082558091505060019003906000526020600020016000909190919091505580915050919050565b600047905090565b60186020528060005260406000206000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690806002018054610ca490613ad0565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd090613ad0565b8015610d1d5780601f10610cf257610100808354040283529160200191610d1d565b820191906000526020600020905b815481529060010190602001808311610d0057829003601f168201915b5050505050905083565b6000600880549050905090565b610d45610d3f611cca565b82612025565b610d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7b90613d95565b60405180910390fd5b610d8f838383612103565b505050565b600080610da1601061235e565b9050600080600190505b828111610e445760006018600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e3057600183610e2d9190613de4565b92505b508080610e3c90613e3a565b915050610dab565b508092505050919050565b6000610e5a83611304565b8210610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9290613ef4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f0f838383604051806020016040528060008152506117de565b505050565b6000610f1e610d27565b8210610f5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5690613f86565b60405180910390fd5b60088281548110610f7357610f72613fa6565b5b90600052602060002001549050919050565b60115481565b600d6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fc6611cca565b73ffffffffffffffffffffffffffffffffffffffff16610fe4611443565b73ffffffffffffffffffffffffffffffffffffffff161461103a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103190613d03565b60405180910390fd5b60005b815181101561115a57600082828151811061105b5761105a613fa6565b5b6020026020010151905080600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600e819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050808061115290613e3a565b91505061103d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90614047565b60405180910390fd5b80915050919050565b6012818154811061121f57600080fd5b906000526020600020016000915090505481565b61123b611cca565b73ffffffffffffffffffffffffffffffffffffffff16611259611443565b73ffffffffffffffffffffffffffffffffffffffff16146112af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a690613d03565b60405180910390fd5b6112b761236c565b60005b81518110156113005760008282815181106112d8576112d7613fa6565b5b602002602001015190506112eb81611df6565b505080806112f890613e3a565b9150506112ba565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136b906140d9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113c3611cca565b73ffffffffffffffffffffffffffffffffffffffff166113e1611443565b73ffffffffffffffffffffffffffffffffffffffff1614611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90613d03565b60405180910390fd5b61144160006123d7565b565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461147c90613ad0565b80601f01602080910402602001604051908101604052809291908181526020018280546114a890613ad0565b80156114f55780601f106114ca576101008083540402835291602001916114f5565b820191906000526020600020905b8154815290600101906020018083116114d857829003601f168201915b5050505050905090565b6000611509611d8b565b6702c68af0bb1400003414611553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154a9061416b565b60405180910390fd5b34601160008282546115659190613de4565b92505081905550600061157783611df6565b905080915050919050565b61158a611cca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ee906141d7565b60405180910390fd5b8060056000611604611cca565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116b1611cca565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116f69190613363565b60405180910390a35050565b6000601454905090565b611714611cca565b73ffffffffffffffffffffffffffffffffffffffff16611732611443565b73ffffffffffffffffffffffffffffffffffffffff1614611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f90613d03565b60405180910390fd5b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc6117af610c4d565b9081150290604051600060405180830381858888f193505050501580156117da573d6000803e3d6000fd5b5050565b6117ef6117e9611cca565b83612025565b61182e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182590613d95565b60405180910390fd5b61183a8484848461249d565b50505050565b6000601654905090565b6060611855826124f9565b9050919050565b600061186661264a565b600073ffffffffffffffffffffffffffffffffffffffff16600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614269565b60405180910390fd5b67016345785d8a0000341461197e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119759061416b565b60405180910390fd5b34601160008282546119909190613de4565b9250508190555060006119a283611df6565b905080915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a49611cca565b73ffffffffffffffffffffffffffffffffffffffff16611a67611443565b73ffffffffffffffffffffffffffffffffffffffff1614611abd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab490613d03565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b23906142fb565b60405180910390fd5b611b35816123d7565b50565b600c8181548110611b4857600080fd5b906000526020600020016000915090508054611b6390613ad0565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8f90613ad0565b8015611bdc5780601f10611bb157610100808354040283529160200191611bdc565b820191906000526020600020905b815481529060010190602001808311611bbf57829003601f168201915b505050505081565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c575750611c56826126b5565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d458361115e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001611d97610d27565b611da19190613de4565b9050600081118015611db4575060135481105b611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90614367565b60405180910390fd5b50565b6000611e026010612797565b6000611e0e601061235e565b9050611e1a83826127ad565b611eae81600f8054611e2b90613ad0565b80601f0160208091040260200160405190810160405280929190818152602001828054611e5790613ad0565b8015611ea45780601f10611e7957610100808354040283529160200191611ea4565b820191906000526020600020905b815481529060010190602001808311611e8757829003601f168201915b50505050506127cb565b600c600f908060018154018082558091505060019003906000526020600020016000909190919091509081611ee3919061455e565b5060405180606001604052808281526020018473ffffffffffffffffffffffffffffffffffffffff168152602001600f8054611f1e90613ad0565b80601f0160208091040260200160405190810160405280929190818152602001828054611f4a90613ad0565b8015611f975780601f10611f6c57610100808354040283529160200191611f97565b820191906000526020600020905b815481529060010190602001808311611f7a57829003601f168201915b5050505050815250601860008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060408201518160020190816120189190614646565b5090505080915050919050565b600061203082611c5e565b61206f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120669061478a565b60405180910390fd5b600061207a8361115e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120e957508373ffffffffffffffffffffffffffffffffffffffff166120d18461095e565b73ffffffffffffffffffffffffffffffffffffffff16145b806120fa57506120f981856119ad565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166121238261115e565b73ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121709061481c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036121e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121df906148ae565b60405180910390fd5b6121f3838383612838565b6121fe600082611cd2565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461224e91906148ce565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122a59190613de4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b60006001612378611702565b6123829190613de4565b9050600081118015612395575060155481105b6123d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123cb9061494e565b60405180910390fd5b50565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124a8848484612103565b6124b484848484612848565b6124f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ea906149e0565b60405180910390fd5b50505050565b606061250482611c5e565b612543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253a90614a72565b60405180910390fd5b6000600a6000848152602001908152602001600020805461256390613ad0565b80601f016020809104026020016040519081016040528092919081815260200182805461258f90613ad0565b80156125dc5780601f106125b1576101008083540402835291602001916125dc565b820191906000526020600020905b8154815290600101906020018083116125bf57829003601f168201915b5050505050905060006125ed6129cf565b90506000815103612602578192505050612645565b60008251111561263757808260405160200161261f929190614ace565b60405160208183030381529060405292505050612645565b612640846129e6565b925050505b919050565b60006001612656611840565b6126609190613de4565b9050600081118015612673575060175481105b6126b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a990614b3e565b60405180910390fd5b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061278057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612790575061278f82612a8d565b5b9050919050565b6001816000016000828254019250508190555050565b6127c7828260405180602001604052806000815250612af7565b5050565b6127d482611c5e565b612813576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280a90614bd0565b60405180910390fd5b80600a600084815260200190815260200160002090816128339190614646565b505050565b612843838383612b52565b505050565b60006128698473ffffffffffffffffffffffffffffffffffffffff16612c64565b156129c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612892611cca565b8786866040518563ffffffff1660e01b81526004016128b49493929190614c45565b6020604051808303816000875af19250505080156128f057506040513d601f19601f820116820180604052508101906128ed9190614ca6565b60015b612972573d8060008114612920576040519150601f19603f3d011682016040523d82523d6000602084013e612925565b606091505b50600081510361296a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612961906149e0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506129c7565b600190505b949350505050565b606060405180602001604052806000815250905090565b60606129f182611c5e565b612a30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2790614d45565b60405180910390fd5b6000612a3a6129cf565b90506000815111612a5a5760405180602001604052806000815250612a85565b80612a6484612c77565b604051602001612a75929190614ace565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612b018383612dd7565b612b0e6000848484612848565b612b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b44906149e0565b60405180910390fd5b505050565b612b5d838383612fa4565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b9f57612b9a81612fa9565b612bde565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612bdd57612bdc8382612ff2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612c2057612c1b8161315f565b612c5f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612c5e57612c5d8282613230565b5b5b505050565b600080823b905060008111915050919050565b606060008203612cbe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dd2565b600082905060005b60008214612cf0578080612cd990613e3a565b915050600a82612ce99190614d94565b9150612cc6565b60008167ffffffffffffffff811115612d0c57612d0b613731565b5b6040519080825280601f01601f191660200182016040528015612d3e5781602001600182028036833780820191505090505b5090505b60008514612dcb57600182612d5791906148ce565b9150600a85612d669190614dc5565b6030612d729190613de4565b60f81b818381518110612d8857612d87613fa6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc49190614d94565b9450612d42565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d90614e42565b60405180910390fd5b612e4f81611c5e565b15612e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e8690614eae565b60405180910390fd5b612e9b60008383612838565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eeb9190613de4565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612fff84611304565b61300991906148ce565b90506000600760008481526020019081526020016000205490508181146130ee576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061317391906148ce565b90506000600960008481526020019081526020016000205490506000600883815481106131a3576131a2613fa6565b5b9060005260206000200154905080600883815481106131c5576131c4613fa6565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061321457613213614ece565b5b6001900381819060005260206000200160009055905550505050565b600061323b83611304565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6132f8816132c3565b811461330357600080fd5b50565b600081359050613315816132ef565b92915050565b600060208284031215613331576133306132b9565b5b600061333f84828501613306565b91505092915050565b60008115159050919050565b61335d81613348565b82525050565b60006020820190506133786000830184613354565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156133b857808201518184015260208101905061339d565b838111156133c7576000848401525b50505050565b6000601f19601f8301169050919050565b60006133e98261337e565b6133f38185613389565b935061340381856020860161339a565b61340c816133cd565b840191505092915050565b6000602082019050818103600083015261343181846133de565b905092915050565b6000819050919050565b61344c81613439565b811461345757600080fd5b50565b60008135905061346981613443565b92915050565b600060208284031215613485576134846132b9565b5b60006134938482850161345a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134c78261349c565b9050919050565b6134d7816134bc565b82525050565b60006020820190506134f260008301846134ce565b92915050565b613501816134bc565b811461350c57600080fd5b50565b60008135905061351e816134f8565b92915050565b6000806040838503121561353b5761353a6132b9565b5b60006135498582860161350f565b925050602061355a8582860161345a565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613599816134bc565b82525050565b60006135ab8383613590565b60208301905092915050565b6000602082019050919050565b60006135cf82613564565b6135d9818561356f565b93506135e483613580565b8060005b838110156136155781516135fc888261359f565b9750613607836135b7565b9250506001810190506135e8565b5085935050505092915050565b6000602082019050818103600083015261363c81846135c4565b905092915050565b60006020828403121561365a576136596132b9565b5b60006136688482850161350f565b91505092915050565b61367a81613439565b82525050565b60006020820190506136956000830184613671565b92915050565b60006060820190506136b06000830186613671565b6136bd60208301856134ce565b81810360408301526136cf81846133de565b9050949350505050565b6000806000606084860312156136f2576136f16132b9565b5b60006137008682870161350f565b93505060206137118682870161350f565b92505060406137228682870161345a565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613769826133cd565b810181811067ffffffffffffffff8211171561378857613787613731565b5b80604052505050565b600061379b6132af565b90506137a78282613760565b919050565b600067ffffffffffffffff8211156137c7576137c6613731565b5b602082029050602081019050919050565b600080fd5b60006137f06137eb846137ac565b613791565b90508083825260208201905060208402830185811115613813576138126137d8565b5b835b8181101561383c5780613828888261350f565b845260208401935050602081019050613815565b5050509392505050565b600082601f83011261385b5761385a61372c565b5b813561386b8482602086016137dd565b91505092915050565b60006020828403121561388a576138896132b9565b5b600082013567ffffffffffffffff8111156138a8576138a76132be565b5b6138b484828501613846565b91505092915050565b6138c681613348565b81146138d157600080fd5b50565b6000813590506138e3816138bd565b92915050565b60008060408385031215613900576138ff6132b9565b5b600061390e8582860161350f565b925050602061391f858286016138d4565b9150509250929050565b600080fd5b600067ffffffffffffffff82111561394957613948613731565b5b613952826133cd565b9050602081019050919050565b82818337600083830152505050565b600061398161397c8461392e565b613791565b90508281526020810184848401111561399d5761399c613929565b5b6139a884828561395f565b509392505050565b600082601f8301126139c5576139c461372c565b5b81356139d584826020860161396e565b91505092915050565b600080600080608085870312156139f8576139f76132b9565b5b6000613a068782880161350f565b9450506020613a178782880161350f565b9350506040613a288782880161345a565b925050606085013567ffffffffffffffff811115613a4957613a486132be565b5b613a55878288016139b0565b91505092959194509250565b60008060408385031215613a7857613a776132b9565b5b6000613a868582860161350f565b9250506020613a978582860161350f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae857607f821691505b602082108103613afb57613afa613aa1565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613b5d602c83613389565b9150613b6882613b01565b604082019050919050565b60006020820190508181036000830152613b8c81613b50565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613bef602183613389565b9150613bfa82613b93565b604082019050919050565b60006020820190508181036000830152613c1e81613be2565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613c81603883613389565b9150613c8c82613c25565b604082019050919050565b60006020820190508181036000830152613cb081613c74565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613ced602083613389565b9150613cf882613cb7565b602082019050919050565b60006020820190508181036000830152613d1c81613ce0565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613d7f603183613389565b9150613d8a82613d23565b604082019050919050565b60006020820190508181036000830152613dae81613d72565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613def82613439565b9150613dfa83613439565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2f57613e2e613db5565b5b828201905092915050565b6000613e4582613439565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613e7757613e76613db5565b5b600182019050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613ede602b83613389565b9150613ee982613e82565b604082019050919050565b60006020820190508181036000830152613f0d81613ed1565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613f70602c83613389565b9150613f7b82613f14565b604082019050919050565b60006020820190508181036000830152613f9f81613f63565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614031602983613389565b915061403c82613fd5565b604082019050919050565b6000602082019050818103600083015261406081614024565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006140c3602a83613389565b91506140ce82614067565b604082019050919050565b600060208201905081810360008301526140f2816140b6565b9050919050565b7f4e6f7420656e6f756768204554482073656e743a20636865636b20707269636560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614155602183613389565b9150614160826140f9565b604082019050919050565b6000602082019050818103600083015261418481614148565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006141c1601983613389565b91506141cc8261418b565b602082019050919050565b600060208201905081810360008301526141f0816141b4565b9050919050565b7f746865206164647265737320646f6573206e6f7420657869737420696e20746860008201527f65202077686974656c6973740000000000000000000000000000000000000000602082015250565b6000614253602c83613389565b915061425e826141f7565b604082019050919050565b6000602082019050818103600083015261428281614246565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142e5602683613389565b91506142f082614289565b604082019050919050565b60006020820190508181036000830152614314816142d8565b9050919050565b7f4578636565647320746f6b656e20737570706c79000000000000000000000000600082015250565b6000614351601483613389565b915061435c8261431b565b602082019050919050565b6000602082019050818103600083015261438081614344565b9050919050565b60008154905061439681613ad0565b9050919050565b60008190508160005260206000209050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026144147fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826143d7565b61441e86836143d7565b95508019841693508086168417925050509392505050565b6000819050919050565b600061445b61445661445184613439565b614436565b613439565b9050919050565b6000819050919050565b61447583614440565b61448961448182614462565b8484546143e4565b825550505050565b600090565b61449e614491565b6144a981848461446c565b505050565b5b818110156144cd576144c2600082614496565b6001810190506144af565b5050565b601f821115614512576144e38161439d565b6144ec846143c7565b810160208510156144fb578190505b61450f614507856143c7565b8301826144ae565b50505b505050565b600082821c905092915050565b600061453560001984600802614517565b1980831691505092915050565b600061454e8383614524565b9150826002028217905092915050565b81810361456c575050614644565b61457582614387565b67ffffffffffffffff81111561458e5761458d613731565b5b6145988254613ad0565b6145a38282856144d1565b6000601f8311600181146145d257600084156145c0578287015490505b6145ca8582614542565b86555061463d565b601f1984166145e0876143b2565b96506145eb8661439d565b60005b82811015614613578489015482556001820191506001850194506020810190506145ee565b86831015614630578489015461462c601f891682614524565b8355505b6001600288020188555050505b5050505050505b565b61464f8261337e565b67ffffffffffffffff81111561466857614667613731565b5b6146728254613ad0565b61467d8282856144d1565b600060209050601f8311600181146146b0576000841561469e578287015190505b6146a88582614542565b865550614710565b601f1984166146be8661439d565b60005b828110156146e6578489015182556001820191506020850194506020810190506146c1565b8683101561470357848901516146ff601f891682614524565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614774602c83613389565b915061477f82614718565b604082019050919050565b600060208201905081810360008301526147a381614767565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614806602983613389565b9150614811826147aa565b604082019050919050565b60006020820190508181036000830152614835816147f9565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614898602483613389565b91506148a38261483c565b604082019050919050565b600060208201905081810360008301526148c78161488b565b9050919050565b60006148d982613439565b91506148e483613439565b9250828210156148f7576148f6613db5565b5b828203905092915050565b7f457863656564732061697264726f7020737570706c7900000000000000000000600082015250565b6000614938601683613389565b915061494382614902565b602082019050919050565b600060208201905081810360008301526149678161492b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006149ca603283613389565b91506149d58261496e565b604082019050919050565b600060208201905081810360008301526149f9816149bd565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614a5c603183613389565b9150614a6782614a00565b604082019050919050565b60006020820190508181036000830152614a8b81614a4f565b9050919050565b600081905092915050565b6000614aa88261337e565b614ab28185614a92565b9350614ac281856020860161339a565b80840191505092915050565b6000614ada8285614a9d565b9150614ae68284614a9d565b91508190509392505050565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b6000614b28601883613389565b9150614b3382614af2565b602082019050919050565b60006020820190508181036000830152614b5781614b1b565b9050919050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b6000614bba602e83613389565b9150614bc582614b5e565b604082019050919050565b60006020820190508181036000830152614be981614bad565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c1782614bf0565b614c218185614bfb565b9350614c3181856020860161339a565b614c3a816133cd565b840191505092915050565b6000608082019050614c5a60008301876134ce565b614c6760208301866134ce565b614c746040830185613671565b8181036060830152614c868184614c0c565b905095945050505050565b600081519050614ca0816132ef565b92915050565b600060208284031215614cbc57614cbb6132b9565b5b6000614cca84828501614c91565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614d2f602f83613389565b9150614d3a82614cd3565b604082019050919050565b60006020820190508181036000830152614d5e81614d22565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d9f82613439565b9150614daa83613439565b925082614dba57614db9614d65565b5b828204905092915050565b6000614dd082613439565b9150614ddb83613439565b925082614deb57614dea614d65565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614e2c602083613389565b9150614e3782614df6565b602082019050919050565b60006020820190508181036000830152614e5b81614e1f565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e98601c83613389565b9150614ea382614e62565b602082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122099b534f766e9c6b0c12ac56618724c3dd256717a680e4795c701af771a6f1dc264736f6c634300080f0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.