ERC-721
Overview
Max Total Supply
123 Casino
Holders
65
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CasinoLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Caesars
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-15 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/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/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 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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/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/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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/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/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/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: @openzeppelin/contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`, * consuming from one or the other at each step according to the instructions given by * `proofFlags`. * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof} * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } pragma solidity >=0.7.0 <0.9.0; contract Caesars is ERC721Enumerable, Ownable { using Strings for uint256; string baseURI; uint256 public cost = 0.043 ether; uint256 public maxSupply = 1111; uint public maxFree = 30; uint public wlMaxPerTx = 1; uint public wlMaxPerWallet = 1; uint public publicMaxPerTx = 3; uint public publicMaxPerWallet = 3; uint public totalFree = 0; uint public freeMints = 30; //NOTE → How many free mints you want mapping (address => uint) internal wlMintWallet; mapping (address => uint) internal publicMintWallet; bool public paused; bytes32 public merkleRoot; mapping (address => uint) public claimedAmount; enum Step { Before, WhitelistSale, PublicSale, SoldOut, Reveal } Step public sellingStep; constructor( string memory _name, string memory _symbol, string memory _baseURI, bytes32 _merkleRoot ) ERC721(_name, _symbol) { baseURI = _baseURI; merkleRoot = _merkleRoot; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "Contract paused."); require(sellingStep == Step.PublicSale, "Public sale is not running"); require(_mintAmount > 0, "You can't mint less than 1 NFT."); require(_mintAmount <= publicMaxPerTx, "You can't mint more than 5 NFT in one transaction."); uint supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "Max supply exceeded."); if (msg.sender != owner()) { require(msg.value >= cost * _mintAmount, "Sorry you did not send enough ether"); if(publicMaxPerWallet != 0) { require(publicMintWallet[msg.sender] + _mintAmount <= publicMaxPerWallet, "Max per wallet exceeded"); publicMintWallet[msg.sender] += _mintAmount; } } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function whitelistMint (uint _mintAmount, bytes32[] calldata _proof) public payable { // BASIS REQUIRES ___________________________________________________________________________________________________ require(!paused, "Contract paused."); require(sellingStep == Step.WhitelistSale, "Whitelist sale is not running."); require(isWhitelisted(msg.sender, _proof), "You're not whitelisted."); require(_mintAmount > 0, "You can't mint less than 1 NFT."); require(_mintAmount <= wlMaxPerTx, "You can't mint more than limit in one transaction."); uint supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "Max supply exceeded"); // USER LEFT MINTS __________________________________________________________________________________________________ uint leftMints = freeMints - claimedAmount[msg.sender]; //NOTE ↪ Free mints left to use uint toPay; //NOTE ↪ How many mints are we going to pay? uint freeUsed; // HOW MANY MINTS IS HE GOING TO PAY ? _____________________________________________________________________________ if (_mintAmount <= leftMints) {//NOTE ↪ If we have more free mints than mintAmount → Pay nothing toPay = 0; claimedAmount[msg.sender] += _mintAmount; freeUsed = _mintAmount; } else {//NOTE ↪ If we dont, then reduce only the amount of free mints we have left toPay = _mintAmount - leftMints; claimedAmount[msg.sender] += leftMints; freeUsed = leftMints; } // FREE MINTS INCLUDED? _____________________________________________________________________________________________ if (msg.sender != owner()) { if (totalFree + _mintAmount <= maxFree) { require(msg.value >= cost * toPay, "You did not pay enough"); } else { //NOTE → If we go beyond free mints uint freeLeft = maxFree - totalFree; //NOTE → How many free mints left if (freeLeft >= leftMints) {freeLeft -= freeLeft - leftMints;} require(msg.value >= cost * (_mintAmount - freeLeft), "You did not pay enough"); freeUsed = freeLeft; } } totalFree += freeUsed; // EXCEEDING WALLET LIMIT? __________________________________________________________________________________________ if(wlMaxPerWallet != 0) { require(wlMintWallet[msg.sender] + _mintAmount <= wlMaxPerWallet, "Max per wallet exceeded"); wlMintWallet[msg.sender] += _mintAmount; // MINTING PHASE ____________________________________________________________________________________________________ } for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } /** * @notice Get the token URI of an NFT by his ID * * @param _tokenId The ID of the NFT you want to have the URI of the metadatas * * @return string Token URI of an NFT by his ID */ function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "URI query for nonexistent token"); return string(abi.encodePacked(baseURI, _tokenId.toString(), ".json")); } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function pause(bool _state) public onlyOwner { paused = _state; } /** * @notice Change the step of the sale * * @param _step The new step of the sale */ function setStep(uint256 _step) external onlyOwner { sellingStep = Step(_step); } function setMaxFree(uint256 _maxfree) public onlyOwner { maxFree = _maxfree; } function setWlMaxPerTx(uint _wlMaxPerTx) public onlyOwner { wlMaxPerTx = _wlMaxPerTx; } function setWlMaxPerWallet(uint _wlMaxPerWallet) public onlyOwner { wlMaxPerWallet = _wlMaxPerWallet; } function setPublicMaxPerTx(uint _publicMaxPerTx) public onlyOwner { publicMaxPerTx = _publicMaxPerTx; } function setPublicMaxPerWallet(uint _publicMaxPerWallet) public onlyOwner { wlMaxPerWallet = _publicMaxPerWallet; } function getMintInfos(address _account) external view returns(uint[12] memory) { uint[12] memory infos = [ wlMaxPerTx, wlMaxPerWallet, wlMintWallet[_account], publicMaxPerTx, publicMaxPerWallet, publicMintWallet[_account], claimedAmount[_account], totalSupply(), maxFree, uint(sellingStep), totalFree, freeMints ]; return infos; } /** * @notice Change the merkle root * * @param _merkleRoot The new merkle root */ function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner { merkleRoot = _merkleRoot; } /** * @notice Hash an address * * @param _account The address to be hashed * * @return bytes32 The hashed address */ function leaf(address _account) internal pure returns (bytes32) { return keccak256(abi.encodePacked(_account)); } /** * @notice Returns true if a leaf can be proved to be a part of a merkle tree defined by root * * @param _leaf The leaf * @param _proof The Merkle Proof * * @return bool return true if a leaf can be proved to be a part of a merkle tree defined by root, false othewise */ function _verify(bytes32 _leaf, bytes32[] memory _proof) internal view returns (bool) { return MerkleProof.verify(_proof, merkleRoot, _leaf); } /** * @notice Check if an address is whitelisted or not * * @param _account The account checked * @param _proof The Merkle Proof * * @return bool return true if an address is whitelisted, false otherwise */ function isWhitelisted(address _account, bytes32[] calldata _proof) public view returns (bool) { return _verify(leaf(_account), _proof); } //NOTE: Calculates percentages ⤵ function basisPoint (uint input, uint per) internal pure returns (uint) { return input * per / 1000; } //NOTE: TEAM WALLETS ⤵ address[] private teamAddresses = [ 0x89Fa3959e08b40fCE89a3B744a733662487eBeFF, 0xEE6605C6eE07D3c74157Abf65E0b09D05d39296F, 0xf097cDDd4C3D0ee68cE037AeC8eedbd96Fb8A6BF, 0xA7c3bA271f7b042416286C1ccbFf58c900F31Ad6, 0x06ab58943693E3A8EF15CEE53aB3262C6aDA1E37, 0x2cd546A661Ba97Ba4eD4167E13f82BF2E628A3E1 ]; //NOTE: TEAM SHARES ⤵ uint16[] private teamShares = [ 400, 400, 100, 60, 30, 10 ]; //NOTE: Change wallet addreses ⤵ function changeWallets (address[] memory newWallets) external { for (uint i; i < newWallets.length; i++) { teamAddresses[i] = newWallets[i]; } } //NOTE: Withdraws money from contract to each member function withdraw() external onlyOwner { uint totalBalance = address(this).balance; //NOTE → Total contract balance for (uint i; i < teamAddresses.length; i++) { payable(teamAddresses[i]).transfer( basisPoint ( totalBalance, teamShares[i] ) ); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"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":[{"internalType":"address[]","name":"newWallets","type":"address[]"}],"name":"changeWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMints","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":"_account","type":"address"}],"name":"getMintInfos","outputs":[{"internalType":"uint256[12]","name":"","type":"uint256[12]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellingStep","outputs":[{"internalType":"enum Caesars.Step","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxfree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMaxPerTx","type":"uint256"}],"name":"setPublicMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicMaxPerWallet","type":"uint256"}],"name":"setPublicMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_step","type":"uint256"}],"name":"setStep","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMaxPerTx","type":"uint256"}],"name":"setWlMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlMaxPerWallet","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlMaxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlMaxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6698c445ad578000600c55610457600d55601e600e8190556001600f8190556010556003601181905560125560006013556014556101406040527389fa3959e08b40fce89a3b744a733662487ebeff608090815273ee6605c6ee07d3c74157abf65e0b09d05d39296f60a05273f097cddd4c3d0ee68ce037aec8eedbd96fb8a6bf60c05273a7c3ba271f7b042416286c1ccbff58c900f31ad660e0527306ab58943693e3a8ef15cee53ab3262c6ada1e3761010052732cd546a661ba97ba4ed4167e13f82bf2e628a3e161012052620000dd90601b90600662000217565b506040805160c0810182526101908082526020820152606491810191909152603c6060820152601e6080820152600a60a08201526200012190601c90600662000281565b503480156200012f57600080fd5b506040516200366f3803806200366f833981016040819052620001529162000477565b8351849084906200016b9060009060208501906200032c565b508051620001819060019060208401906200032c565b5050506200019e62000198620001c160201b60201c565b620001c5565b8151620001b390600b9060208501906200032c565b506018555062000563915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280548282559060005260206000209081019282156200026f579160200282015b828111156200026f57825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000238565b506200027d929150620003a9565b5090565b82805482825590600052602060002090600f016010900481019282156200026f5791602002820160005b83821115620002ed57835183826101000a81548161ffff021916908361ffff1602179055509260200192600201602081600101049283019260010302620002ab565b80156200031d5782816101000a81549061ffff0219169055600201602081600101049283019260010302620002ed565b50506200027d929150620003a9565b8280546200033a9062000510565b90600052602060002090601f0160209004810192826200035e57600085556200026f565b82601f106200037957805160ff19168380011785556200026f565b828001600101855582156200026f579182015b828111156200026f5782518255916020019190600101906200038c565b5b808211156200027d5760008155600101620003aa565b600082601f830112620003d257600080fd5b81516001600160401b0380821115620003ef57620003ef6200054d565b604051601f8301601f19908116603f011681019082821181831017156200041a576200041a6200054d565b816040528381526020925086838588010111156200043757600080fd5b600091505b838210156200045b57858201830151818301840152908201906200043c565b838211156200046d5760008385830101525b9695505050505050565b600080600080608085870312156200048e57600080fd5b84516001600160401b0380821115620004a657600080fd5b620004b488838901620003c0565b95506020870151915080821115620004cb57600080fd5b620004d988838901620003c0565b94506040870151915080821115620004f057600080fd5b50620004ff87828801620003c0565b606096909601519497939650505050565b600181811c908216806200052557607f821691505b602082108114156200054757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6130fc80620005736000396000f3fe6080604052600436106102ae5760003560e01c80636352211e11610175578063bafd95c3116100dc578063d755bf9911610095578063efe8c4ac1161006f578063efe8c4ac1461082b578063f2fde38b14610841578063f89dd6c814610861578063f8dcbddb1461087757600080fd5b8063d755bf99146107c2578063e985e9c5146107e2578063ed75fbe41461073257600080fd5b8063bafd95c314610705578063bde0608a14610732578063c87b56dd14610752578063cbccefb214610772578063d2cab05614610799578063d5abeb01146107ac57600080fd5b806395d89b411161012e57806395d89b411461066757806397e886531461067c578063a0712d681461069c578063a22cb465146106af578063b0895f64146106cf578063b88d4fde146106e557600080fd5b80636352211e146105be57806370a08231146105de578063715018a6146105fe5780637cb647591461061357806380b17335146106335780638da5cb5b1461064957600080fd5b80632f745c591161021957806344a0d68a116101d257806344a0d68a1461050e578063485a68a31461052e5780634f6ccce71461054457806355f804b3146105645780635a23dd99146105845780635c975abb146105a457600080fd5b80632f745c5914610456578063333e44e61461047657806334aa3dfa1461048c5780633ccfd60b146104ac57806342842e0e146104c1578063438b6300146104e157600080fd5b8063095ea7b31161026b578063095ea7b3146103b557806313faede6146103d557806316a529cb146103eb57806318160ddd1461040b57806323b872dd146104205780632eb4a7ab1461044057600080fd5b806301ffc9a7146102b357806302329a29146102e857806304e4beb81461030a57806304e869031461032e57806306fdde031461035b578063081812fc1461037d575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b84565b610897565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612b50565b6108c2565b005b34801561031657600080fd5b5061032060105481565b6040519081526020016102df565b34801561033a57600080fd5b506103206103493660046128ef565b60196020526000908152604090205481565b34801561036757600080fd5b50610370610908565b6040516102df9190612e18565b34801561038957600080fd5b5061039d610398366004612b6b565b61099a565b6040516001600160a01b0390911681526020016102df565b3480156103c157600080fd5b506103086103d0366004612a72565b610a2f565b3480156103e157600080fd5b50610320600c5481565b3480156103f757600080fd5b50610308610406366004612b6b565b610b45565b34801561041757600080fd5b50600854610320565b34801561042c57600080fd5b5061030861043b36600461293d565b610b74565b34801561044c57600080fd5b5061032060185481565b34801561046257600080fd5b50610320610471366004612a72565b610ba5565b34801561048257600080fd5b5061032060135481565b34801561049857600080fd5b506103086104a7366004612b6b565b610c3b565b3480156104b857600080fd5b50610308610c6a565b3480156104cd57600080fd5b506103086104dc36600461293d565b610d5c565b3480156104ed57600080fd5b506105016104fc3660046128ef565b610d77565b6040516102df9190612dac565b34801561051a57600080fd5b50610308610529366004612b6b565b610e19565b34801561053a57600080fd5b50610320600e5481565b34801561055057600080fd5b5061032061055f366004612b6b565b610e48565b34801561057057600080fd5b5061030861057f366004612bbe565b610edb565b34801561059057600080fd5b506102d361059f3660046129f5565b610f18565b3480156105b057600080fd5b506017546102d39060ff1681565b3480156105ca57600080fd5b5061039d6105d9366004612b6b565b610fa1565b3480156105ea57600080fd5b506103206105f93660046128ef565b611018565b34801561060a57600080fd5b5061030861109f565b34801561061f57600080fd5b5061030861062e366004612b6b565b6110d5565b34801561063f57600080fd5b5061032060145481565b34801561065557600080fd5b50600a546001600160a01b031661039d565b34801561067357600080fd5b50610370611104565b34801561068857600080fd5b50610308610697366004612a9c565b611113565b6103086106aa366004612b6b565b611187565b3480156106bb57600080fd5b506103086106ca366004612a48565b61148d565b3480156106db57600080fd5b5061032060125481565b3480156106f157600080fd5b50610308610700366004612979565b611552565b34801561071157600080fd5b506107256107203660046128ef565b61158a565b6040516102df9190612d7a565b34801561073e57600080fd5b5061030861074d366004612b6b565b611648565b34801561075e57600080fd5b5061037061076d366004612b6b565b611677565b34801561077e57600080fd5b50601a5461078c9060ff1681565b6040516102df9190612df0565b6103086107a7366004612c07565b611710565b3480156107b857600080fd5b50610320600d5481565b3480156107ce57600080fd5b506103086107dd366004612b6b565b611bb5565b3480156107ee57600080fd5b506102d36107fd36600461290a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083757600080fd5b5061032060115481565b34801561084d57600080fd5b5061030861085c3660046128ef565b611be4565b34801561086d57600080fd5b50610320600f5481565b34801561088357600080fd5b50610308610892366004612b6b565b611c7f565b60006001600160e01b0319821663780e9d6360e01b14806108bc57506108bc82611cdf565b92915050565b600a546001600160a01b031633146108f55760405162461bcd60e51b81526004016108ec90612e7d565b60405180910390fd5b6017805460ff1916911515919091179055565b60606000805461091790612fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461094390612fc2565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ec565b506000908152600460205260409020546001600160a01b031690565b6000610a3a82610fa1565b9050806001600160a01b0316836001600160a01b03161415610aa85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ec565b336001600160a01b0382161480610ac45750610ac481336107fd565b610b365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ec565b610b408383611d2f565b505050565b600a546001600160a01b03163314610b6f5760405162461bcd60e51b81526004016108ec90612e7d565b601155565b610b7e3382611d9d565b610b9a5760405162461bcd60e51b81526004016108ec90612eb2565b610b40838383611e90565b6000610bb083611018565b8210610c125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108ec565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c655760405162461bcd60e51b81526004016108ec90612e7d565b600f55565b600a546001600160a01b03163314610c945760405162461bcd60e51b81526004016108ec90612e7d565b4760005b601b54811015610d5857601b8181548110610cb557610cb5613084565b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166108fc610d1d84601c8581548110610cf657610cf6613084565b60009182526020909120601082040154600f9091166002026101000a900461ffff1661203b565b6040518115909202916000818181858888f19350505050158015610d45573d6000803e3d6000fd5b5080610d5081612ffd565b915050610c98565b5050565b610b4083838360405180602001604052806000815250611552565b60606000610d8483611018565b905060008167ffffffffffffffff811115610da157610da161309a565b604051908082528060200260200182016040528015610dca578160200160208202803683370190505b50905060005b82811015610e1157610de28582610ba5565b828281518110610df457610df4613084565b602090810291909101015280610e0981612ffd565b915050610dd0565b509392505050565b600a546001600160a01b03163314610e435760405162461bcd60e51b81526004016108ec90612e7d565b600c55565b6000610e5360085490565b8210610eb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108ec565b60088281548110610ec957610ec9613084565b90600052602060002001549050919050565b600a546001600160a01b03163314610f055760405162461bcd60e51b81526004016108ec90612e7d565b8051610d5890600b906020840190612767565b6000610f99610f60856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061205b92505050565b949350505050565b6000818152600260205260408120546001600160a01b0316806108bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ec565b60006001600160a01b0382166110835760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ec565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110c95760405162461bcd60e51b81526004016108ec90612e7d565b6110d3600061206a565b565b600a546001600160a01b031633146110ff5760405162461bcd60e51b81526004016108ec90612e7d565b601855565b60606001805461091790612fc2565b60005b8151811015610d585781818151811061113157611131613084565b6020026020010151601b828154811061114c5761114c613084565b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790558061117f81612ffd565b915050611116565b60175460ff16156111cd5760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba103830bab9b2b21760811b60448201526064016108ec565b6002601a5460ff1660048111156111e6576111e6613058565b146112335760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f742072756e6e696e6700000000000060448201526064016108ec565b600081116112835760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e2774206d696e74206c657373207468616e2031204e46542e0060448201526064016108ec565b6011548111156112f05760405162461bcd60e51b815260206004820152603260248201527f596f752063616e2774206d696e74206d6f7265207468616e2035204e46542069604482015271371037b732903a3930b739b0b1ba34b7b71760711b60648201526084016108ec565b60006112fb60085490565b600d5490915061130b8383612f34565b11156113505760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016108ec565b600a546001600160a01b0316331461145e5781600c546113709190612f60565b3410156113cb5760405162461bcd60e51b815260206004820152602360248201527f536f72727920796f7520646964206e6f742073656e6420656e6f7567682065746044820152623432b960e91b60648201526084016108ec565b6012541561145e57601254336000908152601660205260409020546113f1908490612f34565b11156114395760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b60448201526064016108ec565b3360009081526016602052604081208054849290611458908490612f34565b90915550505b60015b828111610b405761147b336114768385612f34565b6120bc565b8061148581612ffd565b915050611461565b6001600160a01b0382163314156114e65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ec565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61155c3383611d9d565b6115785760405162461bcd60e51b81526004016108ec90612eb2565b611584848484846120d6565b50505050565b6115926127eb565b6040805161018081018252600f5481526010546020808301919091526001600160a01b038516600081815260158352848120548486015260115460608501526012546080850152818152601683528481205460a085015290815260199091529182205460c082015260e0810161160760085490565b8152600e546020820152601a5460409091019060ff16600481111561162e5761162e613058565b815260135460208201526014546040909101529392505050565b600a546001600160a01b031633146116725760405162461bcd60e51b81526004016108ec90612e7d565b601055565b6000818152600260205260409020546060906001600160a01b03166116de5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016108ec565b600b6116e983612109565b6040516020016116fa929190612c82565b6040516020818303038152906040529050919050565b60175460ff16156117565760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba103830bab9b2b21760811b60448201526064016108ec565b6001601a5460ff16600481111561176f5761176f613058565b146117bc5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c6973742073616c65206973206e6f742072756e6e696e672e000060448201526064016108ec565b6117c7338383610f18565b6118135760405162461bcd60e51b815260206004820152601760248201527f596f75277265206e6f742077686974656c69737465642e00000000000000000060448201526064016108ec565b600083116118635760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e2774206d696e74206c657373207468616e2031204e46542e0060448201526064016108ec565b600f548311156118d05760405162461bcd60e51b815260206004820152603260248201527f596f752063616e2774206d696e74206d6f7265207468616e206c696d69742069604482015271371037b732903a3930b739b0b1ba34b7b71760711b60648201526084016108ec565b60006118db60085490565b600d549091506118eb8583612f34565b111561192f5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016108ec565b3360009081526019602052604081205460145461194c9190612f7f565b90506000808287116119895733600090815260196020526040812080549193508891849061197b908490612f34565b909155508791506119c09050565b6119938388612f7f565b336000908152601960205260408120805492945085929091906119b7908490612f34565b90915550839150505b600a546001600160a01b03163314611ad757600e54876013546119e39190612f34565b11611a435781600c546119f69190612f60565b341015611a3e5760405162461bcd60e51b81526020600482015260166024820152750b2deea40c8d2c840dcdee840e0c2f240cadcdeeaced60531b60448201526064016108ec565b611ad7565b6000601354600e54611a559190612f7f565b9050838110611a7557611a688482612f7f565b611a729082612f7f565b90505b611a7f8189612f7f565b600c54611a8c9190612f60565b341015611ad45760405162461bcd60e51b81526020600482015260166024820152750b2deea40c8d2c840dcdee840e0c2f240cadcdeeaced60531b60448201526064016108ec565b90505b8060136000828254611ae99190612f34565b909155505060105415611b815760105433600090815260156020526040902054611b14908990612f34565b1115611b5c5760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b60448201526064016108ec565b3360009081526015602052604081208054899290611b7b908490612f34565b90915550505b60015b878111611bab57611b99336114768388612f34565b80611ba381612ffd565b915050611b84565b5050505050505050565b600a546001600160a01b03163314611bdf5760405162461bcd60e51b81526004016108ec90612e7d565b600e55565b600a546001600160a01b03163314611c0e5760405162461bcd60e51b81526004016108ec90612e7d565b6001600160a01b038116611c735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ec565b611c7c8161206a565b50565b600a546001600160a01b03163314611ca95760405162461bcd60e51b81526004016108ec90612e7d565b806004811115611cbb57611cbb613058565b601a805460ff19166001836004811115611cd757611cd7613058565b021790555050565b60006001600160e01b031982166380ac58cd60e01b1480611d1057506001600160e01b03198216635b5e139f60e01b145b806108bc57506301ffc9a760e01b6001600160e01b03198316146108bc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6482610fa1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ec565b6000611e2183610fa1565b9050806001600160a01b0316846001600160a01b03161480611e5c5750836001600160a01b0316611e518461099a565b6001600160a01b0316145b80610f9957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f99565b826001600160a01b0316611ea382610fa1565b6001600160a01b031614611f0b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ec565b6001600160a01b038216611f6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ec565b611f78838383612207565b611f83600082611d2f565b6001600160a01b0383166000908152600360205260408120805460019290611fac908490612f7f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fda908490612f34565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006103e861204a8385612f60565b6120549190612f4c565b9392505050565b600061205482601854856122bf565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d588282604051806020016040528060008152506122d5565b6120e1848484611e90565b6120ed84848484612308565b6115845760405162461bcd60e51b81526004016108ec90612e2b565b60608161212d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612157578061214181612ffd565b91506121509050600a83612f4c565b9150612131565b60008167ffffffffffffffff8111156121725761217261309a565b6040519080825280601f01601f19166020018201604052801561219c576020820181803683370190505b5090505b8415610f99576121b1600183612f7f565b91506121be600a86613018565b6121c9906030612f34565b60f81b8183815181106121de576121de613084565b60200101906001600160f81b031916908160001a905350612200600a86612f4c565b94506121a0565b6001600160a01b0383166122625761225d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612285565b816001600160a01b0316836001600160a01b031614612285576122858382612415565b6001600160a01b03821661229c57610b40816124b2565b826001600160a01b0316826001600160a01b031614610b4057610b408282612561565b6000826122cc85846125a5565b14949350505050565b6122df83836125ea565b6122ec6000848484612308565b610b405760405162461bcd60e51b81526004016108ec90612e2b565b60006001600160a01b0384163b1561240a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061234c903390899088908890600401612d3d565b602060405180830381600087803b15801561236657600080fd5b505af1925050508015612396575060408051601f3d908101601f1916820190925261239391810190612ba1565b60015b6123f0573d8080156123c4576040519150601f19603f3d011682016040523d82523d6000602084013e6123c9565b606091505b5080516123e85760405162461bcd60e51b81526004016108ec90612e2b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f99565b506001949350505050565b6000600161242284611018565b61242c9190612f7f565b60008381526007602052604090205490915080821461247f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124c490600190612f7f565b600083815260096020526040812054600880549394509092849081106124ec576124ec613084565b90600052602060002001549050806008838154811061250d5761250d613084565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125455761254561306e565b6001900381819060005260206000200160009055905550505050565b600061256c83611018565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610e11576125d6828683815181106125c9576125c9613084565b6020026020010151612738565b9150806125e281612ffd565b9150506125aa565b6001600160a01b0382166126405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ec565b6000818152600260205260409020546001600160a01b0316156126a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ec565b6126b160008383612207565b6001600160a01b03821660009081526003602052604081208054600192906126da908490612f34565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818310612754576000828152602084905260409020612054565b6000838152602083905260409020612054565b82805461277390612fc2565b90600052602060002090601f01602090048101928261279557600085556127db565b82601f106127ae57805160ff19168380011785556127db565b828001600101855582156127db579182015b828111156127db5782518255916020019190600101906127c0565b506127e792915061280a565b5090565b604051806101800160405280600c906020820280368337509192915050565b5b808211156127e7576000815560010161280b565b600067ffffffffffffffff8311156128395761283961309a565b61284c601f8401601f1916602001612f03565b905082815283838301111561286057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461288e57600080fd5b919050565b60008083601f8401126128a557600080fd5b50813567ffffffffffffffff8111156128bd57600080fd5b6020830191508360208260051b85010111156128d857600080fd5b9250929050565b8035801515811461288e57600080fd5b60006020828403121561290157600080fd5b61205482612877565b6000806040838503121561291d57600080fd5b61292683612877565b915061293460208401612877565b90509250929050565b60008060006060848603121561295257600080fd5b61295b84612877565b925061296960208501612877565b9150604084013590509250925092565b6000806000806080858703121561298f57600080fd5b61299885612877565b93506129a660208601612877565b925060408501359150606085013567ffffffffffffffff8111156129c957600080fd5b8501601f810187136129da57600080fd5b6129e98782356020840161281f565b91505092959194509250565b600080600060408486031215612a0a57600080fd5b612a1384612877565b9250602084013567ffffffffffffffff811115612a2f57600080fd5b612a3b86828701612893565b9497909650939450505050565b60008060408385031215612a5b57600080fd5b612a6483612877565b9150612934602084016128df565b60008060408385031215612a8557600080fd5b612a8e83612877565b946020939093013593505050565b60006020808385031215612aaf57600080fd5b823567ffffffffffffffff80821115612ac757600080fd5b818501915085601f830112612adb57600080fd5b813581811115612aed57612aed61309a565b8060051b9150612afe848301612f03565b8181528481019084860184860187018a1015612b1957600080fd5b600095505b83861015612b4357612b2f81612877565b835260019590950194918601918601612b1e565b5098975050505050505050565b600060208284031215612b6257600080fd5b612054826128df565b600060208284031215612b7d57600080fd5b5035919050565b600060208284031215612b9657600080fd5b8135612054816130b0565b600060208284031215612bb357600080fd5b8151612054816130b0565b600060208284031215612bd057600080fd5b813567ffffffffffffffff811115612be757600080fd5b8201601f81018413612bf857600080fd5b610f998482356020840161281f565b600080600060408486031215612c1c57600080fd5b83359250602084013567ffffffffffffffff811115612a2f57600080fd5b60008151808452612c52816020860160208601612f96565b601f01601f19169290920160200192915050565b60008151612c78818560208601612f96565b9290920192915050565b600080845481600182811c915080831680612c9e57607f831692505b6020808410821415612cbe57634e487b7160e01b86526022600452602486fd5b818015612cd25760018114612ce357612d10565b60ff19861689528489019650612d10565b60008b81526020902060005b86811015612d085781548b820152908501908301612cef565b505084890196505b505050505050612d34612d238286612c66565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d7090830184612c3a565b9695505050505050565b6101808101818360005b600c811015612da3578151835260209283019290910190600101612d84565b50505092915050565b6020808252825182820181905260009190848201906040850190845b81811015612de457835183529284019291840191600101612dc8565b50909695505050505050565b6020810160058310612e1257634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006120546020830184612c3a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f2c57612f2c61309a565b604052919050565b60008219821115612f4757612f4761302c565b500190565b600082612f5b57612f5b613042565b500490565b6000816000190483118215151615612f7a57612f7a61302c565b500290565b600082821015612f9157612f9161302c565b500390565b60005b83811015612fb1578181015183820152602001612f99565b838111156115845750506000910152565b600181811c90821680612fd657607f821691505b60208210811415612ff757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130115761301161302c565b5060010190565b60008261302757613027613042565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c7c57600080fdfea264697066735822122086068712d46b6a3eb29da5c7695ffb2aba31bf7a6b5f6ad6d12d136319e0502c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100f5e1eaa5107678242e6c0cdbea1b8c5223714fe5dcf434b05dc1bca48fee12e5000000000000000000000000000000000000000000000000000000000000000b43616573617273204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006436173696e6f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d627953435576544b4e686779386938795168504a4d714c454b6339747931374e52426d6e545879735a7266382f000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c80636352211e11610175578063bafd95c3116100dc578063d755bf9911610095578063efe8c4ac1161006f578063efe8c4ac1461082b578063f2fde38b14610841578063f89dd6c814610861578063f8dcbddb1461087757600080fd5b8063d755bf99146107c2578063e985e9c5146107e2578063ed75fbe41461073257600080fd5b8063bafd95c314610705578063bde0608a14610732578063c87b56dd14610752578063cbccefb214610772578063d2cab05614610799578063d5abeb01146107ac57600080fd5b806395d89b411161012e57806395d89b411461066757806397e886531461067c578063a0712d681461069c578063a22cb465146106af578063b0895f64146106cf578063b88d4fde146106e557600080fd5b80636352211e146105be57806370a08231146105de578063715018a6146105fe5780637cb647591461061357806380b17335146106335780638da5cb5b1461064957600080fd5b80632f745c591161021957806344a0d68a116101d257806344a0d68a1461050e578063485a68a31461052e5780634f6ccce71461054457806355f804b3146105645780635a23dd99146105845780635c975abb146105a457600080fd5b80632f745c5914610456578063333e44e61461047657806334aa3dfa1461048c5780633ccfd60b146104ac57806342842e0e146104c1578063438b6300146104e157600080fd5b8063095ea7b31161026b578063095ea7b3146103b557806313faede6146103d557806316a529cb146103eb57806318160ddd1461040b57806323b872dd146104205780632eb4a7ab1461044057600080fd5b806301ffc9a7146102b357806302329a29146102e857806304e4beb81461030a57806304e869031461032e57806306fdde031461035b578063081812fc1461037d575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612b84565b610897565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612b50565b6108c2565b005b34801561031657600080fd5b5061032060105481565b6040519081526020016102df565b34801561033a57600080fd5b506103206103493660046128ef565b60196020526000908152604090205481565b34801561036757600080fd5b50610370610908565b6040516102df9190612e18565b34801561038957600080fd5b5061039d610398366004612b6b565b61099a565b6040516001600160a01b0390911681526020016102df565b3480156103c157600080fd5b506103086103d0366004612a72565b610a2f565b3480156103e157600080fd5b50610320600c5481565b3480156103f757600080fd5b50610308610406366004612b6b565b610b45565b34801561041757600080fd5b50600854610320565b34801561042c57600080fd5b5061030861043b36600461293d565b610b74565b34801561044c57600080fd5b5061032060185481565b34801561046257600080fd5b50610320610471366004612a72565b610ba5565b34801561048257600080fd5b5061032060135481565b34801561049857600080fd5b506103086104a7366004612b6b565b610c3b565b3480156104b857600080fd5b50610308610c6a565b3480156104cd57600080fd5b506103086104dc36600461293d565b610d5c565b3480156104ed57600080fd5b506105016104fc3660046128ef565b610d77565b6040516102df9190612dac565b34801561051a57600080fd5b50610308610529366004612b6b565b610e19565b34801561053a57600080fd5b50610320600e5481565b34801561055057600080fd5b5061032061055f366004612b6b565b610e48565b34801561057057600080fd5b5061030861057f366004612bbe565b610edb565b34801561059057600080fd5b506102d361059f3660046129f5565b610f18565b3480156105b057600080fd5b506017546102d39060ff1681565b3480156105ca57600080fd5b5061039d6105d9366004612b6b565b610fa1565b3480156105ea57600080fd5b506103206105f93660046128ef565b611018565b34801561060a57600080fd5b5061030861109f565b34801561061f57600080fd5b5061030861062e366004612b6b565b6110d5565b34801561063f57600080fd5b5061032060145481565b34801561065557600080fd5b50600a546001600160a01b031661039d565b34801561067357600080fd5b50610370611104565b34801561068857600080fd5b50610308610697366004612a9c565b611113565b6103086106aa366004612b6b565b611187565b3480156106bb57600080fd5b506103086106ca366004612a48565b61148d565b3480156106db57600080fd5b5061032060125481565b3480156106f157600080fd5b50610308610700366004612979565b611552565b34801561071157600080fd5b506107256107203660046128ef565b61158a565b6040516102df9190612d7a565b34801561073e57600080fd5b5061030861074d366004612b6b565b611648565b34801561075e57600080fd5b5061037061076d366004612b6b565b611677565b34801561077e57600080fd5b50601a5461078c9060ff1681565b6040516102df9190612df0565b6103086107a7366004612c07565b611710565b3480156107b857600080fd5b50610320600d5481565b3480156107ce57600080fd5b506103086107dd366004612b6b565b611bb5565b3480156107ee57600080fd5b506102d36107fd36600461290a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561083757600080fd5b5061032060115481565b34801561084d57600080fd5b5061030861085c3660046128ef565b611be4565b34801561086d57600080fd5b50610320600f5481565b34801561088357600080fd5b50610308610892366004612b6b565b611c7f565b60006001600160e01b0319821663780e9d6360e01b14806108bc57506108bc82611cdf565b92915050565b600a546001600160a01b031633146108f55760405162461bcd60e51b81526004016108ec90612e7d565b60405180910390fd5b6017805460ff1916911515919091179055565b60606000805461091790612fc2565b80601f016020809104026020016040519081016040528092919081815260200182805461094390612fc2565b80156109905780601f1061096557610100808354040283529160200191610990565b820191906000526020600020905b81548152906001019060200180831161097357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a135760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ec565b506000908152600460205260409020546001600160a01b031690565b6000610a3a82610fa1565b9050806001600160a01b0316836001600160a01b03161415610aa85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108ec565b336001600160a01b0382161480610ac45750610ac481336107fd565b610b365760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108ec565b610b408383611d2f565b505050565b600a546001600160a01b03163314610b6f5760405162461bcd60e51b81526004016108ec90612e7d565b601155565b610b7e3382611d9d565b610b9a5760405162461bcd60e51b81526004016108ec90612eb2565b610b40838383611e90565b6000610bb083611018565b8210610c125760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108ec565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c655760405162461bcd60e51b81526004016108ec90612e7d565b600f55565b600a546001600160a01b03163314610c945760405162461bcd60e51b81526004016108ec90612e7d565b4760005b601b54811015610d5857601b8181548110610cb557610cb5613084565b9060005260206000200160009054906101000a90046001600160a01b03166001600160a01b03166108fc610d1d84601c8581548110610cf657610cf6613084565b60009182526020909120601082040154600f9091166002026101000a900461ffff1661203b565b6040518115909202916000818181858888f19350505050158015610d45573d6000803e3d6000fd5b5080610d5081612ffd565b915050610c98565b5050565b610b4083838360405180602001604052806000815250611552565b60606000610d8483611018565b905060008167ffffffffffffffff811115610da157610da161309a565b604051908082528060200260200182016040528015610dca578160200160208202803683370190505b50905060005b82811015610e1157610de28582610ba5565b828281518110610df457610df4613084565b602090810291909101015280610e0981612ffd565b915050610dd0565b509392505050565b600a546001600160a01b03163314610e435760405162461bcd60e51b81526004016108ec90612e7d565b600c55565b6000610e5360085490565b8210610eb65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108ec565b60088281548110610ec957610ec9613084565b90600052602060002001549050919050565b600a546001600160a01b03163314610f055760405162461bcd60e51b81526004016108ec90612e7d565b8051610d5890600b906020840190612767565b6000610f99610f60856040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061205b92505050565b949350505050565b6000818152600260205260408120546001600160a01b0316806108bc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108ec565b60006001600160a01b0382166110835760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108ec565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110c95760405162461bcd60e51b81526004016108ec90612e7d565b6110d3600061206a565b565b600a546001600160a01b031633146110ff5760405162461bcd60e51b81526004016108ec90612e7d565b601855565b60606001805461091790612fc2565b60005b8151811015610d585781818151811061113157611131613084565b6020026020010151601b828154811061114c5761114c613084565b600091825260209091200180546001600160a01b0319166001600160a01b03929092169190911790558061117f81612ffd565b915050611116565b60175460ff16156111cd5760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba103830bab9b2b21760811b60448201526064016108ec565b6002601a5460ff1660048111156111e6576111e6613058565b146112335760405162461bcd60e51b815260206004820152601a60248201527f5075626c69632073616c65206973206e6f742072756e6e696e6700000000000060448201526064016108ec565b600081116112835760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e2774206d696e74206c657373207468616e2031204e46542e0060448201526064016108ec565b6011548111156112f05760405162461bcd60e51b815260206004820152603260248201527f596f752063616e2774206d696e74206d6f7265207468616e2035204e46542069604482015271371037b732903a3930b739b0b1ba34b7b71760711b60648201526084016108ec565b60006112fb60085490565b600d5490915061130b8383612f34565b11156113505760405162461bcd60e51b815260206004820152601460248201527326b0bc1039bab838363c9032bc31b2b2b232b21760611b60448201526064016108ec565b600a546001600160a01b0316331461145e5781600c546113709190612f60565b3410156113cb5760405162461bcd60e51b815260206004820152602360248201527f536f72727920796f7520646964206e6f742073656e6420656e6f7567682065746044820152623432b960e91b60648201526084016108ec565b6012541561145e57601254336000908152601660205260409020546113f1908490612f34565b11156114395760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b60448201526064016108ec565b3360009081526016602052604081208054849290611458908490612f34565b90915550505b60015b828111610b405761147b336114768385612f34565b6120bc565b8061148581612ffd565b915050611461565b6001600160a01b0382163314156114e65760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108ec565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61155c3383611d9d565b6115785760405162461bcd60e51b81526004016108ec90612eb2565b611584848484846120d6565b50505050565b6115926127eb565b6040805161018081018252600f5481526010546020808301919091526001600160a01b038516600081815260158352848120548486015260115460608501526012546080850152818152601683528481205460a085015290815260199091529182205460c082015260e0810161160760085490565b8152600e546020820152601a5460409091019060ff16600481111561162e5761162e613058565b815260135460208201526014546040909101529392505050565b600a546001600160a01b031633146116725760405162461bcd60e51b81526004016108ec90612e7d565b601055565b6000818152600260205260409020546060906001600160a01b03166116de5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e0060448201526064016108ec565b600b6116e983612109565b6040516020016116fa929190612c82565b6040516020818303038152906040529050919050565b60175460ff16156117565760405162461bcd60e51b815260206004820152601060248201526f21b7b73a3930b1ba103830bab9b2b21760811b60448201526064016108ec565b6001601a5460ff16600481111561176f5761176f613058565b146117bc5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c6973742073616c65206973206e6f742072756e6e696e672e000060448201526064016108ec565b6117c7338383610f18565b6118135760405162461bcd60e51b815260206004820152601760248201527f596f75277265206e6f742077686974656c69737465642e00000000000000000060448201526064016108ec565b600083116118635760405162461bcd60e51b815260206004820152601f60248201527f596f752063616e2774206d696e74206c657373207468616e2031204e46542e0060448201526064016108ec565b600f548311156118d05760405162461bcd60e51b815260206004820152603260248201527f596f752063616e2774206d696e74206d6f7265207468616e206c696d69742069604482015271371037b732903a3930b739b0b1ba34b7b71760711b60648201526084016108ec565b60006118db60085490565b600d549091506118eb8583612f34565b111561192f5760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b60448201526064016108ec565b3360009081526019602052604081205460145461194c9190612f7f565b90506000808287116119895733600090815260196020526040812080549193508891849061197b908490612f34565b909155508791506119c09050565b6119938388612f7f565b336000908152601960205260408120805492945085929091906119b7908490612f34565b90915550839150505b600a546001600160a01b03163314611ad757600e54876013546119e39190612f34565b11611a435781600c546119f69190612f60565b341015611a3e5760405162461bcd60e51b81526020600482015260166024820152750b2deea40c8d2c840dcdee840e0c2f240cadcdeeaced60531b60448201526064016108ec565b611ad7565b6000601354600e54611a559190612f7f565b9050838110611a7557611a688482612f7f565b611a729082612f7f565b90505b611a7f8189612f7f565b600c54611a8c9190612f60565b341015611ad45760405162461bcd60e51b81526020600482015260166024820152750b2deea40c8d2c840dcdee840e0c2f240cadcdeeaced60531b60448201526064016108ec565b90505b8060136000828254611ae99190612f34565b909155505060105415611b815760105433600090815260156020526040902054611b14908990612f34565b1115611b5c5760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881dd85b1b195d08195e18d959591959604a1b60448201526064016108ec565b3360009081526015602052604081208054899290611b7b908490612f34565b90915550505b60015b878111611bab57611b99336114768388612f34565b80611ba381612ffd565b915050611b84565b5050505050505050565b600a546001600160a01b03163314611bdf5760405162461bcd60e51b81526004016108ec90612e7d565b600e55565b600a546001600160a01b03163314611c0e5760405162461bcd60e51b81526004016108ec90612e7d565b6001600160a01b038116611c735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108ec565b611c7c8161206a565b50565b600a546001600160a01b03163314611ca95760405162461bcd60e51b81526004016108ec90612e7d565b806004811115611cbb57611cbb613058565b601a805460ff19166001836004811115611cd757611cd7613058565b021790555050565b60006001600160e01b031982166380ac58cd60e01b1480611d1057506001600160e01b03198216635b5e139f60e01b145b806108bc57506301ffc9a760e01b6001600160e01b03198316146108bc565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d6482610fa1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611e165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108ec565b6000611e2183610fa1565b9050806001600160a01b0316846001600160a01b03161480611e5c5750836001600160a01b0316611e518461099a565b6001600160a01b0316145b80610f9957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16610f99565b826001600160a01b0316611ea382610fa1565b6001600160a01b031614611f0b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108ec565b6001600160a01b038216611f6d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108ec565b611f78838383612207565b611f83600082611d2f565b6001600160a01b0383166000908152600360205260408120805460019290611fac908490612f7f565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fda908490612f34565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006103e861204a8385612f60565b6120549190612f4c565b9392505050565b600061205482601854856122bf565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d588282604051806020016040528060008152506122d5565b6120e1848484611e90565b6120ed84848484612308565b6115845760405162461bcd60e51b81526004016108ec90612e2b565b60608161212d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612157578061214181612ffd565b91506121509050600a83612f4c565b9150612131565b60008167ffffffffffffffff8111156121725761217261309a565b6040519080825280601f01601f19166020018201604052801561219c576020820181803683370190505b5090505b8415610f99576121b1600183612f7f565b91506121be600a86613018565b6121c9906030612f34565b60f81b8183815181106121de576121de613084565b60200101906001600160f81b031916908160001a905350612200600a86612f4c565b94506121a0565b6001600160a01b0383166122625761225d81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612285565b816001600160a01b0316836001600160a01b031614612285576122858382612415565b6001600160a01b03821661229c57610b40816124b2565b826001600160a01b0316826001600160a01b031614610b4057610b408282612561565b6000826122cc85846125a5565b14949350505050565b6122df83836125ea565b6122ec6000848484612308565b610b405760405162461bcd60e51b81526004016108ec90612e2b565b60006001600160a01b0384163b1561240a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061234c903390899088908890600401612d3d565b602060405180830381600087803b15801561236657600080fd5b505af1925050508015612396575060408051601f3d908101601f1916820190925261239391810190612ba1565b60015b6123f0573d8080156123c4576040519150601f19603f3d011682016040523d82523d6000602084013e6123c9565b606091505b5080516123e85760405162461bcd60e51b81526004016108ec90612e2b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f99565b506001949350505050565b6000600161242284611018565b61242c9190612f7f565b60008381526007602052604090205490915080821461247f576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906124c490600190612f7f565b600083815260096020526040812054600880549394509092849081106124ec576124ec613084565b90600052602060002001549050806008838154811061250d5761250d613084565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125455761254561306e565b6001900381819060005260206000200160009055905550505050565b600061256c83611018565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b600081815b8451811015610e11576125d6828683815181106125c9576125c9613084565b6020026020010151612738565b9150806125e281612ffd565b9150506125aa565b6001600160a01b0382166126405760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108ec565b6000818152600260205260409020546001600160a01b0316156126a55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108ec565b6126b160008383612207565b6001600160a01b03821660009081526003602052604081208054600192906126da908490612f34565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818310612754576000828152602084905260409020612054565b6000838152602083905260409020612054565b82805461277390612fc2565b90600052602060002090601f01602090048101928261279557600085556127db565b82601f106127ae57805160ff19168380011785556127db565b828001600101855582156127db579182015b828111156127db5782518255916020019190600101906127c0565b506127e792915061280a565b5090565b604051806101800160405280600c906020820280368337509192915050565b5b808211156127e7576000815560010161280b565b600067ffffffffffffffff8311156128395761283961309a565b61284c601f8401601f1916602001612f03565b905082815283838301111561286057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461288e57600080fd5b919050565b60008083601f8401126128a557600080fd5b50813567ffffffffffffffff8111156128bd57600080fd5b6020830191508360208260051b85010111156128d857600080fd5b9250929050565b8035801515811461288e57600080fd5b60006020828403121561290157600080fd5b61205482612877565b6000806040838503121561291d57600080fd5b61292683612877565b915061293460208401612877565b90509250929050565b60008060006060848603121561295257600080fd5b61295b84612877565b925061296960208501612877565b9150604084013590509250925092565b6000806000806080858703121561298f57600080fd5b61299885612877565b93506129a660208601612877565b925060408501359150606085013567ffffffffffffffff8111156129c957600080fd5b8501601f810187136129da57600080fd5b6129e98782356020840161281f565b91505092959194509250565b600080600060408486031215612a0a57600080fd5b612a1384612877565b9250602084013567ffffffffffffffff811115612a2f57600080fd5b612a3b86828701612893565b9497909650939450505050565b60008060408385031215612a5b57600080fd5b612a6483612877565b9150612934602084016128df565b60008060408385031215612a8557600080fd5b612a8e83612877565b946020939093013593505050565b60006020808385031215612aaf57600080fd5b823567ffffffffffffffff80821115612ac757600080fd5b818501915085601f830112612adb57600080fd5b813581811115612aed57612aed61309a565b8060051b9150612afe848301612f03565b8181528481019084860184860187018a1015612b1957600080fd5b600095505b83861015612b4357612b2f81612877565b835260019590950194918601918601612b1e565b5098975050505050505050565b600060208284031215612b6257600080fd5b612054826128df565b600060208284031215612b7d57600080fd5b5035919050565b600060208284031215612b9657600080fd5b8135612054816130b0565b600060208284031215612bb357600080fd5b8151612054816130b0565b600060208284031215612bd057600080fd5b813567ffffffffffffffff811115612be757600080fd5b8201601f81018413612bf857600080fd5b610f998482356020840161281f565b600080600060408486031215612c1c57600080fd5b83359250602084013567ffffffffffffffff811115612a2f57600080fd5b60008151808452612c52816020860160208601612f96565b601f01601f19169290920160200192915050565b60008151612c78818560208601612f96565b9290920192915050565b600080845481600182811c915080831680612c9e57607f831692505b6020808410821415612cbe57634e487b7160e01b86526022600452602486fd5b818015612cd25760018114612ce357612d10565b60ff19861689528489019650612d10565b60008b81526020902060005b86811015612d085781548b820152908501908301612cef565b505084890196505b505050505050612d34612d238286612c66565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612d7090830184612c3a565b9695505050505050565b6101808101818360005b600c811015612da3578151835260209283019290910190600101612d84565b50505092915050565b6020808252825182820181905260009190848201906040850190845b81811015612de457835183529284019291840191600101612dc8565b50909695505050505050565b6020810160058310612e1257634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006120546020830184612c3a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612f2c57612f2c61309a565b604052919050565b60008219821115612f4757612f4761302c565b500190565b600082612f5b57612f5b613042565b500490565b6000816000190483118215151615612f7a57612f7a61302c565b500290565b600082821015612f9157612f9161302c565b500390565b60005b83811015612fb1578181015183820152602001612f99565b838111156115845750506000910152565b600181811c90821680612fd657607f821691505b60208210811415612ff757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130115761301161302c565b5060010190565b60008261302757613027613042565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c7c57600080fdfea264697066735822122086068712d46b6a3eb29da5c7695ffb2aba31bf7a6b5f6ad6d12d136319e0502c64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100f5e1eaa5107678242e6c0cdbea1b8c5223714fe5dcf434b05dc1bca48fee12e5000000000000000000000000000000000000000000000000000000000000000b43616573617273204e46540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006436173696e6f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d627953435576544b4e686779386938795168504a4d714c454b6339747931374e52426d6e545879735a7266382f000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Caesars NFT
Arg [1] : _symbol (string): Casino
Arg [2] : _baseURI (string): https://gateway.pinata.cloud/ipfs/QmbySCUvTKNhgy8i8yQhPJMqLEKc9ty17NRBmnTXysZrf8/
Arg [3] : _merkleRoot (bytes32): 0xf5e1eaa5107678242e6c0cdbea1b8c5223714fe5dcf434b05dc1bca48fee12e5
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : f5e1eaa5107678242e6c0cdbea1b8c5223714fe5dcf434b05dc1bca48fee12e5
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 43616573617273204e4654000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 436173696e6f0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [9] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [10] : 732f516d627953435576544b4e686779386938795168504a4d714c454b633974
Arg [11] : 7931374e52426d6e545879735a7266382f000000000000000000000000000000
Deployed Bytecode Sourcemap
61206:10229:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34666:224;;;;;;;;;;-1:-1:-1;34666:224:0;;;;;:::i;:::-;;:::i;:::-;;;10741:14:1;;10734:22;10716:41;;10704:2;10689:18;34666:224:0;;;;;;;;67065:73;;;;;;;;;;-1:-1:-1;67065:73:0;;;;;:::i;:::-;;:::i;:::-;;61442:30;;;;;;;;;;;;;;;;;;;10914:25:1;;;10902:2;10887:18;61442:30:0;10768:177:1;61839:46:0;;;;;;;;;;-1:-1:-1;61839:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;22558:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24117:221::-;;;;;;;;;;-1:-1:-1;24117:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8900:32:1;;;8882:51;;8870:2;8855:18;24117:221:0;8736:203:1;23640:411:0;;;;;;;;;;-1:-1:-1;23640:411:0;;;;;:::i;:::-;;:::i;61308:33::-;;;;;;;;;;;;;;;;67701:120;;;;;;;;;;-1:-1:-1;67701:120:0;;;;;:::i;:::-;;:::i;35306:113::-;;;;;;;;;;-1:-1:-1;35394:10:0;:17;35306:113;;25007:339;;;;;;;;;;-1:-1:-1;25007:339:0;;;;;:::i;:::-;;:::i;61803:25::-;;;;;;;;;;;;;;;;34974:256;;;;;;;;;;-1:-1:-1;34974:256:0;;;;;:::i;:::-;;:::i;61551:25::-;;;;;;;;;;;;;;;;67467:101;;;;;;;;;;-1:-1:-1;67467:101:0;;;;;:::i;:::-;;:::i;71026:398::-;;;;;;;;;;;;;:::i;25417:185::-;;;;;;;;;;-1:-1:-1;25417:185:0;;;;;:::i;:::-;;:::i;65986:348::-;;;;;;;;;;-1:-1:-1;65986:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;66877:80::-;;;;;;;;;;-1:-1:-1;66877:80:0;;;;;:::i;:::-;;:::i;61382:24::-;;;;;;;;;;;;;;;;35496:233;;;;;;;;;;-1:-1:-1;35496:233:0;;;;;:::i;:::-;;:::i;66963:98::-;;;;;;;;;;-1:-1:-1;66963:98:0;;;;;:::i;:::-;;:::i;69795:184::-;;;;;;;;;;-1:-1:-1;69795:184:0;;;;;:::i;:::-;;:::i;61778:18::-;;;;;;;;;;-1:-1:-1;61778:18:0;;;;;;;;22252:239;;;;;;;;;;-1:-1:-1;22252:239:0;;;;;:::i;:::-;;:::i;21982:208::-;;;;;;;;;;-1:-1:-1;21982:208:0;;;;;:::i;:::-;;:::i;42455:94::-;;;;;;;;;;;;;:::i;68616:106::-;;;;;;;;;;-1:-1:-1;68616:106:0;;;;;:::i;:::-;;:::i;61583:26::-;;;;;;;;;;;;;;;;41804:87;;;;;;;;;;-1:-1:-1;41877:6:0;;-1:-1:-1;;;;;41877:6:0;41804:87;;22727:104;;;;;;;;;;;;;:::i;70773:185::-;;;;;;;;;;-1:-1:-1;70773:185:0;;;;;:::i;:::-;;:::i;62251:904::-;;;;;;:::i;:::-;;:::i;24410:295::-;;;;;;;;;;-1:-1:-1;24410:295:0;;;;;:::i;:::-;;:::i;61512:34::-;;;;;;;;;;;;;;;;25673:328;;;;;;;;;;-1:-1:-1;25673:328:0;;;;;:::i;:::-;;:::i;67966:528::-;;;;;;;;;;-1:-1:-1;67966:528:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;67576:117::-;;;;;;;;;;-1:-1:-1;67576:117:0;;;;;:::i;:::-;;:::i;66567:302::-;;;;;;;;;;-1:-1:-1;66567:302:0;;;;;:::i;:::-;;:::i;61993:23::-;;;;;;;;;;-1:-1:-1;61993:23:0;;;;;;;;;;;;;;;:::i;63161:2819::-;;;;;;:::i;:::-;;:::i;61346:31::-;;;;;;;;;;;;;;;;67367:92;;;;;;;;;;-1:-1:-1;67367:92:0;;;;;:::i;:::-;;:::i;24776:164::-;;;;;;;;;;-1:-1:-1;24776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24776:164;61477:30;;;;;;;;;;;;;;;;42704:192;;;;;;;;;;-1:-1:-1;42704:192:0;;;;;:::i;:::-;;:::i;61411:26::-;;;;;;;;;;;;;;;;67264:95;;;;;;;;;;-1:-1:-1;67264:95:0;;;;;:::i;:::-;;:::i;34666:224::-;34768:4;-1:-1:-1;;;;;;34792:50:0;;-1:-1:-1;;;34792:50:0;;:90;;;34846:36;34870:11;34846:23;:36::i;:::-;34785:97;34666:224;-1:-1:-1;;34666:224:0:o;67065:73::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;;;;;;;;;67117:6:::1;:15:::0;;-1:-1:-1;;67117:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;67065:73::o;22558:100::-;22612:13;22645:5;22638:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22558:100;:::o;24117:221::-;24193:7;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;24213:73;;;;-1:-1:-1;;;24213:73:0;;18560:2:1;24213:73:0;;;18542:21:1;18599:2;18579:18;;;18572:30;18638:34;18618:18;;;18611:62;-1:-1:-1;;;18689:18:1;;;18682:42;18741:19;;24213:73:0;18358:408:1;24213:73:0;-1:-1:-1;24306:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24306:24:0;;24117:221::o;23640:411::-;23721:13;23737:23;23752:7;23737:14;:23::i;:::-;23721:39;;23785:5;-1:-1:-1;;;;;23779:11:0;:2;-1:-1:-1;;;;;23779:11:0;;;23771:57;;;;-1:-1:-1;;;23771:57:0;;20941:2:1;23771:57:0;;;20923:21:1;20980:2;20960:18;;;20953:30;21019:34;20999:18;;;20992:62;-1:-1:-1;;;21070:18:1;;;21063:31;21111:19;;23771:57:0;20739:397:1;23771:57:0;20167:10;-1:-1:-1;;;;;23863:21:0;;;;:62;;-1:-1:-1;23888:37:0;23905:5;20167:10;24776:164;:::i;23888:37::-;23841:168;;;;-1:-1:-1;;;23841:168:0;;16241:2:1;23841:168:0;;;16223:21:1;16280:2;16260:18;;;16253:30;16319:34;16299:18;;;16292:62;16390:26;16370:18;;;16363:54;16434:19;;23841:168:0;16039:420:1;23841:168:0;24022:21;24031:2;24035:7;24022:8;:21::i;:::-;23710:341;23640:411;;:::o;67701:120::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67778:14:::1;:32:::0;67701:120::o;25007:339::-;25202:41;20167:10;25235:7;25202:18;:41::i;:::-;25194:103;;;;-1:-1:-1;;;25194:103:0;;;;;;;:::i;:::-;25310:28;25320:4;25326:2;25330:7;25310:9;:28::i;34974:256::-;35071:7;35107:23;35124:5;35107:16;:23::i;:::-;35099:5;:31;35091:87;;;;-1:-1:-1;;;35091:87:0;;12777:2:1;35091:87:0;;;12759:21:1;12816:2;12796:18;;;12789:30;12855:34;12835:18;;;12828:62;-1:-1:-1;;;12906:18:1;;;12899:41;12957:19;;35091:87:0;12575:407:1;35091:87:0;-1:-1:-1;;;;;;35196:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34974:256::o;67467:101::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67536:10:::1;:24:::0;67467:101::o;71026:398::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;71109:21:::1;71089:17;71177:240;71194:13;:20:::0;71190:24;::::1;71177:240;;;71244:13;71258:1;71244:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;71244:16:0::1;-1:-1:-1::0;;;;;71236:34:0::1;:169;71289:101;71323:12;71358:10;71369:1;71358:13;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;::::1;;;;::::0;::::1;;;71289:10;:101::i;:::-;71236:169;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;71216:3:0;::::1;::::0;::::1;:::i;:::-;;;;71177:240;;;;71076:348;71026:398::o:0;25417:185::-;25555:39;25572:4;25578:2;25582:7;25555:39;;;;;;;;;;;;:16;:39::i;65986:348::-;66061:16;66089:23;66115:17;66125:6;66115:9;:17::i;:::-;66089:43;;66139:25;66181:15;66167:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66167:30:0;;66139:58;;66209:9;66204:103;66224:15;66220:1;:19;66204:103;;;66269:30;66289:6;66297:1;66269:19;:30::i;:::-;66255:8;66264:1;66255:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;66241:3;;;;:::i;:::-;;;;66204:103;;;-1:-1:-1;66320:8:0;65986:348;-1:-1:-1;;;65986:348:0:o;66877:80::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;66936:4:::1;:15:::0;66877:80::o;35496:233::-;35571:7;35607:30;35394:10;:17;;35306:113;35607:30;35599:5;:38;35591:95;;;;-1:-1:-1;;;35591:95:0;;22520:2:1;35591:95:0;;;22502:21:1;22559:2;22539:18;;;22532:30;22598:34;22578:18;;;22571:62;-1:-1:-1;;;22649:18:1;;;22642:42;22701:19;;35591:95:0;22318:408:1;35591:95:0;35704:10;35715:5;35704:17;;;;;;;;:::i;:::-;;;;;;;;;35697:24;;35496:233;;;:::o;66963:98::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67034:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;69795:184::-:0;69911:4;69940:31;69948:14;69953:8;68980:26;;-1:-1:-1;;7345:2:1;7341:15;;;7337:53;68980:26:0;;;7325:66:1;68943:7:0;;7407:12:1;;68980:26:0;;;;;;;;;;;;68970:37;;;;;;68963:44;;68888:127;;;;69948:14;69964:6;;69940:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;69940:7:0;;-1:-1:-1;;;69940:31:0:i;:::-;69933:38;69795:184;-1:-1:-1;;;;69795:184:0:o;22252:239::-;22324:7;22360:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22360:16:0;22395:19;22387:73;;;;-1:-1:-1;;;22387:73:0;;17077:2:1;22387:73:0;;;17059:21:1;17116:2;17096:18;;;17089:30;17155:34;17135:18;;;17128:62;-1:-1:-1;;;17206:18:1;;;17199:39;17255:19;;22387:73:0;16875:405:1;21982:208:0;22054:7;-1:-1:-1;;;;;22082:19:0;;22074:74;;;;-1:-1:-1;;;22074:74:0;;16666:2:1;22074:74:0;;;16648:21:1;16705:2;16685:18;;;16678:30;16744:34;16724:18;;;16717:62;-1:-1:-1;;;16795:18:1;;;16788:40;16845:19;;22074:74:0;16464:406:1;22074:74:0;-1:-1:-1;;;;;;22166:16:0;;;;;:9;:16;;;;;;;21982:208::o;42455:94::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;42520:21:::1;42538:1;42520:9;:21::i;:::-;42455:94::o:0;68616:106::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;68690:10:::1;:24:::0;68616:106::o;22727:104::-;22783:13;22816:7;22809:14;;;;;:::i;70773:185::-;70856:6;70851:100;70868:10;:17;70864:1;:21;70851:100;;;70926:10;70937:1;70926:13;;;;;;;;:::i;:::-;;;;;;;70907;70921:1;70907:16;;;;;;;;:::i;:::-;;;;;;;;;;:32;;-1:-1:-1;;;;;;70907:32:0;-1:-1:-1;;;;;70907:32:0;;;;;;;;;;70887:3;;;;:::i;:::-;;;;70851:100;;62251:904;62317:6;;;;62316:7;62308:36;;;;-1:-1:-1;;;62308:36:0;;15131:2:1;62308:36:0;;;15113:21:1;15170:2;15150:18;;;15143:30;-1:-1:-1;;;15189:18:1;;;15182:46;15245:18;;62308:36:0;14929:340:1;62308:36:0;62374:15;62359:11;;;;:30;;;;;;;;:::i;:::-;;62351:69;;;;-1:-1:-1;;;62351:69:0;;21343:2:1;62351:69:0;;;21325:21:1;21382:2;21362:18;;;21355:30;21421:28;21401:18;;;21394:56;21467:18;;62351:69:0;21141:350:1;62351:69:0;62449:1;62435:11;:15;62427:59;;;;-1:-1:-1;;;62427:59:0;;18200:2:1;62427:59:0;;;18182:21:1;18239:2;18219:18;;;18212:30;18278:33;18258:18;;;18251:61;18329:18;;62427:59:0;17998:355:1;62427:59:0;62516:14;;62501:11;:29;;62493:92;;;;-1:-1:-1;;;62493:92:0;;20103:2:1;62493:92:0;;;20085:21:1;20142:2;20122:18;;;20115:30;20181:34;20161:18;;;20154:62;-1:-1:-1;;;20232:18:1;;;20225:48;20290:19;;62493:92:0;19901:414:1;62493:92:0;62592:11;62606:13;35394:10;:17;;35306:113;62606:13;62658:9;;62592:27;;-1:-1:-1;62634:20:0;62643:11;62592:27;62634:20;:::i;:::-;:33;;62626:66;;;;-1:-1:-1;;;62626:66:0;;22933:2:1;62626:66:0;;;22915:21:1;22972:2;22952:18;;;22945:30;-1:-1:-1;;;22991:18:1;;;22984:50;23051:18;;62626:66:0;22731:344:1;62626:66:0;41877:6;;-1:-1:-1;;;;;41877:6:0;62705:10;:21;62701:348;;62767:11;62760:4;;:18;;;;:::i;:::-;62747:9;:31;;62739:79;;;;-1:-1:-1;;;62739:79:0;;22116:2:1;62739:79:0;;;22098:21:1;22155:2;22135:18;;;22128:30;22194:34;22174:18;;;22167:62;-1:-1:-1;;;22245:18:1;;;22238:33;22288:19;;62739:79:0;21914:399:1;62739:79:0;62832:18;;:23;62829:213;;62926:18;;62897:10;62880:28;;;;:16;:28;;;;;;:42;;62911:11;;62880:42;:::i;:::-;:64;;62872:100;;;;-1:-1:-1;;;62872:100:0;;17487:2:1;62872:100:0;;;17469:21:1;17526:2;17506:18;;;17499:30;-1:-1:-1;;;17545:18:1;;;17538:53;17608:18;;62872:100:0;17285:347:1;62872:100:0;63004:10;62987:28;;;;:16;:28;;;;;:43;;63019:11;;62987:28;:43;;63019:11;;62987:43;:::i;:::-;;;;-1:-1:-1;;62829:213:0;63074:1;63057:93;63082:11;63077:1;:16;63057:93;;63109:33;63119:10;63131;63140:1;63131:6;:10;:::i;:::-;63109:9;:33::i;:::-;63095:3;;;;:::i;:::-;;;;63057:93;;24410:295;-1:-1:-1;;;;;24513:24:0;;20167:10;24513:24;;24505:62;;;;-1:-1:-1;;;24505:62:0;;14777:2:1;24505:62:0;;;14759:21:1;14816:2;14796:18;;;14789:30;14855:27;14835:18;;;14828:55;14900:18;;24505:62:0;14575:349:1;24505:62:0;20167:10;24580:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24580:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24580:53:0;;;;;;;;;;24649:48;;10716:41:1;;;24580:42:0;;20167:10;24649:48;;10689:18:1;24649:48:0;;;;;;;24410:295;;:::o;25673:328::-;25848:41;20167:10;25881:7;25848:18;:41::i;:::-;25840:103;;;;-1:-1:-1;;;25840:103:0;;;;;;;:::i;:::-;25954:39;25968:4;25974:2;25978:7;25987:5;25954:13;:39::i;:::-;25673:328;;;;:::o;67966:528::-;68028:15;;:::i;:::-;68056:407;;;;;;;;68095:10;;68056:407;;68121:14;;68056:407;;;;;;;;-1:-1:-1;;;;;68151:22:0;;68056:21;68151:22;;;:12;:22;;;;;;68056:407;;;;68189:14;;68056:407;;;;68219:18;;68056:407;;;;68253:26;;;:16;:26;;;;;;68056:407;;;;68295:23;;;:13;:23;;;;;;;68056:407;;;;;;;68334:13;35394:10;:17;;35306:113;68334:13;68056:407;;68363:7;;68056:407;;;;68391:11;;68056:407;;;;;68391:11;;68386:17;;;;;;;;:::i;:::-;68056:407;;68419:9;;68056:407;;;;68443:9;;68056:407;;;;;;67966:528;-1:-1:-1;;;67966:528:0:o;67576:117::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67653:14:::1;:32:::0;67576:117::o;66567:302::-;27576:4;27600:16;;;:7;:16;;;;;;66686:13;;-1:-1:-1;;;;;27600:16:0;66717:61;;;;-1:-1:-1;;;66717:61:0;;12417:2:1;66717:61:0;;;12399:21:1;12456:2;12436:18;;;12429:30;12495:33;12475:18;;;12468:61;12546:18;;66717:61:0;12215:355:1;66717:61:0;66822:7;66831:19;:8;:17;:19::i;:::-;66805:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66791:70;;66567:302;;;:::o;63161:2819::-;63388:6;;;;63387:7;63379:36;;;;-1:-1:-1;;;63379:36:0;;15131:2:1;63379:36:0;;;15113:21:1;15170:2;15150:18;;;15143:30;-1:-1:-1;;;15189:18:1;;;15182:46;15245:18;;63379:36:0;14929:340:1;63379:36:0;63445:18;63430:11;;;;:33;;;;;;;;:::i;:::-;;63422:76;;;;-1:-1:-1;;;63422:76:0;;18973:2:1;63422:76:0;;;18955:21:1;19012:2;18992:18;;;18985:30;19051:32;19031:18;;;19024:60;19101:18;;63422:76:0;18771:354:1;63422:76:0;63513:33;63527:10;63539:6;;63513:13;:33::i;:::-;63505:69;;;;-1:-1:-1;;;63505:69:0;;15889:2:1;63505:69:0;;;15871:21:1;15928:2;15908:18;;;15901:30;15967:25;15947:18;;;15940:53;16010:18;;63505:69:0;15687:347:1;63505:69:0;63603:1;63589:11;:15;63581:59;;;;-1:-1:-1;;;63581:59:0;;18200:2:1;63581:59:0;;;18182:21:1;18239:2;18219:18;;;18212:30;18278:33;18258:18;;;18251:61;18329:18;;63581:59:0;17998:355:1;63581:59:0;63670:10;;63655:11;:25;;63647:88;;;;-1:-1:-1;;;63647:88:0;;20522:2:1;63647:88:0;;;20504:21:1;20561:2;20541:18;;;20534:30;20600:34;20580:18;;;20573:62;-1:-1:-1;;;20651:18:1;;;20644:48;20709:19;;63647:88:0;20320:414:1;63647:88:0;63742:11;63756:13;35394:10;:17;;35306:113;63756:13;63808:9;;63742:27;;-1:-1:-1;63784:20:0;63793:11;63742:27;63784:20;:::i;:::-;:33;;63776:65;;;;-1:-1:-1;;;63776:65:0;;12069:2:1;63776:65:0;;;12051:21:1;12108:2;12088:18;;;12081:30;-1:-1:-1;;;12127:18:1;;;12120:49;12186:18;;63776:65:0;11867:343:1;63776:65:0;64020:10;63977:14;64006:25;;;:13;:25;;;;;;63994:9;;:37;;64006:25;63994:37;:::i;:::-;63977:54;;64079:10;64150:13;64315:9;64300:11;:24;64296:429;;64440:10;64414:1;64426:25;;;:13;:25;;;;;:40;;64414:1;;-1:-1:-1;64455:11:0;;64414:1;;64426:40;;64455:11;;64426:40;:::i;:::-;;;;-1:-1:-1;64488:11:0;;-1:-1:-1;64296:429:0;;-1:-1:-1;64296:429:0;;64614:23;64628:9;64614:11;:23;:::i;:::-;64662:10;64648:25;;;;:13;:25;;;;;:38;;64606:31;;-1:-1:-1;64677:9:0;;64648:25;;;:38;;64677:9;;64648:38;:::i;:::-;;;;-1:-1:-1;64708:9:0;;-1:-1:-1;;64296:429:0;41877:6;;-1:-1:-1;;;;;41877:6:0;64866:10;:21;64862:533;;64931:7;;64916:11;64904:9;;:23;;;;:::i;:::-;:34;64900:488;;64985:5;64978:4;;:12;;;;:::i;:::-;64965:9;:25;;64957:60;;;;-1:-1:-1;;;64957:60:0;;11718:2:1;64957:60:0;;;11700:21:1;11757:2;11737:18;;;11730:30;-1:-1:-1;;;11776:18:1;;;11769:52;11838:18;;64957:60:0;11516:346:1;64957:60:0;64900:488;;;65092:13;65118:9;;65108:7;;:19;;;;:::i;:::-;65092:35;;65199:9;65187:8;:21;65183:62;;65223:20;65234:9;65223:8;:20;:::i;:::-;65211:32;;;;:::i;:::-;;;65183:62;65290:22;65304:8;65290:11;:22;:::i;:::-;65282:4;;:31;;;;:::i;:::-;65269:9;:44;;65261:79;;;;-1:-1:-1;;;65261:79:0;;11718:2:1;65261:79:0;;;11700:21:1;11757:2;11737:18;;;11730:30;-1:-1:-1;;;11776:18:1;;;11769:52;11838:18;;65261:79:0;11516:346:1;65261:79:0;65368:8;-1:-1:-1;64900:488:0;65416:8;65403:9;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;65561:14:0;;:19;65558:312;;65643:14;;65614:10;65601:24;;;;:12;:24;;;;;;:38;;65628:11;;65601:38;:::i;:::-;:56;;65593:92;;;;-1:-1:-1;;;65593:92:0;;17487:2:1;65593:92:0;;;17469:21:1;17526:2;17506:18;;;17499:30;-1:-1:-1;;;17545:18:1;;;17538:53;17608:18;;65593:92:0;17285:347:1;65593:92:0;65709:10;65696:24;;;;:12;:24;;;;;:39;;65724:11;;65696:24;:39;;65724:11;;65696:39;:::i;:::-;;;;-1:-1:-1;;65558:312:0;65893:1;65876:97;65901:11;65896:1;:16;65876:97;;65930:33;65940:10;65952;65961:1;65952:6;:10;:::i;65930:33::-;65914:3;;;;:::i;:::-;;;;65876:97;;;;63245:2735;;;;63161:2819;;;:::o;67367:92::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67433:7:::1;:18:::0;67367:92::o;42704:192::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42793:22:0;::::1;42785:73;;;::::0;-1:-1:-1;;;42785:73:0;;13608:2:1;42785:73:0::1;::::0;::::1;13590:21:1::0;13647:2;13627:18;;;13620:30;13686:34;13666:18;;;13659:62;-1:-1:-1;;;13737:18:1;;;13730:36;13783:19;;42785:73:0::1;13406:402:1::0;42785:73:0::1;42869:19;42879:8;42869:9;:19::i;:::-;42704:192:::0;:::o;67264:95::-;41877:6;;-1:-1:-1;;;;;41877:6:0;20167:10;42024:23;42016:68;;;;-1:-1:-1;;;42016:68:0;;;;;;;:::i;:::-;67345:5:::1;67340:11;;;;;;;;:::i;:::-;67326;:25:::0;;-1:-1:-1;;67326:25:0::1;::::0;;::::1;::::0;::::1;;;;;;:::i;:::-;;;;;;67264:95:::0;:::o;21613:305::-;21715:4;-1:-1:-1;;;;;;21752:40:0;;-1:-1:-1;;;21752:40:0;;:105;;-1:-1:-1;;;;;;;21809:48:0;;-1:-1:-1;;;21809:48:0;21752:105;:158;;;-1:-1:-1;;;;;;;;;;7553:40:0;;;21874:36;7444:157;31493:174;31568:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31568:29:0;-1:-1:-1;;;;;31568:29:0;;;;;;;;:24;;31622:23;31568:24;31622:14;:23::i;:::-;-1:-1:-1;;;;;31613:46:0;;;;;;;;;;;31493:174;;:::o;27805:348::-;27898:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;27915:73;;;;-1:-1:-1;;;27915:73:0;;15476:2:1;27915:73:0;;;15458:21:1;15515:2;15495:18;;;15488:30;15554:34;15534:18;;;15527:62;-1:-1:-1;;;15605:18:1;;;15598:42;15657:19;;27915:73:0;15274:408:1;27915:73:0;27999:13;28015:23;28030:7;28015:14;:23::i;:::-;27999:39;;28068:5;-1:-1:-1;;;;;28057:16:0;:7;-1:-1:-1;;;;;28057:16:0;;:51;;;;28101:7;-1:-1:-1;;;;;28077:31:0;:20;28089:7;28077:11;:20::i;:::-;-1:-1:-1;;;;;28077:31:0;;28057:51;:87;;;-1:-1:-1;;;;;;24897:25:0;;;24873:4;24897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28112:32;24776:164;30797:578;30956:4;-1:-1:-1;;;;;30929:31:0;:23;30944:7;30929:14;:23::i;:::-;-1:-1:-1;;;;;30929:31:0;;30921:85;;;;-1:-1:-1;;;30921:85:0;;19693:2:1;30921:85:0;;;19675:21:1;19732:2;19712:18;;;19705:30;19771:34;19751:18;;;19744:62;-1:-1:-1;;;19822:18:1;;;19815:39;19871:19;;30921:85:0;19491:405:1;30921:85:0;-1:-1:-1;;;;;31025:16:0;;31017:65;;;;-1:-1:-1;;;31017:65:0;;14372:2:1;31017:65:0;;;14354:21:1;14411:2;14391:18;;;14384:30;14450:34;14430:18;;;14423:62;-1:-1:-1;;;14501:18:1;;;14494:34;14545:19;;31017:65:0;14170:400:1;31017:65:0;31095:39;31116:4;31122:2;31126:7;31095:20;:39::i;:::-;31199:29;31216:1;31220:7;31199:8;:29::i;:::-;-1:-1:-1;;;;;31241:15:0;;;;;;:9;:15;;;;;:20;;31260:1;;31241:15;:20;;31260:1;;31241:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31272:13:0;;;;;;:9;:13;;;;;:18;;31289:1;;31272:13;:18;;31289:1;;31272:18;:::i;:::-;;;;-1:-1:-1;;31301:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31301:21:0;-1:-1:-1;;;;;31301:21:0;;;;;;;;;31340:27;;31301:16;;31340:27;;;;;;;30797:578;;;:::o;70027:143::-;70110:4;70158;70144:11;70152:3;70144:5;:11;:::i;:::-;:18;;;;:::i;:::-;70137:25;70027:143;-1:-1:-1;;;70027:143:0:o;69344:189::-;69451:4;69480:45;69499:6;69507:10;;69519:5;69480:18;:45::i;42904:173::-;42979:6;;;-1:-1:-1;;;;;42996:17:0;;;-1:-1:-1;;;;;;42996:17:0;;;;;;;43029:40;;42979:6;;;42996:17;42979:6;;43029:40;;42960:16;;43029:40;42949:128;42904:173;:::o;28495:110::-;28571:26;28581:2;28585:7;28571:26;;;;;;;;;;;;:9;:26::i;26883:315::-;27040:28;27050:4;27056:2;27060:7;27040:9;:28::i;:::-;27087:48;27110:4;27116:2;27120:7;27129:5;27087:22;:48::i;:::-;27079:111;;;;-1:-1:-1;;;27079:111:0;;;;;;;:::i;7919:723::-;7975:13;8196:10;8192:53;;-1:-1:-1;;8223:10:0;;;;;;;;;;;;-1:-1:-1;;;8223:10:0;;;;;7919:723::o;8192:53::-;8270:5;8255:12;8311:78;8318:9;;8311:78;;8344:8;;;;:::i;:::-;;-1:-1:-1;8367:10:0;;-1:-1:-1;8375:2:0;8367:10;;:::i;:::-;;;8311:78;;;8399:19;8431:6;8421:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8421:17:0;;8399:39;;8449:154;8456:10;;8449:154;;8483:11;8493:1;8483:11;;:::i;:::-;;-1:-1:-1;8552:10:0;8560:2;8552:5;:10;:::i;:::-;8539:24;;:2;:24;:::i;:::-;8526:39;;8509:6;8516;8509:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8509:56:0;;;;;;;;-1:-1:-1;8580:11:0;8589:2;8580:11;;:::i;:::-;;;8449:154;;36342:589;-1:-1:-1;;;;;36548:18:0;;36544:187;;36583:40;36615:7;37758:10;:17;;37731:24;;;;:15;:24;;;;;:44;;;37786:24;;;;;;;;;;;;37654:164;36583:40;36544:187;;;36653:2;-1:-1:-1;;;;;36645:10:0;:4;-1:-1:-1;;;;;36645:10:0;;36641:90;;36672:47;36705:4;36711:7;36672:32;:47::i;:::-;-1:-1:-1;;;;;36745:16:0;;36741:183;;36778:45;36815:7;36778:36;:45::i;36741:183::-;36851:4;-1:-1:-1;;;;;36845:10:0;:2;-1:-1:-1;;;;;36845:10:0;;36841:83;;36872:40;36900:2;36904:7;36872:27;:40::i;44142:190::-;44267:4;44320;44291:25;44304:5;44311:4;44291:12;:25::i;:::-;:33;;44142:190;-1:-1:-1;;;;44142:190:0:o;28832:321::-;28962:18;28968:2;28972:7;28962:5;:18::i;:::-;29013:54;29044:1;29048:2;29052:7;29061:5;29013:22;:54::i;:::-;28991:154;;;;-1:-1:-1;;;28991:154:0;;;;;;;:::i;32232:799::-;32387:4;-1:-1:-1;;;;;32408:13:0;;10767:20;10815:8;32404:620;;32444:72;;-1:-1:-1;;;32444:72:0;;-1:-1:-1;;;;;32444:36:0;;;;;:72;;20167:10;;32495:4;;32501:7;;32510:5;;32444:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32444:72:0;;;;;;;;-1:-1:-1;;32444:72:0;;;;;;;;;;;;:::i;:::-;;;32440:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32686:13:0;;32682:272;;32729:60;;-1:-1:-1;;;32729:60:0;;;;;;;:::i;32682:272::-;32904:6;32898:13;32889:6;32885:2;32881:15;32874:38;32440:529;-1:-1:-1;;;;;;32567:51:0;-1:-1:-1;;;32567:51:0;;-1:-1:-1;32560:58:0;;32404:620;-1:-1:-1;33008:4:0;32232:799;;;;;;:::o;38445:988::-;38711:22;38761:1;38736:22;38753:4;38736:16;:22::i;:::-;:26;;;;:::i;:::-;38773:18;38794:26;;;:17;:26;;;;;;38711:51;;-1:-1:-1;38927:28:0;;;38923:328;;-1:-1:-1;;;;;38994:18:0;;38972:19;38994:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39045:30;;;;;;:44;;;39162:30;;:17;:30;;;;;:43;;;38923:328;-1:-1:-1;39347:26:0;;;;:17;:26;;;;;;;;39340:33;;;-1:-1:-1;;;;;39391:18:0;;;;;:12;:18;;;;;:34;;;;;;;39384:41;38445:988::o;39728:1079::-;40006:10;:17;39981:22;;40006:21;;40026:1;;40006:21;:::i;:::-;40038:18;40059:24;;;:15;:24;;;;;;40432:10;:26;;39981:46;;-1:-1:-1;40059:24:0;;39981:46;;40432:26;;;;;;:::i;:::-;;;;;;;;;40410:48;;40496:11;40471:10;40482;40471:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40576:28;;;:15;:28;;;;;;;:41;;;40748:24;;;;;40741:31;40783:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39799:1008;;;39728:1079;:::o;37232:221::-;37317:14;37334:20;37351:2;37334:16;:20::i;:::-;-1:-1:-1;;;;;37365:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37410:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37232:221:0:o;45009:296::-;45092:7;45135:4;45092:7;45150:118;45174:5;:12;45170:1;:16;45150:118;;;45223:33;45233:12;45247:5;45253:1;45247:8;;;;;;;;:::i;:::-;;;;;;;45223:9;:33::i;:::-;45208:48;-1:-1:-1;45188:3:0;;;;:::i;:::-;;;;45150:118;;29489:382;-1:-1:-1;;;;;29569:16:0;;29561:61;;;;-1:-1:-1;;;29561:61:0;;17839:2:1;29561:61:0;;;17821:21:1;;;17858:18;;;17851:30;17917:34;17897:18;;;17890:62;17969:18;;29561:61:0;17637:356:1;29561:61:0;27576:4;27600:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27600:16:0;:30;29633:58;;;;-1:-1:-1;;;29633:58:0;;14015:2:1;29633:58:0;;;13997:21:1;14054:2;14034:18;;;14027:30;14093;14073:18;;;14066:58;14141:18;;29633:58:0;13813:352:1;29633:58:0;29704:45;29733:1;29737:2;29741:7;29704:20;:45::i;:::-;-1:-1:-1;;;;;29762:13:0;;;;;;:9;:13;;;;;:18;;29779:1;;29762:13;:18;;29779:1;;29762:18;:::i;:::-;;;;-1:-1:-1;;29791:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29791:21:0;-1:-1:-1;;;;;29791:21:0;;;;;;;;29830:33;;29791:16;;;29830:33;;29791:16;;29830:33;29489:382;;:::o;51216:149::-;51279:7;51310:1;51306;:5;:51;;51441:13;51535:15;;;51571:4;51564:15;;;51618:4;51602:21;;51306:51;;;51441:13;51535:15;;;51571:4;51564:15;;;51618:4;51602:21;;51314:20;51373:268;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:367::-;666:8;676:6;730:3;723:4;715:6;711:17;707:27;697:55;;748:1;745;738:12;697:55;-1:-1:-1;771:20:1;;814:18;803:30;;800:50;;;846:1;843;836:12;800:50;883:4;875:6;871:17;859:29;;943:3;936:4;926:6;923:1;919:14;911:6;907:27;903:38;900:47;897:67;;;960:1;957;950:12;897:67;603:367;;;;;:::o;975:160::-;1040:20;;1096:13;;1089:21;1079:32;;1069:60;;1125:1;1122;1115:12;1140:186;1199:6;1252:2;1240:9;1231:7;1227:23;1223:32;1220:52;;;1268:1;1265;1258:12;1220:52;1291:29;1310:9;1291:29;:::i;1331:260::-;1399:6;1407;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1331:260;;;;;:::o;1596:328::-;1673:6;1681;1689;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;:::-;1771:39;;1829:38;1863:2;1852:9;1848:18;1829:38;:::i;:::-;1819:48;;1914:2;1903:9;1899:18;1886:32;1876:42;;1596:328;;;;;:::o;1929:666::-;2024:6;2032;2040;2048;2101:3;2089:9;2080:7;2076:23;2072:33;2069:53;;;2118:1;2115;2108:12;2069:53;2141:29;2160:9;2141:29;:::i;:::-;2131:39;;2189:38;2223:2;2212:9;2208:18;2189:38;:::i;:::-;2179:48;;2274:2;2263:9;2259:18;2246:32;2236:42;;2329:2;2318:9;2314:18;2301:32;2356:18;2348:6;2345:30;2342:50;;;2388:1;2385;2378:12;2342:50;2411:22;;2464:4;2456:13;;2452:27;-1:-1:-1;2442:55:1;;2493:1;2490;2483:12;2442:55;2516:73;2581:7;2576:2;2563:16;2558:2;2554;2550:11;2516:73;:::i;:::-;2506:83;;;1929:666;;;;;;;:::o;2600:511::-;2695:6;2703;2711;2764:2;2752:9;2743:7;2739:23;2735:32;2732:52;;;2780:1;2777;2770:12;2732:52;2803:29;2822:9;2803:29;:::i;:::-;2793:39;;2883:2;2872:9;2868:18;2855:32;2910:18;2902:6;2899:30;2896:50;;;2942:1;2939;2932:12;2896:50;2981:70;3043:7;3034:6;3023:9;3019:22;2981:70;:::i;:::-;2600:511;;3070:8;;-1:-1:-1;2955:96:1;;-1:-1:-1;;;;2600:511:1:o;3116:254::-;3181:6;3189;3242:2;3230:9;3221:7;3217:23;3213:32;3210:52;;;3258:1;3255;3248:12;3210:52;3281:29;3300:9;3281:29;:::i;:::-;3271:39;;3329:35;3360:2;3349:9;3345:18;3329:35;:::i;3375:254::-;3443:6;3451;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3543:29;3562:9;3543:29;:::i;:::-;3533:39;3619:2;3604:18;;;;3591:32;;-1:-1:-1;;;3375:254:1:o;3634:963::-;3718:6;3749:2;3792;3780:9;3771:7;3767:23;3763:32;3760:52;;;3808:1;3805;3798:12;3760:52;3848:9;3835:23;3877:18;3918:2;3910:6;3907:14;3904:34;;;3934:1;3931;3924:12;3904:34;3972:6;3961:9;3957:22;3947:32;;4017:7;4010:4;4006:2;4002:13;3998:27;3988:55;;4039:1;4036;4029:12;3988:55;4075:2;4062:16;4097:2;4093;4090:10;4087:36;;;4103:18;;:::i;:::-;4149:2;4146:1;4142:10;4132:20;;4172:28;4196:2;4192;4188:11;4172:28;:::i;:::-;4234:15;;;4265:12;;;;4297:11;;;4327;;;4323:20;;4320:33;-1:-1:-1;4317:53:1;;;4366:1;4363;4356:12;4317:53;4388:1;4379:10;;4398:169;4412:2;4409:1;4406:9;4398:169;;;4469:23;4488:3;4469:23;:::i;:::-;4457:36;;4430:1;4423:9;;;;;4513:12;;;;4545;;4398:169;;;-1:-1:-1;4586:5:1;3634:963;-1:-1:-1;;;;;;;;3634:963:1:o;4602:180::-;4658:6;4711:2;4699:9;4690:7;4686:23;4682:32;4679:52;;;4727:1;4724;4717:12;4679:52;4750:26;4766:9;4750:26;:::i;4787:180::-;4846:6;4899:2;4887:9;4878:7;4874:23;4870:32;4867:52;;;4915:1;4912;4905:12;4867:52;-1:-1:-1;4938:23:1;;4787:180;-1:-1:-1;4787:180:1:o;4972:245::-;5030:6;5083:2;5071:9;5062:7;5058:23;5054:32;5051:52;;;5099:1;5096;5089:12;5051:52;5138:9;5125:23;5157:30;5181:5;5157:30;:::i;5222:249::-;5291:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:52;;;5360:1;5357;5350:12;5312:52;5392:9;5386:16;5411:30;5435:5;5411:30;:::i;5476:450::-;5545:6;5598:2;5586:9;5577:7;5573:23;5569:32;5566:52;;;5614:1;5611;5604:12;5566:52;5654:9;5641:23;5687:18;5679:6;5676:30;5673:50;;;5719:1;5716;5709:12;5673:50;5742:22;;5795:4;5787:13;;5783:27;-1:-1:-1;5773:55:1;;5824:1;5821;5814:12;5773:55;5847:73;5912:7;5907:2;5894:16;5889:2;5885;5881:11;5847:73;:::i;6116:505::-;6211:6;6219;6227;6280:2;6268:9;6259:7;6255:23;6251:32;6248:52;;;6296:1;6293;6286:12;6248:52;6332:9;6319:23;6309:33;;6393:2;6382:9;6378:18;6365:32;6420:18;6412:6;6409:30;6406:50;;;6452:1;6449;6442:12;6626:257;6667:3;6705:5;6699:12;6732:6;6727:3;6720:19;6748:63;6804:6;6797:4;6792:3;6788:14;6781:4;6774:5;6770:16;6748:63;:::i;:::-;6865:2;6844:15;-1:-1:-1;;6840:29:1;6831:39;;;;6872:4;6827:50;;6626:257;-1:-1:-1;;6626:257:1:o;6888:185::-;6930:3;6968:5;6962:12;6983:52;7028:6;7023:3;7016:4;7009:5;7005:16;6983:52;:::i;:::-;7051:16;;;;;6888:185;-1:-1:-1;;6888:185:1:o;7430:1301::-;7707:3;7736:1;7769:6;7763:13;7799:3;7821:1;7849:9;7845:2;7841:18;7831:28;;7909:2;7898:9;7894:18;7931;7921:61;;7975:4;7967:6;7963:17;7953:27;;7921:61;8001:2;8049;8041:6;8038:14;8018:18;8015:38;8012:165;;;-1:-1:-1;;;8076:33:1;;8132:4;8129:1;8122:15;8162:4;8083:3;8150:17;8012:165;8193:18;8220:104;;;;8338:1;8333:320;;;;8186:467;;8220:104;-1:-1:-1;;8253:24:1;;8241:37;;8298:16;;;;-1:-1:-1;8220:104:1;;8333:320;23615:1;23608:14;;;23652:4;23639:18;;8428:1;8442:165;8456:6;8453:1;8450:13;8442:165;;;8534:14;;8521:11;;;8514:35;8577:16;;;;8471:10;;8442:165;;;8446:3;;8636:6;8631:3;8627:16;8620:23;;8186:467;;;;;;;8669:56;8694:30;8720:3;8712:6;8694:30;:::i;:::-;-1:-1:-1;;;7138:20:1;;7183:1;7174:11;;7078:113;8669:56;8662:63;7430:1301;-1:-1:-1;;;;;7430:1301:1:o;8944:488::-;-1:-1:-1;;;;;9213:15:1;;;9195:34;;9265:15;;9260:2;9245:18;;9238:43;9312:2;9297:18;;9290:34;;;9360:3;9355:2;9340:18;;9333:31;;;9138:4;;9381:45;;9406:19;;9398:6;9381:45;:::i;:::-;9373:53;8944:488;-1:-1:-1;;;;;;8944:488:1:o;9437:497::-;9619:3;9604:19;;9608:9;9700:6;9577:4;9734:194;9748:4;9745:1;9742:11;9734:194;;;9807:13;;9795:26;;9844:4;9868:12;;;;9903:15;;;;9768:1;9761:9;9734:194;;;9738:3;;;9437:497;;;;:::o;9939:632::-;10110:2;10162:21;;;10232:13;;10135:18;;;10254:22;;;10081:4;;10110:2;10333:15;;;;10307:2;10292:18;;;10081:4;10376:169;10390:6;10387:1;10384:13;10376:169;;;10451:13;;10439:26;;10520:15;;;;10485:12;;;;10412:1;10405:9;10376:169;;;-1:-1:-1;10562:3:1;;9939:632;-1:-1:-1;;;;;;9939:632:1:o;10950:337::-;11091:2;11076:18;;11124:1;11113:13;;11103:144;;11169:10;11164:3;11160:20;11157:1;11150:31;11204:4;11201:1;11194:15;11232:4;11229:1;11222:15;11103:144;11256:25;;;10950:337;:::o;11292:219::-;11441:2;11430:9;11423:21;11404:4;11461:44;11501:2;11490:9;11486:18;11478:6;11461:44;:::i;12987:414::-;13189:2;13171:21;;;13228:2;13208:18;;;13201:30;13267:34;13262:2;13247:18;;13240:62;-1:-1:-1;;;13333:2:1;13318:18;;13311:48;13391:3;13376:19;;12987:414::o;19130:356::-;19332:2;19314:21;;;19351:18;;;19344:30;19410:34;19405:2;19390:18;;19383:62;19477:2;19462:18;;19130:356::o;21496:413::-;21698:2;21680:21;;;21737:2;21717:18;;;21710:30;21776:34;21771:2;21756:18;;21749:62;-1:-1:-1;;;21842:2:1;21827:18;;21820:47;21899:3;21884:19;;21496:413::o;23262:275::-;23333:2;23327:9;23398:2;23379:13;;-1:-1:-1;;23375:27:1;23363:40;;23433:18;23418:34;;23454:22;;;23415:62;23412:88;;;23480:18;;:::i;:::-;23516:2;23509:22;23262:275;;-1:-1:-1;23262:275:1:o;23668:128::-;23708:3;23739:1;23735:6;23732:1;23729:13;23726:39;;;23745:18;;:::i;:::-;-1:-1:-1;23781:9:1;;23668:128::o;23801:120::-;23841:1;23867;23857:35;;23872:18;;:::i;:::-;-1:-1:-1;23906:9:1;;23801:120::o;23926:168::-;23966:7;24032:1;24028;24024:6;24020:14;24017:1;24014:21;24009:1;24002:9;23995:17;23991:45;23988:71;;;24039:18;;:::i;:::-;-1:-1:-1;24079:9:1;;23926:168::o;24099:125::-;24139:4;24167:1;24164;24161:8;24158:34;;;24172:18;;:::i;:::-;-1:-1:-1;24209:9:1;;24099:125::o;24229:258::-;24301:1;24311:113;24325:6;24322:1;24319:13;24311:113;;;24401:11;;;24395:18;24382:11;;;24375:39;24347:2;24340:10;24311:113;;;24442:6;24439:1;24436:13;24433:48;;;-1:-1:-1;;24477:1:1;24459:16;;24452:27;24229:258::o;24492:380::-;24571:1;24567:12;;;;24614;;;24635:61;;24689:4;24681:6;24677:17;24667:27;;24635:61;24742:2;24734:6;24731:14;24711:18;24708:38;24705:161;;;24788:10;24783:3;24779:20;24776:1;24769:31;24823:4;24820:1;24813:15;24851:4;24848:1;24841:15;24705:161;;24492:380;;;:::o;24877:135::-;24916:3;-1:-1:-1;;24937:17:1;;24934:43;;;24957:18;;:::i;:::-;-1:-1:-1;25004:1:1;24993:13;;24877:135::o;25017:112::-;25049:1;25075;25065:35;;25080:18;;:::i;:::-;-1:-1:-1;25114:9:1;;25017:112::o;25134:127::-;25195:10;25190:3;25186:20;25183:1;25176:31;25226:4;25223:1;25216:15;25250:4;25247:1;25240:15;25266:127;25327:10;25322:3;25318:20;25315:1;25308:31;25358:4;25355:1;25348:15;25382:4;25379:1;25372:15;25398:127;25459:10;25454:3;25450:20;25447:1;25440:31;25490:4;25487:1;25480:15;25514:4;25511:1;25504:15;25530:127;25591:10;25586:3;25582:20;25579:1;25572:31;25622:4;25619:1;25612:15;25646:4;25643:1;25636:15;25662:127;25723:10;25718:3;25714:20;25711:1;25704:31;25754:4;25751:1;25744:15;25778:4;25775:1;25768:15;25794:127;25855:10;25850:3;25846:20;25843:1;25836:31;25886:4;25883:1;25876:15;25910:4;25907:1;25900:15;25926:131;-1:-1:-1;;;;;;26000:32:1;;25990:43;;25980:71;;26047:1;26044;26037:12
Swarm Source
ipfs://86068712d46b6a3eb29da5c7695ffb2aba31bf7a6b5f6ad6d12d136319e0502c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.