Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
552 BGYC
Holders
101
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 BGYCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BoredGoblinYachtClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ERC721A.sol"; contract BoredGoblinYachtClub is ERC721A, Ownable { uint256 public price = 0.005 ether; uint256 public maxMintPerWallet = 50; uint256 public maxFreeMintPerWallet = 5; uint256 public freeMintAmount = 500; uint256 public maxTotalSupply = 3000; uint256 public saleStartTime; string private baseURI; constructor() ERC721A("BoredGoblinYachtClub", "BGYC") { saleStartTime = block.timestamp; } modifier mintableSupply(uint256 _quantity) { require( totalSupply() + _quantity <= maxTotalSupply, "Over maximum supply." ); _; } modifier saleActive() { require(saleStartTime <= block.timestamp, "Not start yet."); _; } function mintBGYC(uint256 _quantity) external payable saleActive mintableSupply(_quantity) { require(_quantity <= maxMintPerWallet, "Over maximum limit."); uint256 curr_value; if (totalSupply() + _quantity <= freeMintAmount) { require( _quantity <= maxFreeMintPerWallet, "Over max free mint limit." ); curr_value = 0; } if ( totalSupply() < freeMintAmount && (totalSupply() + _quantity > freeMintAmount) ) { require( _numberMinted(msg.sender) + freeMintAmount - totalSupply() <= maxFreeMintPerWallet, "Over max free mint limit." ); curr_value = (totalSupply() + _quantity - freeMintAmount) * price; } if (totalSupply() >= freeMintAmount) { curr_value = _quantity * price; } require(msg.value >= curr_value, "Insufficent funds."); _safeMint(msg.sender, _quantity); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setTime(uint256 _time) external onlyOwner { saleStartTime = _time; } function setBaseURI(string memory baseURI_) external onlyOwner { baseURI = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Enumerable.sol"; import "./IERC721Metadata.sol"; import "./Strings.sol"; import "./Context.sol"; import "./ERC165.sol"; import "./Address.sol"; import "./IERC721Receiver.sol"; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; } // Compiler will pack the following // _currentIndex and _burnCounter into a single 256bit word. // The tokenId of the next token to be minted. uint128 internal _currentIndex; // The number of tokens burned. uint128 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex times unchecked { return _currentIndex - _burnCounter; } } /** * @dev See {IERC721Enumerable-tokenByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenByIndex(uint256 index) public view override returns (uint256) { uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (!ownership.burned) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert TokenIndexOutOfBounds(); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = _currentIndex; uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when // uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. revert(); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = uint128(updatedIndex); } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintAmount","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintBGYC","outputs":[],"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":"price","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":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526611c37937e0800060085560326009556005600a556101f4600b55610bb8600c553480156200003257600080fd5b50604080518082018252601481527f426f726564476f626c696e5961636874436c75620000000000000000000000006020808301918252835180850190945260048452634247594360e01b908401528151919291620000949160019162000127565b508051620000aa90600290602084019062000127565b505050620000c7620000c1620000d160201b60201c565b620000d5565b42600d556200020a565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200013590620001cd565b90600052602060002090601f016020900481019282620001595760008555620001a4565b82601f106200017457805160ff1916838001178555620001a4565b82800160010185558215620001a4579182015b82811115620001a457825182559160200191906001019062000187565b50620001b2929150620001b6565b5090565b5b80821115620001b25760008155600101620001b7565b600181811c90821680620001e257607f821691505b602082108114156200020457634e487b7160e01b600052602260045260246000fd5b50919050565b611dad806200021a6000396000f3fe6080604052600436106101cd5760003560e01c806355f804b3116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde146104da578063c87b56dd146104fa578063e985e9c51461051a578063f2fde38b1461056357600080fd5b806395d89b4114610479578063a035b1fe1461048e578063a22cb465146104a4578063b228d925146104c457600080fd5b8063715018a6116100d1578063715018a614610410578063845bb3bb146104255780638da5cb5b1461043b57806391b7f5ed1461045957600080fd5b806355f804b3146103b05780636352211e146103d057806370a08231146103f057600080fd5b80632ab4d0521161016f5780633ccfd60b1161013e5780633ccfd60b1461034857806342842e0e1461035d5780634ba9b0021461037d5780634f6ccce71461039057600080fd5b80632ab4d052146102dc5780632f745c59146102f25780633a467e3d146103125780633beb26c41461032857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd146102835780631cbaee2d146102a657806323b872dd146102bc57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611a96565b610583565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105f0565b6040516101fe9190611bc9565b34801561023557600080fd5b50610249610244366004611b18565b610682565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a6c565b6106c6565b005b34801561028f57600080fd5b50610298610754565b6040519081526020016101fe565b3480156102b257600080fd5b50610298600d5481565b3480156102c857600080fd5b506102816102d7366004611979565b610773565b3480156102e857600080fd5b50610298600c5481565b3480156102fe57600080fd5b5061029861030d366004611a6c565b61077e565b34801561031e57600080fd5b50610298600b5481565b34801561033457600080fd5b50610281610343366004611b18565b61087a565b34801561035457600080fd5b506102816108b2565b34801561036957600080fd5b50610281610378366004611979565b61096a565b61028161038b366004611b18565b610985565b34801561039c57600080fd5b506102986103ab366004611b18565b610c1f565b3480156103bc57600080fd5b506102816103cb366004611ad0565b610cc9565b3480156103dc57600080fd5b506102496103eb366004611b18565b610d0a565b3480156103fc57600080fd5b5061029861040b36600461192b565b610d1c565b34801561041c57600080fd5b50610281610d6a565b34801561043157600080fd5b50610298600a5481565b34801561044757600080fd5b506007546001600160a01b0316610249565b34801561046557600080fd5b50610281610474366004611b18565b610da0565b34801561048557600080fd5b5061021c610dcf565b34801561049a57600080fd5b5061029860085481565b3480156104b057600080fd5b506102816104bf366004611a30565b610dde565b3480156104d057600080fd5b5061029860095481565b3480156104e657600080fd5b506102816104f53660046119b5565b610e74565b34801561050657600080fd5b5061021c610515366004611b18565b610eae565b34801561052657600080fd5b506101f2610535366004611946565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056f57600080fd5b5061028161057e36600461192b565b610f33565b60006001600160e01b031982166380ac58cd60e01b14806105b457506001600160e01b03198216635b5e139f60e01b145b806105cf57506001600160e01b0319821663780e9d6360e01b145b806105ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ff90611c9f565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611c9f565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600061068d82610fcb565b6106aa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106d182610d0a565b9050806001600160a01b0316836001600160a01b031614156107065760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061072657506107248133610535565b155b15610744576040516367d9dca160e11b815260040160405180910390fd5b61074f838383610fff565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61074f83838361105b565b600061078983610d1c565b82106107a8576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561087457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610820575061086c565b80516001600160a01b03161561083557805192505b876001600160a01b0316836001600160a01b0316141561086a5786841415610863575093506105ea92505050565b6001909301925b505b6001016107b9565b50600080fd5b6007546001600160a01b031633146108ad5760405162461bcd60e51b81526004016108a490611bdc565b60405180910390fd5b600d55565b6007546001600160a01b031633146108dc5760405162461bcd60e51b81526004016108a490611bdc565b604051600090339047908381818185875af1925050503d806000811461091e576040519150601f19603f3d011682016040523d82523d6000602084013e610923565b606091505b50509050806109675760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108a4565b50565b61074f83838360405180602001604052806000815250610e74565b42600d5411156109c85760405162461bcd60e51b815260206004820152600e60248201526d2737ba1039ba30b93a103cb2ba1760911b60448201526064016108a4565b80600c54816109d5610754565b6109df9190611c11565b1115610a245760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b60448201526064016108a4565b600954821115610a6c5760405162461bcd60e51b815260206004820152601360248201527227bb32b91036b0bc34b6bab6903634b6b4ba1760691b60448201526064016108a4565b6000600b5483610a7a610754565b610a849190611c11565b11610adb57600a54831115610ad75760405162461bcd60e51b815260206004820152601960248201527827bb32b91036b0bc10333932b29036b4b73a103634b6b4ba1760391b60448201526064016108a4565b5060005b600b54610ae6610754565b108015610b065750600b5483610afa610754565b610b049190611c11565b115b15610bb057600a54610b16610754565b600b54610b2233611278565b610b2c9190611c11565b610b369190611c5c565b1115610b805760405162461bcd60e51b815260206004820152601960248201527827bb32b91036b0bc10333932b29036b4b73a103634b6b4ba1760391b60448201526064016108a4565b600854600b5484610b8f610754565b610b999190611c11565b610ba39190611c5c565b610bad9190611c3d565b90505b600b54610bbb610754565b10610bd057600854610bcd9084611c3d565b90505b80341015610c155760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b60448201526064016108a4565b61074f33846112cd565b600080546001600160801b031681805b82811015610caf57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610ca65785831415610c9f5750949350505050565b6001909201915b50600101610c2f565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610cf35760405162461bcd60e51b81526004016108a490611bdc565b8051610d0690600e906020840190611801565b5050565b6000610d15826112e7565b5192915050565b60006001600160a01b038216610d45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610d945760405162461bcd60e51b81526004016108a490611bdc565b610d9e6000611409565b565b6007546001600160a01b03163314610dca5760405162461bcd60e51b81526004016108a490611bdc565b600855565b6060600280546105ff90611c9f565b6001600160a01b038216331415610e085760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e7f84848461105b565b610e8b8484848461145b565b610ea8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eb982610fcb565b610ed657604051630a14c4b560e41b815260040160405180910390fd5b6000610ee061156a565b9050805160001415610f015760405180602001604052806000815250610f2c565b80610f0b84611579565b604051602001610f1c929190611b5d565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610f5d5760405162461bcd60e51b81526004016108a490611bdc565b6001600160a01b038116610fc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a4565b61096781611409565b600080546001600160801b0316821080156105ea575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611066826112e7565b80519091506000906001600160a01b0316336001600160a01b03161480611094575081516110949033610535565b806110af5750336110a484610682565b6001600160a01b0316145b9050806110cf57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111045760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661112b57604051633a954ecd60e21b815260040160405180910390fd5b61113b6000848460000151610fff565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661122e576000546001600160801b031681101561122e57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b0382166112a1576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160401b90046001600160401b031690565b610d06828260405180602001604052806000815250611676565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156113f057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113ee5780516001600160a01b031615611385579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156113e9579392505050565b611385565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561155e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061149f903390899088908890600401611b8c565b602060405180830381600087803b1580156114b957600080fd5b505af19250505080156114e9575060408051601f3d908101601f191682019092526114e691810190611ab3565b60015b611544573d808015611517576040519150601f19603f3d011682016040523d82523d6000602084013e61151c565b606091505b50805161153c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611562565b5060015b949350505050565b6060600e80546105ff90611c9f565b60608161159d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115c757806115b181611cda565b91506115c09050600a83611c29565b91506115a1565b6000816001600160401b038111156115e1576115e1611d4b565b6040519080825280601f01601f19166020018201604052801561160b576020820181803683370190505b5090505b841561156257611620600183611c5c565b915061162d600a86611cf5565b611638906030611c11565b60f81b81838151811061164d5761164d611d35565b60200101906001600160f81b031916908160001a90535061166f600a86611c29565b945061160f565b61074f83838360016000546001600160801b03166001600160a01b0385166116b057604051622e076360e81b815260040160405180910390fd5b836116ce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156117db5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156117b157506117af600088848861145b565b155b156117cf576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161175a565b50600080546001600160801b0319166001600160801b0392909216919091179055611271565b82805461180d90611c9f565b90600052602060002090601f01602090048101928261182f5760008555611875565b82601f1061184857805160ff1916838001178555611875565b82800160010185558215611875579182015b8281111561187557825182559160200191906001019061185a565b50611881929150611885565b5090565b5b808211156118815760008155600101611886565b60006001600160401b03808411156118b4576118b4611d4b565b604051601f8501601f19908116603f011681019082821181831017156118dc576118dc611d4b565b816040528093508581528686860111156118f557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461192657600080fd5b919050565b60006020828403121561193d57600080fd5b610f2c8261190f565b6000806040838503121561195957600080fd5b6119628361190f565b91506119706020840161190f565b90509250929050565b60008060006060848603121561198e57600080fd5b6119978461190f565b92506119a56020850161190f565b9150604084013590509250925092565b600080600080608085870312156119cb57600080fd5b6119d48561190f565b93506119e26020860161190f565b92506040850135915060608501356001600160401b03811115611a0457600080fd5b8501601f81018713611a1557600080fd5b611a248782356020840161189a565b91505092959194509250565b60008060408385031215611a4357600080fd5b611a4c8361190f565b915060208301358015158114611a6157600080fd5b809150509250929050565b60008060408385031215611a7f57600080fd5b611a888361190f565b946020939093013593505050565b600060208284031215611aa857600080fd5b8135610f2c81611d61565b600060208284031215611ac557600080fd5b8151610f2c81611d61565b600060208284031215611ae257600080fd5b81356001600160401b03811115611af857600080fd5b8201601f81018413611b0957600080fd5b6115628482356020840161189a565b600060208284031215611b2a57600080fd5b5035919050565b60008151808452611b49816020860160208601611c73565b601f01601f19169290920160200192915050565b60008351611b6f818460208801611c73565b835190830190611b83818360208801611c73565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bbf90830184611b31565b9695505050505050565b602081526000610f2c6020830184611b31565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c2457611c24611d09565b500190565b600082611c3857611c38611d1f565b500490565b6000816000190483118215151615611c5757611c57611d09565b500290565b600082821015611c6e57611c6e611d09565b500390565b60005b83811015611c8e578181015183820152602001611c76565b83811115610ea85750506000910152565b600181811c90821680611cb357607f821691505b60208210811415611cd457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cee57611cee611d09565b5060010190565b600082611d0457611d04611d1f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096757600080fdfea26469706673582212209d03d9c8d95430ad398edfacdbfa6173b5015f1db1449e613ba849b2fafba04464736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806355f804b3116100f757806395d89b4111610095578063b88d4fde11610064578063b88d4fde146104da578063c87b56dd146104fa578063e985e9c51461051a578063f2fde38b1461056357600080fd5b806395d89b4114610479578063a035b1fe1461048e578063a22cb465146104a4578063b228d925146104c457600080fd5b8063715018a6116100d1578063715018a614610410578063845bb3bb146104255780638da5cb5b1461043b57806391b7f5ed1461045957600080fd5b806355f804b3146103b05780636352211e146103d057806370a08231146103f057600080fd5b80632ab4d0521161016f5780633ccfd60b1161013e5780633ccfd60b1461034857806342842e0e1461035d5780634ba9b0021461037d5780634f6ccce71461039057600080fd5b80632ab4d052146102dc5780632f745c59146102f25780633a467e3d146103125780633beb26c41461032857600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd146102835780631cbaee2d146102a657806323b872dd146102bc57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611a96565b610583565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105f0565b6040516101fe9190611bc9565b34801561023557600080fd5b50610249610244366004611b18565b610682565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611a6c565b6106c6565b005b34801561028f57600080fd5b50610298610754565b6040519081526020016101fe565b3480156102b257600080fd5b50610298600d5481565b3480156102c857600080fd5b506102816102d7366004611979565b610773565b3480156102e857600080fd5b50610298600c5481565b3480156102fe57600080fd5b5061029861030d366004611a6c565b61077e565b34801561031e57600080fd5b50610298600b5481565b34801561033457600080fd5b50610281610343366004611b18565b61087a565b34801561035457600080fd5b506102816108b2565b34801561036957600080fd5b50610281610378366004611979565b61096a565b61028161038b366004611b18565b610985565b34801561039c57600080fd5b506102986103ab366004611b18565b610c1f565b3480156103bc57600080fd5b506102816103cb366004611ad0565b610cc9565b3480156103dc57600080fd5b506102496103eb366004611b18565b610d0a565b3480156103fc57600080fd5b5061029861040b36600461192b565b610d1c565b34801561041c57600080fd5b50610281610d6a565b34801561043157600080fd5b50610298600a5481565b34801561044757600080fd5b506007546001600160a01b0316610249565b34801561046557600080fd5b50610281610474366004611b18565b610da0565b34801561048557600080fd5b5061021c610dcf565b34801561049a57600080fd5b5061029860085481565b3480156104b057600080fd5b506102816104bf366004611a30565b610dde565b3480156104d057600080fd5b5061029860095481565b3480156104e657600080fd5b506102816104f53660046119b5565b610e74565b34801561050657600080fd5b5061021c610515366004611b18565b610eae565b34801561052657600080fd5b506101f2610535366004611946565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561056f57600080fd5b5061028161057e36600461192b565b610f33565b60006001600160e01b031982166380ac58cd60e01b14806105b457506001600160e01b03198216635b5e139f60e01b145b806105cf57506001600160e01b0319821663780e9d6360e01b145b806105ea57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ff90611c9f565b80601f016020809104026020016040519081016040528092919081815260200182805461062b90611c9f565b80156106785780601f1061064d57610100808354040283529160200191610678565b820191906000526020600020905b81548152906001019060200180831161065b57829003601f168201915b5050505050905090565b600061068d82610fcb565b6106aa576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106d182610d0a565b9050806001600160a01b0316836001600160a01b031614156107065760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061072657506107248133610535565b155b15610744576040516367d9dca160e11b815260040160405180910390fd5b61074f838383610fff565b505050565b6000546001600160801b03600160801b82048116918116919091031690565b61074f83838361105b565b600061078983610d1c565b82106107a8576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561087457600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610820575061086c565b80516001600160a01b03161561083557805192505b876001600160a01b0316836001600160a01b0316141561086a5786841415610863575093506105ea92505050565b6001909301925b505b6001016107b9565b50600080fd5b6007546001600160a01b031633146108ad5760405162461bcd60e51b81526004016108a490611bdc565b60405180910390fd5b600d55565b6007546001600160a01b031633146108dc5760405162461bcd60e51b81526004016108a490611bdc565b604051600090339047908381818185875af1925050503d806000811461091e576040519150601f19603f3d011682016040523d82523d6000602084013e610923565b606091505b50509050806109675760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016108a4565b50565b61074f83838360405180602001604052806000815250610e74565b42600d5411156109c85760405162461bcd60e51b815260206004820152600e60248201526d2737ba1039ba30b93a103cb2ba1760911b60448201526064016108a4565b80600c54816109d5610754565b6109df9190611c11565b1115610a245760405162461bcd60e51b815260206004820152601460248201527327bb32b91036b0bc34b6bab69039bab838363c9760611b60448201526064016108a4565b600954821115610a6c5760405162461bcd60e51b815260206004820152601360248201527227bb32b91036b0bc34b6bab6903634b6b4ba1760691b60448201526064016108a4565b6000600b5483610a7a610754565b610a849190611c11565b11610adb57600a54831115610ad75760405162461bcd60e51b815260206004820152601960248201527827bb32b91036b0bc10333932b29036b4b73a103634b6b4ba1760391b60448201526064016108a4565b5060005b600b54610ae6610754565b108015610b065750600b5483610afa610754565b610b049190611c11565b115b15610bb057600a54610b16610754565b600b54610b2233611278565b610b2c9190611c11565b610b369190611c5c565b1115610b805760405162461bcd60e51b815260206004820152601960248201527827bb32b91036b0bc10333932b29036b4b73a103634b6b4ba1760391b60448201526064016108a4565b600854600b5484610b8f610754565b610b999190611c11565b610ba39190611c5c565b610bad9190611c3d565b90505b600b54610bbb610754565b10610bd057600854610bcd9084611c3d565b90505b80341015610c155760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b2b73a10333ab732399760711b60448201526064016108a4565b61074f33846112cd565b600080546001600160801b031681805b82811015610caf57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610ca65785831415610c9f5750949350505050565b6001909201915b50600101610c2f565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610cf35760405162461bcd60e51b81526004016108a490611bdc565b8051610d0690600e906020840190611801565b5050565b6000610d15826112e7565b5192915050565b60006001600160a01b038216610d45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610d945760405162461bcd60e51b81526004016108a490611bdc565b610d9e6000611409565b565b6007546001600160a01b03163314610dca5760405162461bcd60e51b81526004016108a490611bdc565b600855565b6060600280546105ff90611c9f565b6001600160a01b038216331415610e085760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e7f84848461105b565b610e8b8484848461145b565b610ea8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610eb982610fcb565b610ed657604051630a14c4b560e41b815260040160405180910390fd5b6000610ee061156a565b9050805160001415610f015760405180602001604052806000815250610f2c565b80610f0b84611579565b604051602001610f1c929190611b5d565b6040516020818303038152906040525b9392505050565b6007546001600160a01b03163314610f5d5760405162461bcd60e51b81526004016108a490611bdc565b6001600160a01b038116610fc25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a4565b61096781611409565b600080546001600160801b0316821080156105ea575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611066826112e7565b80519091506000906001600160a01b0316336001600160a01b03161480611094575081516110949033610535565b806110af5750336110a484610682565b6001600160a01b0316145b9050806110cf57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146111045760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661112b57604051633a954ecd60e21b815260040160405180910390fd5b61113b6000848460000151610fff565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661122e576000546001600160801b031681101561122e57825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006001600160a01b0382166112a1576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260046020526040902054600160401b90046001600160401b031690565b610d06828260405180602001604052806000815250611676565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156113f057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906113ee5780516001600160a01b031615611385579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156113e9579392505050565b611385565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b1561155e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061149f903390899088908890600401611b8c565b602060405180830381600087803b1580156114b957600080fd5b505af19250505080156114e9575060408051601f3d908101601f191682019092526114e691810190611ab3565b60015b611544573d808015611517576040519150601f19603f3d011682016040523d82523d6000602084013e61151c565b606091505b50805161153c576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611562565b5060015b949350505050565b6060600e80546105ff90611c9f565b60608161159d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115c757806115b181611cda565b91506115c09050600a83611c29565b91506115a1565b6000816001600160401b038111156115e1576115e1611d4b565b6040519080825280601f01601f19166020018201604052801561160b576020820181803683370190505b5090505b841561156257611620600183611c5c565b915061162d600a86611cf5565b611638906030611c11565b60f81b81838151811061164d5761164d611d35565b60200101906001600160f81b031916908160001a90535061166f600a86611c29565b945061160f565b61074f83838360016000546001600160801b03166001600160a01b0385166116b057604051622e076360e81b815260040160405180910390fd5b836116ce5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b858110156117db5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48380156117b157506117af600088848861145b565b155b156117cf576040516368d2bf6b60e11b815260040160405180910390fd5b6001918201910161175a565b50600080546001600160801b0319166001600160801b0392909216919091179055611271565b82805461180d90611c9f565b90600052602060002090601f01602090048101928261182f5760008555611875565b82601f1061184857805160ff1916838001178555611875565b82800160010185558215611875579182015b8281111561187557825182559160200191906001019061185a565b50611881929150611885565b5090565b5b808211156118815760008155600101611886565b60006001600160401b03808411156118b4576118b4611d4b565b604051601f8501601f19908116603f011681019082821181831017156118dc576118dc611d4b565b816040528093508581528686860111156118f557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461192657600080fd5b919050565b60006020828403121561193d57600080fd5b610f2c8261190f565b6000806040838503121561195957600080fd5b6119628361190f565b91506119706020840161190f565b90509250929050565b60008060006060848603121561198e57600080fd5b6119978461190f565b92506119a56020850161190f565b9150604084013590509250925092565b600080600080608085870312156119cb57600080fd5b6119d48561190f565b93506119e26020860161190f565b92506040850135915060608501356001600160401b03811115611a0457600080fd5b8501601f81018713611a1557600080fd5b611a248782356020840161189a565b91505092959194509250565b60008060408385031215611a4357600080fd5b611a4c8361190f565b915060208301358015158114611a6157600080fd5b809150509250929050565b60008060408385031215611a7f57600080fd5b611a888361190f565b946020939093013593505050565b600060208284031215611aa857600080fd5b8135610f2c81611d61565b600060208284031215611ac557600080fd5b8151610f2c81611d61565b600060208284031215611ae257600080fd5b81356001600160401b03811115611af857600080fd5b8201601f81018413611b0957600080fd5b6115628482356020840161189a565b600060208284031215611b2a57600080fd5b5035919050565b60008151808452611b49816020860160208601611c73565b601f01601f19169290920160200192915050565b60008351611b6f818460208801611c73565b835190830190611b83818360208801611c73565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bbf90830184611b31565b9695505050505050565b602081526000610f2c6020830184611b31565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611c2457611c24611d09565b500190565b600082611c3857611c38611d1f565b500490565b6000816000190483118215151615611c5757611c57611d09565b500290565b600082821015611c6e57611c6e611d09565b500390565b60005b83811015611c8e578181015183820152602001611c76565b83811115610ea85750506000910152565b600181811c90821680611cb357607f821691505b60208210811415611cd457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cee57611cee611d09565b5060010190565b600082611d0457611d04611d1f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461096757600080fdfea26469706673582212209d03d9c8d95430ad398edfacdbfa6173b5015f1db1449e613ba849b2fafba04464736f6c63430008070033
Deployed Bytecode Sourcemap
112:2486:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6201:372:4;;;;;;;;;;-1:-1:-1;6201:372:4;;;;;:::i;:::-;;:::i;:::-;;;5856:14:12;;5849:22;5831:41;;5819:2;5804:18;6201:372:4;;;;;;;;8811:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;10314:204::-;;;;;;;;;;-1:-1:-1;10314:204:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5154:32:12;;;5136:51;;5124:2;5109:18;10314:204:4;4990:203:12;9877:371:4;;;;;;;;;;-1:-1:-1;9877:371:4;;;;;:::i;:::-;;:::i;:::-;;3438:280;;;;;;;;;;;;;:::i;:::-;;;9107:25:12;;;9095:2;9080:18;3438:280:4;8961:177:12;384:28:1;;;;;;;;;;;;;;;;11171:170:4;;;;;;;;;;-1:-1:-1;11171:170:4;;;;;:::i;:::-;;:::i;341:36:1:-;;;;;;;;;;;;;;;;5024:1105:4;;;;;;;;;;-1:-1:-1;5024:1105:4;;;;;:::i;:::-;;:::i;299:35:1:-;;;;;;;;;;;;;;;;2099:91;;;;;;;;;;-1:-1:-1;2099:91:1;;;;;:::i;:::-;;:::i;2422:173::-;;;;;;;;;;;;;:::i;11412:185:4:-;;;;;;;;;;-1:-1:-1;11412:185:4;;;;;:::i;:::-;;:::i;877:1120:1:-;;;;;;:::i;:::-;;:::i;4011:713:4:-;;;;;;;;;;-1:-1:-1;4011:713:4;;;;;:::i;:::-;;:::i;2198:100:1:-;;;;;;;;;;-1:-1:-1;2198:100:1;;;;;:::i;:::-;;:::i;8620:124:4:-;;;;;;;;;;-1:-1:-1;8620:124:4;;;;;:::i;:::-;;:::i;6637:206::-;;;;;;;;;;-1:-1:-1;6637:206:4;;;;;:::i;:::-;;:::i;1650:94:10:-;;;;;;;;;;;;;:::i;253:39:1:-;;;;;;;;;;;;;;;;999:87:10;;;;;;;;;;-1:-1:-1;1072:6:10;;-1:-1:-1;;;;;1072:6:10;999:87;;2005:86:1;;;;;;;;;;-1:-1:-1;2005:86:1;;;;;:::i;:::-;;:::i;8980:104:4:-;;;;;;;;;;;;;:::i;169:34:1:-;;;;;;;;;;;;;;;;10590:279:4;;;;;;;;;;-1:-1:-1;10590:279:4;;;;;:::i;:::-;;:::i;210:36:1:-;;;;;;;;;;;;;;;;11668:342:4;;;;;;;;;;-1:-1:-1;11668:342:4;;;;;:::i;:::-;;:::i;9155:318::-;;;;;;;;;;-1:-1:-1;9155:318:4;;;;;:::i;:::-;;:::i;10940:164::-;;;;;;;;;;-1:-1:-1;10940:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;11061:25:4;;;11037:4;11061:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;10940:164;1899:192:10;;;;;;;;;;-1:-1:-1;1899:192:10;;;;;:::i;:::-;;:::i;6201:372:4:-;6303:4;-1:-1:-1;;;;;;6340:40:4;;-1:-1:-1;;;6340:40:4;;:105;;-1:-1:-1;;;;;;;6397:48:4;;-1:-1:-1;;;6397:48:4;6340:105;:172;;;-1:-1:-1;;;;;;;6462:50:4;;-1:-1:-1;;;6462:50:4;6340:172;:225;;;-1:-1:-1;;;;;;;;;;896:40:3;;;6529:36:4;6320:245;6201:372;-1:-1:-1;;6201:372:4:o;8811:100::-;8865:13;8898:5;8891:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8811:100;:::o;10314:204::-;10382:7;10407:16;10415:7;10407;:16::i;:::-;10402:64;;10432:34;;-1:-1:-1;;;10432:34:4;;;;;;;;;;;10402:64;-1:-1:-1;10486:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;10486:24:4;;10314:204::o;9877:371::-;9950:13;9966:24;9982:7;9966:15;:24::i;:::-;9950:40;;10011:5;-1:-1:-1;;;;;10005:11:4;:2;-1:-1:-1;;;;;10005:11:4;;10001:48;;;10025:24;;-1:-1:-1;;;10025:24:4;;;;;;;;;;;10001:48;681:10:2;-1:-1:-1;;;;;10066:21:4;;;;;;:63;;-1:-1:-1;10092:37:4;10109:5;681:10:2;10940:164:4;:::i;10092:37::-;10091:38;10066:63;10062:138;;;10153:35;;-1:-1:-1;;;10153:35:4;;;;;;;;;;;10062:138;10212:28;10221:2;10225:7;10234:5;10212:8;:28::i;:::-;9939:309;9877:371;;:::o;3438:280::-;3491:7;3683:12;-1:-1:-1;;;;;;;;3683:12:4;;;;3667:13;;;:28;;;;3660:35;;3438:280::o;11171:170::-;11305:28;11315:4;11321:2;11325:7;11305:9;:28::i;5024:1105::-;5113:7;5146:16;5156:5;5146:9;:16::i;:::-;5137:5;:25;5133:61;;5171:23;;-1:-1:-1;;;5171:23:4;;;;;;;;;;;5133:61;5205:22;5230:13;;-1:-1:-1;;;;;5230:13:4;;5205:22;;5480:557;5500:14;5496:1;:18;5480:557;;;5540:31;5574:14;;;:11;:14;;;;;;;;;5540:48;;;;;;;;;-1:-1:-1;;;;;5540:48:4;;;;-1:-1:-1;;;5540:48:4;;-1:-1:-1;;;;;5540:48:4;;;;;;;;-1:-1:-1;;;5540:48:4;;;;;;;;;;;;;;;;5607:73;;5652:8;;;5607:73;5702:14;;-1:-1:-1;;;;;5702:28:4;;5698:111;;5775:14;;;-1:-1:-1;5698:111:4;5852:5;-1:-1:-1;;;;;5831:26:4;:17;-1:-1:-1;;;;;5831:26:4;;5827:195;;;5901:5;5886:11;:20;5882:85;;;-1:-1:-1;5942:1:4;-1:-1:-1;5935:8:4;;-1:-1:-1;;;5935:8:4;5882:85;5989:13;;;;;5827:195;5521:516;5480:557;5516:3;;5480:557;;;;6113:8;;;2099:91:1;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:2;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;;;;;;;;;2161:13:1::1;:21:::0;2099:91::o;2422:173::-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:2;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2491:49:1::1;::::0;2473:12:::1;::::0;2491:10:::1;::::0;2514:21:::1;::::0;2473:12;2491:49;2473:12;2491:49;2514:21;2491:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2472:68;;;2559:7;2551:36;;;::::0;-1:-1:-1;;;2551:36:1;;8464:2:12;2551:36:1::1;::::0;::::1;8446:21:12::0;8503:2;8483:18;;;8476:30;-1:-1:-1;;;8522:18:12;;;8515:46;8578:18;;2551:36:1::1;8262:340:12::0;2551:36:1::1;2461:134;2422:173::o:0;11412:185:4:-;11550:39;11567:4;11573:2;11577:7;11550:39;;;;;;;;;;;;:16;:39::i;877:1120:1:-;815:15;798:13;;:32;;790:59;;;;-1:-1:-1;;;790:59:1;;7063:2:12;790:59:1;;;7045:21:12;7102:2;7082:18;;;7075:30;-1:-1:-1;;;7121:18:12;;;7114:44;7175:18;;790:59:1;6861:338:12;790:59:1;993:9:::1;667:14;;654:9;638:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:43;;616:113;;;::::0;-1:-1:-1;;;616:113:1;;7406:2:12;616:113:1::1;::::0;::::1;7388:21:12::0;7445:2;7425:18;;;7418:30;-1:-1:-1;;;7464:18:12;;;7457:50;7524:18;;616:113:1::1;7204:344:12::0;616:113:1::1;1041:16:::2;;1028:9;:29;;1020:61;;;::::0;-1:-1:-1;;;1020:61:1;;8116:2:12;1020:61:1::2;::::0;::::2;8098:21:12::0;8155:2;8135:18;;;8128:30;-1:-1:-1;;;8174:18:12;;;8167:49;8233:18;;1020:61:1::2;7914:343:12::0;1020:61:1::2;1094:18;1156:14;;1143:9;1127:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:43;1123:225;;1226:20;;1213:9;:33;;1187:120;;;::::0;-1:-1:-1;;;1187:120:1;;8809:2:12;1187:120:1::2;::::0;::::2;8791:21:12::0;8848:2;8828:18;;;8821:30;-1:-1:-1;;;8867:18:12;;;8860:55;8932:18;;1187:120:1::2;8607:349:12::0;1187:120:1::2;-1:-1:-1::0;1335:1:1::2;1123:225;1392:14;;1376:13;:11;:13::i;:::-;:30;:91;;;;;1452:14;;1440:9;1424:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:42;1376:91;1358:418;;;1603:20;;1565:13;:11;:13::i;:::-;1548:14;;1520:25;1534:10;1520:13;:25::i;:::-;:42;;;;:::i;:::-;:58;;;;:::i;:::-;:103;;1494:190;;;::::0;-1:-1:-1;;;1494:190:1;;8809:2:12;1494:190:1::2;::::0;::::2;8791:21:12::0;8848:2;8828:18;;;8821:30;-1:-1:-1;;;8867:18:12;;;8860:55;8932:18;;1494:190:1::2;8607:349:12::0;1494:190:1::2;1759:5;;1741:14;;1729:9;1713:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:42;;;;:::i;:::-;1712:52;;;;:::i;:::-;1699:65;;1358:418;1807:14;;1790:13;:11;:13::i;:::-;:31;1786:94;;1863:5;::::0;1851:17:::2;::::0;:9;:17:::2;:::i;:::-;1838:30;;1786:94;1911:10;1898:9;:23;;1890:54;;;::::0;-1:-1:-1;;;1890:54:1;;6716:2:12;1890:54:1::2;::::0;::::2;6698:21:12::0;6755:2;6735:18;;;6728:30;-1:-1:-1;;;6774:18:12;;;6767:48;6832:18;;1890:54:1::2;6514:342:12::0;1890:54:1::2;1957:32;1967:10;1979:9;1957;:32::i;4011:713:4:-:0;4078:7;4123:13;;-1:-1:-1;;;;;4123:13:4;4078:7;;4337:328;4357:14;4353:1;:18;4337:328;;;4397:31;4431:14;;;:11;:14;;;;;;;;;4397:48;;;;;;;;;-1:-1:-1;;;;;4397:48:4;;;;-1:-1:-1;;;4397:48:4;;-1:-1:-1;;;;;4397:48:4;;;;;;;;-1:-1:-1;;;4397:48:4;;;;;;;;;;;;;;4464:186;;4529:5;4514:11;:20;4510:85;;;-1:-1:-1;4570:1:4;4011:713;-1:-1:-1;;;;4011:713:4:o;4510:85::-;4617:13;;;;;4464:186;-1:-1:-1;4373:3:4;;4337:328;;;;4693:23;;-1:-1:-1;;;4693:23:4;;;;;;;;;;;2198:100:1;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:2;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2272:18:1;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;2198:100:::0;:::o;8620:124:4:-;8684:7;8711:20;8723:7;8711:11;:20::i;:::-;:25;;8620:124;-1:-1:-1;;8620:124:4:o;6637:206::-;6701:7;-1:-1:-1;;;;;6725:19:4;;6721:60;;6753:28;;-1:-1:-1;;;6753:28:4;;;;;;;;;;;6721:60;-1:-1:-1;;;;;;6807:19:4;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;6807:27:4;;6637:206::o;1650:94:10:-;1072:6;;-1:-1:-1;;;;;1072:6:10;681:10:2;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;2005:86:1:-;1072:6:10;;-1:-1:-1;;;;;1072:6:10;681:10:2;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;2069:5:1::1;:14:::0;2005:86::o;8980:104:4:-;9036:13;9069:7;9062:14;;;;;:::i;10590:279::-;-1:-1:-1;;;;;10681:24:4;;681:10:2;10681:24:4;10677:54;;;10714:17;;-1:-1:-1;;;10714:17:4;;;;;;;;;;;10677:54;681:10:2;10744:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;10744:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;10744:53:4;;;;;;;;;;10813:48;;5831:41:12;;;10744:42:4;;681:10:2;10813:48:4;;5804:18:12;10813:48:4;;;;;;;10590:279;;:::o;11668:342::-;11835:28;11845:4;11851:2;11855:7;11835:9;:28::i;:::-;11879:48;11902:4;11908:2;11912:7;11921:5;11879:22;:48::i;:::-;11874:129;;11951:40;;-1:-1:-1;;;11951:40:4;;;;;;;;;;;11874:129;11668:342;;;;:::o;9155:318::-;9228:13;9259:16;9267:7;9259;:16::i;:::-;9254:59;;9284:29;;-1:-1:-1;;;9284:29:4;;;;;;;;;;;9254:59;9326:21;9350:10;:8;:10::i;:::-;9326:34;;9384:7;9378:21;9403:1;9378:26;;:87;;;;;;;;;;;;;;;;;9431:7;9440:18;:7;:16;:18::i;:::-;9414:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9378:87;9371:94;9155:318;-1:-1:-1;;;9155:318:4:o;1899:192:10:-;1072:6;;-1:-1:-1;;;;;1072:6:10;681:10:2;1219:23:10;1211:68;;;;-1:-1:-1;;;1211:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:10;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:10;;6309:2:12;1980:73:10::1;::::0;::::1;6291:21:12::0;6348:2;6328:18;;;6321:30;6387:34;6367:18;;;6360:62;-1:-1:-1;;;6438:18:12;;;6431:36;6484:19;;1980:73:10::1;6107:402:12::0;1980:73:10::1;2064:19;2074:8;2064:9;:19::i;12265:144:4:-:0;12322:4;12356:13;;-1:-1:-1;;;;;12356:13:4;12346:23;;:55;;;;-1:-1:-1;;12374:20:4;;;;:11;:20;;;;;:27;-1:-1:-1;;;12374:27:4;;;;12373:28;;12265:144::o;19481:196::-;19596:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;19596:29:4;-1:-1:-1;;;;;19596:29:4;;;;;;;;;19641:28;;19596:24;;19641:28;;;;;;;19481:196;;;:::o;14982:2112::-;15097:35;15135:20;15147:7;15135:11;:20::i;:::-;15210:18;;15097:58;;-1:-1:-1;15168:22:4;;-1:-1:-1;;;;;15194:34:4;681:10:2;-1:-1:-1;;;;;15194:34:4;;:101;;;-1:-1:-1;15262:18:4;;15245:50;;681:10:2;10940:164:4;:::i;15245:50::-;15194:154;;;-1:-1:-1;681:10:2;15312:20:4;15324:7;15312:11;:20::i;:::-;-1:-1:-1;;;;;15312:36:4;;15194:154;15168:181;;15367:17;15362:66;;15393:35;;-1:-1:-1;;;15393:35:4;;;;;;;;;;;15362:66;15465:4;-1:-1:-1;;;;;15443:26:4;:13;:18;;;-1:-1:-1;;;;;15443:26:4;;15439:67;;15478:28;;-1:-1:-1;;;15478:28:4;;;;;;;;;;;15439:67;-1:-1:-1;;;;;15521:16:4;;15517:52;;15546:23;;-1:-1:-1;;;15546:23:4;;;;;;;;;;;15517:52;15690:49;15707:1;15711:7;15720:13;:18;;;15690:8;:49::i;:::-;-1:-1:-1;;;;;16035:18:4;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;16035:31:4;;;-1:-1:-1;;;;;16035:31:4;;;-1:-1:-1;;16035:31:4;;;;;;;16081:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;16081:29:4;;;;;;;;;;;16127:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;16172:61:4;;;;-1:-1:-1;;;16217:15:4;16172:61;;;;;;;;;;;16507:11;;;16537:24;;;;;:29;16507:11;;16537:29;16533:445;;16762:13;;-1:-1:-1;;;;;16762:13:4;16748:27;;16744:219;;;16832:18;;;16800:24;;;:11;:24;;;;;;;;:50;;16915:28;;;;-1:-1:-1;;;;;16873:70:4;-1:-1:-1;;;16873:70:4;-1:-1:-1;;;;;;16873:70:4;;;-1:-1:-1;;;;;16800:50:4;;;16873:70;;;;;;;16744:219;16010:979;17025:7;17021:2;-1:-1:-1;;;;;17006:27:4;17015:4;-1:-1:-1;;;;;17006:27:4;;;;;;;;;;;17044:42;15086:2008;;14982:2112;;;:::o;6851:207::-;6912:7;-1:-1:-1;;;;;6936:19:4;;6932:59;;6964:27;;-1:-1:-1;;;6964:27:4;;;;;;;;;;;6932:59;-1:-1:-1;;;;;;7017:19:4;;;;;:12;:19;;;;;:32;-1:-1:-1;;;7017:32:4;;-1:-1:-1;;;;;7017:32:4;;6851:207::o;12417:104::-;12486:27;12496:2;12500:8;12486:27;;;;;;;;;;;;:9;:27::i;7475:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;7641:13:4;;7585:7;;-1:-1:-1;;;;;7641:13:4;7634:20;;7630:861;;;7675:31;7709:17;;;:11;:17;;;;;;;;;7675:51;;;;;;;;;-1:-1:-1;;;;;7675:51:4;;;;-1:-1:-1;;;7675:51:4;;-1:-1:-1;;;;;7675:51:4;;;;;;;;-1:-1:-1;;;7675:51:4;;;;;;;;;;;;;;7745:731;;7795:14;;-1:-1:-1;;;;;7795:28:4;;7791:101;;7859:9;7475:1083;-1:-1:-1;;;7475:1083:4:o;7791:101::-;-1:-1:-1;;;8236:6:4;8281:17;;;;:11;:17;;;;;;;;;8269:29;;;;;;;;;-1:-1:-1;;;;;8269:29:4;;;;;-1:-1:-1;;;8269:29:4;;-1:-1:-1;;;;;8269:29:4;;;;;;;;-1:-1:-1;;;8269:29:4;;;;;;;;;;;;;8329:28;8325:109;;8397:9;7475:1083;-1:-1:-1;;;7475:1083:4:o;8325:109::-;8196:261;;;7656:835;7630:861;8519:31;;-1:-1:-1;;;8519:31:4;;;;;;;;;;;2099:173:10;2174:6;;;-1:-1:-1;;;;;2191:17:10;;;-1:-1:-1;;;;;;2191:17:10;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;20242:790:4:-;20397:4;-1:-1:-1;;;;;20418:13:4;;1066:20:0;1114:8;20414:611:4;;20454:72;;-1:-1:-1;;;20454:72:4;;-1:-1:-1;;;;;20454:36:4;;;;;:72;;681:10:2;;20505:4:4;;20511:7;;20520:5;;20454:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20454:72:4;;;;;;;;-1:-1:-1;;20454:72:4;;;;;;;;;;;;:::i;:::-;;;20450:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20700:13:4;;20696:259;;20750:40;;-1:-1:-1;;;20750:40:4;;;;;;;;;;;20696:259;20905:6;20899:13;20890:6;20886:2;20882:15;20875:38;20450:520;-1:-1:-1;;;;;;20577:55:4;-1:-1:-1;;;20577:55:4;;-1:-1:-1;20570:62:4;;20414:611;-1:-1:-1;21009:4:4;20414:611;20242:790;;;;;;:::o;2306:108:1:-;2366:13;2399:7;2392:14;;;;;:::i;288:723:11:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:11;;;;;;;;;;;;-1:-1:-1;;;592:10:11;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:11;;-1:-1:-1;744:2:11;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;-1:-1:-1;;;;;790:17:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:11;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:11;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:11;;;;;;;;-1:-1:-1;949:11:11;958:2;949:11;;:::i;:::-;;;818:154;;12884:163:4;13007:32;13013:2;13017:8;13027:5;13034:4;13445:20;13468:13;-1:-1:-1;;;;;13468:13:4;-1:-1:-1;;;;;13496:16:4;;13492:48;;13521:19;;-1:-1:-1;;;13521:19:4;;;;;;;;;;;13492:48;13555:13;13551:44;;13577:18;;-1:-1:-1;;;13577:18:4;;;;;;;;;;;13551:44;-1:-1:-1;;;;;13947:16:4;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;14006:49:4;;-1:-1:-1;;;;;13947:44:4;;;;;;;14006:49;;;-1:-1:-1;;;;;13947:44:4;;;;;;14006:49;;;;;;;;;;;;;;;;14072:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;14122:66:4;;;;-1:-1:-1;;;14172:15:4;14122:66;;;;;;;;;;;14072:25;;14257:328;14277:8;14273:1;:12;14257:328;;;14316:38;;14341:12;;-1:-1:-1;;;;;14316:38:4;;;14333:1;;14316:38;;14333:1;;14316:38;14377:4;:68;;;;;14386:59;14417:1;14421:2;14425:12;14439:5;14386:22;:59::i;:::-;14385:60;14377:68;14373:164;;;14477:40;;-1:-1:-1;;;14477:40:4;;;;;;;;;;;14373:164;14555:14;;;;;14287:3;14257:328;;;-1:-1:-1;14601:13:4;:37;;-1:-1:-1;;;;;;14601:37:4;-1:-1:-1;;;;;14601:37:4;;;;;;;;;;14660:60;11668:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:12;78:5;-1:-1:-1;;;;;149:2:12;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:12;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:12;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:12;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:12;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:12:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;-1:-1:-1;;;;;3606:6:12;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:12;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:12;;3858:180;-1:-1:-1;3858:180:12:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:12;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:12:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4305:470;-1:-1:-1;;;;4305:470:12:o;5198:488::-;-1:-1:-1;;;;;5467:15:12;;;5449:34;;5519:15;;5514:2;5499:18;;5492:43;5566:2;5551:18;;5544:34;;;5614:3;5609:2;5594:18;;5587:31;;;5392:4;;5635:45;;5660:19;;5652:6;5635:45;:::i;:::-;5627:53;5198:488;-1:-1:-1;;;;;;5198:488:12:o;5883:219::-;6032:2;6021:9;6014:21;5995:4;6052:44;6092:2;6081:9;6077:18;6069:6;6052:44;:::i;7553:356::-;7755:2;7737:21;;;7774:18;;;7767:30;7833:34;7828:2;7813:18;;7806:62;7900:2;7885:18;;7553:356::o;9143:128::-;9183:3;9214:1;9210:6;9207:1;9204:13;9201:39;;;9220:18;;:::i;:::-;-1:-1:-1;9256:9:12;;9143:128::o;9276:120::-;9316:1;9342;9332:35;;9347:18;;:::i;:::-;-1:-1:-1;9381:9:12;;9276:120::o;9401:168::-;9441:7;9507:1;9503;9499:6;9495:14;9492:1;9489:21;9484:1;9477:9;9470:17;9466:45;9463:71;;;9514:18;;:::i;:::-;-1:-1:-1;9554:9:12;;9401:168::o;9574:125::-;9614:4;9642:1;9639;9636:8;9633:34;;;9647:18;;:::i;:::-;-1:-1:-1;9684:9:12;;9574:125::o;9704:258::-;9776:1;9786:113;9800:6;9797:1;9794:13;9786:113;;;9876:11;;;9870:18;9857:11;;;9850:39;9822:2;9815:10;9786:113;;;9917:6;9914:1;9911:13;9908:48;;;-1:-1:-1;;9952:1:12;9934:16;;9927:27;9704:258::o;9967:380::-;10046:1;10042:12;;;;10089;;;10110:61;;10164:4;10156:6;10152:17;10142:27;;10110:61;10217:2;10209:6;10206:14;10186:18;10183:38;10180:161;;;10263:10;10258:3;10254:20;10251:1;10244:31;10298:4;10295:1;10288:15;10326:4;10323:1;10316:15;10180:161;;9967:380;;;:::o;10352:135::-;10391:3;-1:-1:-1;;10412:17:12;;10409:43;;;10432:18;;:::i;:::-;-1:-1:-1;10479:1:12;10468:13;;10352:135::o;10492:112::-;10524:1;10550;10540:35;;10555:18;;:::i;:::-;-1:-1:-1;10589:9:12;;10492:112::o;10609:127::-;10670:10;10665:3;10661:20;10658:1;10651:31;10701:4;10698:1;10691:15;10725:4;10722:1;10715:15;10741:127;10802:10;10797:3;10793:20;10790:1;10783:31;10833:4;10830:1;10823:15;10857:4;10854:1;10847:15;10873:127;10934:10;10929:3;10925:20;10922:1;10915:31;10965:4;10962:1;10955:15;10989:4;10986:1;10979:15;11005:127;11066:10;11061:3;11057:20;11054:1;11047:31;11097:4;11094:1;11087:15;11121:4;11118:1;11111:15;11137:131;-1:-1:-1;;;;;;11211:32:12;;11201:43;;11191:71;;11258:1;11255;11248:12
Swarm Source
ipfs://9d03d9c8d95430ad398edfacdbfa6173b5015f1db1449e613ba849b2fafba044
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.