Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
0 OFROGS
Holders
261
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 OFROGSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
OmniFrogs
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.4; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "./NonBlockingReceiver.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./interfaces/ILayerZeroEndpoint.sol"; /// @title A LayerZero OmnichainNonFungibleToken contract /// @author OmniPlayer dev /// @notice You can use this to mint ONFT and transfer across chain /// @dev All function calls are currently implemented without side effects contract OmniFrogs is ERC721, NonblockingReceiver, ILayerZeroUserApplicationConfig { string public baseTokenURI; uint256 public gasForDestinationLzReceive = 350000; uint256 public nextTokenId; uint256 public maxMint; uint256 public maxMintPerWallet = 2; bool public started = false; string public notRevealedURI; bool public revealed = false; mapping(address => uint256) public minted; mapping(address => uint8) private _allowList; /// @notice Constructor for the OmniFrogs NFT /// @param _baseTokenURI the Uniform Resource Identifier (URI) for tokenId token /// @param _notRevealedURI the not revealed URI /// @param _layerZeroEndpoint handles message transmission across chains /// @param _startToken the starting mint number on this chain /// @param _maxMint the max number of mints on this chain@ constructor( string memory _baseTokenURI, string memory _notRevealedURI, address _layerZeroEndpoint, uint256 _startToken, uint256 _maxMint ) ERC721("OmniFrogs", "OFROGS") { setBaseURI(_baseTokenURI); notRevealedURI = _notRevealedURI; endpoint = ILayerZeroEndpoint(_layerZeroEndpoint); nextTokenId = _startToken; maxMint = _maxMint; } /// @notice Set the starting flag to true function startMint() external onlyOwner{ started = true; } /** * pre-mint for community giveaways */ function setAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner { for (uint256 i = 0; i < addresses.length; i++) { _allowList[addresses[i]] = numAllowedToMint; } } // WhiteList function mintAllowList(uint8 numberOfTokens) external payable { require(numberOfTokens <= _allowList[msg.sender], "Mint number Exceeded"); require( nextTokenId + numberOfTokens <= maxMint, "Purchase would exceed max tokens" ); _allowList[msg.sender] -= numberOfTokens; for (uint256 i = 0; i < numberOfTokens; i++) { _safeMint(msg.sender, ++nextTokenId); } minted[msg.sender] += numberOfTokens; } function mint(uint8 numTokens) external payable { require(started, "sales is not started"); require(numTokens <= 1, "Max 1 NFTs per transaction"); require( minted[msg.sender] + numTokens <= maxMintPerWallet, "limit per wallet reached" ); require(nextTokenId + numTokens <= maxMint, "Mint exceeds supply"); _safeMint(msg.sender, ++nextTokenId); minted[msg.sender] += numTokens; } /// @notice Burn OmniFrogs on source chain and mint on destination chain /// @param _chainId the destination chain id you want to transfer too /// @param _tokenId the id of the NFT you want to transfer function traverseChains(uint16 _chainId, uint256 _tokenId) public payable { require(msg.sender == ownerOf(_tokenId), "Not owner"); require(trustedSourceLookup[_chainId].length != 0, "Not communication"); // burn NFT on source chain _burn(_tokenId); // encode payload w/ sender address and NFT token id bytes memory payload = abi.encode(msg.sender, _tokenId); // encode adapterParams w/ extra gas for destination chain uint16 version = 1; uint256 gas = gasForDestinationLzReceive; bytes memory adapterParams = abi.encodePacked(version, gas); // use LayerZero estimateFees for cross chain delivery (uint256 quotedLayerZeroFee, ) = endpoint.estimateFees( _chainId, address(this), payload, false, adapterParams ); require( msg.value >= quotedLayerZeroFee, "Not enough gas to cover cross chain transfer" ); endpoint.send{value: msg.value}( _chainId, // destination chainId trustedSourceLookup[_chainId], // destination address of nft payload, // abi.encode()'ed bytes payable(msg.sender), // refund address address(0x0), // future parameter adapterParams // adapterParams ); } /// @notice Set the baseTokenURI /// @param _baseTokenURI to set function setBaseURI(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } /// @notice Get the base URI function _baseURI() internal view override returns (string memory) { return baseTokenURI; } // /// @notice Set the revealed flag function reveal() external onlyOwner { revealed = true; } // // get fund inside contract function withdraw() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } // just in case this fixed variable limits us from future integrations // function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner { // gasForDestinationLzReceive = newVal; // } /// @notice Override the _LzReceive internal function of the NonblockingReceiver // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function _LzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal override { (address dstAddress, uint256 tokenId) = abi.decode( _payload, (address, uint256) ); _safeMint(dstAddress, tokenId); } // User Application Config function setConfig( uint16 _version, uint16 _chainId, uint256 _configType, bytes calldata _config ) external override onlyOwner { endpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { endpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { endpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { endpoint.forceResumeReceive(_srcChainId, _srcAddress); } function tokenURI(uint256 _nftId) public view override(ERC721) returns (string memory) { require(_exists(_nftId), "Not exist"); if (revealed == false) { return notRevealedURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(_nftId), ".json" ) ) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
pragma solidity 0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "./interfaces/ILayerZeroReceiver.sol"; import "./interfaces/ILayerZeroEndpoint.sol"; import "./interfaces/ILayerZeroReceiver.sol"; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint public endpoint; struct FailedMessages { uint payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint => FailedMessages))) public failedMessages; mapping(uint16 => bytes) public trustedSourceLookup; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload); // abstract function function _LzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) virtual internal; function lzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) external override { require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security require(_srcAddress.length == trustedSourceLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedSourceLookup[_srcChainId]), "NonblockingReceiver: invalid source sending contract"); // try-catch all errors/exceptions // having failed messages does not block messages passing try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) { // do nothing } catch { // error / exception failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages(_payload.length, keccak256(_payload)); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload); } } function onLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) public { // only internal transaction require(msg.sender == address(this), "NonblockingReceiver: caller must be Bridge."); _LzReceive( _srcChainId, _srcAddress, _nonce, _payload); } function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam) internal { endpoint.send{value: msg.value}(_dstChainId, trustedSourceLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam); } function retryMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload) external payable { // assert there is message to retry FailedMessages storage failedMsg = failedMessages[_srcChainId][_srcAddress][_nonce]; require(failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message"); require(_payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload"); // clear the stored message failedMsg.payloadLength = 0; failedMsg.payloadHash = bytes32(0); // execute the message. revert if it fails again this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } function setTrustedSource(uint16 _chainId, bytes calldata _trustedSource) external onlyOwner { require(trustedSourceLookup[_chainId].length == 0, "The trusted source address has already been set for the chainId!"); trustedSourceLookup[_chainId] = _trustedSource; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity >=0.5.0; import "./ILayerZeroUserApplicationConfig.sol"; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external; // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external; }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"},{"internalType":"string","name":"_notRevealedURI","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"},{"internalType":"uint256","name":"_startToken","type":"uint256"},{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gasForDestinationLzReceive","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":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedSource","type":"bytes"}],"name":"setTrustedSource","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedSourceLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405262055730600b556002600e556000600f60006101000a81548160ff0219169083151502179055506000601160006101000a81548160ff0219169083151502179055503480156200005357600080fd5b50604051620067c9380380620067c98339818101604052810190620000799190620004b0565b6040518060400160405280600981526020017f4f6d6e6946726f677300000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4f46524f475300000000000000000000000000000000000000000000000000008152508160009080519060200190620000fd92919062000360565b5080600190805190602001906200011692919062000360565b505050620001396200012d620001bd60201b60201c565b620001c560201b60201c565b6200014a856200028b60201b60201c565b83601090805190602001906200016292919062000360565b5082600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c8190555080600d819055505050505050620007c9565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029b620001bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c16200033660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000311906200058b565b60405180910390fd5b80600a90805190602001906200033292919062000360565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036e9062000691565b90600052602060002090601f016020900481019282620003925760008555620003de565b82601f10620003ad57805160ff1916838001178555620003de565b82800160010185558215620003de579182015b82811115620003dd578251825591602001919060010190620003c0565b5b509050620003ed9190620003f1565b5090565b5b808211156200040c576000816000905550600101620003f2565b5090565b6000620004276200042184620005d6565b620005ad565b9050828152602081018484840111156200044057600080fd5b6200044d8482856200065b565b509392505050565b600081519050620004668162000795565b92915050565b600082601f8301126200047e57600080fd5b81516200049084826020860162000410565b91505092915050565b600081519050620004aa81620007af565b92915050565b600080600080600060a08688031215620004c957600080fd5b600086015167ffffffffffffffff811115620004e457600080fd5b620004f2888289016200046c565b955050602086015167ffffffffffffffff8111156200051057600080fd5b6200051e888289016200046c565b9450506040620005318882890162000455565b9350506060620005448882890162000499565b9250506080620005578882890162000499565b9150509295509295909350565b6000620005736020836200060c565b915062000580826200076c565b602082019050919050565b60006020820190508181036000830152620005a68162000564565b9050919050565b6000620005b9620005cc565b9050620005c78282620006c7565b919050565b6000604051905090565b600067ffffffffffffffff821115620005f457620005f36200072c565b5b620005ff826200075b565b9050602081019050919050565b600082825260208201905092915050565b60006200062a8262000631565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200067b5780820151818401526020810190506200065e565b838111156200068b576000848401525b50505050565b60006002820490506001821680620006aa57607f821691505b60208210811415620006c157620006c0620006fd565b5b50919050565b620006d2826200075b565b810181811067ffffffffffffffff82111715620006f457620006f36200072c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620007a0816200061d565b8114620007ac57600080fd5b50565b620007ba8162000651565b8114620007c657600080fd5b50565b615ff080620007d96000396000f3fe6080604052600436106102665760003560e01c80637225038011610144578063b88d4fde116100b6578063d547cfb71161007a578063d547cfb7146108c7578063d73f057e146108f2578063ddff5b1c1461091b578063e985e9c514610937578063f2fde38b14610974578063f3234f401461099d57610266565b8063b88d4fde14610800578063c87b56dd14610829578063cbed8b9c14610866578063cf89fa031461088f578063d1deba1f146108ab57610266565b80638da5cb5b116101085780638da5cb5b146107015780638ee749121461072c57806395d89b411461076a578063a22cb46514610795578063a475b5dd146107be578063b228d925146107d557610266565b8063722503801461061a5780637501f7411461064557806375794a3c1461067057806381c986ee1461069b5780638295784d146106d857610266565b80632be09561116101dd57806355f804b3116101a157806355f804b3146105195780635e280f11146105425780636352211e1461056d5780636ecd2306146105aa57806370a08231146105c6578063715018a61461060357610266565b80632be095611461046e5780633ccfd60b1461048557806342842e0e1461049c57806342d65a8d146104c557806351830227146104ee57610266565b8063095ea7b31161022f578063095ea7b31461036257806310ddb1371461038b5780631c37a822146103b45780631e7269c5146103dd5780631f2698ab1461041a57806323b872dd1461044557610266565b80621d35671461026b57806301ffc9a71461029457806306fdde03146102d157806307e0db17146102fc578063081812fc14610325575b600080fd5b34801561027757600080fd5b50610292600480360381019061028d9190614184565b6109c8565b005b3480156102a057600080fd5b506102bb60048036038101906102b69190613f71565b610c0a565b6040516102c89190614bf6565b60405180910390f35b3480156102dd57600080fd5b506102e6610cec565b6040516102f39190614c4e565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190614004565b610d7e565b005b34801561033157600080fd5b5061034c600480360381019061034791906142d3565b610e8a565b6040516103599190614b66565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613edd565b610f0f565b005b34801561039757600080fd5b506103b260048036038101906103ad9190614004565b611027565b005b3480156103c057600080fd5b506103db60048036038101906103d69190614184565b611133565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613d36565b6111b3565b604051610411919061526a565b60405180910390f35b34801561042657600080fd5b5061042f6111cb565b60405161043c9190614bf6565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613dd7565b6111de565b005b34801561047a57600080fd5b5061048361123e565b005b34801561049157600080fd5b5061049a6112d7565b005b3480156104a857600080fd5b506104c360048036038101906104be9190613dd7565b611402565b005b3480156104d157600080fd5b506104ec60048036038101906104e7919061402d565b611422565b005b3480156104fa57600080fd5b50610503611534565b6040516105109190614bf6565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190613fc3565b611547565b005b34801561054e57600080fd5b506105576115dd565b6040516105649190614c33565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f91906142d3565b611603565b6040516105a19190614b66565b60405180910390f35b6105c460048036038101906105bf9190614338565b6116b5565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613d36565b6118ac565b6040516105fa919061526a565b60405180910390f35b34801561060f57600080fd5b50610618611964565b005b34801561062657600080fd5b5061062f6119ec565b60405161063c9190614c4e565b60405180910390f35b34801561065157600080fd5b5061065a611a7a565b604051610667919061526a565b60405180910390f35b34801561067c57600080fd5b50610685611a80565b604051610692919061526a565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190614004565b611a86565b6040516106cf9190614c11565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190613f19565b611b26565b005b34801561070d57600080fd5b50610716611c6e565b6040516107239190614b66565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190614085565b611c98565b604051610761929190615285565b60405180910390f35b34801561077657600080fd5b5061077f611cec565b60405161078c9190614c4e565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190613ea1565b611d7e565b005b3480156107ca57600080fd5b506107d3611d94565b005b3480156107e157600080fd5b506107ea611e2d565b6040516107f7919061526a565b60405180910390f35b34801561080c57600080fd5b5061082760048036038101906108229190613e26565b611e33565b005b34801561083557600080fd5b50610850600480360381019061084b91906142d3565b611e95565b60405161085d9190614c4e565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190614217565b611feb565b005b6108a960048036038101906108a49190614297565b612103565b005b6108c560048036038101906108c091906140ec565b6123fd565b005b3480156108d357600080fd5b506108dc61259d565b6040516108e99190614c4e565b60405180910390f35b3480156108fe57600080fd5b506109196004803603810190610914919061402d565b61262b565b005b61093560048036038101906109309190614338565b612741565b005b34801561094357600080fd5b5061095e60048036038101906109599190613d9b565b61293a565b60405161096b9190614bf6565b60405180910390f35b34801561098057600080fd5b5061099b60048036038101906109969190613d36565b6129ce565b005b3480156109a957600080fd5b506109b2612ac6565b6040516109bf919061526a565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2257600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610a48906155ac565b90508351148015610a8e5750600960008561ffff1661ffff168152602001908152602001600020604051610a7c9190614adf565b60405180910390208380519060200120145b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490614f10565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b8152600401610b0c9493929190615153565b600060405180830381600087803b158015610b2657600080fd5b505af1925050508015610b37575060015b610c03576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610b819190614ac8565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d84848484604051610bf69493929190615153565b60405180910390a1610c04565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cd557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ce55750610ce482612acc565b5b9050919050565b606060008054610cfb906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d27906155ac565b8015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b5050505050905090565b610d86612b36565b73ffffffffffffffffffffffffffffffffffffffff16610da4611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614ef0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610e559190615050565b600060405180830381600087803b158015610e6f57600080fd5b505af1158015610e83573d6000803e3d6000fd5b5050505050565b6000610e9582612b3e565b610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90614ed0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f1a82611603565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290614f50565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610faa612b36565b73ffffffffffffffffffffffffffffffffffffffff161480610fd95750610fd881610fd3612b36565b61293a565b5b611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90614e10565b60405180910390fd5b6110228383612baa565b505050565b61102f612b36565b73ffffffffffffffffffffffffffffffffffffffff1661104d611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90614ef0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b81526004016110fe9190615050565b600060405180830381600087803b15801561111857600080fd5b505af115801561112c573d6000803e3d6000fd5b5050505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890614e90565b60405180910390fd5b6111ad84848484612c63565b50505050565b60126020528060005260406000206000915090505481565b600f60009054906101000a900460ff1681565b6111ef6111e9612b36565b82612c90565b61122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590614fb0565b60405180910390fd5b611239838383612d6e565b505050565b611246612b36565b73ffffffffffffffffffffffffffffffffffffffff16611264611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190614ef0565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b6112df612b36565b73ffffffffffffffffffffffffffffffffffffffff166112fd611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90614ef0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161137990614b25565b60006040518083038185875af1925050503d80600081146113b6576040519150601f19603f3d011682016040523d82523d6000602084013e6113bb565b606091505b50509050806113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690614f90565b60405180910390fd5b50565b61141d83838360405180602001604052806000815250611e33565b505050565b61142a612b36565b73ffffffffffffffffffffffffffffffffffffffff16611448611c6e565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590614ef0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b81526004016114fd939291906150cc565b600060405180830381600087803b15801561151757600080fd5b505af115801561152b573d6000803e3d6000fd5b50505050505050565b601160009054906101000a900460ff1681565b61154f612b36565b73ffffffffffffffffffffffffffffffffffffffff1661156d611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614ef0565b60405180910390fd5b80600a90805190602001906115d99291906139d7565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390614e70565b60405180910390fd5b80915050919050565b600f60009054906101000a900460ff16611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90615030565b60405180910390fd5b60018160ff16111561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290614f30565b60405180910390fd5b600e548160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461179c9190615398565b11156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614d50565b60405180910390fd5b600d548160ff16600c546117f19190615398565b1115611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990614dd0565b60405180910390fd5b61185033600c600081546118459061560f565b919050819055612fd5565b8060ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a29190615398565b9250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490614e50565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61196c612b36565b73ffffffffffffffffffffffffffffffffffffffff1661198a611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614ef0565b60405180910390fd5b6119ea6000612ff3565b565b601080546119f9906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611a25906155ac565b8015611a725780601f10611a4757610100808354040283529160200191611a72565b820191906000526020600020905b815481529060010190602001808311611a5557829003601f168201915b505050505081565b600d5481565b600c5481565b60096020528060005260406000206000915090508054611aa5906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad1906155ac565b8015611b1e5780601f10611af357610100808354040283529160200191611b1e565b820191906000526020600020905b815481529060010190602001808311611b0157829003601f168201915b505050505081565b611b2e612b36565b73ffffffffffffffffffffffffffffffffffffffff16611b4c611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990614ef0565b60405180910390fd5b60005b83839050811015611c68578160136000868685818110611bee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c039190613d36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611c609061560f565b915050611ba5565b50505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b606060018054611cfb906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611d27906155ac565b8015611d745780601f10611d4957610100808354040283529160200191611d74565b820191906000526020600020905b815481529060010190602001808311611d5757829003601f168201915b5050505050905090565b611d90611d89612b36565b83836130b9565b5050565b611d9c612b36565b73ffffffffffffffffffffffffffffffffffffffff16611dba611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614ef0565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600e5481565b611e44611e3e612b36565b83612c90565b611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90614fb0565b60405180910390fd5b611e8f84848484613226565b50505050565b6060611ea082612b3e565b611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690614c90565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611f8d5760108054611f08906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611f34906155ac565b8015611f815780601f10611f5657610100808354040283529160200191611f81565b820191906000526020600020905b815481529060010190602001808311611f6457829003601f168201915b50505050509050611fe6565b6000611f97613282565b90506000815111611fb75760405180602001604052806000815250611fe2565b80611fc184613314565b604051602001611fd2929190614af6565b6040516020818303038152906040525b9150505b919050565b611ff3612b36565b73ffffffffffffffffffffffffffffffffffffffff16612011611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90614ef0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c86868686866040518663ffffffff1660e01b81526004016120ca95949392919061521c565b600060405180830381600087803b1580156120e457600080fd5b505af11580156120f8573d6000803e3d6000fd5b505050505050505050565b61210c81611603565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090614f70565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546121a1906155ac565b905014156121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90614c70565b60405180910390fd5b6121ed816134c1565b60003382604051602001612202929190614bcd565b60405160208183030381529060405290506000600190506000600b54905060008282604051602001612235929190614b3a565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830886000876040518663ffffffff1660e01b81526004016122ac95949392919061506b565b604080518083038186803b1580156122c357600080fd5b505afa1580156122d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122fb91906142fc565b50905080341015612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614e30565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003489600960008c61ffff1661ffff16815260200190815260200160002089336000896040518863ffffffff1660e01b81526004016123c2969594939291906151a6565b6000604051808303818588803b1580156123db57600080fd5b505af11580156123ef573d6000803e3d6000fd5b505050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516124289190614ac8565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b8160010154141561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490615010565b60405180910390fd5b8060000154838390501480156124cd5750806001015483836040516124c3929190614aaf565b6040518091039020145b61250c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250390614db0565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b81526004016125639594939291906150fe565b600060405180830381600087803b15801561257d57600080fd5b505af1158015612591573d6000803e3d6000fd5b50505050505050505050565b600a80546125aa906155ac565b80601f01602080910402602001604051908101604052809291908181526020018280546125d6906155ac565b80156126235780601f106125f857610100808354040283529160200191612623565b820191906000526020600020905b81548152906001019060200180831161260657829003601f168201915b505050505081565b612633612b36565b73ffffffffffffffffffffffffffffffffffffffff16612651611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614ef0565b60405180910390fd5b6000600960008561ffff1661ffff16815260200190815260200160002080546126cf906155ac565b905014612711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270890614ff0565b60405180910390fd5b8181600960008661ffff1661ffff168152602001908152602001600020919061273b929190613a5d565b50505050565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168160ff1611156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd90614fd0565b60405180910390fd5b600d548160ff16600c546127ea9190615398565b111561282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614cf0565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166128869190615453565b92506101000a81548160ff021916908360ff16021790555060005b8160ff168110156128dd576128ca33600c600081546128bf9061560f565b919050819055612fd5565b80806128d59061560f565b9150506128a1565b508060ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129309190615398565b9250508190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129d6612b36565b73ffffffffffffffffffffffffffffffffffffffff166129f4611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614ef0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab190614cd0565b60405180910390fd5b612ac381612ff3565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c1d83611603565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612c7a9190613d5f565b91509150612c888282612fd5565b505050505050565b6000612c9b82612b3e565b612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd190614df0565b60405180910390fd5b6000612ce583611603565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d5457508373ffffffffffffffffffffffffffffffffffffffff16612d3c84610e8a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d655750612d64818561293a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d8e82611603565b73ffffffffffffffffffffffffffffffffffffffff1614612de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb90614d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4b90614d70565b60405180910390fd5b612e5f8383836135de565b612e6a600082612baa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eba919061541f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f119190615398565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd08383836135e3565b505050565b612fef8282604051806020016040528060008152506135e8565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311f90614d90565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132199190614bf6565b60405180910390a3505050565b613231848484612d6e565b61323d84848484613643565b61327c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327390614cb0565b60405180910390fd5b50505050565b6060600a8054613291906155ac565b80601f01602080910402602001604051908101604052809291908181526020018280546132bd906155ac565b801561330a5780601f106132df5761010080835404028352916020019161330a565b820191906000526020600020905b8154815290600101906020018083116132ed57829003601f168201915b5050505050905090565b6060600082141561335c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134bc565b600082905060005b6000821461338e5780806133779061560f565b915050600a8261338791906153ee565b9150613364565b60008167ffffffffffffffff8111156133d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134025781602001600182028036833780820191505090505b5090505b600085146134b55760018261341b919061541f565b9150600a8561342a9190615674565b60306134369190615398565b60f81b818381518110613472577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134ae91906153ee565b9450613406565b8093505050505b919050565b60006134cc82611603565b90506134da816000846135de565b6134e5600083612baa565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613535919061541f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135da816000846135e3565b5050565b505050565b505050565b6135f283836137da565b6135ff6000848484613643565b61363e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363590614cb0565b60405180910390fd5b505050565b60006136648473ffffffffffffffffffffffffffffffffffffffff166139b4565b156137cd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261368d612b36565b8786866040518563ffffffff1660e01b81526004016136af9493929190614b81565b602060405180830381600087803b1580156136c957600080fd5b505af19250505080156136fa57506040513d601f19601f820116820180604052508101906136f79190613f9a565b60015b61377d573d806000811461372a576040519150601f19603f3d011682016040523d82523d6000602084013e61372f565b606091505b50600081511415613775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376c90614cb0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137d2565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561384a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384190614eb0565b60405180910390fd5b61385381612b3e565b15613893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388a90614d30565b60405180910390fd5b61389f600083836135de565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138ef9190615398565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139b0600083836135e3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546139e3906155ac565b90600052602060002090601f016020900481019282613a055760008555613a4c565b82601f10613a1e57805160ff1916838001178555613a4c565b82800160010185558215613a4c579182015b82811115613a4b578251825591602001919060010190613a30565b5b509050613a599190613ae3565b5090565b828054613a69906155ac565b90600052602060002090601f016020900481019282613a8b5760008555613ad2565b82601f10613aa457803560ff1916838001178555613ad2565b82800160010185558215613ad2579182015b82811115613ad1578235825591602001919060010190613ab6565b5b509050613adf9190613ae3565b5090565b5b80821115613afc576000816000905550600101613ae4565b5090565b6000613b13613b0e846152d3565b6152ae565b905082815260208101848484011115613b2b57600080fd5b613b3684828561556a565b509392505050565b6000613b51613b4c84615304565b6152ae565b905082815260208101848484011115613b6957600080fd5b613b7484828561556a565b509392505050565b600081359050613b8b81615f02565b92915050565b600081519050613ba081615f19565b92915050565b60008083601f840112613bb857600080fd5b8235905067ffffffffffffffff811115613bd157600080fd5b602083019150836020820283011115613be957600080fd5b9250929050565b600081359050613bff81615f30565b92915050565b600081359050613c1481615f47565b92915050565b600081519050613c2981615f47565b92915050565b60008083601f840112613c4157600080fd5b8235905067ffffffffffffffff811115613c5a57600080fd5b602083019150836001820283011115613c7257600080fd5b9250929050565b600082601f830112613c8a57600080fd5b8135613c9a848260208601613b00565b91505092915050565b600082601f830112613cb457600080fd5b8135613cc4848260208601613b3e565b91505092915050565b600081359050613cdc81615f5e565b92915050565b600081359050613cf181615f75565b92915050565b600081519050613d0681615f75565b92915050565b600081359050613d1b81615f8c565b92915050565b600081359050613d3081615fa3565b92915050565b600060208284031215613d4857600080fd5b6000613d5684828501613b7c565b91505092915050565b60008060408385031215613d7257600080fd5b6000613d8085828601613b91565b9250506020613d9185828601613cf7565b9150509250929050565b60008060408385031215613dae57600080fd5b6000613dbc85828601613b7c565b9250506020613dcd85828601613b7c565b9150509250929050565b600080600060608486031215613dec57600080fd5b6000613dfa86828701613b7c565b9350506020613e0b86828701613b7c565b9250506040613e1c86828701613ce2565b9150509250925092565b60008060008060808587031215613e3c57600080fd5b6000613e4a87828801613b7c565b9450506020613e5b87828801613b7c565b9350506040613e6c87828801613ce2565b925050606085013567ffffffffffffffff811115613e8957600080fd5b613e9587828801613c79565b91505092959194509250565b60008060408385031215613eb457600080fd5b6000613ec285828601613b7c565b9250506020613ed385828601613bf0565b9150509250929050565b60008060408385031215613ef057600080fd5b6000613efe85828601613b7c565b9250506020613f0f85828601613ce2565b9150509250929050565b600080600060408486031215613f2e57600080fd5b600084013567ffffffffffffffff811115613f4857600080fd5b613f5486828701613ba6565b93509350506020613f6786828701613d21565b9150509250925092565b600060208284031215613f8357600080fd5b6000613f9184828501613c05565b91505092915050565b600060208284031215613fac57600080fd5b6000613fba84828501613c1a565b91505092915050565b600060208284031215613fd557600080fd5b600082013567ffffffffffffffff811115613fef57600080fd5b613ffb84828501613ca3565b91505092915050565b60006020828403121561401657600080fd5b600061402484828501613ccd565b91505092915050565b60008060006040848603121561404257600080fd5b600061405086828701613ccd565b935050602084013567ffffffffffffffff81111561406d57600080fd5b61407986828701613c2f565b92509250509250925092565b60008060006060848603121561409a57600080fd5b60006140a886828701613ccd565b935050602084013567ffffffffffffffff8111156140c557600080fd5b6140d186828701613c79565b92505060406140e286828701613ce2565b9150509250925092565b60008060008060006080868803121561410457600080fd5b600061411288828901613ccd565b955050602086013567ffffffffffffffff81111561412f57600080fd5b61413b88828901613c79565b945050604061414c88828901613d0c565b935050606086013567ffffffffffffffff81111561416957600080fd5b61417588828901613c2f565b92509250509295509295909350565b6000806000806080858703121561419a57600080fd5b60006141a887828801613ccd565b945050602085013567ffffffffffffffff8111156141c557600080fd5b6141d187828801613c79565b93505060406141e287828801613d0c565b925050606085013567ffffffffffffffff8111156141ff57600080fd5b61420b87828801613c79565b91505092959194509250565b60008060008060006080868803121561422f57600080fd5b600061423d88828901613ccd565b955050602061424e88828901613ccd565b945050604061425f88828901613ce2565b935050606086013567ffffffffffffffff81111561427c57600080fd5b61428888828901613c2f565b92509250509295509295909350565b600080604083850312156142aa57600080fd5b60006142b885828601613ccd565b92505060206142c985828601613ce2565b9150509250929050565b6000602082840312156142e557600080fd5b60006142f384828501613ce2565b91505092915050565b6000806040838503121561430f57600080fd5b600061431d85828601613cf7565b925050602061432e85828601613cf7565b9150509250929050565b60006020828403121561434a57600080fd5b600061435884828501613d21565b91505092915050565b61436a81615499565b82525050565b61437981615487565b82525050565b614388816154ab565b82525050565b614397816154b7565b82525050565b60006143a98385615360565b93506143b683858461556a565b6143bf83615761565b840190509392505050565b60006143d68385615371565b93506143e383858461556a565b82840190509392505050565b60006143fa8261534a565b6144048185615360565b9350614414818560208601615579565b61441d81615761565b840191505092915050565b60006144338261534a565b61443d8185615371565b935061444d818560208601615579565b80840191505092915050565b60008154614466816155ac565b6144708186615360565b9450600182166000811461448b576001811461449d576144d0565b60ff19831686526020860193506144d0565b6144a685615335565b60005b838110156144c8578154818901526001820191506020810190506144a9565b808801955050505b50505092915050565b600081546144e6816155ac565b6144f08186615371565b9450600182166000811461450b576001811461451c5761454f565b60ff1983168652818601935061454f565b61452585615335565b60005b8381101561454757815481890152600182019150602081019050614528565b838801955050505b50505092915050565b61456181615546565b82525050565b600061457282615355565b61457c818561537c565b935061458c818560208601615579565b61459581615761565b840191505092915050565b60006145ab82615355565b6145b5818561538d565b93506145c5818560208601615579565b80840191505092915050565b60006145de60118361537c565b91506145e98261577f565b602082019050919050565b600061460160098361537c565b915061460c826157a8565b602082019050919050565b600061462460328361537c565b915061462f826157d1565b604082019050919050565b600061464760268361537c565b915061465282615820565b604082019050919050565b600061466a60208361537c565b91506146758261586f565b602082019050919050565b600061468d60258361537c565b915061469882615898565b604082019050919050565b60006146b0601c8361537c565b91506146bb826158e7565b602082019050919050565b60006146d360188361537c565b91506146de82615910565b602082019050919050565b60006146f660248361537c565b915061470182615939565b604082019050919050565b600061471960198361537c565b915061472482615988565b602082019050919050565b600061473c601a8361537c565b9150614747826159b1565b602082019050919050565b600061475f60138361537c565b915061476a826159da565b602082019050919050565b6000614782602c8361537c565b915061478d82615a03565b604082019050919050565b60006147a560388361537c565b91506147b082615a52565b604082019050919050565b60006147c8602c8361537c565b91506147d382615aa1565b604082019050919050565b60006147eb602a8361537c565b91506147f682615af0565b604082019050919050565b600061480e60298361537c565b915061481982615b3f565b604082019050919050565b6000614831602b8361537c565b915061483c82615b8e565b604082019050919050565b600061485460208361537c565b915061485f82615bdd565b602082019050919050565b6000614877602c8361537c565b915061488282615c06565b604082019050919050565b600061489a60058361538d565b91506148a582615c55565b600582019050919050565b60006148bd60208361537c565b91506148c882615c7e565b602082019050919050565b60006148e060348361537c565b91506148eb82615ca7565b604082019050919050565b6000614903601a8361537c565b915061490e82615cf6565b602082019050919050565b600061492660218361537c565b915061493182615d1f565b604082019050919050565b600061494960098361537c565b915061495482615d6e565b602082019050919050565b600061496c600083615371565b915061497782615d97565b600082019050919050565b600061498f60108361537c565b915061499a82615d9a565b602082019050919050565b60006149b260318361537c565b91506149bd82615dc3565b604082019050919050565b60006149d560148361537c565b91506149e082615e12565b602082019050919050565b60006149f860408361537c565b9150614a0382615e3b565b604082019050919050565b6000614a1b60268361537c565b9150614a2682615e8a565b604082019050919050565b6000614a3e60148361537c565b9150614a4982615ed9565b602082019050919050565b614a5d816154ed565b82525050565b614a74614a6f826154ed565b615658565b82525050565b614a838161551b565b82525050565b614a9a614a958261551b565b61566a565b82525050565b614aa981615525565b82525050565b6000614abc8284866143ca565b91508190509392505050565b6000614ad48284614428565b915081905092915050565b6000614aeb82846144d9565b915081905092915050565b6000614b0282856145a0565b9150614b0e82846145a0565b9150614b198261488d565b91508190509392505050565b6000614b308261495f565b9150819050919050565b6000614b468285614a63565b600282019150614b568284614a89565b6020820191508190509392505050565b6000602082019050614b7b6000830184614370565b92915050565b6000608082019050614b966000830187614370565b614ba36020830186614370565b614bb06040830185614a7a565b8181036060830152614bc281846143ef565b905095945050505050565b6000604082019050614be26000830185614370565b614bef6020830184614a7a565b9392505050565b6000602082019050614c0b600083018461437f565b92915050565b60006020820190508181036000830152614c2b81846143ef565b905092915050565b6000602082019050614c486000830184614558565b92915050565b60006020820190508181036000830152614c688184614567565b905092915050565b60006020820190508181036000830152614c89816145d1565b9050919050565b60006020820190508181036000830152614ca9816145f4565b9050919050565b60006020820190508181036000830152614cc981614617565b9050919050565b60006020820190508181036000830152614ce98161463a565b9050919050565b60006020820190508181036000830152614d098161465d565b9050919050565b60006020820190508181036000830152614d2981614680565b9050919050565b60006020820190508181036000830152614d49816146a3565b9050919050565b60006020820190508181036000830152614d69816146c6565b9050919050565b60006020820190508181036000830152614d89816146e9565b9050919050565b60006020820190508181036000830152614da98161470c565b9050919050565b60006020820190508181036000830152614dc98161472f565b9050919050565b60006020820190508181036000830152614de981614752565b9050919050565b60006020820190508181036000830152614e0981614775565b9050919050565b60006020820190508181036000830152614e2981614798565b9050919050565b60006020820190508181036000830152614e49816147bb565b9050919050565b60006020820190508181036000830152614e69816147de565b9050919050565b60006020820190508181036000830152614e8981614801565b9050919050565b60006020820190508181036000830152614ea981614824565b9050919050565b60006020820190508181036000830152614ec981614847565b9050919050565b60006020820190508181036000830152614ee98161486a565b9050919050565b60006020820190508181036000830152614f09816148b0565b9050919050565b60006020820190508181036000830152614f29816148d3565b9050919050565b60006020820190508181036000830152614f49816148f6565b9050919050565b60006020820190508181036000830152614f6981614919565b9050919050565b60006020820190508181036000830152614f898161493c565b9050919050565b60006020820190508181036000830152614fa981614982565b9050919050565b60006020820190508181036000830152614fc9816149a5565b9050919050565b60006020820190508181036000830152614fe9816149c8565b9050919050565b60006020820190508181036000830152615009816149eb565b9050919050565b6000602082019050818103600083015261502981614a0e565b9050919050565b6000602082019050818103600083015261504981614a31565b9050919050565b60006020820190506150656000830184614a54565b92915050565b600060a0820190506150806000830188614a54565b61508d6020830187614370565b818103604083015261509f81866143ef565b90506150ae606083018561437f565b81810360808301526150c081846143ef565b90509695505050505050565b60006040820190506150e16000830186614a54565b81810360208301526150f481848661439d565b9050949350505050565b60006080820190506151136000830188614a54565b818103602083015261512581876143ef565b90506151346040830186614aa0565b818103606083015261514781848661439d565b90509695505050505050565b60006080820190506151686000830187614a54565b818103602083015261517a81866143ef565b90506151896040830185614aa0565b818103606083015261519b81846143ef565b905095945050505050565b600060c0820190506151bb6000830189614a54565b81810360208301526151cd8188614459565b905081810360408301526151e181876143ef565b90506151f06060830186614361565b6151fd6080830185614370565b81810360a083015261520f81846143ef565b9050979650505050505050565b60006080820190506152316000830188614a54565b61523e6020830187614a54565b61524b6040830186614a7a565b818103606083015261525e81848661439d565b90509695505050505050565b600060208201905061527f6000830184614a7a565b92915050565b600060408201905061529a6000830185614a7a565b6152a7602083018461438e565b9392505050565b60006152b86152c9565b90506152c482826155de565b919050565b6000604051905090565b600067ffffffffffffffff8211156152ee576152ed615732565b5b6152f782615761565b9050602081019050919050565b600067ffffffffffffffff82111561531f5761531e615732565b5b61532882615761565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153a38261551b565b91506153ae8361551b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153e3576153e26156a5565b5b828201905092915050565b60006153f98261551b565b91506154048361551b565b925082615414576154136156d4565b5b828204905092915050565b600061542a8261551b565b91506154358361551b565b925082821015615448576154476156a5565b5b828203905092915050565b600061545e82615539565b915061546983615539565b92508282101561547c5761547b6156a5565b5b828203905092915050565b6000615492826154fb565b9050919050565b60006154a4826154fb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b600061555182615558565b9050919050565b6000615563826154fb565b9050919050565b82818337600083830152505050565b60005b8381101561559757808201518184015260208101905061557c565b838111156155a6576000848401525b50505050565b600060028204905060018216806155c457607f821691505b602082108114156155d8576155d7615703565b5b50919050565b6155e782615761565b810181811067ffffffffffffffff8211171561560657615605615732565b5b80604052505050565b600061561a8261551b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561564d5761564c6156a5565b5b600182019050919050565b600061566382615772565b9050919050565b6000819050919050565b600061567f8261551b565b915061568a8361551b565b92508261569a576156996156d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4e6f7420636f6d6d756e69636174696f6e000000000000000000000000000000600082015250565b7f4e6f742065786973740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6c696d6974207065722077616c6c657420726561636865640000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f7420656e6f7567682067617320746f20636f7665722063726f737320636860008201527f61696e207472616e736665720000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4d61782031204e46547320706572207472616e73616374696f6e000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e74206e756d626572204578636565646564000000000000000000000000600082015250565b7f546865207472757374656420736f75726365206164647265737320686173206160008201527f6c7265616479206265656e2073657420666f722074686520636861696e496421602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742073746172746564000000000000000000000000600082015250565b615f0b81615487565b8114615f1657600080fd5b50565b615f2281615499565b8114615f2d57600080fd5b50565b615f39816154ab565b8114615f4457600080fd5b50565b615f50816154c1565b8114615f5b57600080fd5b50565b615f67816154ed565b8114615f7257600080fd5b50565b615f7e8161551b565b8114615f8957600080fd5b50565b615f9581615525565b8114615fa057600080fd5b50565b615fac81615539565b8114615fb757600080fd5b5056fea2646970667358221220486d75ddce5301e37c98ad68b30b20d08ad9e376a1093f083dba8083f71646a564736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f10000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556a6f4e696d6768663573316552703177335a50617067524667784e3668396d425a675344546d66476e42482f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d5337647745366431614739684a63713353457943484b575039314a314a696e485a56425967394262336773412f312e6a736f6e00000000
Deployed Bytecode
0x6080604052600436106102665760003560e01c80637225038011610144578063b88d4fde116100b6578063d547cfb71161007a578063d547cfb7146108c7578063d73f057e146108f2578063ddff5b1c1461091b578063e985e9c514610937578063f2fde38b14610974578063f3234f401461099d57610266565b8063b88d4fde14610800578063c87b56dd14610829578063cbed8b9c14610866578063cf89fa031461088f578063d1deba1f146108ab57610266565b80638da5cb5b116101085780638da5cb5b146107015780638ee749121461072c57806395d89b411461076a578063a22cb46514610795578063a475b5dd146107be578063b228d925146107d557610266565b8063722503801461061a5780637501f7411461064557806375794a3c1461067057806381c986ee1461069b5780638295784d146106d857610266565b80632be09561116101dd57806355f804b3116101a157806355f804b3146105195780635e280f11146105425780636352211e1461056d5780636ecd2306146105aa57806370a08231146105c6578063715018a61461060357610266565b80632be095611461046e5780633ccfd60b1461048557806342842e0e1461049c57806342d65a8d146104c557806351830227146104ee57610266565b8063095ea7b31161022f578063095ea7b31461036257806310ddb1371461038b5780631c37a822146103b45780631e7269c5146103dd5780631f2698ab1461041a57806323b872dd1461044557610266565b80621d35671461026b57806301ffc9a71461029457806306fdde03146102d157806307e0db17146102fc578063081812fc14610325575b600080fd5b34801561027757600080fd5b50610292600480360381019061028d9190614184565b6109c8565b005b3480156102a057600080fd5b506102bb60048036038101906102b69190613f71565b610c0a565b6040516102c89190614bf6565b60405180910390f35b3480156102dd57600080fd5b506102e6610cec565b6040516102f39190614c4e565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190614004565b610d7e565b005b34801561033157600080fd5b5061034c600480360381019061034791906142d3565b610e8a565b6040516103599190614b66565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190613edd565b610f0f565b005b34801561039757600080fd5b506103b260048036038101906103ad9190614004565b611027565b005b3480156103c057600080fd5b506103db60048036038101906103d69190614184565b611133565b005b3480156103e957600080fd5b5061040460048036038101906103ff9190613d36565b6111b3565b604051610411919061526a565b60405180910390f35b34801561042657600080fd5b5061042f6111cb565b60405161043c9190614bf6565b60405180910390f35b34801561045157600080fd5b5061046c60048036038101906104679190613dd7565b6111de565b005b34801561047a57600080fd5b5061048361123e565b005b34801561049157600080fd5b5061049a6112d7565b005b3480156104a857600080fd5b506104c360048036038101906104be9190613dd7565b611402565b005b3480156104d157600080fd5b506104ec60048036038101906104e7919061402d565b611422565b005b3480156104fa57600080fd5b50610503611534565b6040516105109190614bf6565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190613fc3565b611547565b005b34801561054e57600080fd5b506105576115dd565b6040516105649190614c33565b60405180910390f35b34801561057957600080fd5b50610594600480360381019061058f91906142d3565b611603565b6040516105a19190614b66565b60405180910390f35b6105c460048036038101906105bf9190614338565b6116b5565b005b3480156105d257600080fd5b506105ed60048036038101906105e89190613d36565b6118ac565b6040516105fa919061526a565b60405180910390f35b34801561060f57600080fd5b50610618611964565b005b34801561062657600080fd5b5061062f6119ec565b60405161063c9190614c4e565b60405180910390f35b34801561065157600080fd5b5061065a611a7a565b604051610667919061526a565b60405180910390f35b34801561067c57600080fd5b50610685611a80565b604051610692919061526a565b60405180910390f35b3480156106a757600080fd5b506106c260048036038101906106bd9190614004565b611a86565b6040516106cf9190614c11565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa9190613f19565b611b26565b005b34801561070d57600080fd5b50610716611c6e565b6040516107239190614b66565b60405180910390f35b34801561073857600080fd5b50610753600480360381019061074e9190614085565b611c98565b604051610761929190615285565b60405180910390f35b34801561077657600080fd5b5061077f611cec565b60405161078c9190614c4e565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190613ea1565b611d7e565b005b3480156107ca57600080fd5b506107d3611d94565b005b3480156107e157600080fd5b506107ea611e2d565b6040516107f7919061526a565b60405180910390f35b34801561080c57600080fd5b5061082760048036038101906108229190613e26565b611e33565b005b34801561083557600080fd5b50610850600480360381019061084b91906142d3565b611e95565b60405161085d9190614c4e565b60405180910390f35b34801561087257600080fd5b5061088d60048036038101906108889190614217565b611feb565b005b6108a960048036038101906108a49190614297565b612103565b005b6108c560048036038101906108c091906140ec565b6123fd565b005b3480156108d357600080fd5b506108dc61259d565b6040516108e99190614c4e565b60405180910390f35b3480156108fe57600080fd5b506109196004803603810190610914919061402d565b61262b565b005b61093560048036038101906109309190614338565b612741565b005b34801561094357600080fd5b5061095e60048036038101906109599190613d9b565b61293a565b60405161096b9190614bf6565b60405180910390f35b34801561098057600080fd5b5061099b60048036038101906109969190613d36565b6129ce565b005b3480156109a957600080fd5b506109b2612ac6565b6040516109bf919061526a565b60405180910390f35b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2257600080fd5b600960008561ffff1661ffff1681526020019081526020016000208054610a48906155ac565b90508351148015610a8e5750600960008561ffff1661ffff168152602001908152602001600020604051610a7c9190614adf565b60405180910390208380519060200120145b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490614f10565b60405180910390fd5b3073ffffffffffffffffffffffffffffffffffffffff16631c37a822858585856040518563ffffffff1660e01b8152600401610b0c9493929190615153565b600060405180830381600087803b158015610b2657600080fd5b505af1925050508015610b37575060015b610c03576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff16815260200190815260200160002084604051610b819190614ac8565b908152602001604051809103902060008467ffffffffffffffff16815260200190815260200160002060008201518160000155602082015181600101559050507fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d84848484604051610bf69493929190615153565b60405180910390a1610c04565b5b50505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610cd557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610ce55750610ce482612acc565b5b9050919050565b606060008054610cfb906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054610d27906155ac565b8015610d745780601f10610d4957610100808354040283529160200191610d74565b820191906000526020600020905b815481529060010190602001808311610d5757829003601f168201915b5050505050905090565b610d86612b36565b73ffffffffffffffffffffffffffffffffffffffff16610da4611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614610dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df190614ef0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166307e0db17826040518263ffffffff1660e01b8152600401610e559190615050565b600060405180830381600087803b158015610e6f57600080fd5b505af1158015610e83573d6000803e3d6000fd5b5050505050565b6000610e9582612b3e565b610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90614ed0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f1a82611603565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290614f50565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610faa612b36565b73ffffffffffffffffffffffffffffffffffffffff161480610fd95750610fd881610fd3612b36565b61293a565b5b611018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100f90614e10565b60405180910390fd5b6110228383612baa565b505050565b61102f612b36565b73ffffffffffffffffffffffffffffffffffffffff1661104d611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90614ef0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166310ddb137826040518263ffffffff1660e01b81526004016110fe9190615050565b600060405180830381600087803b15801561111857600080fd5b505af115801561112c573d6000803e3d6000fd5b5050505050565b3073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146111a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119890614e90565b60405180910390fd5b6111ad84848484612c63565b50505050565b60126020528060005260406000206000915090505481565b600f60009054906101000a900460ff1681565b6111ef6111e9612b36565b82612c90565b61122e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122590614fb0565b60405180910390fd5b611239838383612d6e565b505050565b611246612b36565b73ffffffffffffffffffffffffffffffffffffffff16611264611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190614ef0565b60405180910390fd5b6001600f60006101000a81548160ff021916908315150217905550565b6112df612b36565b73ffffffffffffffffffffffffffffffffffffffff166112fd611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614611353576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134a90614ef0565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161137990614b25565b60006040518083038185875af1925050503d80600081146113b6576040519150601f19603f3d011682016040523d82523d6000602084013e6113bb565b606091505b50509050806113ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f690614f90565b60405180910390fd5b50565b61141d83838360405180602001604052806000815250611e33565b505050565b61142a612b36565b73ffffffffffffffffffffffffffffffffffffffff16611448611c6e565b73ffffffffffffffffffffffffffffffffffffffff161461149e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149590614ef0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166342d65a8d8484846040518463ffffffff1660e01b81526004016114fd939291906150cc565b600060405180830381600087803b15801561151757600080fd5b505af115801561152b573d6000803e3d6000fd5b50505050505050565b601160009054906101000a900460ff1681565b61154f612b36565b73ffffffffffffffffffffffffffffffffffffffff1661156d611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146115c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ba90614ef0565b60405180910390fd5b80600a90805190602001906115d99291906139d7565b5050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a390614e70565b60405180910390fd5b80915050919050565b600f60009054906101000a900460ff16611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb90615030565b60405180910390fd5b60018160ff16111561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290614f30565b60405180910390fd5b600e548160ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461179c9190615398565b11156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614d50565b60405180910390fd5b600d548160ff16600c546117f19190615398565b1115611832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182990614dd0565b60405180910390fd5b61185033600c600081546118459061560f565b919050819055612fd5565b8060ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a29190615398565b9250508190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490614e50565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61196c612b36565b73ffffffffffffffffffffffffffffffffffffffff1661198a611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146119e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d790614ef0565b60405180910390fd5b6119ea6000612ff3565b565b601080546119f9906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611a25906155ac565b8015611a725780601f10611a4757610100808354040283529160200191611a72565b820191906000526020600020905b815481529060010190602001808311611a5557829003601f168201915b505050505081565b600d5481565b600c5481565b60096020528060005260406000206000915090508054611aa5906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611ad1906155ac565b8015611b1e5780601f10611af357610100808354040283529160200191611b1e565b820191906000526020600020905b815481529060010190602001808311611b0157829003601f168201915b505050505081565b611b2e612b36565b73ffffffffffffffffffffffffffffffffffffffff16611b4c611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614611ba2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9990614ef0565b60405180910390fd5b60005b83839050811015611c68578160136000868685818110611bee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611c039190613d36565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff1602179055508080611c609061560f565b915050611ba5565b50505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60086020528260005260406000208280516020810182018051848252602083016020850120818352809550505050505060205280600052604060002060009250925050508060000154908060010154905082565b606060018054611cfb906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611d27906155ac565b8015611d745780601f10611d4957610100808354040283529160200191611d74565b820191906000526020600020905b815481529060010190602001808311611d5757829003601f168201915b5050505050905090565b611d90611d89612b36565b83836130b9565b5050565b611d9c612b36565b73ffffffffffffffffffffffffffffffffffffffff16611dba611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614ef0565b60405180910390fd5b6001601160006101000a81548160ff021916908315150217905550565b600e5481565b611e44611e3e612b36565b83612c90565b611e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7a90614fb0565b60405180910390fd5b611e8f84848484613226565b50505050565b6060611ea082612b3e565b611edf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed690614c90565b60405180910390fd5b60001515601160009054906101000a900460ff1615151415611f8d5760108054611f08906155ac565b80601f0160208091040260200160405190810160405280929190818152602001828054611f34906155ac565b8015611f815780601f10611f5657610100808354040283529160200191611f81565b820191906000526020600020905b815481529060010190602001808311611f6457829003601f168201915b50505050509050611fe6565b6000611f97613282565b90506000815111611fb75760405180602001604052806000815250611fe2565b80611fc184613314565b604051602001611fd2929190614af6565b6040516020818303038152906040525b9150505b919050565b611ff3612b36565b73ffffffffffffffffffffffffffffffffffffffff16612011611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614612067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205e90614ef0565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663cbed8b9c86868686866040518663ffffffff1660e01b81526004016120ca95949392919061521c565b600060405180830381600087803b1580156120e457600080fd5b505af11580156120f8573d6000803e3d6000fd5b505050505050505050565b61210c81611603565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090614f70565b60405180910390fd5b6000600960008461ffff1661ffff16815260200190815260200160002080546121a1906155ac565b905014156121e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121db90614c70565b60405180910390fd5b6121ed816134c1565b60003382604051602001612202929190614bcd565b60405160208183030381529060405290506000600190506000600b54905060008282604051602001612235929190614b3a565b60405160208183030381529060405290506000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340a7bb108830886000876040518663ffffffff1660e01b81526004016122ac95949392919061506b565b604080518083038186803b1580156122c357600080fd5b505afa1580156122d7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122fb91906142fc565b50905080341015612341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233890614e30565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c58031003489600960008c61ffff1661ffff16815260200190815260200160002089336000896040518863ffffffff1660e01b81526004016123c2969594939291906151a6565b6000604051808303818588803b1580156123db57600080fd5b505af11580156123ef573d6000803e3d6000fd5b505050505050505050505050565b6000600860008761ffff1661ffff168152602001908152602001600020856040516124289190614ac8565b908152602001604051809103902060008567ffffffffffffffff16815260200190815260200160002090506000801b8160010154141561249d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249490615010565b60405180910390fd5b8060000154838390501480156124cd5750806001015483836040516124c3929190614aaf565b6040518091039020145b61250c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250390614db0565b60405180910390fd5b600081600001819055506000801b81600101819055503073ffffffffffffffffffffffffffffffffffffffff16631c37a82287878787876040518663ffffffff1660e01b81526004016125639594939291906150fe565b600060405180830381600087803b15801561257d57600080fd5b505af1158015612591573d6000803e3d6000fd5b50505050505050505050565b600a80546125aa906155ac565b80601f01602080910402602001604051908101604052809291908181526020018280546125d6906155ac565b80156126235780601f106125f857610100808354040283529160200191612623565b820191906000526020600020905b81548152906001019060200180831161260657829003601f168201915b505050505081565b612633612b36565b73ffffffffffffffffffffffffffffffffffffffff16612651611c6e565b73ffffffffffffffffffffffffffffffffffffffff16146126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614ef0565b60405180910390fd5b6000600960008561ffff1661ffff16815260200190815260200160002080546126cf906155ac565b905014612711576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270890614ff0565b60405180910390fd5b8181600960008661ffff1661ffff168152602001908152602001600020919061273b929190613a5d565b50505050565b601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168160ff1611156127d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127cd90614fd0565b60405180910390fd5b600d548160ff16600c546127ea9190615398565b111561282b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282290614cf0565b60405180910390fd5b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff166128869190615453565b92506101000a81548160ff021916908360ff16021790555060005b8160ff168110156128dd576128ca33600c600081546128bf9061560f565b919050819055612fd5565b80806128d59061560f565b9150506128a1565b508060ff16601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129309190615398565b9250508190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129d6612b36565b73ffffffffffffffffffffffffffffffffffffffff166129f4611c6e565b73ffffffffffffffffffffffffffffffffffffffff1614612a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4190614ef0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab190614cd0565b60405180910390fd5b612ac381612ff3565b50565b600b5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612c1d83611603565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190612c7a9190613d5f565b91509150612c888282612fd5565b505050505050565b6000612c9b82612b3e565b612cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd190614df0565b60405180910390fd5b6000612ce583611603565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612d5457508373ffffffffffffffffffffffffffffffffffffffff16612d3c84610e8a565b73ffffffffffffffffffffffffffffffffffffffff16145b80612d655750612d64818561293a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612d8e82611603565b73ffffffffffffffffffffffffffffffffffffffff1614612de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ddb90614d10565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4b90614d70565b60405180910390fd5b612e5f8383836135de565b612e6a600082612baa565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612eba919061541f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f119190615398565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd08383836135e3565b505050565b612fef8282604051806020016040528060008152506135e8565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311f90614d90565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516132199190614bf6565b60405180910390a3505050565b613231848484612d6e565b61323d84848484613643565b61327c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327390614cb0565b60405180910390fd5b50505050565b6060600a8054613291906155ac565b80601f01602080910402602001604051908101604052809291908181526020018280546132bd906155ac565b801561330a5780601f106132df5761010080835404028352916020019161330a565b820191906000526020600020905b8154815290600101906020018083116132ed57829003601f168201915b5050505050905090565b6060600082141561335c576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134bc565b600082905060005b6000821461338e5780806133779061560f565b915050600a8261338791906153ee565b9150613364565b60008167ffffffffffffffff8111156133d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134025781602001600182028036833780820191505090505b5090505b600085146134b55760018261341b919061541f565b9150600a8561342a9190615674565b60306134369190615398565b60f81b818381518110613472577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134ae91906153ee565b9450613406565b8093505050505b919050565b60006134cc82611603565b90506134da816000846135de565b6134e5600083612baa565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613535919061541f565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135da816000846135e3565b5050565b505050565b505050565b6135f283836137da565b6135ff6000848484613643565b61363e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161363590614cb0565b60405180910390fd5b505050565b60006136648473ffffffffffffffffffffffffffffffffffffffff166139b4565b156137cd578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261368d612b36565b8786866040518563ffffffff1660e01b81526004016136af9493929190614b81565b602060405180830381600087803b1580156136c957600080fd5b505af19250505080156136fa57506040513d601f19601f820116820180604052508101906136f79190613f9a565b60015b61377d573d806000811461372a576040519150601f19603f3d011682016040523d82523d6000602084013e61372f565b606091505b50600081511415613775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376c90614cb0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506137d2565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561384a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161384190614eb0565b60405180910390fd5b61385381612b3e565b15613893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388a90614d30565b60405180910390fd5b61389f600083836135de565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138ef9190615398565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46139b0600083836135e3565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546139e3906155ac565b90600052602060002090601f016020900481019282613a055760008555613a4c565b82601f10613a1e57805160ff1916838001178555613a4c565b82800160010185558215613a4c579182015b82811115613a4b578251825591602001919060010190613a30565b5b509050613a599190613ae3565b5090565b828054613a69906155ac565b90600052602060002090601f016020900481019282613a8b5760008555613ad2565b82601f10613aa457803560ff1916838001178555613ad2565b82800160010185558215613ad2579182015b82811115613ad1578235825591602001919060010190613ab6565b5b509050613adf9190613ae3565b5090565b5b80821115613afc576000816000905550600101613ae4565b5090565b6000613b13613b0e846152d3565b6152ae565b905082815260208101848484011115613b2b57600080fd5b613b3684828561556a565b509392505050565b6000613b51613b4c84615304565b6152ae565b905082815260208101848484011115613b6957600080fd5b613b7484828561556a565b509392505050565b600081359050613b8b81615f02565b92915050565b600081519050613ba081615f19565b92915050565b60008083601f840112613bb857600080fd5b8235905067ffffffffffffffff811115613bd157600080fd5b602083019150836020820283011115613be957600080fd5b9250929050565b600081359050613bff81615f30565b92915050565b600081359050613c1481615f47565b92915050565b600081519050613c2981615f47565b92915050565b60008083601f840112613c4157600080fd5b8235905067ffffffffffffffff811115613c5a57600080fd5b602083019150836001820283011115613c7257600080fd5b9250929050565b600082601f830112613c8a57600080fd5b8135613c9a848260208601613b00565b91505092915050565b600082601f830112613cb457600080fd5b8135613cc4848260208601613b3e565b91505092915050565b600081359050613cdc81615f5e565b92915050565b600081359050613cf181615f75565b92915050565b600081519050613d0681615f75565b92915050565b600081359050613d1b81615f8c565b92915050565b600081359050613d3081615fa3565b92915050565b600060208284031215613d4857600080fd5b6000613d5684828501613b7c565b91505092915050565b60008060408385031215613d7257600080fd5b6000613d8085828601613b91565b9250506020613d9185828601613cf7565b9150509250929050565b60008060408385031215613dae57600080fd5b6000613dbc85828601613b7c565b9250506020613dcd85828601613b7c565b9150509250929050565b600080600060608486031215613dec57600080fd5b6000613dfa86828701613b7c565b9350506020613e0b86828701613b7c565b9250506040613e1c86828701613ce2565b9150509250925092565b60008060008060808587031215613e3c57600080fd5b6000613e4a87828801613b7c565b9450506020613e5b87828801613b7c565b9350506040613e6c87828801613ce2565b925050606085013567ffffffffffffffff811115613e8957600080fd5b613e9587828801613c79565b91505092959194509250565b60008060408385031215613eb457600080fd5b6000613ec285828601613b7c565b9250506020613ed385828601613bf0565b9150509250929050565b60008060408385031215613ef057600080fd5b6000613efe85828601613b7c565b9250506020613f0f85828601613ce2565b9150509250929050565b600080600060408486031215613f2e57600080fd5b600084013567ffffffffffffffff811115613f4857600080fd5b613f5486828701613ba6565b93509350506020613f6786828701613d21565b9150509250925092565b600060208284031215613f8357600080fd5b6000613f9184828501613c05565b91505092915050565b600060208284031215613fac57600080fd5b6000613fba84828501613c1a565b91505092915050565b600060208284031215613fd557600080fd5b600082013567ffffffffffffffff811115613fef57600080fd5b613ffb84828501613ca3565b91505092915050565b60006020828403121561401657600080fd5b600061402484828501613ccd565b91505092915050565b60008060006040848603121561404257600080fd5b600061405086828701613ccd565b935050602084013567ffffffffffffffff81111561406d57600080fd5b61407986828701613c2f565b92509250509250925092565b60008060006060848603121561409a57600080fd5b60006140a886828701613ccd565b935050602084013567ffffffffffffffff8111156140c557600080fd5b6140d186828701613c79565b92505060406140e286828701613ce2565b9150509250925092565b60008060008060006080868803121561410457600080fd5b600061411288828901613ccd565b955050602086013567ffffffffffffffff81111561412f57600080fd5b61413b88828901613c79565b945050604061414c88828901613d0c565b935050606086013567ffffffffffffffff81111561416957600080fd5b61417588828901613c2f565b92509250509295509295909350565b6000806000806080858703121561419a57600080fd5b60006141a887828801613ccd565b945050602085013567ffffffffffffffff8111156141c557600080fd5b6141d187828801613c79565b93505060406141e287828801613d0c565b925050606085013567ffffffffffffffff8111156141ff57600080fd5b61420b87828801613c79565b91505092959194509250565b60008060008060006080868803121561422f57600080fd5b600061423d88828901613ccd565b955050602061424e88828901613ccd565b945050604061425f88828901613ce2565b935050606086013567ffffffffffffffff81111561427c57600080fd5b61428888828901613c2f565b92509250509295509295909350565b600080604083850312156142aa57600080fd5b60006142b885828601613ccd565b92505060206142c985828601613ce2565b9150509250929050565b6000602082840312156142e557600080fd5b60006142f384828501613ce2565b91505092915050565b6000806040838503121561430f57600080fd5b600061431d85828601613cf7565b925050602061432e85828601613cf7565b9150509250929050565b60006020828403121561434a57600080fd5b600061435884828501613d21565b91505092915050565b61436a81615499565b82525050565b61437981615487565b82525050565b614388816154ab565b82525050565b614397816154b7565b82525050565b60006143a98385615360565b93506143b683858461556a565b6143bf83615761565b840190509392505050565b60006143d68385615371565b93506143e383858461556a565b82840190509392505050565b60006143fa8261534a565b6144048185615360565b9350614414818560208601615579565b61441d81615761565b840191505092915050565b60006144338261534a565b61443d8185615371565b935061444d818560208601615579565b80840191505092915050565b60008154614466816155ac565b6144708186615360565b9450600182166000811461448b576001811461449d576144d0565b60ff19831686526020860193506144d0565b6144a685615335565b60005b838110156144c8578154818901526001820191506020810190506144a9565b808801955050505b50505092915050565b600081546144e6816155ac565b6144f08186615371565b9450600182166000811461450b576001811461451c5761454f565b60ff1983168652818601935061454f565b61452585615335565b60005b8381101561454757815481890152600182019150602081019050614528565b838801955050505b50505092915050565b61456181615546565b82525050565b600061457282615355565b61457c818561537c565b935061458c818560208601615579565b61459581615761565b840191505092915050565b60006145ab82615355565b6145b5818561538d565b93506145c5818560208601615579565b80840191505092915050565b60006145de60118361537c565b91506145e98261577f565b602082019050919050565b600061460160098361537c565b915061460c826157a8565b602082019050919050565b600061462460328361537c565b915061462f826157d1565b604082019050919050565b600061464760268361537c565b915061465282615820565b604082019050919050565b600061466a60208361537c565b91506146758261586f565b602082019050919050565b600061468d60258361537c565b915061469882615898565b604082019050919050565b60006146b0601c8361537c565b91506146bb826158e7565b602082019050919050565b60006146d360188361537c565b91506146de82615910565b602082019050919050565b60006146f660248361537c565b915061470182615939565b604082019050919050565b600061471960198361537c565b915061472482615988565b602082019050919050565b600061473c601a8361537c565b9150614747826159b1565b602082019050919050565b600061475f60138361537c565b915061476a826159da565b602082019050919050565b6000614782602c8361537c565b915061478d82615a03565b604082019050919050565b60006147a560388361537c565b91506147b082615a52565b604082019050919050565b60006147c8602c8361537c565b91506147d382615aa1565b604082019050919050565b60006147eb602a8361537c565b91506147f682615af0565b604082019050919050565b600061480e60298361537c565b915061481982615b3f565b604082019050919050565b6000614831602b8361537c565b915061483c82615b8e565b604082019050919050565b600061485460208361537c565b915061485f82615bdd565b602082019050919050565b6000614877602c8361537c565b915061488282615c06565b604082019050919050565b600061489a60058361538d565b91506148a582615c55565b600582019050919050565b60006148bd60208361537c565b91506148c882615c7e565b602082019050919050565b60006148e060348361537c565b91506148eb82615ca7565b604082019050919050565b6000614903601a8361537c565b915061490e82615cf6565b602082019050919050565b600061492660218361537c565b915061493182615d1f565b604082019050919050565b600061494960098361537c565b915061495482615d6e565b602082019050919050565b600061496c600083615371565b915061497782615d97565b600082019050919050565b600061498f60108361537c565b915061499a82615d9a565b602082019050919050565b60006149b260318361537c565b91506149bd82615dc3565b604082019050919050565b60006149d560148361537c565b91506149e082615e12565b602082019050919050565b60006149f860408361537c565b9150614a0382615e3b565b604082019050919050565b6000614a1b60268361537c565b9150614a2682615e8a565b604082019050919050565b6000614a3e60148361537c565b9150614a4982615ed9565b602082019050919050565b614a5d816154ed565b82525050565b614a74614a6f826154ed565b615658565b82525050565b614a838161551b565b82525050565b614a9a614a958261551b565b61566a565b82525050565b614aa981615525565b82525050565b6000614abc8284866143ca565b91508190509392505050565b6000614ad48284614428565b915081905092915050565b6000614aeb82846144d9565b915081905092915050565b6000614b0282856145a0565b9150614b0e82846145a0565b9150614b198261488d565b91508190509392505050565b6000614b308261495f565b9150819050919050565b6000614b468285614a63565b600282019150614b568284614a89565b6020820191508190509392505050565b6000602082019050614b7b6000830184614370565b92915050565b6000608082019050614b966000830187614370565b614ba36020830186614370565b614bb06040830185614a7a565b8181036060830152614bc281846143ef565b905095945050505050565b6000604082019050614be26000830185614370565b614bef6020830184614a7a565b9392505050565b6000602082019050614c0b600083018461437f565b92915050565b60006020820190508181036000830152614c2b81846143ef565b905092915050565b6000602082019050614c486000830184614558565b92915050565b60006020820190508181036000830152614c688184614567565b905092915050565b60006020820190508181036000830152614c89816145d1565b9050919050565b60006020820190508181036000830152614ca9816145f4565b9050919050565b60006020820190508181036000830152614cc981614617565b9050919050565b60006020820190508181036000830152614ce98161463a565b9050919050565b60006020820190508181036000830152614d098161465d565b9050919050565b60006020820190508181036000830152614d2981614680565b9050919050565b60006020820190508181036000830152614d49816146a3565b9050919050565b60006020820190508181036000830152614d69816146c6565b9050919050565b60006020820190508181036000830152614d89816146e9565b9050919050565b60006020820190508181036000830152614da98161470c565b9050919050565b60006020820190508181036000830152614dc98161472f565b9050919050565b60006020820190508181036000830152614de981614752565b9050919050565b60006020820190508181036000830152614e0981614775565b9050919050565b60006020820190508181036000830152614e2981614798565b9050919050565b60006020820190508181036000830152614e49816147bb565b9050919050565b60006020820190508181036000830152614e69816147de565b9050919050565b60006020820190508181036000830152614e8981614801565b9050919050565b60006020820190508181036000830152614ea981614824565b9050919050565b60006020820190508181036000830152614ec981614847565b9050919050565b60006020820190508181036000830152614ee98161486a565b9050919050565b60006020820190508181036000830152614f09816148b0565b9050919050565b60006020820190508181036000830152614f29816148d3565b9050919050565b60006020820190508181036000830152614f49816148f6565b9050919050565b60006020820190508181036000830152614f6981614919565b9050919050565b60006020820190508181036000830152614f898161493c565b9050919050565b60006020820190508181036000830152614fa981614982565b9050919050565b60006020820190508181036000830152614fc9816149a5565b9050919050565b60006020820190508181036000830152614fe9816149c8565b9050919050565b60006020820190508181036000830152615009816149eb565b9050919050565b6000602082019050818103600083015261502981614a0e565b9050919050565b6000602082019050818103600083015261504981614a31565b9050919050565b60006020820190506150656000830184614a54565b92915050565b600060a0820190506150806000830188614a54565b61508d6020830187614370565b818103604083015261509f81866143ef565b90506150ae606083018561437f565b81810360808301526150c081846143ef565b90509695505050505050565b60006040820190506150e16000830186614a54565b81810360208301526150f481848661439d565b9050949350505050565b60006080820190506151136000830188614a54565b818103602083015261512581876143ef565b90506151346040830186614aa0565b818103606083015261514781848661439d565b90509695505050505050565b60006080820190506151686000830187614a54565b818103602083015261517a81866143ef565b90506151896040830185614aa0565b818103606083015261519b81846143ef565b905095945050505050565b600060c0820190506151bb6000830189614a54565b81810360208301526151cd8188614459565b905081810360408301526151e181876143ef565b90506151f06060830186614361565b6151fd6080830185614370565b81810360a083015261520f81846143ef565b9050979650505050505050565b60006080820190506152316000830188614a54565b61523e6020830187614a54565b61524b6040830186614a7a565b818103606083015261525e81848661439d565b90509695505050505050565b600060208201905061527f6000830184614a7a565b92915050565b600060408201905061529a6000830185614a7a565b6152a7602083018461438e565b9392505050565b60006152b86152c9565b90506152c482826155de565b919050565b6000604051905090565b600067ffffffffffffffff8211156152ee576152ed615732565b5b6152f782615761565b9050602081019050919050565b600067ffffffffffffffff82111561531f5761531e615732565b5b61532882615761565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006153a38261551b565b91506153ae8361551b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156153e3576153e26156a5565b5b828201905092915050565b60006153f98261551b565b91506154048361551b565b925082615414576154136156d4565b5b828204905092915050565b600061542a8261551b565b91506154358361551b565b925082821015615448576154476156a5565b5b828203905092915050565b600061545e82615539565b915061546983615539565b92508282101561547c5761547b6156a5565b5b828203905092915050565b6000615492826154fb565b9050919050565b60006154a4826154fb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b600061555182615558565b9050919050565b6000615563826154fb565b9050919050565b82818337600083830152505050565b60005b8381101561559757808201518184015260208101905061557c565b838111156155a6576000848401525b50505050565b600060028204905060018216806155c457607f821691505b602082108114156155d8576155d7615703565b5b50919050565b6155e782615761565b810181811067ffffffffffffffff8211171561560657615605615732565b5b80604052505050565b600061561a8261551b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561564d5761564c6156a5565b5b600182019050919050565b600061566382615772565b9050919050565b6000819050919050565b600061567f8261551b565b915061568a8361551b565b92508261569a576156996156d4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160f01b9050919050565b7f4e6f7420636f6d6d756e69636174696f6e000000000000000000000000000000600082015250565b7f4e6f742065786973740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6c696d6974207065722077616c6c657420726561636865640000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4c617965725a65726f3a20696e76616c6964207061796c6f6164000000000000600082015250565b7f4d696e74206578636565647320737570706c7900000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f7420656e6f7567682067617320746f20636f7665722063726f737320636860008201527f61696e207472616e736665720000000000000000000000000000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460008201527f206265204272696467652e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560008201527f7263652073656e64696e6720636f6e7472616374000000000000000000000000602082015250565b7f4d61782031204e46547320706572207472616e73616374696f6e000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f4d696e74206e756d626572204578636565646564000000000000000000000000600082015250565b7f546865207472757374656420736f75726365206164647265737320686173206160008201527f6c7265616479206265656e2073657420666f722074686520636861696e496421602082015250565b7f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60008201527f6573736167650000000000000000000000000000000000000000000000000000602082015250565b7f73616c6573206973206e6f742073746172746564000000000000000000000000600082015250565b615f0b81615487565b8114615f1657600080fd5b50565b615f2281615499565b8114615f2d57600080fd5b50565b615f39816154ab565b8114615f4457600080fd5b50565b615f50816154c1565b8114615f5b57600080fd5b50565b615f67816154ed565b8114615f7257600080fd5b50565b615f7e8161551b565b8114615f8957600080fd5b50565b615f9581615525565b8114615fa057600080fd5b50565b615fac81615539565b8114615fb757600080fd5b5056fea2646970667358221220486d75ddce5301e37c98ad68b30b20d08ad9e376a1093f083dba8083f71646a564736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f10000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556a6f4e696d6768663573316552703177335a50617067524667784e3668396d425a675344546d66476e42482f00000000000000000000000000000000000000000000000000000000000000000000000000000000003c697066733a2f2f516d5337647745366431614739684a63713353457943484b575039314a314a696e485a56425967394262336773412f312e6a736f6e00000000
-----Decoded View---------------
Arg [0] : _baseTokenURI (string): ipfs://QmUjoNimghf5s1eRp1w3ZPapgRFgxN6h9mBZgSDTmfGnBH/
Arg [1] : _notRevealedURI (string): ipfs://QmS7dwE6d1aG9hJcq3SEyCHKWP91J1JinHZVBYg9Bb3gsA/1.json
Arg [2] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
Arg [3] : _startToken (uint256): 0
Arg [4] : _maxMint (uint256): 497
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001f1
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d556a6f4e696d6768663573316552703177335a50617067
Arg [7] : 524667784e3668396d425a675344546d66476e42482f00000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000003c
Arg [9] : 697066733a2f2f516d5337647745366431614739684a63713353457943484b57
Arg [10] : 5039314a314a696e485a56425967394262336773412f312e6a736f6e00000000
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.