Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint Air Drop Ba... | 15313732 | 933 days ago | IN | 0 ETH | 0.05016857 |
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/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract CigPass is ERC721,Ownable { using Counters for Counters.Counter; // the whitelist mapping(address,address) mapping(address => address) public whiteLists; // all the whitelist address address[] private whiteListAddressList ; address[] private alreadyPurchasedWhiteList ; address[] private alreadyExchangeBadge ; Counters.Counter private _tokenIdCounter; // Total amount from pass sales uint256 public balanceReceived; // the bagage uint256[] public badgeExchangePassz; uint256 private _totalSupply ; uint256 private _airDropTotalSupply; uint256 private _whitelistTotalSupply; uint256 private _publicMintTotalSupply; uint256 private _badgeExchangeTotalSupply; uint256 private allowTotalSupply = 1777 ; uint256 private allowAirDropTotalSupply ; uint256 private allowWhitelistTotalSupply ; uint256 private allowPublicMintTotalSupply ; uint256 private allowBadgeExchangeTotalSupply ; bool private _whiteListSwithch = true; struct Item { uint256 id; address owner; } mapping(uint256 => Item) public Items; //id => Item constructor() ERC721("CigPass", "CPass") { allowAirDropTotalSupply = 77; allowWhitelistTotalSupply = 300; allowPublicMintTotalSupply = 300 ; allowBadgeExchangeTotalSupply = 100; } function setAllowAirDropTotalSupply(uint256 value) public onlyOwner{ allowAirDropTotalSupply = value; } function setAllowWhitelistTotalSupply(uint256 value) public onlyOwner{ allowWhitelistTotalSupply = value; } function setAllowPublicMintTotalSupply(uint256 value) public onlyOwner{ allowPublicMintTotalSupply = value; } function setAllowBadgeExchangeTotalSupply(uint256 value) public onlyOwner{ allowBadgeExchangeTotalSupply = value; } function getAllowPublicMintTotalSupply() public view returns (uint256){ return allowPublicMintTotalSupply; } function airDropTotalSupply() public view returns (uint256) { return _airDropTotalSupply; } function whitelistTotalSupply() public view returns (uint256) { return _whitelistTotalSupply; } function totalSupply() public view returns (uint256) { return _totalSupply; } function publicMintTotalSupply() public view returns (uint256) { return _publicMintTotalSupply; } function badgeExchangeTotalSupply() public view returns (uint256) { return _badgeExchangeTotalSupply; } 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"); } function checkBadgeExchangeTotalSupply() view internal { uint256 will_num = badgeExchangeTotalSupply() + 1; require(will_num > 0 && will_num <= allowBadgeExchangeTotalSupply, "Exceeds badgeExchangeTotalSupply supply"); } function checkPublicMintTotalSupply() view internal { uint256 will_num = publicMintTotalSupply() + 1; require(will_num > 0 && will_num <= allowPublicMintTotalSupply, "Exceeds publicMintTotalSupply 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); _airDropTotalSupply += 1; } } /** * 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){ checkBadgeExchangeTotalSupply(); for(uint256 i = 0 ; i < alreadyExchangeBadge.length; i++){ address addr = alreadyExchangeBadge[i]; if(addr == to){ revert("only 1 pass can be exchanged for an account "); } } uint256 tokenId = _mint(to); _badgeExchangeTotalSupply += 1; badgeExchangePassz.push(tokenId); alreadyExchangeBadge.push(to); return tokenId; } function setWhiteListSwithch(bool flag)public onlyOwner{ _whiteListSwithch = flag; } /** * Buy the pass with whitelist price of 0.1 eth */ function mintWithWhiteList(address to) public payable returns (uint256) { if(!_whiteListSwithch){ revert("Whitelist mode has been disabled "); } checkWhitelistTotalSupply(); require(whiteLists[to] != address(0),"the address does not exist in the whitelist"); for(uint256 i = 0 ; i < alreadyPurchasedWhiteList.length; i++){ address addr = alreadyPurchasedWhiteList[i]; if(addr == to){ revert("whitelist can buy pass only once "); } } require(msg.value == .1 ether, "Not enough ETH sent: check price."); balanceReceived += msg.value; uint256 tokenId = _mint(to); alreadyPurchasedWhiteList.push(to); _whitelistTotalSupply += 1; return tokenId; } /** Buy the pass with the public sale price of 0.2 eth */ function mintPublic(address to) public payable returns (uint256) { checkPublicMintTotalSupply(); _checkPublicMint(to); require(msg.value == .2 ether, "Not enough ETH sent: check price."); balanceReceived += msg.value; uint256 tokenId = _mint(to); _publicMintTotalSupply += 1; return tokenId; } function _checkPublicMint(address to) view internal{ uint256 token_total = _tokenIdCounter.current(); uint256 alreadyBuyNum = 0; for(uint256 i = 1 ; i <= token_total; i++){ address current_owner = Items[i].owner; if(current_owner == to){ alreadyBuyNum = alreadyBuyNum + 1; } } if(alreadyBuyNum >= 2){ revert("Already Purchased 2 times "); } } 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) { checkTotalSupply(); _tokenIdCounter.increment(); uint256 tokenId = _tokenIdCounter.current(); _safeMint(to, tokenId); Items[tokenId] = Item({id: tokenId, owner: to}); _totalSupply += 1; 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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); 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 overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "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"}],"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":[],"name":"badgeExchangeTotalSupply","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":[],"name":"getAllowPublicMintTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicMintTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"value","type":"uint256"}],"name":"setAllowAirDropTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setAllowBadgeExchangeTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setAllowPublicMintTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setAllowWhitelistTotalSupply","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":"bool","name":"flag","type":"bool"}],"name":"setWhiteListSwithch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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
60806040526106f16013556001601860006101000a81548160ff0219169083151502179055503480156200003257600080fd5b506040518060400160405280600781526020017f43696750617373000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f43506173730000000000000000000000000000000000000000000000000000008152508160009081620000b0919062000455565b508060019081620000c2919062000455565b505050620000e5620000d96200010d60201b60201c565b6200011560201b60201c565b604d60148190555061012c60158190555061012c60168190555060646017819055506200053c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200025d57607f821691505b60208210810362000273576200027262000215565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620002dd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200029e565b620002e986836200029e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000336620003306200032a8462000301565b6200030b565b62000301565b9050919050565b6000819050919050565b620003528362000315565b6200036a62000361826200033d565b848454620002ab565b825550505050565b600090565b6200038162000372565b6200038e81848462000347565b505050565b5b81811015620003b657620003aa60008262000377565b60018101905062000394565b5050565b601f8211156200040557620003cf8162000279565b620003da846200028e565b81016020851015620003ea578190505b62000402620003f9856200028e565b83018262000393565b50505b505050565b600082821c905092915050565b60006200042a600019846008026200040a565b1980831691505092915050565b600062000445838362000417565b9150826002028217905092915050565b6200046082620001db565b67ffffffffffffffff8111156200047c576200047b620001e6565b5b62000488825462000244565b62000495828285620003ba565b600060209050601f831160018114620004cd5760008415620004b8578287015190505b620004c4858262000437565b86555062000534565b601f198416620004dd8662000279565b60005b828110156200050757848901518255600182019150602085019450602081019050620004e0565b8683101562000527578489015162000523601f89168262000417565b8355505b6001600288020188555050505b505050505050565b61445d806200054c6000396000f3fe60806040526004361061023b5760003560e01c80636926de831161012e578063b88d4fde116100ab578063e21fba1c1161006f578063e21fba1c146108a4578063e985e9c5146108cf578063ef801b761461090c578063f2fde38b14610935578063f96df6921461095e5761023b565b8063b88d4fde146107b8578063bd4af89c146107e1578063c87b56dd1461080c578063cceacac614610849578063e19582db146108745761023b565b806395d89b41116100f257806395d89b41146106f2578063a06cb7191461071d578063a22cb4651461074d578063a97fe7b614610776578063ac446002146107a15761023b565b80636926de831461062157806370a082311461064a578063715018a6146106875780638a072b7c1461069e5780638da5cb5b146106c75761023b565b806317b47cc4116101bc57806352a90c421161018057806352a90c421461051657806353dc840b146105415780635e1045ec1461057e5780636352211e146105a7578063683dcaf4146105e45761023b565b806317b47cc41461041e57806318160ddd1461045c57806323b872dd146104875780632a69f515146104b057806342842e0e146104ed5761023b565b8063095ea7b311610203578063095ea7b31461033957806309a9d76c14610362578063104cd8c21461038d578063113e65b3146103ca57806312065fe0146103f35761023b565b8063014b28ca1461024057806301ffc9a71461026957806306a2f02b146102a657806306fdde03146102d1578063081812fc146102fc575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612ca9565b610987565b005b34801561027557600080fd5b50610290600480360381019061028b9190612d2e565b610999565b60405161029d9190612d76565b60405180910390f35b3480156102b257600080fd5b506102bb610a7b565b6040516102c89190612da0565b60405180910390f35b3480156102dd57600080fd5b506102e6610a85565b6040516102f39190612e54565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612ca9565b610b17565b6040516103309190612eb7565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612efe565b610b5d565b005b34801561036e57600080fd5b50610377610c74565b6040516103849190612ffc565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061301e565b610d02565b6040516103c19190612da0565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612ca9565b610ea6565b005b3480156103ff57600080fd5b50610408610eb8565b6040516104159190612da0565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612ca9565b610ec0565b60405161045392919061304b565b60405180910390f35b34801561046857600080fd5b50610471610f04565b60405161047e9190612da0565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613074565b610f0e565b005b3480156104bc57600080fd5b506104d760048036038101906104d2919061301e565b610f6e565b6040516104e49190612da0565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190613074565b611029565b005b34801561052257600080fd5b5061052b611049565b6040516105389190612da0565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061301e565b61104f565b6040516105759190612eb7565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a0919061320f565b611082565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190612ca9565b6111ae565b6040516105db9190612eb7565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612ca9565b61125f565b6040516106189190612da0565b60405180910390f35b34801561062d57600080fd5b506106486004803603810190610643919061320f565b611283565b005b34801561065657600080fd5b50610671600480360381019061066c919061301e565b6112fa565b60405161067e9190612da0565b60405180910390f35b34801561069357600080fd5b5061069c6113b1565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612ca9565b6113c5565b005b3480156106d357600080fd5b506106dc6113d7565b6040516106e99190612eb7565b60405180910390f35b3480156106fe57600080fd5b50610707611401565b6040516107149190612e54565b60405180910390f35b6107376004803603810190610732919061301e565b611493565b6040516107449190612da0565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613284565b611539565b005b34801561078257600080fd5b5061078b61154f565b6040516107989190612da0565b60405180910390f35b3480156107ad57600080fd5b506107b6611559565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613379565b6115b7565b005b3480156107ed57600080fd5b506107f6611619565b6040516108039190612da0565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612ca9565b611623565b6040516108409190612e54565b60405180910390f35b34801561085557600080fd5b5061085e61168b565b60405161086b9190612da0565b60405180910390f35b61088e6004803603810190610889919061301e565b611695565b60405161089b9190612da0565b60405180910390f35b3480156108b057600080fd5b506108b9611988565b6040516108c69190612da0565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906133fc565b611992565b6040516109039190612d76565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e919061343c565b611a26565b005b34801561094157600080fd5b5061095c6004803603810190610957919061301e565b611a4b565b005b34801561096a57600080fd5b5061098560048036038101906109809190612ca9565b611ace565b005b61098f611ae0565b8060148190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a745750610a7382611b5e565b5b9050919050565b6000601254905090565b606060008054610a9490613498565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090613498565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b6000610b2282611bc8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b68826111ae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf9061353b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf7611c13565b73ffffffffffffffffffffffffffffffffffffffff161480610c265750610c2581610c20611c13565b611992565b5b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c906135cd565b60405180910390fd5b610c6f8383611c1b565b505050565b60606008805480602002602001604051908101604052809291908181526020018280548015610cf857602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610cae575b5050505050905090565b6000610d0c611ae0565b610d14611cd4565b60005b600a80549050811015610de9576000600a8281548110610d3a57610d396135ed565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc9061368e565b60405180910390fd5b508080610de1906136dd565b915050610d17565b506000610df583611d40565b9050600160126000828254610e0a9190613725565b92505081905550600d819080600181540180825580915050600190039060005260206000200160009091909190915055600a839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080915050919050565b610eae611ae0565b8060178190555050565b600047905090565b60196020528060005260406000206000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b6000600e54905090565b610f1f610f19611c13565b82611e21565b610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f55906137ed565b60405180910390fd5b610f69838383611eb6565b505050565b600080610f7b600b61211c565b9050600080600190505b82811161101e5760006019600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361100a576001836110079190613725565b92505b508080611016906136dd565b915050610f85565b508092505050919050565b611044838383604051806020016040528060008152506115b7565b505050565b600c5481565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61108a611ae0565b60005b81518110156111aa5760008282815181106110ab576110aa6135ed565b5b6020026020010151905080600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080806111a2906136dd565b91505061108d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613859565b60405180910390fd5b80915050919050565b600d818154811061126f57600080fd5b906000526020600020016000915090505481565b61128b611ae0565b61129361212a565b60005b81518110156112f65760008282815181106112b4576112b36135ed565b5b602002602001015190506112c781611d40565b506001600f60008282546112db9190613725565b925050819055505080806112ee906136dd565b915050611296565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906138eb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b9611ae0565b6113c36000612196565b565b6113cd611ae0565b8060168190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461141090613498565b80601f016020809104026020016040519081016040528092919081815260200182805461143c90613498565b80156114895780601f1061145e57610100808354040283529160200191611489565b820191906000526020600020905b81548152906001019060200180831161146c57829003601f168201915b5050505050905090565b600061149d61225c565b6114a6826122c8565b6702c68af0bb14000034146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061397d565b60405180910390fd5b34600c60008282546115029190613725565b92505081905550600061151483611d40565b90506001601160008282546115299190613725565b9250508190555080915050919050565b61154b611544611c13565b83836123c0565b5050565b6000600f54905090565b611561611ae0565b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc611588610eb8565b9081150290604051600060405180830381858888f193505050501580156115b3573d6000803e3d6000fd5b5050565b6115c86115c2611c13565b83611e21565b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906137ed565b60405180910390fd5b6116138484848461252c565b50505050565b6000601054905090565b606061162e82611bc8565b6000611638612588565b905060008151116116585760405180602001604052806000815250611683565b806116628461259f565b6040516020016116739291906139d9565b6040516020818303038152906040525b915050919050565b6000601154905090565b6000601860009054906101000a900460ff166116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90613a6f565b60405180910390fd5b6116ee6126ff565b600073ffffffffffffffffffffffffffffffffffffffff16600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613b01565b60405180910390fd5b60005b600980549050811015611891576000600982815481106117e2576117e16135ed565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613b93565b60405180910390fd5b508080611889906136dd565b9150506117bf565b5067016345785d8a000034146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d39061397d565b60405180910390fd5b34600c60008282546118ee9190613725565b92505081905550600061190083611d40565b90506009839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060008282546119789190613725565b9250508190555080915050919050565b6000601654905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a2e611ae0565b80601860006101000a81548160ff02191690831515021790555050565b611a53611ae0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990613c25565b60405180910390fd5b611acb81612196565b50565b611ad6611ae0565b8060158190555050565b611ae8611c13565b73ffffffffffffffffffffffffffffffffffffffff16611b066113d7565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613c91565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611bd18161276b565b611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0790613859565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c8e836111ae565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001611ce0610a7b565b611cea9190613725565b9050600081118015611cfe57506017548111155b611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613d23565b60405180910390fd5b50565b6000611d4a6127d7565b611d54600b612843565b6000611d60600b61211c565b9050611d6c8382612859565b60405180604001604052808281526020018473ffffffffffffffffffffffffffffffffffffffff16815250601960008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001600e6000828254611e119190613725565b9250508190555080915050919050565b600080611e2d836111ae565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e6f5750611e6e8185611992565b5b80611ead57508373ffffffffffffffffffffffffffffffffffffffff16611e9584610b17565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ed6826111ae565b73ffffffffffffffffffffffffffffffffffffffff1614611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613db5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290613e47565b60405180910390fd5b611fa6838383612877565b611fb1600082611c1b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120019190613e67565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120589190613725565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461211783838361287c565b505050565b600081600001549050919050565b6000600161213661154f565b6121409190613725565b905060008111801561215457506014548111155b612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90613ee7565b60405180910390fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600161226861168b565b6122729190613725565b905060008111801561228657506016548111155b6122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc90613f79565b60405180910390fd5b50565b60006122d4600b61211c565b9050600080600190505b8281116123775760006019600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612363576001836123609190613725565b92505b50808061236f906136dd565b9150506122de565b50600281106123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290613fe5565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361242e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242590614051565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161251f9190612d76565b60405180910390a3505050565b612537848484611eb6565b61254384848484612881565b612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906140e3565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600082036125e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fa565b600082905060005b60008214612618578080612601906136dd565b915050600a826126119190614132565b91506125ee565b60008167ffffffffffffffff811115612634576126336130cc565b5b6040519080825280601f01601f1916602001820160405280156126665781602001600182028036833780820191505090505b5090505b600085146126f35760018261267f9190613e67565b9150600a8561268e9190614163565b603061269a9190613725565b60f81b8183815181106126b0576126af6135ed565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ec9190614132565b945061266a565b8093505050505b919050565b6000600161270b611619565b6127159190613725565b905060008111801561272957506015548111155b612768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275f906141e0565b60405180910390fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600060016127e3610f04565b6127ed9190613725565b905060008111801561280157506013548111155b612840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128379061424c565b60405180910390fd5b50565b6001816000016000828254019250508190555050565b612873828260405180602001604052806000815250612a08565b5050565b505050565b505050565b60006128a28473ffffffffffffffffffffffffffffffffffffffff16612a63565b156129fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128cb611c13565b8786866040518563ffffffff1660e01b81526004016128ed94939291906142c1565b6020604051808303816000875af192505050801561292957506040513d601f19601f820116820180604052508101906129269190614322565b60015b6129ab573d8060008114612959576040519150601f19603f3d011682016040523d82523d6000602084013e61295e565b606091505b5060008151036129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906140e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a00565b600190505b949350505050565b612a128383612a86565b612a1f6000848484612881565b612a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a55906140e3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aec9061439b565b60405180910390fd5b612afe8161276b565b15612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3590614407565b60405180910390fd5b612b4a60008383612877565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9a9190613725565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5b6000838361287c565b5050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612c8681612c73565b8114612c9157600080fd5b50565b600081359050612ca381612c7d565b92915050565b600060208284031215612cbf57612cbe612c69565b5b6000612ccd84828501612c94565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d0b81612cd6565b8114612d1657600080fd5b50565b600081359050612d2881612d02565b92915050565b600060208284031215612d4457612d43612c69565b5b6000612d5284828501612d19565b91505092915050565b60008115159050919050565b612d7081612d5b565b82525050565b6000602082019050612d8b6000830184612d67565b92915050565b612d9a81612c73565b82525050565b6000602082019050612db56000830184612d91565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612df5578082015181840152602081019050612dda565b83811115612e04576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e2682612dbb565b612e308185612dc6565b9350612e40818560208601612dd7565b612e4981612e0a565b840191505092915050565b60006020820190508181036000830152612e6e8184612e1b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ea182612e76565b9050919050565b612eb181612e96565b82525050565b6000602082019050612ecc6000830184612ea8565b92915050565b612edb81612e96565b8114612ee657600080fd5b50565b600081359050612ef881612ed2565b92915050565b60008060408385031215612f1557612f14612c69565b5b6000612f2385828601612ee9565b9250506020612f3485828601612c94565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f7381612e96565b82525050565b6000612f858383612f6a565b60208301905092915050565b6000602082019050919050565b6000612fa982612f3e565b612fb38185612f49565b9350612fbe83612f5a565b8060005b83811015612fef578151612fd68882612f79565b9750612fe183612f91565b925050600181019050612fc2565b5085935050505092915050565b600060208201905081810360008301526130168184612f9e565b905092915050565b60006020828403121561303457613033612c69565b5b600061304284828501612ee9565b91505092915050565b60006040820190506130606000830185612d91565b61306d6020830184612ea8565b9392505050565b60008060006060848603121561308d5761308c612c69565b5b600061309b86828701612ee9565b93505060206130ac86828701612ee9565b92505060406130bd86828701612c94565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310482612e0a565b810181811067ffffffffffffffff82111715613123576131226130cc565b5b80604052505050565b6000613136612c5f565b905061314282826130fb565b919050565b600067ffffffffffffffff821115613162576131616130cc565b5b602082029050602081019050919050565b600080fd5b600061318b61318684613147565b61312c565b905080838252602082019050602084028301858111156131ae576131ad613173565b5b835b818110156131d757806131c38882612ee9565b8452602084019350506020810190506131b0565b5050509392505050565b600082601f8301126131f6576131f56130c7565b5b8135613206848260208601613178565b91505092915050565b60006020828403121561322557613224612c69565b5b600082013567ffffffffffffffff81111561324357613242612c6e565b5b61324f848285016131e1565b91505092915050565b61326181612d5b565b811461326c57600080fd5b50565b60008135905061327e81613258565b92915050565b6000806040838503121561329b5761329a612c69565b5b60006132a985828601612ee9565b92505060206132ba8582860161326f565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156132e4576132e36130cc565b5b6132ed82612e0a565b9050602081019050919050565b82818337600083830152505050565b600061331c613317846132c9565b61312c565b905082815260208101848484011115613338576133376132c4565b5b6133438482856132fa565b509392505050565b600082601f8301126133605761335f6130c7565b5b8135613370848260208601613309565b91505092915050565b6000806000806080858703121561339357613392612c69565b5b60006133a187828801612ee9565b94505060206133b287828801612ee9565b93505060406133c387828801612c94565b925050606085013567ffffffffffffffff8111156133e4576133e3612c6e565b5b6133f08782880161334b565b91505092959194509250565b6000806040838503121561341357613412612c69565b5b600061342185828601612ee9565b925050602061343285828601612ee9565b9150509250929050565b60006020828403121561345257613451612c69565b5b60006134608482850161326f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134b057607f821691505b6020821081036134c3576134c2613469565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613525602183612dc6565b9150613530826134c9565b604082019050919050565b6000602082019050818103600083015261355481613518565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006135b7603e83612dc6565b91506135c28261355b565b604082019050919050565b600060208201905081810360008301526135e6816135aa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6f6e6c79203120706173732063616e2062652065786368616e67656420666f7260008201527f20616e206163636f756e74202000000000000000000000000000000000000000602082015250565b6000613678602d83612dc6565b91506136838261361c565b604082019050919050565b600060208201905081810360008301526136a78161366b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136e882612c73565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361371a576137196136ae565b5b600182019050919050565b600061373082612c73565b915061373b83612c73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137705761376f6136ae565b5b828201905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006137d7602e83612dc6565b91506137e28261377b565b604082019050919050565b60006020820190508181036000830152613806816137ca565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613843601883612dc6565b915061384e8261380d565b602082019050919050565b6000602082019050818103600083015261387281613836565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006138d5602983612dc6565b91506138e082613879565b604082019050919050565b60006020820190508181036000830152613904816138c8565b9050919050565b7f4e6f7420656e6f756768204554482073656e743a20636865636b20707269636560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613967602183612dc6565b91506139728261390b565b604082019050919050565b600060208201905081810360008301526139968161395a565b9050919050565b600081905092915050565b60006139b382612dbb565b6139bd818561399d565b93506139cd818560208601612dd7565b80840191505092915050565b60006139e582856139a8565b91506139f182846139a8565b91508190509392505050565b7f57686974656c697374206d6f646520686173206265656e2064697361626c656460008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a59602183612dc6565b9150613a64826139fd565b604082019050919050565b60006020820190508181036000830152613a8881613a4c565b9050919050565b7f746865206164647265737320646f6573206e6f7420657869737420696e20746860008201527f65202077686974656c6973740000000000000000000000000000000000000000602082015250565b6000613aeb602c83612dc6565b9150613af682613a8f565b604082019050919050565b60006020820190508181036000830152613b1a81613ade565b9050919050565b7f77686974656c6973742063616e206275792070617373206f6e6c79206f6e636560008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b7d602183612dc6565b9150613b8882613b21565b604082019050919050565b60006020820190508181036000830152613bac81613b70565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c0f602683612dc6565b9150613c1a82613bb3565b604082019050919050565b60006020820190508181036000830152613c3e81613c02565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c7b602083612dc6565b9150613c8682613c45565b602082019050919050565b60006020820190508181036000830152613caa81613c6e565b9050919050565b7f4578636565647320626164676545786368616e6765546f74616c537570706c7960008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b6000613d0d602783612dc6565b9150613d1882613cb1565b604082019050919050565b60006020820190508181036000830152613d3c81613d00565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613d9f602583612dc6565b9150613daa82613d43565b604082019050919050565b60006020820190508181036000830152613dce81613d92565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e31602483612dc6565b9150613e3c82613dd5565b604082019050919050565b60006020820190508181036000830152613e6081613e24565b9050919050565b6000613e7282612c73565b9150613e7d83612c73565b925082821015613e9057613e8f6136ae565b5b828203905092915050565b7f457863656564732061697264726f7020737570706c7900000000000000000000600082015250565b6000613ed1601683612dc6565b9150613edc82613e9b565b602082019050919050565b60006020820190508181036000830152613f0081613ec4565b9050919050565b7f45786365656473207075626c69634d696e74546f74616c537570706c7920737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b6000613f63602483612dc6565b9150613f6e82613f07565b604082019050919050565b60006020820190508181036000830152613f9281613f56565b9050919050565b7f416c72656164792050757263686173656420322074696d657320200000000000600082015250565b6000613fcf601b83612dc6565b9150613fda82613f99565b602082019050919050565b60006020820190508181036000830152613ffe81613fc2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061403b601983612dc6565b915061404682614005565b602082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006140cd603283612dc6565b91506140d882614071565b604082019050919050565b600060208201905081810360008301526140fc816140c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061413d82612c73565b915061414883612c73565b92508261415857614157614103565b5b828204905092915050565b600061416e82612c73565b915061417983612c73565b92508261418957614188614103565b5b828206905092915050565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b60006141ca601883612dc6565b91506141d582614194565b602082019050919050565b600060208201905081810360008301526141f9816141bd565b9050919050565b7f4578636565647320746f6b656e20737570706c79000000000000000000000000600082015250565b6000614236601483612dc6565b915061424182614200565b602082019050919050565b6000602082019050818103600083015261426581614229565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142938261426c565b61429d8185614277565b93506142ad818560208601612dd7565b6142b681612e0a565b840191505092915050565b60006080820190506142d66000830187612ea8565b6142e36020830186612ea8565b6142f06040830185612d91565b81810360608301526143028184614288565b905095945050505050565b60008151905061431c81612d02565b92915050565b60006020828403121561433857614337612c69565b5b60006143468482850161430d565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614385602083612dc6565b91506143908261434f565b602082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143f1601c83612dc6565b91506143fc826143bb565b602082019050919050565b60006020820190508181036000830152614420816143e4565b905091905056fea264697066735822122051253111c4ffbbe6ee8cb4ff47ff36cb1e8cd7481a6c7d14d9359d9b8132eee764736f6c634300080f0033
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80636926de831161012e578063b88d4fde116100ab578063e21fba1c1161006f578063e21fba1c146108a4578063e985e9c5146108cf578063ef801b761461090c578063f2fde38b14610935578063f96df6921461095e5761023b565b8063b88d4fde146107b8578063bd4af89c146107e1578063c87b56dd1461080c578063cceacac614610849578063e19582db146108745761023b565b806395d89b41116100f257806395d89b41146106f2578063a06cb7191461071d578063a22cb4651461074d578063a97fe7b614610776578063ac446002146107a15761023b565b80636926de831461062157806370a082311461064a578063715018a6146106875780638a072b7c1461069e5780638da5cb5b146106c75761023b565b806317b47cc4116101bc57806352a90c421161018057806352a90c421461051657806353dc840b146105415780635e1045ec1461057e5780636352211e146105a7578063683dcaf4146105e45761023b565b806317b47cc41461041e57806318160ddd1461045c57806323b872dd146104875780632a69f515146104b057806342842e0e146104ed5761023b565b8063095ea7b311610203578063095ea7b31461033957806309a9d76c14610362578063104cd8c21461038d578063113e65b3146103ca57806312065fe0146103f35761023b565b8063014b28ca1461024057806301ffc9a71461026957806306a2f02b146102a657806306fdde03146102d1578063081812fc146102fc575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612ca9565b610987565b005b34801561027557600080fd5b50610290600480360381019061028b9190612d2e565b610999565b60405161029d9190612d76565b60405180910390f35b3480156102b257600080fd5b506102bb610a7b565b6040516102c89190612da0565b60405180910390f35b3480156102dd57600080fd5b506102e6610a85565b6040516102f39190612e54565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612ca9565b610b17565b6040516103309190612eb7565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b9190612efe565b610b5d565b005b34801561036e57600080fd5b50610377610c74565b6040516103849190612ffc565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061301e565b610d02565b6040516103c19190612da0565b60405180910390f35b3480156103d657600080fd5b506103f160048036038101906103ec9190612ca9565b610ea6565b005b3480156103ff57600080fd5b50610408610eb8565b6040516104159190612da0565b60405180910390f35b34801561042a57600080fd5b5061044560048036038101906104409190612ca9565b610ec0565b60405161045392919061304b565b60405180910390f35b34801561046857600080fd5b50610471610f04565b60405161047e9190612da0565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a99190613074565b610f0e565b005b3480156104bc57600080fd5b506104d760048036038101906104d2919061301e565b610f6e565b6040516104e49190612da0565b60405180910390f35b3480156104f957600080fd5b50610514600480360381019061050f9190613074565b611029565b005b34801561052257600080fd5b5061052b611049565b6040516105389190612da0565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061301e565b61104f565b6040516105759190612eb7565b60405180910390f35b34801561058a57600080fd5b506105a560048036038101906105a0919061320f565b611082565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190612ca9565b6111ae565b6040516105db9190612eb7565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190612ca9565b61125f565b6040516106189190612da0565b60405180910390f35b34801561062d57600080fd5b506106486004803603810190610643919061320f565b611283565b005b34801561065657600080fd5b50610671600480360381019061066c919061301e565b6112fa565b60405161067e9190612da0565b60405180910390f35b34801561069357600080fd5b5061069c6113b1565b005b3480156106aa57600080fd5b506106c560048036038101906106c09190612ca9565b6113c5565b005b3480156106d357600080fd5b506106dc6113d7565b6040516106e99190612eb7565b60405180910390f35b3480156106fe57600080fd5b50610707611401565b6040516107149190612e54565b60405180910390f35b6107376004803603810190610732919061301e565b611493565b6040516107449190612da0565b60405180910390f35b34801561075957600080fd5b50610774600480360381019061076f9190613284565b611539565b005b34801561078257600080fd5b5061078b61154f565b6040516107989190612da0565b60405180910390f35b3480156107ad57600080fd5b506107b6611559565b005b3480156107c457600080fd5b506107df60048036038101906107da9190613379565b6115b7565b005b3480156107ed57600080fd5b506107f6611619565b6040516108039190612da0565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612ca9565b611623565b6040516108409190612e54565b60405180910390f35b34801561085557600080fd5b5061085e61168b565b60405161086b9190612da0565b60405180910390f35b61088e6004803603810190610889919061301e565b611695565b60405161089b9190612da0565b60405180910390f35b3480156108b057600080fd5b506108b9611988565b6040516108c69190612da0565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906133fc565b611992565b6040516109039190612d76565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e919061343c565b611a26565b005b34801561094157600080fd5b5061095c6004803603810190610957919061301e565b611a4b565b005b34801561096a57600080fd5b5061098560048036038101906109809190612ca9565b611ace565b005b61098f611ae0565b8060148190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a6457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a745750610a7382611b5e565b5b9050919050565b6000601254905090565b606060008054610a9490613498565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090613498565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b6000610b2282611bc8565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b68826111ae565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bcf9061353b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bf7611c13565b73ffffffffffffffffffffffffffffffffffffffff161480610c265750610c2581610c20611c13565b611992565b5b610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c906135cd565b60405180910390fd5b610c6f8383611c1b565b505050565b60606008805480602002602001604051908101604052809291908181526020018280548015610cf857602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019060010190808311610cae575b5050505050905090565b6000610d0c611ae0565b610d14611cd4565b60005b600a80549050811015610de9576000600a8281548110610d3a57610d396135ed565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc9061368e565b60405180910390fd5b508080610de1906136dd565b915050610d17565b506000610df583611d40565b9050600160126000828254610e0a9190613725565b92505081905550600d819080600181540180825580915050600190039060005260206000200160009091909190915055600a839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080915050919050565b610eae611ae0565b8060178190555050565b600047905090565b60196020528060005260406000206000915090508060000154908060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082565b6000600e54905090565b610f1f610f19611c13565b82611e21565b610f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f55906137ed565b60405180910390fd5b610f69838383611eb6565b505050565b600080610f7b600b61211c565b9050600080600190505b82811161101e5760006019600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508573ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361100a576001836110079190613725565b92505b508080611016906136dd565b915050610f85565b508092505050919050565b611044838383604051806020016040528060008152506115b7565b505050565b600c5481565b60076020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61108a611ae0565b60005b81518110156111aa5760008282815181106110ab576110aa6135ed565b5b6020026020010151905080600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505080806111a2906136dd565b91505061108d565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124d90613859565b60405180910390fd5b80915050919050565b600d818154811061126f57600080fd5b906000526020600020016000915090505481565b61128b611ae0565b61129361212a565b60005b81518110156112f65760008282815181106112b4576112b36135ed565b5b602002602001015190506112c781611d40565b506001600f60008282546112db9190613725565b925050819055505080806112ee906136dd565b915050611296565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361136a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611361906138eb565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113b9611ae0565b6113c36000612196565b565b6113cd611ae0565b8060168190555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461141090613498565b80601f016020809104026020016040519081016040528092919081815260200182805461143c90613498565b80156114895780601f1061145e57610100808354040283529160200191611489565b820191906000526020600020905b81548152906001019060200180831161146c57829003601f168201915b5050505050905090565b600061149d61225c565b6114a6826122c8565b6702c68af0bb14000034146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e79061397d565b60405180910390fd5b34600c60008282546115029190613725565b92505081905550600061151483611d40565b90506001601160008282546115299190613725565b9250508190555080915050919050565b61154b611544611c13565b83836123c0565b5050565b6000600f54905090565b611561611ae0565b60003390508073ffffffffffffffffffffffffffffffffffffffff166108fc611588610eb8565b9081150290604051600060405180830381858888f193505050501580156115b3573d6000803e3d6000fd5b5050565b6115c86115c2611c13565b83611e21565b611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe906137ed565b60405180910390fd5b6116138484848461252c565b50505050565b6000601054905090565b606061162e82611bc8565b6000611638612588565b905060008151116116585760405180602001604052806000815250611683565b806116628461259f565b6040516020016116739291906139d9565b6040516020818303038152906040525b915050919050565b6000601154905090565b6000601860009054906101000a900460ff166116e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116dd90613a6f565b60405180910390fd5b6116ee6126ff565b600073ffffffffffffffffffffffffffffffffffffffff16600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b390613b01565b60405180910390fd5b60005b600980549050811015611891576000600982815481106117e2576117e16135ed565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361187d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187490613b93565b60405180910390fd5b508080611889906136dd565b9150506117bf565b5067016345785d8a000034146118dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d39061397d565b60405180910390fd5b34600c60008282546118ee9190613725565b92505081905550600061190083611d40565b90506009839080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601060008282546119789190613725565b9250508190555080915050919050565b6000601654905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a2e611ae0565b80601860006101000a81548160ff02191690831515021790555050565b611a53611ae0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab990613c25565b60405180910390fd5b611acb81612196565b50565b611ad6611ae0565b8060158190555050565b611ae8611c13565b73ffffffffffffffffffffffffffffffffffffffff16611b066113d7565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613c91565b60405180910390fd5b565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611bd18161276b565b611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0790613859565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611c8e836111ae565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001611ce0610a7b565b611cea9190613725565b9050600081118015611cfe57506017548111155b611d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3490613d23565b60405180910390fd5b50565b6000611d4a6127d7565b611d54600b612843565b6000611d60600b61211c565b9050611d6c8382612859565b60405180604001604052808281526020018473ffffffffffffffffffffffffffffffffffffffff16815250601960008381526020019081526020016000206000820151816000015560208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001600e6000828254611e119190613725565b9250508190555080915050919050565b600080611e2d836111ae565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e6f5750611e6e8185611992565b5b80611ead57508373ffffffffffffffffffffffffffffffffffffffff16611e9584610b17565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611ed6826111ae565b73ffffffffffffffffffffffffffffffffffffffff1614611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2390613db5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290613e47565b60405180910390fd5b611fa6838383612877565b611fb1600082611c1b565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120019190613e67565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120589190613725565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461211783838361287c565b505050565b600081600001549050919050565b6000600161213661154f565b6121409190613725565b905060008111801561215457506014548111155b612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90613ee7565b60405180910390fd5b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600161226861168b565b6122729190613725565b905060008111801561228657506016548111155b6122c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bc90613f79565b60405180910390fd5b50565b60006122d4600b61211c565b9050600080600190505b8281116123775760006019600083815260200190815260200160002060010160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612363576001836123609190613725565b92505b50808061236f906136dd565b9150506122de565b50600281106123bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b290613fe5565b60405180910390fd5b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361242e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242590614051565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161251f9190612d76565b60405180910390a3505050565b612537848484611eb6565b61254384848484612881565b612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906140e3565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b6060600082036125e6576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126fa565b600082905060005b60008214612618578080612601906136dd565b915050600a826126119190614132565b91506125ee565b60008167ffffffffffffffff811115612634576126336130cc565b5b6040519080825280601f01601f1916602001820160405280156126665781602001600182028036833780820191505090505b5090505b600085146126f35760018261267f9190613e67565b9150600a8561268e9190614163565b603061269a9190613725565b60f81b8183815181106126b0576126af6135ed565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ec9190614132565b945061266a565b8093505050505b919050565b6000600161270b611619565b6127159190613725565b905060008111801561272957506015548111155b612768576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275f906141e0565b60405180910390fd5b50565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600060016127e3610f04565b6127ed9190613725565b905060008111801561280157506013548111155b612840576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128379061424c565b60405180910390fd5b50565b6001816000016000828254019250508190555050565b612873828260405180602001604052806000815250612a08565b5050565b505050565b505050565b60006128a28473ffffffffffffffffffffffffffffffffffffffff16612a63565b156129fb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128cb611c13565b8786866040518563ffffffff1660e01b81526004016128ed94939291906142c1565b6020604051808303816000875af192505050801561292957506040513d601f19601f820116820180604052508101906129269190614322565b60015b6129ab573d8060008114612959576040519150601f19603f3d011682016040523d82523d6000602084013e61295e565b606091505b5060008151036129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906140e3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a00565b600190505b949350505050565b612a128383612a86565b612a1f6000848484612881565b612a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a55906140e3565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aec9061439b565b60405180910390fd5b612afe8161276b565b15612b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3590614407565b60405180910390fd5b612b4a60008383612877565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9a9190613725565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c5b6000838361287c565b5050565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b612c8681612c73565b8114612c9157600080fd5b50565b600081359050612ca381612c7d565b92915050565b600060208284031215612cbf57612cbe612c69565b5b6000612ccd84828501612c94565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d0b81612cd6565b8114612d1657600080fd5b50565b600081359050612d2881612d02565b92915050565b600060208284031215612d4457612d43612c69565b5b6000612d5284828501612d19565b91505092915050565b60008115159050919050565b612d7081612d5b565b82525050565b6000602082019050612d8b6000830184612d67565b92915050565b612d9a81612c73565b82525050565b6000602082019050612db56000830184612d91565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612df5578082015181840152602081019050612dda565b83811115612e04576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e2682612dbb565b612e308185612dc6565b9350612e40818560208601612dd7565b612e4981612e0a565b840191505092915050565b60006020820190508181036000830152612e6e8184612e1b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ea182612e76565b9050919050565b612eb181612e96565b82525050565b6000602082019050612ecc6000830184612ea8565b92915050565b612edb81612e96565b8114612ee657600080fd5b50565b600081359050612ef881612ed2565b92915050565b60008060408385031215612f1557612f14612c69565b5b6000612f2385828601612ee9565b9250506020612f3485828601612c94565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612f7381612e96565b82525050565b6000612f858383612f6a565b60208301905092915050565b6000602082019050919050565b6000612fa982612f3e565b612fb38185612f49565b9350612fbe83612f5a565b8060005b83811015612fef578151612fd68882612f79565b9750612fe183612f91565b925050600181019050612fc2565b5085935050505092915050565b600060208201905081810360008301526130168184612f9e565b905092915050565b60006020828403121561303457613033612c69565b5b600061304284828501612ee9565b91505092915050565b60006040820190506130606000830185612d91565b61306d6020830184612ea8565b9392505050565b60008060006060848603121561308d5761308c612c69565b5b600061309b86828701612ee9565b93505060206130ac86828701612ee9565b92505060406130bd86828701612c94565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61310482612e0a565b810181811067ffffffffffffffff82111715613123576131226130cc565b5b80604052505050565b6000613136612c5f565b905061314282826130fb565b919050565b600067ffffffffffffffff821115613162576131616130cc565b5b602082029050602081019050919050565b600080fd5b600061318b61318684613147565b61312c565b905080838252602082019050602084028301858111156131ae576131ad613173565b5b835b818110156131d757806131c38882612ee9565b8452602084019350506020810190506131b0565b5050509392505050565b600082601f8301126131f6576131f56130c7565b5b8135613206848260208601613178565b91505092915050565b60006020828403121561322557613224612c69565b5b600082013567ffffffffffffffff81111561324357613242612c6e565b5b61324f848285016131e1565b91505092915050565b61326181612d5b565b811461326c57600080fd5b50565b60008135905061327e81613258565b92915050565b6000806040838503121561329b5761329a612c69565b5b60006132a985828601612ee9565b92505060206132ba8582860161326f565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156132e4576132e36130cc565b5b6132ed82612e0a565b9050602081019050919050565b82818337600083830152505050565b600061331c613317846132c9565b61312c565b905082815260208101848484011115613338576133376132c4565b5b6133438482856132fa565b509392505050565b600082601f8301126133605761335f6130c7565b5b8135613370848260208601613309565b91505092915050565b6000806000806080858703121561339357613392612c69565b5b60006133a187828801612ee9565b94505060206133b287828801612ee9565b93505060406133c387828801612c94565b925050606085013567ffffffffffffffff8111156133e4576133e3612c6e565b5b6133f08782880161334b565b91505092959194509250565b6000806040838503121561341357613412612c69565b5b600061342185828601612ee9565b925050602061343285828601612ee9565b9150509250929050565b60006020828403121561345257613451612c69565b5b60006134608482850161326f565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806134b057607f821691505b6020821081036134c3576134c2613469565b5b50919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613525602183612dc6565b9150613530826134c9565b604082019050919050565b6000602082019050818103600083015261355481613518565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b60006135b7603e83612dc6565b91506135c28261355b565b604082019050919050565b600060208201905081810360008301526135e6816135aa565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f6f6e6c79203120706173732063616e2062652065786368616e67656420666f7260008201527f20616e206163636f756e74202000000000000000000000000000000000000000602082015250565b6000613678602d83612dc6565b91506136838261361c565b604082019050919050565b600060208201905081810360008301526136a78161366b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136e882612c73565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361371a576137196136ae565b5b600182019050919050565b600061373082612c73565b915061373b83612c73565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137705761376f6136ae565b5b828201905092915050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b60006137d7602e83612dc6565b91506137e28261377b565b604082019050919050565b60006020820190508181036000830152613806816137ca565b9050919050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b6000613843601883612dc6565b915061384e8261380d565b602082019050919050565b6000602082019050818103600083015261387281613836565b9050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006138d5602983612dc6565b91506138e082613879565b604082019050919050565b60006020820190508181036000830152613904816138c8565b9050919050565b7f4e6f7420656e6f756768204554482073656e743a20636865636b20707269636560008201527f2e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000613967602183612dc6565b91506139728261390b565b604082019050919050565b600060208201905081810360008301526139968161395a565b9050919050565b600081905092915050565b60006139b382612dbb565b6139bd818561399d565b93506139cd818560208601612dd7565b80840191505092915050565b60006139e582856139a8565b91506139f182846139a8565b91508190509392505050565b7f57686974656c697374206d6f646520686173206265656e2064697361626c656460008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a59602183612dc6565b9150613a64826139fd565b604082019050919050565b60006020820190508181036000830152613a8881613a4c565b9050919050565b7f746865206164647265737320646f6573206e6f7420657869737420696e20746860008201527f65202077686974656c6973740000000000000000000000000000000000000000602082015250565b6000613aeb602c83612dc6565b9150613af682613a8f565b604082019050919050565b60006020820190508181036000830152613b1a81613ade565b9050919050565b7f77686974656c6973742063616e206275792070617373206f6e6c79206f6e636560008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b6000613b7d602183612dc6565b9150613b8882613b21565b604082019050919050565b60006020820190508181036000830152613bac81613b70565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613c0f602683612dc6565b9150613c1a82613bb3565b604082019050919050565b60006020820190508181036000830152613c3e81613c02565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c7b602083612dc6565b9150613c8682613c45565b602082019050919050565b60006020820190508181036000830152613caa81613c6e565b9050919050565b7f4578636565647320626164676545786368616e6765546f74616c537570706c7960008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b6000613d0d602783612dc6565b9150613d1882613cb1565b604082019050919050565b60006020820190508181036000830152613d3c81613d00565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613d9f602583612dc6565b9150613daa82613d43565b604082019050919050565b60006020820190508181036000830152613dce81613d92565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613e31602483612dc6565b9150613e3c82613dd5565b604082019050919050565b60006020820190508181036000830152613e6081613e24565b9050919050565b6000613e7282612c73565b9150613e7d83612c73565b925082821015613e9057613e8f6136ae565b5b828203905092915050565b7f457863656564732061697264726f7020737570706c7900000000000000000000600082015250565b6000613ed1601683612dc6565b9150613edc82613e9b565b602082019050919050565b60006020820190508181036000830152613f0081613ec4565b9050919050565b7f45786365656473207075626c69634d696e74546f74616c537570706c7920737560008201527f70706c7900000000000000000000000000000000000000000000000000000000602082015250565b6000613f63602483612dc6565b9150613f6e82613f07565b604082019050919050565b60006020820190508181036000830152613f9281613f56565b9050919050565b7f416c72656164792050757263686173656420322074696d657320200000000000600082015250565b6000613fcf601b83612dc6565b9150613fda82613f99565b602082019050919050565b60006020820190508181036000830152613ffe81613fc2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061403b601983612dc6565b915061404682614005565b602082019050919050565b6000602082019050818103600083015261406a8161402e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006140cd603283612dc6565b91506140d882614071565b604082019050919050565b600060208201905081810360008301526140fc816140c0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061413d82612c73565b915061414883612c73565b92508261415857614157614103565b5b828204905092915050565b600061416e82612c73565b915061417983612c73565b92508261418957614188614103565b5b828206905092915050565b7f457863656564732077686974656c69737420737570706c790000000000000000600082015250565b60006141ca601883612dc6565b91506141d582614194565b602082019050919050565b600060208201905081810360008301526141f9816141bd565b9050919050565b7f4578636565647320746f6b656e20737570706c79000000000000000000000000600082015250565b6000614236601483612dc6565b915061424182614200565b602082019050919050565b6000602082019050818103600083015261426581614229565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006142938261426c565b61429d8185614277565b93506142ad818560208601612dd7565b6142b681612e0a565b840191505092915050565b60006080820190506142d66000830187612ea8565b6142e36020830186612ea8565b6142f06040830185612d91565b81810360608301526143028184614288565b905095945050505050565b60008151905061431c81612d02565b92915050565b60006020828403121561433857614337612c69565b5b60006143468482850161430d565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614385602083612dc6565b91506143908261434f565b602082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006143f1601c83612dc6565b91506143fc826143bb565b602082019050919050565b60006020820190508181036000830152614420816143e4565b905091905056fea264697066735822122051253111c4ffbbe6ee8cb4ff47ff36cb1e8cd7481a6c7d14d9359d9b8132eee764736f6c634300080f0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.