Overview
ETH Balance
0.31 ETH
Eth Value
$1,036.25 (@ $3,342.75/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 419 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer From | 20884959 | 89 days ago | IN | 0 ETH | 0.00044236 | ||||
Transfer From | 20884957 | 89 days ago | IN | 0 ETH | 0.00043963 | ||||
Transfer From | 20884949 | 89 days ago | IN | 0 ETH | 0.00047117 | ||||
Transfer From | 20884940 | 89 days ago | IN | 0 ETH | 0.00051492 | ||||
Transfer From | 20884918 | 89 days ago | IN | 0 ETH | 0.00049244 | ||||
Transfer From | 20884274 | 89 days ago | IN | 0 ETH | 0.00037589 | ||||
Set Approval For... | 20758333 | 107 days ago | IN | 0 ETH | 0.00013797 | ||||
Safe Transfer Fr... | 19991597 | 214 days ago | IN | 0 ETH | 0.00235623 | ||||
Safe Transfer Fr... | 19982918 | 215 days ago | IN | 0 ETH | 0.00184303 | ||||
Safe Transfer Fr... | 19982913 | 215 days ago | IN | 0 ETH | 0.00176297 | ||||
Set Approval For... | 19700245 | 255 days ago | IN | 0 ETH | 0.00026286 | ||||
Set Approval For... | 17060407 | 625 days ago | IN | 0 ETH | 0.00127714 | ||||
Set Approval For... | 17060382 | 625 days ago | IN | 0 ETH | 0.00118779 | ||||
Set Approval For... | 16809505 | 661 days ago | IN | 0 ETH | 0.00091146 | ||||
Set Approval For... | 16760338 | 667 days ago | IN | 0 ETH | 0.00097101 | ||||
Set Approval For... | 16626468 | 686 days ago | IN | 0 ETH | 0.0006818 | ||||
Set Approval For... | 16504396 | 703 days ago | IN | 0 ETH | 0.00072807 | ||||
Transfer From | 16484635 | 706 days ago | IN | 0 ETH | 0.00163909 | ||||
Set Approval For... | 16449552 | 711 days ago | IN | 0 ETH | 0.00117961 | ||||
Set Approval For... | 16393340 | 719 days ago | IN | 0 ETH | 0.00055982 | ||||
Set Approval For... | 16393340 | 719 days ago | IN | 0 ETH | 0.00056176 | ||||
Set Approval For... | 16393338 | 719 days ago | IN | 0 ETH | 0.00064143 | ||||
Transfer From | 16370192 | 722 days ago | IN | 0 ETH | 0.0030115 | ||||
Safe Transfer Fr... | 16298347 | 732 days ago | IN | 0 ETH | 0.00244626 | ||||
Set Approval For... | 16112643 | 758 days ago | IN | 0 ETH | 0.00055716 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14717633 | 971 days ago | 0.14 ETH | ||||
14521542 | 1002 days ago | 41.1793 ETH | ||||
14501868 | 1005 days ago | 10 wei | ||||
14497334 | 1006 days ago | 30 wei | ||||
14437574 | 1015 days ago | 10 wei | ||||
14436460 | 1015 days ago | 10 wei | ||||
14436309 | 1015 days ago | 10 wei | ||||
14419159 | 1018 days ago | 10 wei | ||||
14401633 | 1021 days ago | 10 wei | ||||
14400818 | 1021 days ago | 10 wei | ||||
14399045 | 1021 days ago | 10 wei | ||||
14387382 | 1023 days ago | 30 wei | ||||
14385182 | 1023 days ago | 60 wei | ||||
14381242 | 1024 days ago | 10 wei | ||||
14380919 | 1024 days ago | 10 wei | ||||
14379520 | 1024 days ago | 10 wei | ||||
14374285 | 1025 days ago | 60 wei | ||||
14373035 | 1025 days ago | 10 wei | ||||
14368813 | 1026 days ago | 30 wei | ||||
14367122 | 1026 days ago | 10 wei | ||||
14360680 | 1027 days ago | 10 wei | ||||
14354291 | 1028 days ago | 10 wei | ||||
14351767 | 1028 days ago | 10 wei | ||||
14351191 | 1028 days ago | 10 wei | ||||
14349961 | 1029 days ago | 10 wei |
Loading...
Loading
Contract Name:
JokersBySLAM
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // March 6th, 2022 // https://slamjokers.com // Made for "Jokers by SLAM" by @Kadabra_SLAM (Telegram) /* Static is boring. Introducing, Dynamic NFTs! "Dynamic Non-Fungible Tokens (dNFTs) are the next stage in the evolution of the NFT space, combining the verifiably unique nature of NFTs with dynamic data inputs and off-chain computation." We are happy to be one of pioneers in the dNFTs world. - Abra & Kadabra ___ _ _ _____ _ ___ ___ ___ |_ | | | | | / ___|| | / _ \ | \/ | | | ___ | | __ ___ _ __ ___ | |__ _ _ \ `--. | | / /_\ \| . . | | | / _ \ | |/ // _ \| '__|/ __| | '_ \ | | | | `--. \| | | _ || |\/| | /\__/ /| (_) || <| __/| | \__ \ | |_) || |_| | /\__/ /| |____| | | || | | | \____/ \___/ |_|\_\\___||_| |___/ |_.__/ \__, | \____/ \_____/\_| |_/\_| |_/ __/ | |___/ S/O to the Azuki team for creating such an elegant library: ERC721A */ import "libraries.sol"; interface IERC20 { function transfer(address _to, uint256 _amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); function balanceOf(address account) external view returns (uint256); } contract JokersBySLAM is ERC721A, Ownable, ReentrancyGuard { enum Status { Pending, PreSale, PublicSale, Finished } Status public status; string public baseURI = "https://api.slamjokers.com/joker/"; address private _signer; uint256 public claimedReserved; uint256 public immutable maxPerMint = 10; uint256 public immutable collectionSize = 8888; uint256 public reserveAmount; uint256 public discountAmountPerJoker = 0.0014 ether; event Minted(address minter, uint256 amount); event StatusChanged(Status status); event SignerChanged(address signer); event ReservedTokenMinted(address minter, address recipient, uint256 amount); event BaseURIChanged(string newBaseURI); event ReserveAmountChanged(uint256 newReservedAmount); constructor( address signer, uint256 _reserveAmount ) ERC721A("Jokers by SLAM", "JOKERS") { _signer = signer; reserveAmount = _reserveAmount; } function bulkMint(address[] calldata recipients, uint256 each_amount, bool reserved) external nonReentrant onlyOwner { //to mint in behalf of team, designers, raffle winners, bsc/polygon sales, giveaway winners, slam billionaires require(each_amount > 0, "Jokers: invalid amount"); require(recipients.length > 0, "Jokers: invalid amount"); uint256 amount = recipients.length * each_amount; require(totalSupply() + amount <= collectionSize, "Jokers: max supply exceeded"); if(reserved){ require(claimedReserved + amount <= reserveAmount, "Jokers: max reserve amount exceeded"); } for (uint256 i = 0; i < recipients.length; i++){ _safeMint(recipients[i], each_amount); } if(reserved){ claimedReserved += amount; } } function VerifyMessage(string memory sign_name, bytes32 _hashedMessage, uint8 _v, bytes32 _r, bytes32 _s) private view { require(keccak256(abi.encode(sign_name, msg.sender)) == _hashedMessage, "This hash is not valid for msg.sender"); //get signer bytes memory prefix = "\x19Ethereum Signed Message:\n32"; bytes32 prefixedHashMessage = keccak256(abi.encodePacked(prefix, _hashedMessage)); require(_signer == ecrecover(prefixedHashMessage, _v, _r, _s), "Not signed by the official signer."); } function presaleMint(uint256 amount, bytes32 _hashedMessage, uint8 _v, bytes32 _r, bytes32 _s) external nonReentrant payable { require(status == Status.PreSale, "Jokers: Presale is not active."); VerifyMessage("presale", _hashedMessage, _v, _r, _s); require(amount <= maxPerMint, "Jokers: Max per mint amount per transaction exceeded."); require(totalSupply() + amount + reserveAmount - claimedReserved <= collectionSize, "Jokers: Max supply exceeded."); uint256 totalCost = getJokerPrice(0.06 ether, amount); _safeMint(msg.sender, amount); refundIfOver(totalCost); emit Minted(msg.sender, amount); } function mint(uint256 amount) external nonReentrant payable { require(status == Status.PublicSale, "Jokers: Public sale is not active."); require(amount <= maxPerMint, "Jokers: Max per mint amount per transaction exceeded."); require(totalSupply() + amount + reserveAmount - claimedReserved <= collectionSize, "Jokers: Max supply exceeded."); uint256 totalCost = getJokerPrice(0.07 ether, amount); _safeMint(msg.sender, amount); refundIfOver(totalCost); emit Minted(msg.sender, amount); } function getJokerPrice(uint256 price, uint256 _quantity) internal view returns (uint256){ require(_quantity > 0, "Must be greater than zero"); return (price * _quantity) - ((_quantity - 1) * discountAmountPerJoker); } function setdiscountAmount(uint256 _discountAmountPerJoker) external onlyOwner { discountAmountPerJoker = _discountAmountPerJoker; } function setStatus(Status _status) external onlyOwner { status = _status; emit StatusChanged(_status); } function setReservedAmount(uint256 _newReservedAmount) external onlyOwner { reserveAmount = _newReservedAmount; emit ReserveAmountChanged(_newReservedAmount); } function setSigner(address signer) external onlyOwner { _signer = signer; emit SignerChanged(signer); } function setBaseURI(string calldata newBaseURI) external onlyOwner { baseURI = newBaseURI; emit BaseURIChanged(newBaseURI); } function _baseURI() internal view override returns (string memory) { return baseURI; } function refundIfOver(uint256 price) private { require(msg.value >= price, "Jokers: Need to send more ETH."); if (msg.value > price) { payable(msg.sender).transfer(msg.value - price); } } function withdraw() external nonReentrant onlyOwner { payable(msg.sender).transfer(address(this).balance); } // To get any tokens out of the contract if needed function withdrawNFT(address _nftTokenContract, address _to) external nonReentrant onlyOwner{ IERC721 nftTokenContract = IERC721(_nftTokenContract); nftTokenContract.setApprovalForAll(_to, true); } function withdrawToken(address _tokenContract, uint256 _amount, address _to) external nonReentrant onlyOwner{ IERC20 tokenContract = IERC20(_tokenContract); tokenContract.transfer(_to, _amount); } function withdrawToken_All(address _tokenContract, address _to) external nonReentrant onlyOwner{ IERC20 tokenContract = IERC20(_tokenContract); uint256 _amount = tokenContract.balanceOf(address(this)); tokenContract.transfer(_to, _amount); } }
// File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Address.sol // 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"signer","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":false,"internalType":"uint256","name":"newReservedAmount","type":"uint256"}],"name":"ReserveAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReservedTokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"signer","type":"address"}],"name":"SignerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum JokersBySLAM.Status","name":"status","type":"uint8"}],"name":"StatusChanged","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256","name":"each_amount","type":"uint256"},{"internalType":"bool","name":"reserved","type":"bool"}],"name":"bulkMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimedReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"discountAmountPerJoker","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32","name":"_hashedMessage","type":"bytes32"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newReservedAmount","type":"uint256"}],"name":"setReservedAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum JokersBySLAM.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_discountAmountPerJoker","type":"uint256"}],"name":"setdiscountAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum JokersBySLAM.Status","name":"","type":"uint8"}],"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftTokenContract","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken_All","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610120604052602160c08181529062002d4960e03980516200002a91600b916020909101906200016e565b50600a6080526122b860a0526604f94ae6af8000600f553480156200004e57600080fd5b5060405162002d6a38038062002d6a833981016040819052620000719162000214565b604080518082018252600e81526d4a6f6b65727320627920534c414d60901b6020808301918252835180850190945260068452654a4f4b45525360d01b908401528151919291620000c5916002916200016e565b508051620000db9060039060208401906200016e565b50506000805550620000ed336200011c565b6001600955600c80546001600160a01b0319166001600160a01b039390931692909217909155600e556200028d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200017c9062000250565b90600052602060002090601f016020900481019282620001a05760008555620001eb565b82601f10620001bb57805160ff1916838001178555620001eb565b82800160010185558215620001eb579182015b82811115620001eb578251825591602001919060010190620001ce565b50620001f9929150620001fd565b5090565b5b80821115620001f95760008155600101620001fe565b600080604083850312156200022857600080fd5b82516001600160a01b03811681146200024057600080fd5b6020939093015192949293505050565b600181811c908216806200026557607f821691505b602082108114156200028757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612a73620002d66000396000818161046201528181610b1301528181610fe401526113660152600081816104ac01528181610fa401526113260152612a736000f3fe60806040526004361061020f5760003560e01c80634b09b72a116101185780638da5cb5b116100a0578063b88d4fde1161006f578063b88d4fde146105f1578063c87b56dd14610611578063e985e9c514610631578063f0c129ac1461067a578063f2fde38b1461069a57600080fd5b80638da5cb5b1461058b57806395d89b41146105a9578063a0712d68146105be578063a22cb465146105d157600080fd5b806365bc1365116100e757806365bc13651461050e5780636c0360eb146105215780636c19e7831461053657806370a0823114610556578063715018a61461057657600080fd5b80634b09b72a14610484578063507e094f1461049a57806355f804b3146104ce5780636352211e146104ee57600080fd5b806323b872dd1161019b578063328d92d61161016a578063328d92d6146103e55780633ccdbb28146103fb5780633ccfd60b1461041b57806342842e0e1461043057806345c0f5331461045057600080fd5b806323b872dd1461036f57806328dc38f91461038f5780632e49d78b146103a55780633009b3c0146103c557600080fd5b8063095ea7b3116101e2578063095ea7b3146102c5578063170e1736146102e557806318160ddd146103055780631b72173e14610328578063200d2ed21461034857600080fd5b806301ffc9a71461021457806303e73d591461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f3660046122a2565b6106ba565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b506102696102643660046122db565b61070c565b005b34801561027757600080fd5b50610280610858565b6040516102409190612366565b34801561029957600080fd5b506102ad6102a8366004612379565b6108ea565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004612392565b61092e565b3480156102f157600080fd5b50610269610300366004612379565b6109bc565b34801561031157600080fd5b50600154600054035b604051908152602001610240565b34801561033457600080fd5b506102696103433660046123ca565b610a22565b34801561035457600080fd5b50600a546103629060ff1681565b604051610240919061246e565b34801561037b57600080fd5b5061026961038a366004612496565b610c80565b34801561039b57600080fd5b5061031a600d5481565b3480156103b157600080fd5b506102696103c03660046124d2565b610c8b565b3480156103d157600080fd5b506102696103e0366004612379565b610d08565b3480156103f157600080fd5b5061031a600f5481565b34801561040757600080fd5b506102696104163660046124f3565b610d37565b34801561042757600080fd5b50610269610dc1565b34801561043c57600080fd5b5061026961044b366004612496565b610e47565b34801561045c57600080fd5b5061031a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561049057600080fd5b5061031a600e5481565b3480156104a657600080fd5b5061031a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156104da57600080fd5b506102696104e936600461252f565b610e62565b3480156104fa57600080fd5b506102ad610509366004612379565b610ed6565b61026961051c3660046125a1565b610ee8565b34801561052d57600080fd5b506102806110f1565b34801561054257600080fd5b506102696105513660046125f0565b61117f565b34801561056257600080fd5b5061031a6105713660046125f0565b6111f7565b34801561058257600080fd5b50610269611246565b34801561059757600080fd5b506008546001600160a01b03166102ad565b3480156105b557600080fd5b5061028061127c565b6102696105cc366004612379565b61128b565b3480156105dd57600080fd5b506102696105ec36600461260b565b61146f565b3480156105fd57600080fd5b5061026961060c366004612658565b611505565b34801561061d57600080fd5b5061028061062c366004612379565b611556565b34801561063d57600080fd5b5061023461064c3660046122db565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068657600080fd5b506102696106953660046122db565b6115db565b3480156106a657600080fd5b506102696106b53660046125f0565b61169c565b60006001600160e01b031982166380ac58cd60e01b14806106eb57506001600160e01b03198216635b5e139f60e01b145b8061070657506301ffc9a760e01b6001600160e01b03198316145b92915050565b600260095414156107385760405162461bcd60e51b815260040161072f90612734565b60405180910390fd5b60026009556008546001600160a01b031633146107675760405162461bcd60e51b815260040161072f9061276b565b6040516370a0823160e01b815230600482015282906000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156107b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d491906127a0565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509083169063a9059cbb906044015b6020604051808303816000875af1158015610828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084c91906127b9565b50506001600955505050565b606060028054610867906127d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610893906127d6565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006108f582611737565b610912576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093982610ed6565b9050806001600160a01b0316836001600160a01b0316141561096e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098e575061098c813361064c565b155b156109ac576040516367d9dca160e11b815260040160405180910390fd5b6109b7838383611762565b505050565b6008546001600160a01b031633146109e65760405162461bcd60e51b815260040161072f9061276b565b600e8190556040518181527f413bdfdac79f91a8b92323dd47951f5a6af92c91b7a9a2c21c906f2269eac2c8906020015b60405180910390a150565b60026009541415610a455760405162461bcd60e51b815260040161072f90612734565b60026009556008546001600160a01b03163314610a745760405162461bcd60e51b815260040161072f9061276b565b60008211610abd5760405162461bcd60e51b8152602060048201526016602482015275129bdad95c9cce881a5b9d985b1a5908185b5bdd5b9d60521b604482015260640161072f565b82610b035760405162461bcd60e51b8152602060048201526016602482015275129bdad95c9cce881a5b9d985b1a5908185b5bdd5b9d60521b604482015260640161072f565b6000610b0f8385612827565b90507f000000000000000000000000000000000000000000000000000000000000000081610b406001546000540390565b610b4a9190612846565b1115610b985760405162461bcd60e51b815260206004820152601b60248201527f4a6f6b6572733a206d617820737570706c792065786365656465640000000000604482015260640161072f565b8115610c0957600e5481600d54610baf9190612846565b1115610c095760405162461bcd60e51b815260206004820152602360248201527f4a6f6b6572733a206d6178207265736572766520616d6f756e7420657863656560448201526219195960ea1b606482015260840161072f565b60005b84811015610c5657610c44868683818110610c2957610c2961285e565b9050602002016020810190610c3e91906125f0565b856117be565b80610c4e81612874565b915050610c0c565b50811561084c5780600d6000828254610c6f9190612846565b909155505050506001600955505050565b6109b78383836117dc565b6008546001600160a01b03163314610cb55760405162461bcd60e51b815260040161072f9061276b565b600a805482919060ff19166001836003811115610cd457610cd4612458565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610a17919061246e565b6008546001600160a01b03163314610d325760405162461bcd60e51b815260040161072f9061276b565b600f55565b60026009541415610d5a5760405162461bcd60e51b815260040161072f90612734565b60026009556008546001600160a01b03163314610d895760405162461bcd60e51b815260040161072f9061276b565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284919082169063a9059cbb90604401610809565b60026009541415610de45760405162461bcd60e51b815260040161072f90612734565b60026009556008546001600160a01b03163314610e135760405162461bcd60e51b815260040161072f9061276b565b60405133904780156108fc02916000818181858888f19350505050158015610e3f573d6000803e3d6000fd5b506001600955565b6109b783838360405180602001604052806000815250611505565b6008546001600160a01b03163314610e8c5760405162461bcd60e51b815260040161072f9061276b565b610e98600b83836121f3565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610eca92919061288f565b60405180910390a15050565b6000610ee1826119f2565b5192915050565b60026009541415610f0b5760405162461bcd60e51b815260040161072f90612734565b60026009556001600a5460ff166003811115610f2957610f29612458565b14610f765760405162461bcd60e51b815260206004820152601e60248201527f4a6f6b6572733a2050726573616c65206973206e6f74206163746976652e0000604482015260640161072f565b610fa26040518060400160405280600781526020016670726573616c6560c81b81525085858585611b0e565b7f0000000000000000000000000000000000000000000000000000000000000000851115610fe25760405162461bcd60e51b815260040161072f906128be565b7f0000000000000000000000000000000000000000000000000000000000000000600d54600e54876110176001546000540390565b6110219190612846565b61102b9190612846565b6110359190612913565b11156110835760405162461bcd60e51b815260206004820152601c60248201527f4a6f6b6572733a204d617820737570706c792065786365656465642e00000000604482015260640161072f565b600061109666d529ae9e86000087611cc7565b90506110a233876117be565b6110ab81611d44565b60408051338152602081018890527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a15050600160095550505050565b600b80546110fe906127d6565b80601f016020809104026020016040519081016040528092919081815260200182805461112a906127d6565b80156111775780601f1061114c57610100808354040283529160200191611177565b820191906000526020600020905b81548152906001019060200180831161115a57829003601f168201915b505050505081565b6008546001600160a01b031633146111a95760405162461bcd60e51b815260040161072f9061276b565b600c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f5719a5656c5cfdaafa148ecf366fd3b0a7fae06449ce2a46225977fb7417e29d90602001610a17565b60006001600160a01b038216611220576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112705760405162461bcd60e51b815260040161072f9061276b565b61127a6000611dd2565b565b606060038054610867906127d6565b600260095414156112ae5760405162461bcd60e51b815260040161072f90612734565b60026009819055600a5460ff1660038111156112cc576112cc612458565b146113245760405162461bcd60e51b815260206004820152602260248201527f4a6f6b6572733a205075626c69632073616c65206973206e6f74206163746976604482015261329760f11b606482015260840161072f565b7f00000000000000000000000000000000000000000000000000000000000000008111156113645760405162461bcd60e51b815260040161072f906128be565b7f0000000000000000000000000000000000000000000000000000000000000000600d54600e54836113996001546000540390565b6113a39190612846565b6113ad9190612846565b6113b79190612913565b11156114055760405162461bcd60e51b815260206004820152601c60248201527f4a6f6b6572733a204d617820737570706c792065786365656465642e00000000604482015260640161072f565b600061141866f8b0a10e47000083611cc7565b905061142433836117be565b61142d81611d44565b60408051338152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150506001600955565b6001600160a01b0382163314156114995760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115108484846117dc565b6001600160a01b0383163b15158015611532575061153084848484611e24565b155b15611550576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061156182611737565b61157e57604051630a14c4b560e41b815260040160405180910390fd5b6000611588611f0d565b90508051600014156115a957604051806020016040528060008152506115d4565b806115b384611f1c565b6040516020016115c492919061292a565b6040516020818303038152906040525b9392505050565b600260095414156115fe5760405162461bcd60e51b815260040161072f90612734565b60026009556008546001600160a01b0316331461162d5760405162461bcd60e51b815260040161072f9061276b565b60405163a22cb46560e01b81526001600160a01b0382811660048301526001602483015283919082169063a22cb46590604401600060405180830381600087803b15801561167a57600080fd5b505af115801561168e573d6000803e3d6000fd5b505060016009555050505050565b6008546001600160a01b031633146116c65760405162461bcd60e51b815260040161072f9061276b565b6001600160a01b03811661172b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072f565b61173481611dd2565b50565b6000805482108015610706575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6117d882826040518060200160405280600081525061201a565b5050565b60006117e7826119f2565b80519091506000906001600160a01b0316336001600160a01b0316148061181557508151611815903361064c565b80611830575033611825846108ea565b6001600160a01b0316145b90508061185057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118855760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166118ac57604051633a954ecd60e21b815260040160405180910390fd5b6118bc6000848460000151611762565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166119a8576000548110156119a8578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611af557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611af35780516001600160a01b031615611a89579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611aee579392505050565b611a89565b505b604051636f96cda160e11b815260040160405180910390fd5b838533604051602001611b22929190612959565b6040516020818303038152906040528051906020012014611b935760405162461bcd60e51b815260206004820152602560248201527f546869732068617368206973206e6f742076616c696420666f72206d73672e7360448201526432b73232b960d91b606482015260840161072f565b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060008186604051602001611be2929190612983565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa158015611c4a573d6000803e3d6000fd5b5050604051601f190151600c546001600160a01b039081169116149050611cbe5760405162461bcd60e51b815260206004820152602260248201527f4e6f74207369676e656420627920746865206f6666696369616c207369676e65604482015261391760f11b606482015260840161072f565b50505050505050565b6000808211611d185760405162461bcd60e51b815260206004820152601960248201527f4d7573742062652067726561746572207468616e207a65726f00000000000000604482015260640161072f565b600f54611d26600184612913565b611d309190612827565b611d3a8385612827565b6115d49190612913565b80341015611d945760405162461bcd60e51b815260206004820152601e60248201527f4a6f6b6572733a204e65656420746f2073656e64206d6f7265204554482e0000604482015260640161072f565b8034111561173457336108fc611daa8334612913565b6040518115909202916000818181858888f193505050501580156117d8573d6000803e3d6000fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e599033908990889088906004016129a5565b6020604051808303816000875af1925050508015611e94575060408051601f3d908101601f19168201909252611e91918101906129e2565b60015b611eef573d808015611ec2576040519150601f19603f3d011682016040523d82523d6000602084013e611ec7565b606091505b508051611ee7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610867906127d6565b606081611f405750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f6a5780611f5481612874565b9150611f639050600a83612a15565b9150611f44565b60008167ffffffffffffffff811115611f8557611f85612642565b6040519080825280601f01601f191660200182016040528015611faf576020820181803683370190505b5090505b8415611f0557611fc4600183612913565b9150611fd1600a86612a29565b611fdc906030612846565b60f81b818381518110611ff157611ff161285e565b60200101906001600160f81b031916908160001a905350612013600a86612a15565b9450611fb3565b6109b783838360016000546001600160a01b03851661204b57604051622e076360e81b815260040160405180910390fd5b836120695760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561211b57506001600160a01b0387163b15155b156121a4575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461216c6000888480600101955088611e24565b612189576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561212157826000541461219f57600080fd5b6121ea565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156121a5575b506000556119eb565b8280546121ff906127d6565b90600052602060002090601f0160209004810192826122215760008555612267565b82601f1061223a5782800160ff19823516178555612267565b82800160010185558215612267579182015b8281111561226757823582559160200191906001019061224c565b50612273929150612277565b5090565b5b808211156122735760008155600101612278565b6001600160e01b03198116811461173457600080fd5b6000602082840312156122b457600080fd5b81356115d48161228c565b80356001600160a01b03811681146122d657600080fd5b919050565b600080604083850312156122ee57600080fd5b6122f7836122bf565b9150612305602084016122bf565b90509250929050565b60005b83811015612329578181015183820152602001612311565b838111156115505750506000910152565b6000815180845261235281602086016020860161230e565b601f01601f19169290920160200192915050565b6020815260006115d4602083018461233a565b60006020828403121561238b57600080fd5b5035919050565b600080604083850312156123a557600080fd5b6123ae836122bf565b946020939093013593505050565b801515811461173457600080fd5b600080600080606085870312156123e057600080fd5b843567ffffffffffffffff808211156123f857600080fd5b818701915087601f83011261240c57600080fd5b81358181111561241b57600080fd5b8860208260051b850101111561243057600080fd5b602092830196509450508501359150604085013561244d816123bc565b939692955090935050565b634e487b7160e01b600052602160045260246000fd5b602081016004831061249057634e487b7160e01b600052602160045260246000fd5b91905290565b6000806000606084860312156124ab57600080fd5b6124b4846122bf565b92506124c2602085016122bf565b9150604084013590509250925092565b6000602082840312156124e457600080fd5b8135600481106115d457600080fd5b60008060006060848603121561250857600080fd5b612511846122bf565b925060208401359150612526604085016122bf565b90509250925092565b6000806020838503121561254257600080fd5b823567ffffffffffffffff8082111561255a57600080fd5b818501915085601f83011261256e57600080fd5b81358181111561257d57600080fd5b86602082850101111561258f57600080fd5b60209290920196919550909350505050565b600080600080600060a086880312156125b957600080fd5b8535945060208601359350604086013560ff811681146125d857600080fd5b94979396509394606081013594506080013592915050565b60006020828403121561260257600080fd5b6115d4826122bf565b6000806040838503121561261e57600080fd5b612627836122bf565b91506020830135612637816123bc565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561266e57600080fd5b612677856122bf565b9350612685602086016122bf565b925060408501359150606085013567ffffffffffffffff808211156126a957600080fd5b818701915087601f8301126126bd57600080fd5b8135818111156126cf576126cf612642565b604051601f8201601f19908116603f011681019083821181831017156126f7576126f7612642565b816040528281528a602084870101111561271057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156127b257600080fd5b5051919050565b6000602082840312156127cb57600080fd5b81516115d4816123bc565b600181811c908216806127ea57607f821691505b6020821081141561280b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561284157612841612811565b500290565b6000821982111561285957612859612811565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561288857612888612811565b5060010190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526035908201527f4a6f6b6572733a204d617820706572206d696e7420616d6f756e7420706572206040820152743a3930b739b0b1ba34b7b71032bc31b2b2b232b21760591b606082015260800190565b60008282101561292557612925612811565b500390565b6000835161293c81846020880161230e565b83519083019061295081836020880161230e565b01949350505050565b60408152600061296c604083018561233a565b905060018060a01b03831660208301529392505050565b6000835161299581846020880161230e565b9190910191825250602001919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129d89083018461233a565b9695505050505050565b6000602082840312156129f457600080fd5b81516115d48161228c565b634e487b7160e01b600052601260045260246000fd5b600082612a2457612a246129ff565b500490565b600082612a3857612a386129ff565b50069056fea2646970667358221220552290395d3eee48b9fa7f2331a0eaeb4c758e7fd2605b39bd93da21c8a9b51a64736f6c634300080c003368747470733a2f2f6170692e736c616d6a6f6b6572732e636f6d2f6a6f6b65722f000000000000000000000000fe64229c264ba92e4842454a287d741657e792fb0000000000000000000000000000000000000000000000000000000000000370
Deployed Bytecode
0x60806040526004361061020f5760003560e01c80634b09b72a116101185780638da5cb5b116100a0578063b88d4fde1161006f578063b88d4fde146105f1578063c87b56dd14610611578063e985e9c514610631578063f0c129ac1461067a578063f2fde38b1461069a57600080fd5b80638da5cb5b1461058b57806395d89b41146105a9578063a0712d68146105be578063a22cb465146105d157600080fd5b806365bc1365116100e757806365bc13651461050e5780636c0360eb146105215780636c19e7831461053657806370a0823114610556578063715018a61461057657600080fd5b80634b09b72a14610484578063507e094f1461049a57806355f804b3146104ce5780636352211e146104ee57600080fd5b806323b872dd1161019b578063328d92d61161016a578063328d92d6146103e55780633ccdbb28146103fb5780633ccfd60b1461041b57806342842e0e1461043057806345c0f5331461045057600080fd5b806323b872dd1461036f57806328dc38f91461038f5780632e49d78b146103a55780633009b3c0146103c557600080fd5b8063095ea7b3116101e2578063095ea7b3146102c5578063170e1736146102e557806318160ddd146103055780631b72173e14610328578063200d2ed21461034857600080fd5b806301ffc9a71461021457806303e73d591461024957806306fdde031461026b578063081812fc1461028d575b600080fd5b34801561022057600080fd5b5061023461022f3660046122a2565b6106ba565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b506102696102643660046122db565b61070c565b005b34801561027757600080fd5b50610280610858565b6040516102409190612366565b34801561029957600080fd5b506102ad6102a8366004612379565b6108ea565b6040516001600160a01b039091168152602001610240565b3480156102d157600080fd5b506102696102e0366004612392565b61092e565b3480156102f157600080fd5b50610269610300366004612379565b6109bc565b34801561031157600080fd5b50600154600054035b604051908152602001610240565b34801561033457600080fd5b506102696103433660046123ca565b610a22565b34801561035457600080fd5b50600a546103629060ff1681565b604051610240919061246e565b34801561037b57600080fd5b5061026961038a366004612496565b610c80565b34801561039b57600080fd5b5061031a600d5481565b3480156103b157600080fd5b506102696103c03660046124d2565b610c8b565b3480156103d157600080fd5b506102696103e0366004612379565b610d08565b3480156103f157600080fd5b5061031a600f5481565b34801561040757600080fd5b506102696104163660046124f3565b610d37565b34801561042757600080fd5b50610269610dc1565b34801561043c57600080fd5b5061026961044b366004612496565b610e47565b34801561045c57600080fd5b5061031a7f00000000000000000000000000000000000000000000000000000000000022b881565b34801561049057600080fd5b5061031a600e5481565b3480156104a657600080fd5b5061031a7f000000000000000000000000000000000000000000000000000000000000000a81565b3480156104da57600080fd5b506102696104e936600461252f565b610e62565b3480156104fa57600080fd5b506102ad610509366004612379565b610ed6565b61026961051c3660046125a1565b610ee8565b34801561052d57600080fd5b506102806110f1565b34801561054257600080fd5b506102696105513660046125f0565b61117f565b34801561056257600080fd5b5061031a6105713660046125f0565b6111f7565b34801561058257600080fd5b50610269611246565b34801561059757600080fd5b506008546001600160a01b03166102ad565b3480156105b557600080fd5b5061028061127c565b6102696105cc366004612379565b61128b565b3480156105dd57600080fd5b506102696105ec36600461260b565b61146f565b3480156105fd57600080fd5b5061026961060c366004612658565b611505565b34801561061d57600080fd5b5061028061062c366004612379565b611556565b34801561063d57600080fd5b5061023461064c3660046122db565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561068657600080fd5b506102696106953660046122db565b6115db565b3480156106a657600080fd5b506102696106b53660046125f0565b61169c565b60006001600160e01b031982166380ac58cd60e01b14806106eb57506001600160e01b03198216635b5e139f60e01b145b8061070657506301ffc9a760e01b6001600160e01b03198316145b92915050565b600260095414156107385760405162461bcd60e51b815260040161072f90612734565b60405180910390fd5b60026009556008546001600160a01b031633146107675760405162461bcd60e51b815260040161072f9061276b565b6040516370a0823160e01b815230600482015282906000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156107b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d491906127a0565b60405163a9059cbb60e01b81526001600160a01b038581166004830152602482018390529192509083169063a9059cbb906044015b6020604051808303816000875af1158015610828573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084c91906127b9565b50506001600955505050565b606060028054610867906127d6565b80601f0160208091040260200160405190810160405280929190818152602001828054610893906127d6565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b60006108f582611737565b610912576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061093982610ed6565b9050806001600160a01b0316836001600160a01b0316141561096e5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061098e575061098c813361064c565b155b156109ac576040516367d9dca160e11b815260040160405180910390fd5b6109b7838383611762565b505050565b6008546001600160a01b031633146109e65760405162461bcd60e51b815260040161072f9061276b565b600e8190556040518181527f413bdfdac79f91a8b92323dd47951f5a6af92c91b7a9a2c21c906f2269eac2c8906020015b60405180910390a150565b60026009541415610a455760405162461bcd60e51b815260040161072f90612734565b60026009556008546001600160a01b03163314610a745760405162461bcd60e51b815260040161072f9061276b565b60008211610abd5760405162461bcd60e51b8152602060048201526016602482015275129bdad95c9cce881a5b9d985b1a5908185b5bdd5b9d60521b604482015260640161072f565b82610b035760405162461bcd60e51b8152602060048201526016602482015275129bdad95c9cce881a5b9d985b1a5908185b5bdd5b9d60521b604482015260640161072f565b6000610b0f8385612827565b90507f00000000000000000000000000000000000000000000000000000000000022b881610b406001546000540390565b610b4a9190612846565b1115610b985760405162461bcd60e51b815260206004820152601b60248201527f4a6f6b6572733a206d617820737570706c792065786365656465640000000000604482015260640161072f565b8115610c0957600e5481600d54610baf9190612846565b1115610c095760405162461bcd60e51b815260206004820152602360248201527f4a6f6b6572733a206d6178207265736572766520616d6f756e7420657863656560448201526219195960ea1b606482015260840161072f565b60005b84811015610c5657610c44868683818110610c2957610c2961285e565b9050602002016020810190610c3e91906125f0565b856117be565b80610c4e81612874565b915050610c0c565b50811561084c5780600d6000828254610c6f9190612846565b909155505050506001600955505050565b6109b78383836117dc565b6008546001600160a01b03163314610cb55760405162461bcd60e51b815260040161072f9061276b565b600a805482919060ff19166001836003811115610cd457610cd4612458565b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610a17919061246e565b6008546001600160a01b03163314610d325760405162461bcd60e51b815260040161072f9061276b565b600f55565b60026009541415610d5a5760405162461bcd60e51b815260040161072f90612734565b60026009556008546001600160a01b03163314610d895760405162461bcd60e51b815260040161072f9061276b565b60405163a9059cbb60e01b81526001600160a01b0382811660048301526024820184905284919082169063a9059cbb90604401610809565b60026009541415610de45760405162461bcd60e51b815260040161072f90612734565b60026009556008546001600160a01b03163314610e135760405162461bcd60e51b815260040161072f9061276b565b60405133904780156108fc02916000818181858888f19350505050158015610e3f573d6000803e3d6000fd5b506001600955565b6109b783838360405180602001604052806000815250611505565b6008546001600160a01b03163314610e8c5760405162461bcd60e51b815260040161072f9061276b565b610e98600b83836121f3565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf68282604051610eca92919061288f565b60405180910390a15050565b6000610ee1826119f2565b5192915050565b60026009541415610f0b5760405162461bcd60e51b815260040161072f90612734565b60026009556001600a5460ff166003811115610f2957610f29612458565b14610f765760405162461bcd60e51b815260206004820152601e60248201527f4a6f6b6572733a2050726573616c65206973206e6f74206163746976652e0000604482015260640161072f565b610fa26040518060400160405280600781526020016670726573616c6560c81b81525085858585611b0e565b7f000000000000000000000000000000000000000000000000000000000000000a851115610fe25760405162461bcd60e51b815260040161072f906128be565b7f00000000000000000000000000000000000000000000000000000000000022b8600d54600e54876110176001546000540390565b6110219190612846565b61102b9190612846565b6110359190612913565b11156110835760405162461bcd60e51b815260206004820152601c60248201527f4a6f6b6572733a204d617820737570706c792065786365656465642e00000000604482015260640161072f565b600061109666d529ae9e86000087611cc7565b90506110a233876117be565b6110ab81611d44565b60408051338152602081018890527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a15050600160095550505050565b600b80546110fe906127d6565b80601f016020809104026020016040519081016040528092919081815260200182805461112a906127d6565b80156111775780601f1061114c57610100808354040283529160200191611177565b820191906000526020600020905b81548152906001019060200180831161115a57829003601f168201915b505050505081565b6008546001600160a01b031633146111a95760405162461bcd60e51b815260040161072f9061276b565b600c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f5719a5656c5cfdaafa148ecf366fd3b0a7fae06449ce2a46225977fb7417e29d90602001610a17565b60006001600160a01b038216611220576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146112705760405162461bcd60e51b815260040161072f9061276b565b61127a6000611dd2565b565b606060038054610867906127d6565b600260095414156112ae5760405162461bcd60e51b815260040161072f90612734565b60026009819055600a5460ff1660038111156112cc576112cc612458565b146113245760405162461bcd60e51b815260206004820152602260248201527f4a6f6b6572733a205075626c69632073616c65206973206e6f74206163746976604482015261329760f11b606482015260840161072f565b7f000000000000000000000000000000000000000000000000000000000000000a8111156113645760405162461bcd60e51b815260040161072f906128be565b7f00000000000000000000000000000000000000000000000000000000000022b8600d54600e54836113996001546000540390565b6113a39190612846565b6113ad9190612846565b6113b79190612913565b11156114055760405162461bcd60e51b815260206004820152601c60248201527f4a6f6b6572733a204d617820737570706c792065786365656465642e00000000604482015260640161072f565b600061141866f8b0a10e47000083611cc7565b905061142433836117be565b61142d81611d44565b60408051338152602081018490527f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe910160405180910390a150506001600955565b6001600160a01b0382163314156114995760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115108484846117dc565b6001600160a01b0383163b15158015611532575061153084848484611e24565b155b15611550576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061156182611737565b61157e57604051630a14c4b560e41b815260040160405180910390fd5b6000611588611f0d565b90508051600014156115a957604051806020016040528060008152506115d4565b806115b384611f1c565b6040516020016115c492919061292a565b6040516020818303038152906040525b9392505050565b600260095414156115fe5760405162461bcd60e51b815260040161072f90612734565b60026009556008546001600160a01b0316331461162d5760405162461bcd60e51b815260040161072f9061276b565b60405163a22cb46560e01b81526001600160a01b0382811660048301526001602483015283919082169063a22cb46590604401600060405180830381600087803b15801561167a57600080fd5b505af115801561168e573d6000803e3d6000fd5b505060016009555050505050565b6008546001600160a01b031633146116c65760405162461bcd60e51b815260040161072f9061276b565b6001600160a01b03811661172b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161072f565b61173481611dd2565b50565b6000805482108015610706575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6117d882826040518060200160405280600081525061201a565b5050565b60006117e7826119f2565b80519091506000906001600160a01b0316336001600160a01b0316148061181557508151611815903361064c565b80611830575033611825846108ea565b6001600160a01b0316145b90508061185057604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146118855760405162a1148160e81b815260040160405180910390fd5b6001600160a01b0384166118ac57604051633a954ecd60e21b815260040160405180910390fd5b6118bc6000848460000151611762565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166119a8576000548110156119a8578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181019190915281600054811015611af557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290611af35780516001600160a01b031615611a89579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611aee579392505050565b611a89565b505b604051636f96cda160e11b815260040160405180910390fd5b838533604051602001611b22929190612959565b6040516020818303038152906040528051906020012014611b935760405162461bcd60e51b815260206004820152602560248201527f546869732068617368206973206e6f742076616c696420666f72206d73672e7360448201526432b73232b960d91b606482015260840161072f565b60006040518060400160405280601c81526020017f19457468657265756d205369676e6564204d6573736167653a0a333200000000815250905060008186604051602001611be2929190612983565b60408051601f1981840301815282825280516020918201206000845290830180835281905260ff8816918301919091526060820186905260808201859052915060019060a0016020604051602081039080840390855afa158015611c4a573d6000803e3d6000fd5b5050604051601f190151600c546001600160a01b039081169116149050611cbe5760405162461bcd60e51b815260206004820152602260248201527f4e6f74207369676e656420627920746865206f6666696369616c207369676e65604482015261391760f11b606482015260840161072f565b50505050505050565b6000808211611d185760405162461bcd60e51b815260206004820152601960248201527f4d7573742062652067726561746572207468616e207a65726f00000000000000604482015260640161072f565b600f54611d26600184612913565b611d309190612827565b611d3a8385612827565b6115d49190612913565b80341015611d945760405162461bcd60e51b815260206004820152601e60248201527f4a6f6b6572733a204e65656420746f2073656e64206d6f7265204554482e0000604482015260640161072f565b8034111561173457336108fc611daa8334612913565b6040518115909202916000818181858888f193505050501580156117d8573d6000803e3d6000fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611e599033908990889088906004016129a5565b6020604051808303816000875af1925050508015611e94575060408051601f3d908101601f19168201909252611e91918101906129e2565b60015b611eef573d808015611ec2576040519150601f19603f3d011682016040523d82523d6000602084013e611ec7565b606091505b508051611ee7576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b8054610867906127d6565b606081611f405750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611f6a5780611f5481612874565b9150611f639050600a83612a15565b9150611f44565b60008167ffffffffffffffff811115611f8557611f85612642565b6040519080825280601f01601f191660200182016040528015611faf576020820181803683370190505b5090505b8415611f0557611fc4600183612913565b9150611fd1600a86612a29565b611fdc906030612846565b60f81b818381518110611ff157611ff161285e565b60200101906001600160f81b031916908160001a905350612013600a86612a15565b9450611fb3565b6109b783838360016000546001600160a01b03851661204b57604051622e076360e81b815260040160405180910390fd5b836120695760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561211b57506001600160a01b0387163b15155b156121a4575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461216c6000888480600101955088611e24565b612189576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561212157826000541461219f57600080fd5b6121ea565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156121a5575b506000556119eb565b8280546121ff906127d6565b90600052602060002090601f0160209004810192826122215760008555612267565b82601f1061223a5782800160ff19823516178555612267565b82800160010185558215612267579182015b8281111561226757823582559160200191906001019061224c565b50612273929150612277565b5090565b5b808211156122735760008155600101612278565b6001600160e01b03198116811461173457600080fd5b6000602082840312156122b457600080fd5b81356115d48161228c565b80356001600160a01b03811681146122d657600080fd5b919050565b600080604083850312156122ee57600080fd5b6122f7836122bf565b9150612305602084016122bf565b90509250929050565b60005b83811015612329578181015183820152602001612311565b838111156115505750506000910152565b6000815180845261235281602086016020860161230e565b601f01601f19169290920160200192915050565b6020815260006115d4602083018461233a565b60006020828403121561238b57600080fd5b5035919050565b600080604083850312156123a557600080fd5b6123ae836122bf565b946020939093013593505050565b801515811461173457600080fd5b600080600080606085870312156123e057600080fd5b843567ffffffffffffffff808211156123f857600080fd5b818701915087601f83011261240c57600080fd5b81358181111561241b57600080fd5b8860208260051b850101111561243057600080fd5b602092830196509450508501359150604085013561244d816123bc565b939692955090935050565b634e487b7160e01b600052602160045260246000fd5b602081016004831061249057634e487b7160e01b600052602160045260246000fd5b91905290565b6000806000606084860312156124ab57600080fd5b6124b4846122bf565b92506124c2602085016122bf565b9150604084013590509250925092565b6000602082840312156124e457600080fd5b8135600481106115d457600080fd5b60008060006060848603121561250857600080fd5b612511846122bf565b925060208401359150612526604085016122bf565b90509250925092565b6000806020838503121561254257600080fd5b823567ffffffffffffffff8082111561255a57600080fd5b818501915085601f83011261256e57600080fd5b81358181111561257d57600080fd5b86602082850101111561258f57600080fd5b60209290920196919550909350505050565b600080600080600060a086880312156125b957600080fd5b8535945060208601359350604086013560ff811681146125d857600080fd5b94979396509394606081013594506080013592915050565b60006020828403121561260257600080fd5b6115d4826122bf565b6000806040838503121561261e57600080fd5b612627836122bf565b91506020830135612637816123bc565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561266e57600080fd5b612677856122bf565b9350612685602086016122bf565b925060408501359150606085013567ffffffffffffffff808211156126a957600080fd5b818701915087601f8301126126bd57600080fd5b8135818111156126cf576126cf612642565b604051601f8201601f19908116603f011681019083821181831017156126f7576126f7612642565b816040528281528a602084870101111561271057600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000602082840312156127b257600080fd5b5051919050565b6000602082840312156127cb57600080fd5b81516115d4816123bc565b600181811c908216806127ea57607f821691505b6020821081141561280b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561284157612841612811565b500290565b6000821982111561285957612859612811565b500190565b634e487b7160e01b600052603260045260246000fd5b600060001982141561288857612888612811565b5060010190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208082526035908201527f4a6f6b6572733a204d617820706572206d696e7420616d6f756e7420706572206040820152743a3930b739b0b1ba34b7b71032bc31b2b2b232b21760591b606082015260800190565b60008282101561292557612925612811565b500390565b6000835161293c81846020880161230e565b83519083019061295081836020880161230e565b01949350505050565b60408152600061296c604083018561233a565b905060018060a01b03831660208301529392505050565b6000835161299581846020880161230e565b9190910191825250602001919050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129d89083018461233a565b9695505050505050565b6000602082840312156129f457600080fd5b81516115d48161228c565b634e487b7160e01b600052601260045260246000fd5b600082612a2457612a246129ff565b500490565b600082612a3857612a386129ff565b50069056fea2646970667358221220552290395d3eee48b9fa7f2331a0eaeb4c758e7fd2605b39bd93da21c8a9b51a64736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000fe64229c264ba92e4842454a287d741657e792fb0000000000000000000000000000000000000000000000000000000000000370
-----Decoded View---------------
Arg [0] : signer (address): 0xFe64229C264Ba92e4842454a287d741657e792fB
Arg [1] : _reserveAmount (uint256): 880
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000fe64229c264ba92e4842454a287d741657e792fb
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000370
Deployed Bytecode Sourcemap
1582:5879:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27666:300:1;;;;;;;;;;-1:-1:-1;27666:300:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:2;;558:22;540:41;;528:2;513:18;27666:300:1;;;;;;;;7190:269:0;;;;;;;;;;-1:-1:-1;7190:269:0;;;;;:::i;:::-;;:::i;:::-;;30962:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32418:200::-;;;;;;;;;;-1:-1:-1;32418:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2135:32:2;;;2117:51;;2105:2;2090:18;32418:200:1;1971:203:2;31995:362:1;;;;;;;;;;-1:-1:-1;31995:362:1;;;;;:::i;:::-;;:::i;5761:180:0:-;;;;;;;;;;-1:-1:-1;5761:180:0;;;;;:::i;:::-;;:::i;26937:297:1:-;;;;;;;;;;-1:-1:-1;27187:12:1;;26981:7;27171:13;:28;26937:297;;;2584:25:2;;;2572:2;2557:18;26937:297:1;2438:177:2;2596:853:0;;;;;;;;;;-1:-1:-1;2596:853:0;;;;;:::i;:::-;;:::i;1743:20::-;;;;;;;;;;-1:-1:-1;1743:20:0;;;;;;;;;;;;;;;:::i;33249:164:1:-;;;;;;;;;;-1:-1:-1;33249:164:1;;;;;:::i;:::-;;:::i;1863:30:0:-;;;;;;;;;;;;;;;;5631:124;;;;;;;;;;-1:-1:-1;5631:124:0;;;;;:::i;:::-;;:::i;5481:144::-;;;;;;;;;;-1:-1:-1;5481:144:0;;;;;:::i;:::-;;:::i;2031:52::-;;;;;;;;;;;;;;;;6968:216;;;;;;;;;;-1:-1:-1;6968:216:0;;;;;:::i;:::-;;:::i;6564:120::-;;;;;;;;;;;;;:::i;33479:179:1:-;;;;;;;;;;-1:-1:-1;33479:179:1;;;;;:::i;:::-;;:::i;1945:46:0:-;;;;;;;;;;;;;;;1997:28;;;;;;;;;;;;;;;;1899:40;;;;;;;;;;;;;;;6076:145;;;;;;;;;;-1:-1:-1;6076:145:0;;;;;:::i;:::-;;:::i;30778:122:1:-;;;;;;;;;;-1:-1:-1;30778:122:1;;;;;:::i;:::-;;:::i;3998:678:0:-;;;;;;:::i;:::-;;:::i;1769:59::-;;;;;;;;;;;;;:::i;5947:123::-;;;;;;;;;;-1:-1:-1;5947:123:0;;;;;:::i;:::-;;:::i;28025:203:1:-;;;;;;;;;;-1:-1:-1;28025:203:1;;;;;:::i;:::-;;:::i;46307:101::-;;;;;;;;;;;;;:::i;45675:85::-;;;;;;;;;;-1:-1:-1;45747:6:1;;-1:-1:-1;;;;;45747:6:1;45675:85;;31124:102;;;;;;;;;;;;;:::i;4682:549:0:-;;;;;;:::i;:::-;;:::i;32685:274:1:-;;;;;;;;;;-1:-1:-1;32685:274:1;;;;;:::i;:::-;;:::i;33724:359::-;;;;;;;;;;-1:-1:-1;33724:359:1;;;;;:::i;:::-;;:::i;31292:313::-;;;;;;;;;;-1:-1:-1;31292:313:1;;;;;:::i;:::-;;:::i;33025:162::-;;;;;;;;;;-1:-1:-1;33025:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;33145:25:1;;;33122:4;33145:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33025:162;6745:217:0;;;;;;;;;;-1:-1:-1;6745:217:0;;;;;:::i;:::-;;:::i;46557:198:1:-;;;;;;;;;;-1:-1:-1;46557:198:1;;;;;:::i;:::-;;:::i;27666:300::-;27768:4;-1:-1:-1;;;;;;27803:40:1;;-1:-1:-1;;;27803:40:1;;:104;;-1:-1:-1;;;;;;;27859:48:1;;-1:-1:-1;;;27859:48:1;27803:104;:156;;;-1:-1:-1;;;;;;;;;;13170:40:1;;;27923:36;27784:175;27666:300;-1:-1:-1;;27666:300:1:o;7190:269:0:-;21547:1:1;22128:7;;:19;;22120:63;;;;-1:-1:-1;;;22120:63:1;;;;;;;:::i;:::-;;;;;;;;;21547:1;22258:7;:18;45747:6;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23:::1;45879:68;;;;-1:-1:-1::0;;;45879:68:1::1;;;;;;;:::i;:::-;7368:38:0::2;::::0;-1:-1:-1;;;7368:38:0;;7400:4:::2;7368:38;::::0;::::2;2117:51:2::0;7325:14:0;;7295:20:::2;::::0;-1:-1:-1;;;;;7368:23:0;::::2;::::0;::::2;::::0;2090:18:2;;7368:38:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7416:36;::::0;-1:-1:-1;;;7416:36:0;;-1:-1:-1;;;;;9009:32:2;;;7416:36:0::2;::::0;::::2;8991:51:2::0;9058:18;;;9051:34;;;7350:56:0;;-1:-1:-1;7416:22:0;;::::2;::::0;::::2;::::0;8964:18:2;;7416:36:0::2;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;21504:1:1;22431:7;:22;-1:-1:-1;;;7190:269:0:o;30962:98:1:-;31016:13;31048:5;31041:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30962:98;:::o;32418:200::-;32486:7;32510:16;32518:7;32510;:16::i;:::-;32505:64;;32535:34;;-1:-1:-1;;;32535:34:1;;;;;;;;;;;32505:64;-1:-1:-1;32587:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;32587:24:1;;32418:200::o;31995:362::-;32067:13;32083:24;32099:7;32083:15;:24::i;:::-;32067:40;;32127:5;-1:-1:-1;;;;;32121:11:1;:2;-1:-1:-1;;;;;32121:11:1;;32117:48;;;32141:24;;-1:-1:-1;;;32141:24:1;;;;;;;;;;;32117:48;23204:10;-1:-1:-1;;;;;32180:21:1;;;;;;:63;;-1:-1:-1;32206:37:1;32223:5;23204:10;33025:162;:::i;32206:37::-;32205:38;32180:63;32176:136;;;32266:35;;-1:-1:-1;;;32266:35:1;;;;;;;;;;;32176:136;32322:28;32331:2;32335:7;32344:5;32322:8;:28::i;:::-;32057:300;31995:362;;:::o;5761:180:0:-;45747:6:1;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23;45879:68;;;;-1:-1:-1;;;45879:68:1;;;;;;;:::i;:::-;5845:13:0::1;:34:::0;;;5894:40:::1;::::0;2584:25:2;;;5894:40:0::1;::::0;2572:2:2;2557:18;5894:40:0::1;;;;;;;;5761:180:::0;:::o;2596:853::-;21547:1:1;22128:7;;:19;;22120:63;;;;-1:-1:-1;;;22120:63:1;;;;;;;:::i;:::-;21547:1;22258:7;:18;45747:6;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23:::1;45879:68;;;;-1:-1:-1::0;;;45879:68:1::1;;;;;;;:::i;:::-;2864:1:0::2;2850:11;:15;2842:50;;;::::0;-1:-1:-1;;;2842:50:0;;9933:2:2;2842:50:0::2;::::0;::::2;9915:21:2::0;9972:2;9952:18;;;9945:30;-1:-1:-1;;;9991:18:2;;;9984:52;10053:18;;2842:50:0::2;9731:346:2::0;2842:50:0::2;2910:21:::0;2902:56:::2;;;::::0;-1:-1:-1;;;2902:56:0;;9933:2:2;2902:56:0::2;::::0;::::2;9915:21:2::0;9972:2;9952:18;;;9945:30;-1:-1:-1;;;9991:18:2;;;9984:52;10053:18;;2902:56:0::2;9731:346:2::0;2902:56:0::2;2969:14;2986:31;3006:11:::0;2986:10;:31:::2;:::i;:::-;2969:48;;3061:14;3051:6;3035:13;27187:12:1::0;;26981:7;27171:13;:28;;26937:297;3035:13:0::2;:22;;;;:::i;:::-;:40;;3027:80;;;::::0;-1:-1:-1;;;3027:80:0;;10722:2:2;3027:80:0::2;::::0;::::2;10704:21:2::0;10761:2;10741:18;;;10734:30;10800:29;10780:18;;;10773:57;10847:18;;3027:80:0::2;10520:351:2::0;3027:80:0::2;3121:8;3118:126;;;3180:13;;3170:6;3152:15;;:24;;;;:::i;:::-;:41;;3144:89;;;::::0;-1:-1:-1;;;3144:89:0;;11078:2:2;3144:89:0::2;::::0;::::2;11060:21:2::0;11117:2;11097:18;;;11090:30;11156:34;11136:18;;;11129:62;-1:-1:-1;;;11207:18:2;;;11200:33;11250:19;;3144:89:0::2;10876:399:2::0;3144:89:0::2;3259:9;3254:109;3274:21:::0;;::::2;3254:109;;;3315:37;3325:10;;3336:1;3325:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;3340:11;3315:9;:37::i;:::-;3297:3:::0;::::2;::::0;::::2;:::i;:::-;;;;3254:109;;;;3384:8;3381:62;;;3426:6;3407:15;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;21504:1:1;22431:7;:22;-1:-1:-1;;;2596:853:0:o;33249:164:1:-;33378:28;33388:4;33394:2;33398:7;33378:9;:28::i;5631:124:0:-;45747:6:1;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23;45879:68;;;;-1:-1:-1;;;45879:68:1;;;;;;;:::i;:::-;5695:6:0::1;:16:::0;;5704:7;;5695:6;-1:-1:-1;;5695:16:0::1;::::0;5704:7;5695:16:::1;::::0;::::1;;;;;;:::i;:::-;;;;;;5726:22;5740:7;5726:22;;;;;;:::i;5481:144::-:0;45747:6:1;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23;45879:68;;;;-1:-1:-1;;;45879:68:1;;;;;;;:::i;:::-;5570:22:0::1;:48:::0;5481:144::o;6968:216::-;21547:1:1;22128:7;;:19;;22120:63;;;;-1:-1:-1;;;22120:63:1;;;;;;;:::i;:::-;21547:1;22258:7;:18;45747:6;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23:::1;45879:68;;;;-1:-1:-1::0;;;45879:68:1::1;;;;;;;:::i;:::-;7141:36:0::2;::::0;-1:-1:-1;;;7141:36:0;;-1:-1:-1;;;;;9009:32:2;;;7141:36:0::2;::::0;::::2;8991:51:2::0;9058:18;;;9051:34;;;7116:14:0;;7141:22;;::::2;::::0;::::2;::::0;8964:18:2;;7141:36:0::2;8817:274:2::0;6564:120:0;21547:1:1;22128:7;;:19;;22120:63;;;;-1:-1:-1;;;22120:63:1;;;;;;;:::i;:::-;21547:1;22258:7;:18;45747:6;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23:::1;45879:68;;;;-1:-1:-1::0;;;45879:68:1::1;;;;;;;:::i;:::-;6626:51:0::2;::::0;6634:10:::2;::::0;6655:21:::2;6626:51:::0;::::2;;;::::0;::::2;::::0;;;6655:21;6634:10;6626:51;::::2;;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;21504:1:1;22431:7;:22;6564:120:0:o;33479:179:1:-;33612:39;33629:4;33635:2;33639:7;33612:39;;;;;;;;;;;;:16;:39::i;6076:145:0:-;45747:6:1;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23;45879:68;;;;-1:-1:-1;;;45879:68:1;;;;;;;:::i;:::-;6153:20:0::1;:7;6163:10:::0;;6153:20:::1;:::i;:::-;;6188:26;6203:10;;6188:26;;;;;;;:::i;:::-;;;;;;;;6076:145:::0;;:::o;30778:122:1:-;30842:7;30868:20;30880:7;30868:11;:20::i;:::-;:25;;30778:122;-1:-1:-1;;30778:122:1:o;3998:678:0:-;21547:1:1;22128:7;;:19;;22120:63;;;;-1:-1:-1;;;22120:63:1;;;;;;;:::i;:::-;21547:1;22258:7;:18;4151:14:0::1;4141:6;::::0;::::1;;:24;::::0;::::1;;;;;;:::i;:::-;;4133:67;;;::::0;-1:-1:-1;;;4133:67:0;;12149:2:2;4133:67:0::1;::::0;::::1;12131:21:2::0;12188:2;12168:18;;;12161:30;12227:32;12207:18;;;12200:60;12277:18;;4133:67:0::1;11947:354:2::0;4133:67:0::1;4219:52;;;;;;;;;;;;;;-1:-1:-1::0;;;4219:52:0::1;;::::0;4244:14:::1;4260:2;4264;4268;4219:13;:52::i;:::-;4300:10;4290:6;:20;;4282:86;;;;-1:-1:-1::0;;;4282:86:0::1;;;;;;;:::i;:::-;4446:14;4427:15;;4411:13;;4402:6;4386:13;27187:12:1::0;;26981:7;27171:13;:28;;26937:297;4386:13:0::1;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:56;;;;:::i;:::-;:74;;4378:115;;;::::0;-1:-1:-1;;;4378:115:0;;13060:2:2;4378:115:0::1;::::0;::::1;13042:21:2::0;13099:2;13079:18;;;13072:30;13138;13118:18;;;13111:58;13186:18;;4378:115:0::1;12858:352:2::0;4378:115:0::1;4503:17;4523:33;4537:10;4549:6;4523:13;:33::i;:::-;4503:53;;4566:29;4576:10;4588:6;4566:9;:29::i;:::-;4605:23;4618:9;4605:12;:23::i;:::-;4643:26;::::0;;4650:10:::1;8991:51:2::0;;9073:2;9058:18;;9051:34;;;4643:26:0::1;::::0;8964:18:2;4643:26:0::1;;;;;;;-1:-1:-1::0;;21504:1:1;22431:7;:22;-1:-1:-1;;;;3998:678:0:o;1769:59::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5947:123::-;45747:6:1;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23;45879:68;;;;-1:-1:-1;;;45879:68:1;;;;;;;:::i;:::-;6011:7:0::1;:16:::0;;-1:-1:-1;;;;;;6011:16:0::1;-1:-1:-1::0;;;;;6011:16:0;::::1;::::0;;::::1;::::0;;;6042:21:::1;::::0;2117:51:2;;;6042:21:0::1;::::0;2105:2:2;2090:18;6042:21:0::1;1971:203:2::0;28025::1;28089:7;-1:-1:-1;;;;;28112:19:1;;28108:60;;28140:28;;-1:-1:-1;;;28140:28:1;;;;;;;;;;;28108:60;-1:-1:-1;;;;;;28193:19:1;;;;;:12;:19;;;;;:27;;;;28025:203::o;46307:101::-;45747:6;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23;45879:68;;;;-1:-1:-1;;;45879:68:1;;;;;;;:::i;:::-;46371:30:::1;46398:1;46371:18;:30::i;:::-;46307:101::o:0;31124:102::-;31180:13;31212:7;31205:14;;;;;:::i;4682:549:0:-;21547:1:1;22128:7;;:19;;22120:63;;;;-1:-1:-1;;;22120:63:1;;;;;;;:::i;:::-;21547:1;22258:7;:18;;;4760:6:0::1;::::0;::::1;;:27;::::0;::::1;;;;;;:::i;:::-;;4752:74;;;::::0;-1:-1:-1;;;4752:74:0;;13417:2:2;4752:74:0::1;::::0;::::1;13399:21:2::0;13456:2;13436:18;;;13429:30;13495:34;13475:18;;;13468:62;-1:-1:-1;;;13546:18:2;;;13539:32;13588:19;;4752:74:0::1;13215:398:2::0;4752:74:0::1;4855:10;4845:6;:20;;4837:86;;;;-1:-1:-1::0;;;4837:86:0::1;;;;;;;:::i;:::-;5001:14;4982:15;;4966:13;;4957:6;4941:13;27187:12:1::0;;26981:7;27171:13;:28;;26937:297;4941:13:0::1;:22;;;;:::i;:::-;:38;;;;:::i;:::-;:56;;;;:::i;:::-;:74;;4933:115;;;::::0;-1:-1:-1;;;4933:115:0;;13060:2:2;4933:115:0::1;::::0;::::1;13042:21:2::0;13099:2;13079:18;;;13072:30;13138;13118:18;;;13111:58;13186:18;;4933:115:0::1;12858:352:2::0;4933:115:0::1;5058:17;5078:33;5092:10;5104:6;5078:13;:33::i;:::-;5058:53;;5121:29;5131:10;5143:6;5121:9;:29::i;:::-;5160:23;5173:9;5160:12;:23::i;:::-;5198:26;::::0;;5205:10:::1;8991:51:2::0;;9073:2;9058:18;;9051:34;;;5198:26:0::1;::::0;8964:18:2;5198:26:0::1;;;;;;;-1:-1:-1::0;;21504:1:1;22431:7;:22;4682:549:0:o;32685:274:1:-;-1:-1:-1;;;;;32775:24:1;;23204:10;32775:24;32771:54;;;32808:17;;-1:-1:-1;;;32808:17:1;;;;;;;;;;;32771:54;23204:10;32836:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32836:42:1;;;;;;;;;;;;:53;;-1:-1:-1;;32836:53:1;;;;;;;;;;32904:48;;540:41:2;;;32836:42:1;;23204:10;32904:48;;513:18:2;32904:48:1;;;;;;;32685:274;;:::o;33724:359::-;33885:28;33895:4;33901:2;33905:7;33885:9;:28::i;:::-;-1:-1:-1;;;;;33927:13:1;;3541:19;:23;;33927:76;;;;;33947:56;33978:4;33984:2;33988:7;33997:5;33947:30;:56::i;:::-;33946:57;33927:76;33923:154;;;34026:40;;-1:-1:-1;;;34026:40:1;;;;;;;;;;;33923:154;33724:359;;;;:::o;31292:313::-;31365:13;31395:16;31403:7;31395;:16::i;:::-;31390:59;;31420:29;;-1:-1:-1;;;31420:29:1;;;;;;;;;;;31390:59;31460:21;31484:10;:8;:10::i;:::-;31460:34;;31517:7;31511:21;31536:1;31511:26;;:87;;;;;;;;;;;;;;;;;31564:7;31573:18;:7;:16;:18::i;:::-;31547:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31511:87;31504:94;31292:313;-1:-1:-1;;;31292:313:1:o;6745:217:0:-;21547:1:1;22128:7;;:19;;22120:63;;;;-1:-1:-1;;;22120:63:1;;;;;;;:::i;:::-;21547:1;22258:7;:18;45747:6;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23:::1;45879:68;;;;-1:-1:-1::0;;;45879:68:1::1;;;;;;;:::i;:::-;6910:45:0::2;::::0;-1:-1:-1;;;6910:45:0;;-1:-1:-1;;;;;14279:32:2;;;6910:45:0::2;::::0;::::2;14261:51:2::0;6950:4:0::2;14328:18:2::0;;;14321:50;6882:17:0;;6910:34;;::::2;::::0;::::2;::::0;14234:18:2;;6910:45:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;21504:1:1;22431:7;:22;-1:-1:-1;;;;;6745:217:0:o;46557:198:1:-;45747:6;;-1:-1:-1;;;;;45747:6:1;23204:10;45887:23;45879:68;;;;-1:-1:-1;;;45879:68:1;;;;;;;:::i;:::-;-1:-1:-1;;;;;46645:22:1;::::1;46637:73;;;::::0;-1:-1:-1;;;46637:73:1;;14584:2:2;46637:73:1::1;::::0;::::1;14566:21:2::0;14623:2;14603:18;;;14596:30;14662:34;14642:18;;;14635:62;-1:-1:-1;;;14713:18:2;;;14706:36;14759:19;;46637:73:1::1;14382:402:2::0;46637:73:1::1;46720:28;46739:8;46720:18;:28::i;:::-;46557:198:::0;:::o;34329:184::-;34386:4;34449:13;;34439:7;:23;34409:97;;;;-1:-1:-1;;34479:20:1;;;;:11;:20;;;;;:27;-1:-1:-1;;;34479:27:1;;;;34478:28;;34329:184::o;41745:189::-;41855:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41855:29:1;-1:-1:-1;;;;;41855:29:1;;;;;;;;;41899:28;;41855:24;;41899:28;;;;;;;41745:189;;;:::o;34519:102::-;34587:27;34597:2;34601:8;34587:27;;;;;;;;;;;;:9;:27::i;:::-;34519:102;;:::o;37351:2067::-;37461:35;37499:20;37511:7;37499:11;:20::i;:::-;37572:18;;37461:58;;-1:-1:-1;37530:22:1;;-1:-1:-1;;;;;37556:34:1;23204:10;-1:-1:-1;;;;;37556:34:1;;:100;;;-1:-1:-1;37623:18:1;;37606:50;;23204:10;33025:162;:::i;37606:50::-;37556:152;;;-1:-1:-1;23204:10:1;37672:20;37684:7;37672:11;:20::i;:::-;-1:-1:-1;;;;;37672:36:1;;37556:152;37530:179;;37725:17;37720:66;;37751:35;;-1:-1:-1;;;37751:35:1;;;;;;;;;;;37720:66;37822:4;-1:-1:-1;;;;;37800:26:1;:13;:18;;;-1:-1:-1;;;;;37800:26:1;;37796:67;;37835:28;;-1:-1:-1;;;37835:28:1;;;;;;;;;;;37796:67;-1:-1:-1;;;;;37877:16:1;;37873:52;;37902:23;;-1:-1:-1;;;37902:23:1;;;;;;;;;;;37873:52;38041:49;38058:1;38062:7;38071:13;:18;;;38041:8;:49::i;:::-;-1:-1:-1;;;;;38380:18:1;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38380:31:1;;;;;;;-1:-1:-1;;38380:31:1;;;;;;;38425:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38425:29:1;;;;;;;;;;;38469:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38513:61:1;;;;-1:-1:-1;;;38558:15:1;38513:61;;;;;;;;;;;38844:11;;;38873:24;;;;;:29;38844:11;;38873:29;38869:438;;39095:13;;39081:11;:27;39077:216;;;39164:18;;;39132:24;;;:11;:24;;;;;;;;:50;;39246:28;;;;39204:70;;-1:-1:-1;;;39204:70:1;-1:-1:-1;;;;;;39204:70:1;;;-1:-1:-1;;;;;39132:50:1;;;39204:70;;;;;;;39077:216;38356:961;39351:7;39347:2;-1:-1:-1;;;;;39332:27:1;39341:4;-1:-1:-1;;;;;39332:27:1;;;;;;;;;;;39369:42;37451:1967;;37351:2067;;;:::o;29638:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29747:7:1;29827:13;;29820:4;:20;29789:868;;;29860:31;29894:17;;;:11;:17;;;;;;;;;29860:51;;;;;;;;;-1:-1:-1;;;;;29860:51:1;;;;-1:-1:-1;;;29860:51:1;;;;;;;;;;;-1:-1:-1;;;29860:51:1;;;;;;;;;;;;;;29929:714;;29978:14;;-1:-1:-1;;;;;29978:28:1;;29974:99;;30041:9;29638:1083;-1:-1:-1;;;29638:1083:1:o;29974:99::-;-1:-1:-1;;;30409:6:1;30453:17;;;;:11;:17;;;;;;;;;30441:29;;;;;;;;;-1:-1:-1;;;;;30441:29:1;;;;;-1:-1:-1;;;30441:29:1;;;;;;;;;;;-1:-1:-1;;;30441:29:1;;;;;;;;;;;;;30500:28;30496:107;;30567:9;29638:1083;-1:-1:-1;;;29638:1083:1:o;30496:107::-;30370:255;;;29842:815;29789:868;30683:31;;-1:-1:-1;;;30683:31:1;;;;;;;;;;;3455:537:0;3640:14;3613:9;3624:10;3602:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3592:44;;;;;;:62;3584:112;;;;-1:-1:-1;;;3584:112:0;;15313:2:2;3584:112:0;;;15295:21:2;15352:2;15332:18;;;15325:30;15391:34;15371:18;;;15364:62;-1:-1:-1;;;15442:18:2;;;15435:35;15487:19;;3584:112:0;15111:401:2;3584:112:0;3728:19;:56;;;;;;;;;;;;;;;;;;;3794:27;3851:6;3859:14;3834:40;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3834:40:0;;;;;;;;;3824:51;;3834:40;3824:51;;;;3904:42;;;;;;;;;16119:25:2;;;16192:4;16180:17;;16160:18;;;16153:45;;;;16214:18;;;16207:34;;;16257:18;;;16250:34;;;3824:51:0;-1:-1:-1;3904:42:0;;16091:19:2;;3904:42:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;3904:42:0;;-1:-1:-1;;3904:42:0;;3893:7;;-1:-1:-1;;;;;3893:7:0;;;:53;;;;-1:-1:-1;3885:100:0;;;;-1:-1:-1;;;3885:100:0;;16497:2:2;3885:100:0;;;16479:21:2;16536:2;16516:18;;;16509:30;16575:34;16555:18;;;16548:62;-1:-1:-1;;;16626:18:2;;;16619:32;16668:19;;3885:100:0;16295:398:2;3885:100:0;3574:418;;3455:537;;;;;:::o;5237:238::-;5317:7;5355:1;5343:9;:13;5335:51;;;;-1:-1:-1;;;5335:51:0;;16900:2:2;5335:51:0;;;16882:21:2;16939:2;16919:18;;;16912:30;16978:27;16958:18;;;16951:55;17023:18;;5335:51:0;16698:349:2;5335:51:0;5445:22;;5428:13;5440:1;5428:9;:13;:::i;:::-;5427:40;;;;:::i;:::-;5405:17;5413:9;5405:5;:17;:::i;:::-;5404:64;;;;:::i;6331:227::-;6407:5;6394:9;:18;;6386:61;;;;-1:-1:-1;;;6386:61:0;;17254:2:2;6386:61:0;;;17236:21:2;17293:2;17273:18;;;17266:30;17332:32;17312:18;;;17305:60;17382:18;;6386:61:0;17052:354:2;6386:61:0;6473:5;6461:9;:17;6457:95;;;6502:10;6494:47;6523:17;6535:5;6523:9;:17;:::i;:::-;6494:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46909:187:1;47001:6;;;-1:-1:-1;;;;;47017:17:1;;;-1:-1:-1;;;;;;47017:17:1;;;;;;;47049:40;;47001:6;;;47017:17;47001:6;;47049:40;;46982:16;;47049:40;46972:124;46909:187;:::o;42415:650::-;42593:72;;-1:-1:-1;;;42593:72:1;;42573:4;;-1:-1:-1;;;;;42593:36:1;;;;;:72;;23204:10;;42644:4;;42650:7;;42659:5;;42593:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42593:72:1;;;;;;;;-1:-1:-1;;42593:72:1;;;;;;;;;;;;:::i;:::-;;;42589:470;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42824:13:1;;42820:229;;42869:40;;-1:-1:-1;;;42869:40:1;;;;;;;;;;;42820:229;43009:6;43003:13;42994:6;42990:2;42986:15;42979:38;42589:470;-1:-1:-1;;;;;;42711:55:1;-1:-1:-1;;;42711:55:1;;-1:-1:-1;42589:470:1;42415:650;;;;;;:::o;6227:98:0:-;6279:13;6311:7;6304:14;;;;;:::i;350:703:1:-;406:13;623:10;619:51;;-1:-1:-1;;649:10:1;;;;;;;;;;;;-1:-1:-1;;;649:10:1;;;;;350:703::o;619:51::-;694:5;679:12;733:75;740:9;;733:75;;765:8;;;;:::i;:::-;;-1:-1:-1;787:10:1;;-1:-1:-1;795:2:1;787:10;;:::i;:::-;;;733:75;;;817:19;849:6;839:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;839:17:1;;817:39;;866:150;873:10;;866:150;;899:11;909:1;899:11;;:::i;:::-;;-1:-1:-1;967:10:1;975:2;967:5;:10;:::i;:::-;954:24;;:2;:24;:::i;:::-;941:39;;924:6;931;924:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;924:56:1;;;;;;;;-1:-1:-1;994:11:1;1003:2;994:11;;:::i;:::-;;;866:150;;34972:157;35090:32;35096:2;35100:8;35110:5;35117:4;35509:20;35532:13;-1:-1:-1;;;;;35559:16:1;;35555:48;;35584:19;;-1:-1:-1;;;35584:19:1;;;;;;;;;;;35555:48;35617:13;35613:44;;35639:18;;-1:-1:-1;;;35639:18:1;;;;;;;;;;;35613:44;-1:-1:-1;;;;;36000:16:1;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;36058:49:1;;36000:44;;;;;;;;36058:49;;;;-1:-1:-1;;36000:44:1;;;;;;36058:49;;;;;;;;;;;;;;;;36122:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36171:66:1;;;;-1:-1:-1;;;36221:15:1;36171:66;;;;;;;;;;36122:25;36315:23;;;36357:4;:23;;;;-1:-1:-1;;;;;;36365:13:1;;3541:19;:23;;36365:15;36353:628;;;36400:309;36430:38;;36455:12;;-1:-1:-1;;;;;36430:38:1;;;36447:1;;36430:38;;36447:1;;36430:38;36495:69;36534:1;36538:2;36542:14;;;;;;36558:5;36495:30;:69::i;:::-;36490:172;;36599:40;;-1:-1:-1;;;36599:40:1;;;;;;;;;;;36490:172;36704:3;36688:12;:19;;36400:309;;36788:12;36771:13;;:29;36767:43;;36802:8;;;36767:43;36353:628;;;36849:118;36879:40;;36904:14;;;;;-1:-1:-1;;;;;36879:40:1;;;36896:1;;36879:40;;36896:1;;36879:40;36962:3;36946:12;:19;;36849:118;;36353:628;-1:-1:-1;36994:13:1;:28;37042:60;33724:359;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:2;-1:-1:-1;;;;;;88:32:2;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:173::-;660:20;;-1:-1:-1;;;;;709:31:2;;699:42;;689:70;;755:1;752;745:12;689:70;592:173;;;:::o;770:260::-;838:6;846;899:2;887:9;878:7;874:23;870:32;867:52;;;915:1;912;905:12;867:52;938:29;957:9;938:29;:::i;:::-;928:39;;986:38;1020:2;1009:9;1005:18;986:38;:::i;:::-;976:48;;770:260;;;;;:::o;1035:258::-;1107:1;1117:113;1131:6;1128:1;1125:13;1117:113;;;1207:11;;;1201:18;1188:11;;;1181:39;1153:2;1146:10;1117:113;;;1248:6;1245:1;1242:13;1239:48;;;-1:-1:-1;;1283:1:2;1265:16;;1258:27;1035:258::o;1298:::-;1340:3;1378:5;1372:12;1405:6;1400:3;1393:19;1421:63;1477:6;1470:4;1465:3;1461:14;1454:4;1447:5;1443:16;1421:63;:::i;:::-;1538:2;1517:15;-1:-1:-1;;1513:29:2;1504:39;;;;1545:4;1500:50;;1298:258;-1:-1:-1;;1298:258:2:o;1561:220::-;1710:2;1699:9;1692:21;1673:4;1730:45;1771:2;1760:9;1756:18;1748:6;1730:45;:::i;1786:180::-;1845:6;1898:2;1886:9;1877:7;1873:23;1869:32;1866:52;;;1914:1;1911;1904:12;1866:52;-1:-1:-1;1937:23:2;;1786:180;-1:-1:-1;1786:180:2:o;2179:254::-;2247:6;2255;2308:2;2296:9;2287:7;2283:23;2279:32;2276:52;;;2324:1;2321;2314:12;2276:52;2347:29;2366:9;2347:29;:::i;:::-;2337:39;2423:2;2408:18;;;;2395:32;;-1:-1:-1;;;2179:254:2:o;2620:118::-;2706:5;2699:13;2692:21;2685:5;2682:32;2672:60;;2728:1;2725;2718:12;2743:818;2844:6;2852;2860;2868;2921:2;2909:9;2900:7;2896:23;2892:32;2889:52;;;2937:1;2934;2927:12;2889:52;2977:9;2964:23;3006:18;3047:2;3039:6;3036:14;3033:34;;;3063:1;3060;3053:12;3033:34;3101:6;3090:9;3086:22;3076:32;;3146:7;3139:4;3135:2;3131:13;3127:27;3117:55;;3168:1;3165;3158:12;3117:55;3208:2;3195:16;3234:2;3226:6;3223:14;3220:34;;;3250:1;3247;3240:12;3220:34;3305:7;3298:4;3288:6;3285:1;3281:14;3277:2;3273:23;3269:34;3266:47;3263:67;;;3326:1;3323;3316:12;3263:67;3357:4;3349:13;;;;-1:-1:-1;3381:6:2;-1:-1:-1;;3419:20:2;;3406:34;;-1:-1:-1;3490:2:2;3475:18;;3462:32;3503:28;3462:32;3503:28;:::i;:::-;2743:818;;;;-1:-1:-1;2743:818:2;;-1:-1:-1;;2743:818:2:o;3566:127::-;3627:10;3622:3;3618:20;3615:1;3608:31;3658:4;3655:1;3648:15;3682:4;3679:1;3672:15;3698:337;3839:2;3824:18;;3872:1;3861:13;;3851:144;;3917:10;3912:3;3908:20;3905:1;3898:31;3952:4;3949:1;3942:15;3980:4;3977:1;3970:15;3851:144;4004:25;;;3698:337;:::o;4040:328::-;4117:6;4125;4133;4186:2;4174:9;4165:7;4161:23;4157:32;4154:52;;;4202:1;4199;4192:12;4154:52;4225:29;4244:9;4225:29;:::i;:::-;4215:39;;4273:38;4307:2;4296:9;4292:18;4273:38;:::i;:::-;4263:48;;4358:2;4347:9;4343:18;4330:32;4320:42;;4040:328;;;;;:::o;4373:265::-;4441:6;4494:2;4482:9;4473:7;4469:23;4465:32;4462:52;;;4510:1;4507;4500:12;4462:52;4549:9;4536:23;4588:1;4581:5;4578:12;4568:40;;4604:1;4601;4594:12;4643:328;4720:6;4728;4736;4789:2;4777:9;4768:7;4764:23;4760:32;4757:52;;;4805:1;4802;4795:12;4757:52;4828:29;4847:9;4828:29;:::i;:::-;4818:39;;4904:2;4893:9;4889:18;4876:32;4866:42;;4927:38;4961:2;4950:9;4946:18;4927:38;:::i;:::-;4917:48;;4643:328;;;;;:::o;4976:592::-;5047:6;5055;5108:2;5096:9;5087:7;5083:23;5079:32;5076:52;;;5124:1;5121;5114:12;5076:52;5164:9;5151:23;5193:18;5234:2;5226:6;5223:14;5220:34;;;5250:1;5247;5240:12;5220:34;5288:6;5277:9;5273:22;5263:32;;5333:7;5326:4;5322:2;5318:13;5314:27;5304:55;;5355:1;5352;5345:12;5304:55;5395:2;5382:16;5421:2;5413:6;5410:14;5407:34;;;5437:1;5434;5427:12;5407:34;5482:7;5477:2;5468:6;5464:2;5460:15;5456:24;5453:37;5450:57;;;5503:1;5500;5493:12;5450:57;5534:2;5526:11;;;;;5556:6;;-1:-1:-1;4976:592:2;;-1:-1:-1;;;;4976:592:2:o;5573:543::-;5666:6;5674;5682;5690;5698;5751:3;5739:9;5730:7;5726:23;5722:33;5719:53;;;5768:1;5765;5758:12;5719:53;5804:9;5791:23;5781:33;;5861:2;5850:9;5846:18;5833:32;5823:42;;5915:2;5904:9;5900:18;5887:32;5959:4;5952:5;5948:16;5941:5;5938:27;5928:55;;5979:1;5976;5969:12;5928:55;5573:543;;;;-1:-1:-1;6002:5:2;;6054:2;6039:18;;6026:32;;-1:-1:-1;6105:3:2;6090:19;6077:33;;5573:543;-1:-1:-1;;5573:543:2:o;6121:186::-;6180:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:52;;;6249:1;6246;6239:12;6201:52;6272:29;6291:9;6272:29;:::i;6312:315::-;6377:6;6385;6438:2;6426:9;6417:7;6413:23;6409:32;6406:52;;;6454:1;6451;6444:12;6406:52;6477:29;6496:9;6477:29;:::i;:::-;6467:39;;6556:2;6545:9;6541:18;6528:32;6569:28;6591:5;6569:28;:::i;:::-;6616:5;6606:15;;;6312:315;;;;;:::o;6632:127::-;6693:10;6688:3;6684:20;6681:1;6674:31;6724:4;6721:1;6714:15;6748:4;6745:1;6738:15;6764:1138;6859:6;6867;6875;6883;6936:3;6924:9;6915:7;6911:23;6907:33;6904:53;;;6953:1;6950;6943:12;6904:53;6976:29;6995:9;6976:29;:::i;:::-;6966:39;;7024:38;7058:2;7047:9;7043:18;7024:38;:::i;:::-;7014:48;;7109:2;7098:9;7094:18;7081:32;7071:42;;7164:2;7153:9;7149:18;7136:32;7187:18;7228:2;7220:6;7217:14;7214:34;;;7244:1;7241;7234:12;7214:34;7282:6;7271:9;7267:22;7257:32;;7327:7;7320:4;7316:2;7312:13;7308:27;7298:55;;7349:1;7346;7339:12;7298:55;7385:2;7372:16;7407:2;7403;7400:10;7397:36;;;7413:18;;:::i;:::-;7488:2;7482:9;7456:2;7542:13;;-1:-1:-1;;7538:22:2;;;7562:2;7534:31;7530:40;7518:53;;;7586:18;;;7606:22;;;7583:46;7580:72;;;7632:18;;:::i;:::-;7672:10;7668:2;7661:22;7707:2;7699:6;7692:18;7747:7;7742:2;7737;7733;7729:11;7725:20;7722:33;7719:53;;;7768:1;7765;7758:12;7719:53;7824:2;7819;7815;7811:11;7806:2;7798:6;7794:15;7781:46;7869:1;7864:2;7859;7851:6;7847:15;7843:24;7836:35;7890:6;7880:16;;;;;;;6764:1138;;;;;;;:::o;7907:355::-;8109:2;8091:21;;;8148:2;8128:18;;;8121:30;8187:33;8182:2;8167:18;;8160:61;8253:2;8238:18;;7907:355::o;8267:356::-;8469:2;8451:21;;;8488:18;;;8481:30;8547:34;8542:2;8527:18;;8520:62;8614:2;8599:18;;8267:356::o;8628:184::-;8698:6;8751:2;8739:9;8730:7;8726:23;8722:32;8719:52;;;8767:1;8764;8757:12;8719:52;-1:-1:-1;8790:16:2;;8628:184;-1:-1:-1;8628:184:2:o;9096:245::-;9163:6;9216:2;9204:9;9195:7;9191:23;9187:32;9184:52;;;9232:1;9229;9222:12;9184:52;9264:9;9258:16;9283:28;9305:5;9283:28;:::i;9346:380::-;9425:1;9421:12;;;;9468;;;9489:61;;9543:4;9535:6;9531:17;9521:27;;9489:61;9596:2;9588:6;9585:14;9565:18;9562:38;9559:161;;;9642:10;9637:3;9633:20;9630:1;9623:31;9677:4;9674:1;9667:15;9705:4;9702:1;9695:15;9559:161;;9346:380;;;:::o;10082:127::-;10143:10;10138:3;10134:20;10131:1;10124:31;10174:4;10171:1;10164:15;10198:4;10195:1;10188:15;10214:168;10254:7;10320:1;10316;10312:6;10308:14;10305:1;10302:21;10297:1;10290:9;10283:17;10279:45;10276:71;;;10327:18;;:::i;:::-;-1:-1:-1;10367:9:2;;10214:168::o;10387:128::-;10427:3;10458:1;10454:6;10451:1;10448:13;10445:39;;;10464:18;;:::i;:::-;-1:-1:-1;10500:9:2;;10387:128::o;11280:127::-;11341:10;11336:3;11332:20;11329:1;11322:31;11372:4;11369:1;11362:15;11396:4;11393:1;11386:15;11412:135;11451:3;-1:-1:-1;;11472:17:2;;11469:43;;;11492:18;;:::i;:::-;-1:-1:-1;11539:1:2;11528:13;;11412:135::o;11552:390::-;11711:2;11700:9;11693:21;11750:6;11745:2;11734:9;11730:18;11723:34;11807:6;11799;11794:2;11783:9;11779:18;11766:48;11863:1;11834:22;;;11858:2;11830:31;;;11823:42;;;;11926:2;11905:15;;;-1:-1:-1;;11901:29:2;11886:45;11882:54;;11552:390;-1:-1:-1;11552:390:2:o;12306:417::-;12508:2;12490:21;;;12547:2;12527:18;;;12520:30;12586:34;12581:2;12566:18;;12559:62;-1:-1:-1;;;12652:2:2;12637:18;;12630:51;12713:3;12698:19;;12306:417::o;12728:125::-;12768:4;12796:1;12793;12790:8;12787:34;;;12801:18;;:::i;:::-;-1:-1:-1;12838:9:2;;12728:125::o;13618:470::-;13797:3;13835:6;13829:13;13851:53;13897:6;13892:3;13885:4;13877:6;13873:17;13851:53;:::i;:::-;13967:13;;13926:16;;;;13989:57;13967:13;13926:16;14023:4;14011:17;;13989:57;:::i;:::-;14062:20;;13618:470;-1:-1:-1;;;;13618:470:2:o;14789:317::-;14966:2;14955:9;14948:21;14929:4;14986:45;15027:2;15016:9;15012:18;15004:6;14986:45;:::i;:::-;14978:53;;15096:1;15092;15087:3;15083:11;15079:19;15071:6;15067:32;15062:2;15051:9;15047:18;15040:60;14789:317;;;;;:::o;15517:370::-;15674:3;15712:6;15706:13;15728:53;15774:6;15769:3;15762:4;15754:6;15750:17;15728:53;:::i;:::-;15803:16;;;;15828:21;;;-1:-1:-1;15876:4:2;15865:16;;15517:370;-1:-1:-1;15517:370:2:o;17411:489::-;-1:-1:-1;;;;;17680:15:2;;;17662:34;;17732:15;;17727:2;17712:18;;17705:43;17779:2;17764:18;;17757:34;;;17827:3;17822:2;17807:18;;17800:31;;;17605:4;;17848:46;;17874:19;;17866:6;17848:46;:::i;:::-;17840:54;17411:489;-1:-1:-1;;;;;;17411:489:2:o;17905:249::-;17974:6;18027:2;18015:9;18006:7;18002:23;17998:32;17995:52;;;18043:1;18040;18033:12;17995:52;18075:9;18069:16;18094:30;18118:5;18094:30;:::i;18159:127::-;18220:10;18215:3;18211:20;18208:1;18201:31;18251:4;18248:1;18241:15;18275:4;18272:1;18265:15;18291:120;18331:1;18357;18347:35;;18362:18;;:::i;:::-;-1:-1:-1;18396:9:2;;18291:120::o;18416:112::-;18448:1;18474;18464:35;;18479:18;;:::i;:::-;-1:-1:-1;18513:9:2;;18416:112::o
Swarm Source
ipfs://552290395d3eee48b9fa7f2331a0eaeb4c758e7fd2605b39bd93da21c8a9b51a
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,341.82 | 0.31 | $1,035.97 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.