ERC-721
Overview
Max Total Supply
500 ShaolinSamuraiSSW
Holders
246
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 ShaolinSamuraiSSWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ShaolinSamuraiSSW
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity >=0.7.0 <0.9.0; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; contract ShaolinSamuraiSSW is ERC721Enumerable, Ownable { using Strings for uint256; using SafeMath for uint256; string private baseURI; string public baseExtension = ".json"; string public notRevealedUri; uint256 public salePrice = 0.0888 ether; uint256 public constant maxTokenSupply = 8888; uint256 public whiteListMintMaxSupply = 3000; bool public whiteListSale = false; bool public regularSale = false; bool public reserveTokens = false; bool public revealed = false; bool public paused = true; mapping(uint256 => string) private _tokenURIs; mapping(address => uint256) public totalAvailableForUser; constructor( string memory _name, string memory _symbol, string memory _initBaseURI, string memory _initNotRevealedUri ) ERC721(_name, _symbol) { baseURI = _initBaseURI; notRevealedUri = _initNotRevealedUri; } function viewWhitelistForUser(address _user) external view returns (uint256) { return totalAvailableForUser[_user]; } function whitelistBuy(uint256 _mintAmount) public payable { require(!paused); uint256 supply = totalSupply(); require(msg.value >= salePrice.mul(_mintAmount)); require(supply + _mintAmount <= whiteListMintMaxSupply); require(totalAvailableForUser[msg.sender] >= 1); require(whiteListSale == true); for (uint256 i = 0; i < _mintAmount; i++) { totalAvailableForUser[msg.sender] = totalAvailableForUser[ msg.sender ].sub(1); _safeMint(msg.sender, supply + i); } } function regularSaleMint(uint256 _mintAmount) public payable { require(!paused); uint256 supply = totalSupply(); require(msg.value >= salePrice.mul(_mintAmount)); require(supply + _mintAmount <= maxTokenSupply); require(regularSale == true); require(_mintAmount <= 10); for (uint256 i = 0; i < _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function reserve() public onlyOwner { require(reserveTokens == false); uint256 supply = totalSupply(); for (uint256 i = 0; i < 500; i++) { _safeMint(msg.sender, supply + i); } reserveTokens = true; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return notRevealedUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } 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; } //owner function populateWhitelist(address[] memory _whitelisted) external onlyOwner { for (uint256 i = 0; i < _whitelisted.length; i++) { totalAvailableForUser[_whitelisted[i]] = totalAvailableForUser[ _whitelisted[i] ].add(2); } } function setWhitelistSale(bool _trueOrFalse) external onlyOwner { whiteListSale = !_trueOrFalse; } function setRegularSale(bool _trueOrFalse) external onlyOwner { regularSale = !_trueOrFalse; } function setSalePrice(uint256 _priceInWei) external onlyOwner { salePrice = _priceInWei; } function setNotRevealedURI(string memory _uri) external onlyOwner { notRevealedUri = _uri; } function setBaseURI(string memory _uri) external onlyOwner { baseURI = _uri; } function PauseContract(bool _trueOrFalse) external onlyOwner { paused = !_trueOrFalse; } function reveal() public onlyOwner { revealed = true; } function setwhiteListMintMaxSupply(uint256 _maxSupply) external onlyOwner { whiteListMintMaxSupply = _maxSupply; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @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(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
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":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"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":"bool","name":"_trueOrFalse","type":"bool"}],"name":"PauseContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelisted","type":"address[]"}],"name":"populateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"regularSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"regularSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_trueOrFalse","type":"bool"}],"name":"setRegularSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceInWei","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_trueOrFalse","type":"bool"}],"name":"setWhitelistSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setwhiteListMintMaxSupply","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":[{"internalType":"address","name":"","type":"address"}],"name":"totalAvailableForUser","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":"_user","type":"address"}],"name":"viewWhitelistForUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListMintMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000158565b5067013b7b21280e0000600e55610bb8600f556010805464ffffffffff19166401000000001790553480156200005d57600080fd5b5060405162002cfb38038062002cfb8339810160408190526200008091620002b5565b8351849084906200009990600090602085019062000158565b508051620000af90600190602084019062000158565b505050620000cc620000c66200010260201b60201c565b62000106565b8151620000e190600b90602085019062000158565b508051620000f790600d90602084019062000158565b5050505050620003c1565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000166906200036e565b90600052602060002090601f0160209004810192826200018a5760008555620001d5565b82601f10620001a557805160ff1916838001178555620001d5565b82800160010185558215620001d5579182015b82811115620001d5578251825591602001919060010190620001b8565b50620001e3929150620001e7565b5090565b5b80821115620001e35760008155600101620001e8565b600082601f8301126200021057600080fd5b81516001600160401b03808211156200022d576200022d620003ab565b604051601f8301601f19908116603f01168101908282118183101715620002585762000258620003ab565b816040528381526020925086838588010111156200027557600080fd5b600091505b838210156200029957858201830151818301840152908201906200027a565b83821115620002ab5760008385830101525b9695505050505050565b60008060008060808587031215620002cc57600080fd5b84516001600160401b0380821115620002e457600080fd5b620002f288838901620001fe565b955060208701519150808211156200030957600080fd5b6200031788838901620001fe565b945060408701519150808211156200032e57600080fd5b6200033c88838901620001fe565b935060608701519150808211156200035357600080fd5b506200036287828801620001fe565b91505092959194509250565b600181811c908216806200038357607f821691505b60208210811415620003a557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61292a80620003d16000396000f3fe6080604052600436106102725760003560e01c80635cc19d591161014f578063b4800ce7116100c1578063d52cb8691161007a578063d52cb86914610747578063e985e9c514610767578063f2c4ce1e146107b0578063f2fde38b146107d0578063f51f96dd146107f0578063fa956ad21461080657600080fd5b8063b4800ce71461069d578063b88d4fde146106bd578063c6682862146106dd578063c87b56dd146106f2578063ca7ce3ec14610712578063cd3293de1461073257600080fd5b806386a173ee1161011357806386a173ee146105fc5780638da5cb5b1461061657806395ab5aa51461063457806395d89b4114610653578063a22cb46514610668578063a475b5dd1461068857600080fd5b80635cc19d591461055a5780636352211e1461057a57806367aedf711461059a57806370a08231146105c7578063715018a6146105e757600080fd5b80632ac7a2b3116101e8578063438b6300116101ac578063438b6300146104945780634f6ccce7146104c157806350f7c204146104e157806351830227146104f757806355f804b3146105185780635c975abb1461053857600080fd5b80632ac7a2b31461040c5780632f745c591461041f57806331f173861461043f5780633ccfd60b1461045f57806342842e0e1461047457600080fd5b8063095ea7b31161023a578063095ea7b31461035f5780630f6b62a11461038157806318160ddd146103975780631919fed7146103ac57806323b872dd146103cc57806327ac36c4146103ec57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063078bd39f146102ce578063081812fc14610312578063081c8c441461034a575b600080fd5b34801561028357600080fd5b5061029761029236600461244f565b610819565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610844565b6040516102a3919061265c565b3480156102da57600080fd5b506103046102e9366004612226565b6001600160a01b031660009081526012602052604090205490565b6040519081526020016102a3565b34801561031e57600080fd5b5061033261032d3660046124d2565b6108d6565b6040516001600160a01b0390911681526020016102a3565b34801561035657600080fd5b506102c1610970565b34801561036b57600080fd5b5061037f61037a366004612356565b6109fe565b005b34801561038d57600080fd5b50610304600f5481565b3480156103a357600080fd5b50600854610304565b3480156103b857600080fd5b5061037f6103c73660046124d2565b610b14565b3480156103d857600080fd5b5061037f6103e7366004612274565b610b43565b3480156103f857600080fd5b506010546102979062010000900460ff1681565b61037f61041a3660046124d2565b610b74565b34801561042b57600080fd5b5061030461043a366004612356565b610c5a565b34801561044b57600080fd5b5061037f61045a366004612434565b610cf0565b34801561046b57600080fd5b5061037f610d37565b34801561048057600080fd5b5061037f61048f366004612274565b610db9565b3480156104a057600080fd5b506104b46104af366004612226565b610dd4565b6040516102a39190612618565b3480156104cd57600080fd5b506103046104dc3660046124d2565b610e76565b3480156104ed57600080fd5b506103046122b881565b34801561050357600080fd5b50601054610297906301000000900460ff1681565b34801561052457600080fd5b5061037f610533366004612489565b610f09565b34801561054457600080fd5b5060105461029790640100000000900460ff1681565b34801561056657600080fd5b5061037f6105753660046124d2565b610f4a565b34801561058657600080fd5b506103326105953660046124d2565b610f79565b3480156105a657600080fd5b506103046105b5366004612226565b60126020526000908152604090205481565b3480156105d357600080fd5b506103046105e2366004612226565b610ff0565b3480156105f357600080fd5b5061037f611077565b34801561060857600080fd5b506010546102979060ff1681565b34801561062257600080fd5b50600a546001600160a01b0316610332565b34801561064057600080fd5b5060105461029790610100900460ff1681565b34801561065f57600080fd5b506102c16110ad565b34801561067457600080fd5b5061037f61068336600461232c565b6110bc565b34801561069457600080fd5b5061037f6110c7565b3480156106a957600080fd5b5061037f6106b8366004612380565b611106565b3480156106c957600080fd5b5061037f6106d83660046122b0565b6111e3565b3480156106e957600080fd5b506102c161121b565b3480156106fe57600080fd5b506102c161070d3660046124d2565b611228565b34801561071e57600080fd5b5061037f61072d366004612434565b6113a9565b34801561073e57600080fd5b5061037f6113e5565b34801561075357600080fd5b5061037f610762366004612434565b611474565b34801561077357600080fd5b50610297610782366004612241565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107bc57600080fd5b5061037f6107cb366004612489565b6114b5565b3480156107dc57600080fd5b5061037f6107eb366004612226565b6114f2565b3480156107fc57600080fd5b50610304600e5481565b61037f6108143660046124d2565b61158a565b60006001600160e01b0319821663780e9d6360e01b148061083e575061083e82611634565b92915050565b60606000805461085390612806565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90612806565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d805461097d90612806565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990612806565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b505050505081565b6000610a0982610f79565b9050806001600160a01b0316836001600160a01b03161415610a775760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161094b565b336001600160a01b0382161480610a935750610a938133610782565b610b055760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161094b565b610b0f8383611684565b505050565b600a546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161094b906126c1565b600e55565b610b4d33826116f2565b610b695760405162461bcd60e51b815260040161094b906126f6565b610b0f8383836117e9565b601054640100000000900460ff1615610b8c57600080fd5b6000610b9760085490565b600e54909150610ba79083611994565b341015610bb357600080fd5b600f54610bc08383612778565b1115610bcb57600080fd5b3360009081526012602052604090205460011115610be857600080fd5b60105460ff161515600114610bfc57600080fd5b60005b82811015610b0f5733600090815260126020526040902054610c229060016119a0565b33600081815260126020526040902091909155610c4890610c438385612778565b6119ac565b80610c5281612841565b915050610bff565b6000610c6583610ff0565b8210610cc75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161094b906126c1565b6010805464ff000000001916911564010000000002919091179055565b600a546001600160a01b03163314610d615760405162461bcd60e51b815260040161094b906126c1565b604051600090339047908381818185875af1925050503d8060008114610da3576040519150601f19603f3d011682016040523d82523d6000602084013e610da8565b606091505b5050905080610db657600080fd5b50565b610b0f838383604051806020016040528060008152506111e3565b60606000610de183610ff0565b905060008167ffffffffffffffff811115610dfe57610dfe6128c8565b604051908082528060200260200182016040528015610e27578160200160208202803683370190505b50905060005b82811015610e6e57610e3f8582610c5a565b828281518110610e5157610e516128b2565b602090810291909101015280610e6681612841565b915050610e2d565b509392505050565b6000610e8160085490565b8210610ee45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094b565b60088281548110610ef757610ef76128b2565b90600052602060002001549050919050565b600a546001600160a01b03163314610f335760405162461bcd60e51b815260040161094b906126c1565b8051610f4690600b906020840190612109565b5050565b600a546001600160a01b03163314610f745760405162461bcd60e51b815260040161094b906126c1565b600f55565b6000818152600260205260408120546001600160a01b03168061083e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161094b565b60006001600160a01b03821661105b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161094b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110a15760405162461bcd60e51b815260040161094b906126c1565b6110ab60006119c6565b565b60606001805461085390612806565b610f46338383611a18565b600a546001600160a01b031633146110f15760405162461bcd60e51b815260040161094b906126c1565b6010805463ff00000019166301000000179055565b600a546001600160a01b031633146111305760405162461bcd60e51b815260040161094b906126c1565b60005b8151811015610f465761118e600260126000858581518110611157576111576128b2565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054611ae790919063ffffffff16565b601260008484815181106111a4576111a46128b2565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806111db90612841565b915050611133565b6111ed33836116f2565b6112095760405162461bcd60e51b815260040161094b906126f6565b61121584848484611af3565b50505050565b600c805461097d90612806565b6000818152600260205260409020546060906001600160a01b03166112a75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094b565b6010546301000000900460ff1661134a57600d80546112c590612806565b80601f01602080910402602001604051908101604052809291908181526020018280546112f190612806565b801561133e5780601f106113135761010080835404028352916020019161133e565b820191906000526020600020905b81548152906001019060200180831161132157829003601f168201915b50505050509050919050565b6000611354611b26565b9050600081511161137457604051806020016040528060008152506113a2565b8061137e84611b35565b600c60405160200161139293929190612517565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113d35760405162461bcd60e51b815260040161094b906126c1565b6010805460ff19169115919091179055565b600a546001600160a01b0316331461140f5760405162461bcd60e51b815260040161094b906126c1565b60105462010000900460ff161561142557600080fd5b600061143060085490565b905060005b6101f481101561145f5761144d33610c438385612778565b8061145781612841565b915050611435565b50506010805462ff0000191662010000179055565b600a546001600160a01b0316331461149e5760405162461bcd60e51b815260040161094b906126c1565b6010805461ff001916911561010002919091179055565b600a546001600160a01b031633146114df5760405162461bcd60e51b815260040161094b906126c1565b8051610f4690600d906020840190612109565b600a546001600160a01b0316331461151c5760405162461bcd60e51b815260040161094b906126c1565b6001600160a01b0381166115815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094b565b610db6816119c6565b601054640100000000900460ff16156115a257600080fd5b60006115ad60085490565b600e549091506115bd9083611994565b3410156115c957600080fd5b6122b86115d68383612778565b11156115e157600080fd5b60105460ff6101009091041615156001146115fb57600080fd5b600a82111561160957600080fd5b60005b82811015610b0f5761162233610c438385612778565b8061162c81612841565b91505061160c565b60006001600160e01b031982166380ac58cd60e01b148061166557506001600160e01b03198216635b5e139f60e01b145b8061083e57506301ffc9a760e01b6001600160e01b031983161461083e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116b982610f79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661176b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094b565b600061177683610f79565b9050806001600160a01b0316846001600160a01b031614806117b15750836001600160a01b03166117a6846108d6565b6001600160a01b0316145b806117e157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117fc82610f79565b6001600160a01b0316146118645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161094b565b6001600160a01b0382166118c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094b565b6118d1838383611c33565b6118dc600082611684565b6001600160a01b03831660009081526003602052604081208054600192906119059084906127c3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611933908490612778565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113a282846127a4565b60006113a282846127c3565b610f46828260405180602001604052806000815250611ceb565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a7a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006113a28284612778565b611afe8484846117e9565b611b0a84848484611d1e565b6112155760405162461bcd60e51b815260040161094b9061266f565b6060600b805461085390612806565b606081611b595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b835780611b6d81612841565b9150611b7c9050600a83612790565b9150611b5d565b60008167ffffffffffffffff811115611b9e57611b9e6128c8565b6040519080825280601f01601f191660200182016040528015611bc8576020820181803683370190505b5090505b84156117e157611bdd6001836127c3565b9150611bea600a8661285c565b611bf5906030612778565b60f81b818381518110611c0a57611c0a6128b2565b60200101906001600160f81b031916908160001a905350611c2c600a86612790565b9450611bcc565b6001600160a01b038316611c8e57611c8981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cb1565b816001600160a01b0316836001600160a01b031614611cb157611cb18382611e2b565b6001600160a01b038216611cc857610b0f81611ec8565b826001600160a01b0316826001600160a01b031614610b0f57610b0f8282611f77565b611cf58383611fbb565b611d026000848484611d1e565b610b0f5760405162461bcd60e51b815260040161094b9061266f565b60006001600160a01b0384163b15611e2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d629033908990889088906004016125db565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dac575060408051601f3d908101601f19168201909252611da99181019061246c565b60015b611e06573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dfe5760405162461bcd60e51b815260040161094b9061266f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117e1565b506001949350505050565b60006001611e3884610ff0565b611e4291906127c3565b600083815260076020526040902054909150808214611e95576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eda906001906127c3565b60008381526009602052604081205460088054939450909284908110611f0257611f026128b2565b906000526020600020015490508060088381548110611f2357611f236128b2565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f5b57611f5b61289c565b6001900381819060005260206000200160009055905550505050565b6000611f8283610ff0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094b565b6000818152600260205260409020546001600160a01b0316156120765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094b565b61208260008383611c33565b6001600160a01b03821660009081526003602052604081208054600192906120ab908490612778565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461211590612806565b90600052602060002090601f016020900481019282612137576000855561217d565b82601f1061215057805160ff191683800117855561217d565b8280016001018555821561217d579182015b8281111561217d578251825591602001919060010190612162565b5061218992915061218d565b5090565b5b80821115612189576000815560010161218e565b600067ffffffffffffffff8311156121bc576121bc6128c8565b6121cf601f8401601f1916602001612747565b90508281528383830111156121e357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461221157600080fd5b919050565b8035801515811461221157600080fd5b60006020828403121561223857600080fd5b6113a2826121fa565b6000806040838503121561225457600080fd5b61225d836121fa565b915061226b602084016121fa565b90509250929050565b60008060006060848603121561228957600080fd5b612292846121fa565b92506122a0602085016121fa565b9150604084013590509250925092565b600080600080608085870312156122c657600080fd5b6122cf856121fa565b93506122dd602086016121fa565b925060408501359150606085013567ffffffffffffffff81111561230057600080fd5b8501601f8101871361231157600080fd5b612320878235602084016121a2565b91505092959194509250565b6000806040838503121561233f57600080fd5b612348836121fa565b915061226b60208401612216565b6000806040838503121561236957600080fd5b612372836121fa565b946020939093013593505050565b6000602080838503121561239357600080fd5b823567ffffffffffffffff808211156123ab57600080fd5b818501915085601f8301126123bf57600080fd5b8135818111156123d1576123d16128c8565b8060051b91506123e2848301612747565b8181528481019084860184860187018a10156123fd57600080fd5b600095505b8386101561242757612413816121fa565b835260019590950194918601918601612402565b5098975050505050505050565b60006020828403121561244657600080fd5b6113a282612216565b60006020828403121561246157600080fd5b81356113a2816128de565b60006020828403121561247e57600080fd5b81516113a2816128de565b60006020828403121561249b57600080fd5b813567ffffffffffffffff8111156124b257600080fd5b8201601f810184136124c357600080fd5b6117e1848235602084016121a2565b6000602082840312156124e457600080fd5b5035919050565b600081518084526125038160208601602086016127da565b601f01601f19169290920160200192915050565b60008451602061252a8285838a016127da565b85519184019161253d8184848a016127da565b8554920191600090600181811c908083168061255a57607f831692505b85831081141561257857634e487b7160e01b85526022600452602485fd5b80801561258c576001811461259d576125ca565b60ff198516885283880195506125ca565b60008b81526020902060005b858110156125c25781548a8201529084019088016125a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061260e908301846124eb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561265057835183529284019291840191600101612634565b50909695505050505050565b6020815260006113a260208301846124eb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612770576127706128c8565b604052919050565b6000821982111561278b5761278b612870565b500190565b60008261279f5761279f612886565b500490565b60008160001904831182151516156127be576127be612870565b500290565b6000828210156127d5576127d5612870565b500390565b60005b838110156127f55781810151838201526020016127dd565b838111156112155750506000910152565b600181811c9082168061281a57607f821691505b6020821081141561283b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561285557612855612870565b5060010190565b60008261286b5761286b612886565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610db657600080fdfea2646970667358221220f11a3076c109a4b836c5b56a17942e4132fba2ff0b367b347ec1b5c9f20f55d964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000115368616f6c696e53616d7572616953535700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115368616f6c696e53616d75726169535357000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f68747470733a2f2f67726166666974696d616e73696f6e6c6162732e6d7970696e6174612e636c6f75642f697066732f516d6234675a686734734b417a393778794c6e31436751506569637051324d4d7a6f63375062356567674c356e542f000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d64397271754351533941757035326139616355776a6d526735446a52483850784333663568764e4b456e77350000000000000000000000
Deployed Bytecode
0x6080604052600436106102725760003560e01c80635cc19d591161014f578063b4800ce7116100c1578063d52cb8691161007a578063d52cb86914610747578063e985e9c514610767578063f2c4ce1e146107b0578063f2fde38b146107d0578063f51f96dd146107f0578063fa956ad21461080657600080fd5b8063b4800ce71461069d578063b88d4fde146106bd578063c6682862146106dd578063c87b56dd146106f2578063ca7ce3ec14610712578063cd3293de1461073257600080fd5b806386a173ee1161011357806386a173ee146105fc5780638da5cb5b1461061657806395ab5aa51461063457806395d89b4114610653578063a22cb46514610668578063a475b5dd1461068857600080fd5b80635cc19d591461055a5780636352211e1461057a57806367aedf711461059a57806370a08231146105c7578063715018a6146105e757600080fd5b80632ac7a2b3116101e8578063438b6300116101ac578063438b6300146104945780634f6ccce7146104c157806350f7c204146104e157806351830227146104f757806355f804b3146105185780635c975abb1461053857600080fd5b80632ac7a2b31461040c5780632f745c591461041f57806331f173861461043f5780633ccfd60b1461045f57806342842e0e1461047457600080fd5b8063095ea7b31161023a578063095ea7b31461035f5780630f6b62a11461038157806318160ddd146103975780631919fed7146103ac57806323b872dd146103cc57806327ac36c4146103ec57600080fd5b806301ffc9a71461027757806306fdde03146102ac578063078bd39f146102ce578063081812fc14610312578063081c8c441461034a575b600080fd5b34801561028357600080fd5b5061029761029236600461244f565b610819565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610844565b6040516102a3919061265c565b3480156102da57600080fd5b506103046102e9366004612226565b6001600160a01b031660009081526012602052604090205490565b6040519081526020016102a3565b34801561031e57600080fd5b5061033261032d3660046124d2565b6108d6565b6040516001600160a01b0390911681526020016102a3565b34801561035657600080fd5b506102c1610970565b34801561036b57600080fd5b5061037f61037a366004612356565b6109fe565b005b34801561038d57600080fd5b50610304600f5481565b3480156103a357600080fd5b50600854610304565b3480156103b857600080fd5b5061037f6103c73660046124d2565b610b14565b3480156103d857600080fd5b5061037f6103e7366004612274565b610b43565b3480156103f857600080fd5b506010546102979062010000900460ff1681565b61037f61041a3660046124d2565b610b74565b34801561042b57600080fd5b5061030461043a366004612356565b610c5a565b34801561044b57600080fd5b5061037f61045a366004612434565b610cf0565b34801561046b57600080fd5b5061037f610d37565b34801561048057600080fd5b5061037f61048f366004612274565b610db9565b3480156104a057600080fd5b506104b46104af366004612226565b610dd4565b6040516102a39190612618565b3480156104cd57600080fd5b506103046104dc3660046124d2565b610e76565b3480156104ed57600080fd5b506103046122b881565b34801561050357600080fd5b50601054610297906301000000900460ff1681565b34801561052457600080fd5b5061037f610533366004612489565b610f09565b34801561054457600080fd5b5060105461029790640100000000900460ff1681565b34801561056657600080fd5b5061037f6105753660046124d2565b610f4a565b34801561058657600080fd5b506103326105953660046124d2565b610f79565b3480156105a657600080fd5b506103046105b5366004612226565b60126020526000908152604090205481565b3480156105d357600080fd5b506103046105e2366004612226565b610ff0565b3480156105f357600080fd5b5061037f611077565b34801561060857600080fd5b506010546102979060ff1681565b34801561062257600080fd5b50600a546001600160a01b0316610332565b34801561064057600080fd5b5060105461029790610100900460ff1681565b34801561065f57600080fd5b506102c16110ad565b34801561067457600080fd5b5061037f61068336600461232c565b6110bc565b34801561069457600080fd5b5061037f6110c7565b3480156106a957600080fd5b5061037f6106b8366004612380565b611106565b3480156106c957600080fd5b5061037f6106d83660046122b0565b6111e3565b3480156106e957600080fd5b506102c161121b565b3480156106fe57600080fd5b506102c161070d3660046124d2565b611228565b34801561071e57600080fd5b5061037f61072d366004612434565b6113a9565b34801561073e57600080fd5b5061037f6113e5565b34801561075357600080fd5b5061037f610762366004612434565b611474565b34801561077357600080fd5b50610297610782366004612241565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107bc57600080fd5b5061037f6107cb366004612489565b6114b5565b3480156107dc57600080fd5b5061037f6107eb366004612226565b6114f2565b3480156107fc57600080fd5b50610304600e5481565b61037f6108143660046124d2565b61158a565b60006001600160e01b0319821663780e9d6360e01b148061083e575061083e82611634565b92915050565b60606000805461085390612806565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90612806565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600d805461097d90612806565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990612806565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b505050505081565b6000610a0982610f79565b9050806001600160a01b0316836001600160a01b03161415610a775760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161094b565b336001600160a01b0382161480610a935750610a938133610782565b610b055760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161094b565b610b0f8383611684565b505050565b600a546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161094b906126c1565b600e55565b610b4d33826116f2565b610b695760405162461bcd60e51b815260040161094b906126f6565b610b0f8383836117e9565b601054640100000000900460ff1615610b8c57600080fd5b6000610b9760085490565b600e54909150610ba79083611994565b341015610bb357600080fd5b600f54610bc08383612778565b1115610bcb57600080fd5b3360009081526012602052604090205460011115610be857600080fd5b60105460ff161515600114610bfc57600080fd5b60005b82811015610b0f5733600090815260126020526040902054610c229060016119a0565b33600081815260126020526040902091909155610c4890610c438385612778565b6119ac565b80610c5281612841565b915050610bff565b6000610c6583610ff0565b8210610cc75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610d1a5760405162461bcd60e51b815260040161094b906126c1565b6010805464ff000000001916911564010000000002919091179055565b600a546001600160a01b03163314610d615760405162461bcd60e51b815260040161094b906126c1565b604051600090339047908381818185875af1925050503d8060008114610da3576040519150601f19603f3d011682016040523d82523d6000602084013e610da8565b606091505b5050905080610db657600080fd5b50565b610b0f838383604051806020016040528060008152506111e3565b60606000610de183610ff0565b905060008167ffffffffffffffff811115610dfe57610dfe6128c8565b604051908082528060200260200182016040528015610e27578160200160208202803683370190505b50905060005b82811015610e6e57610e3f8582610c5a565b828281518110610e5157610e516128b2565b602090810291909101015280610e6681612841565b915050610e2d565b509392505050565b6000610e8160085490565b8210610ee45760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094b565b60088281548110610ef757610ef76128b2565b90600052602060002001549050919050565b600a546001600160a01b03163314610f335760405162461bcd60e51b815260040161094b906126c1565b8051610f4690600b906020840190612109565b5050565b600a546001600160a01b03163314610f745760405162461bcd60e51b815260040161094b906126c1565b600f55565b6000818152600260205260408120546001600160a01b03168061083e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161094b565b60006001600160a01b03821661105b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161094b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110a15760405162461bcd60e51b815260040161094b906126c1565b6110ab60006119c6565b565b60606001805461085390612806565b610f46338383611a18565b600a546001600160a01b031633146110f15760405162461bcd60e51b815260040161094b906126c1565b6010805463ff00000019166301000000179055565b600a546001600160a01b031633146111305760405162461bcd60e51b815260040161094b906126c1565b60005b8151811015610f465761118e600260126000858581518110611157576111576128b2565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002054611ae790919063ffffffff16565b601260008484815181106111a4576111a46128b2565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806111db90612841565b915050611133565b6111ed33836116f2565b6112095760405162461bcd60e51b815260040161094b906126f6565b61121584848484611af3565b50505050565b600c805461097d90612806565b6000818152600260205260409020546060906001600160a01b03166112a75760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094b565b6010546301000000900460ff1661134a57600d80546112c590612806565b80601f01602080910402602001604051908101604052809291908181526020018280546112f190612806565b801561133e5780601f106113135761010080835404028352916020019161133e565b820191906000526020600020905b81548152906001019060200180831161132157829003601f168201915b50505050509050919050565b6000611354611b26565b9050600081511161137457604051806020016040528060008152506113a2565b8061137e84611b35565b600c60405160200161139293929190612517565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113d35760405162461bcd60e51b815260040161094b906126c1565b6010805460ff19169115919091179055565b600a546001600160a01b0316331461140f5760405162461bcd60e51b815260040161094b906126c1565b60105462010000900460ff161561142557600080fd5b600061143060085490565b905060005b6101f481101561145f5761144d33610c438385612778565b8061145781612841565b915050611435565b50506010805462ff0000191662010000179055565b600a546001600160a01b0316331461149e5760405162461bcd60e51b815260040161094b906126c1565b6010805461ff001916911561010002919091179055565b600a546001600160a01b031633146114df5760405162461bcd60e51b815260040161094b906126c1565b8051610f4690600d906020840190612109565b600a546001600160a01b0316331461151c5760405162461bcd60e51b815260040161094b906126c1565b6001600160a01b0381166115815760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094b565b610db6816119c6565b601054640100000000900460ff16156115a257600080fd5b60006115ad60085490565b600e549091506115bd9083611994565b3410156115c957600080fd5b6122b86115d68383612778565b11156115e157600080fd5b60105460ff6101009091041615156001146115fb57600080fd5b600a82111561160957600080fd5b60005b82811015610b0f5761162233610c438385612778565b8061162c81612841565b91505061160c565b60006001600160e01b031982166380ac58cd60e01b148061166557506001600160e01b03198216635b5e139f60e01b145b8061083e57506301ffc9a760e01b6001600160e01b031983161461083e565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116b982610f79565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661176b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161094b565b600061177683610f79565b9050806001600160a01b0316846001600160a01b031614806117b15750836001600160a01b03166117a6846108d6565b6001600160a01b0316145b806117e157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117fc82610f79565b6001600160a01b0316146118645760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161094b565b6001600160a01b0382166118c65760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094b565b6118d1838383611c33565b6118dc600082611684565b6001600160a01b03831660009081526003602052604081208054600192906119059084906127c3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611933908490612778565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006113a282846127a4565b60006113a282846127c3565b610f46828260405180602001604052806000815250611ceb565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a7a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60006113a28284612778565b611afe8484846117e9565b611b0a84848484611d1e565b6112155760405162461bcd60e51b815260040161094b9061266f565b6060600b805461085390612806565b606081611b595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b835780611b6d81612841565b9150611b7c9050600a83612790565b9150611b5d565b60008167ffffffffffffffff811115611b9e57611b9e6128c8565b6040519080825280601f01601f191660200182016040528015611bc8576020820181803683370190505b5090505b84156117e157611bdd6001836127c3565b9150611bea600a8661285c565b611bf5906030612778565b60f81b818381518110611c0a57611c0a6128b2565b60200101906001600160f81b031916908160001a905350611c2c600a86612790565b9450611bcc565b6001600160a01b038316611c8e57611c8981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611cb1565b816001600160a01b0316836001600160a01b031614611cb157611cb18382611e2b565b6001600160a01b038216611cc857610b0f81611ec8565b826001600160a01b0316826001600160a01b031614610b0f57610b0f8282611f77565b611cf58383611fbb565b611d026000848484611d1e565b610b0f5760405162461bcd60e51b815260040161094b9061266f565b60006001600160a01b0384163b15611e2057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d629033908990889088906004016125db565b602060405180830381600087803b158015611d7c57600080fd5b505af1925050508015611dac575060408051601f3d908101601f19168201909252611da99181019061246c565b60015b611e06573d808015611dda576040519150601f19603f3d011682016040523d82523d6000602084013e611ddf565b606091505b508051611dfe5760405162461bcd60e51b815260040161094b9061266f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117e1565b506001949350505050565b60006001611e3884610ff0565b611e4291906127c3565b600083815260076020526040902054909150808214611e95576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611eda906001906127c3565b60008381526009602052604081205460088054939450909284908110611f0257611f026128b2565b906000526020600020015490508060088381548110611f2357611f236128b2565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f5b57611f5b61289c565b6001900381819060005260206000200160009055905550505050565b6000611f8283610ff0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120115760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094b565b6000818152600260205260409020546001600160a01b0316156120765760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094b565b61208260008383611c33565b6001600160a01b03821660009081526003602052604081208054600192906120ab908490612778565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461211590612806565b90600052602060002090601f016020900481019282612137576000855561217d565b82601f1061215057805160ff191683800117855561217d565b8280016001018555821561217d579182015b8281111561217d578251825591602001919060010190612162565b5061218992915061218d565b5090565b5b80821115612189576000815560010161218e565b600067ffffffffffffffff8311156121bc576121bc6128c8565b6121cf601f8401601f1916602001612747565b90508281528383830111156121e357600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461221157600080fd5b919050565b8035801515811461221157600080fd5b60006020828403121561223857600080fd5b6113a2826121fa565b6000806040838503121561225457600080fd5b61225d836121fa565b915061226b602084016121fa565b90509250929050565b60008060006060848603121561228957600080fd5b612292846121fa565b92506122a0602085016121fa565b9150604084013590509250925092565b600080600080608085870312156122c657600080fd5b6122cf856121fa565b93506122dd602086016121fa565b925060408501359150606085013567ffffffffffffffff81111561230057600080fd5b8501601f8101871361231157600080fd5b612320878235602084016121a2565b91505092959194509250565b6000806040838503121561233f57600080fd5b612348836121fa565b915061226b60208401612216565b6000806040838503121561236957600080fd5b612372836121fa565b946020939093013593505050565b6000602080838503121561239357600080fd5b823567ffffffffffffffff808211156123ab57600080fd5b818501915085601f8301126123bf57600080fd5b8135818111156123d1576123d16128c8565b8060051b91506123e2848301612747565b8181528481019084860184860187018a10156123fd57600080fd5b600095505b8386101561242757612413816121fa565b835260019590950194918601918601612402565b5098975050505050505050565b60006020828403121561244657600080fd5b6113a282612216565b60006020828403121561246157600080fd5b81356113a2816128de565b60006020828403121561247e57600080fd5b81516113a2816128de565b60006020828403121561249b57600080fd5b813567ffffffffffffffff8111156124b257600080fd5b8201601f810184136124c357600080fd5b6117e1848235602084016121a2565b6000602082840312156124e457600080fd5b5035919050565b600081518084526125038160208601602086016127da565b601f01601f19169290920160200192915050565b60008451602061252a8285838a016127da565b85519184019161253d8184848a016127da565b8554920191600090600181811c908083168061255a57607f831692505b85831081141561257857634e487b7160e01b85526022600452602485fd5b80801561258c576001811461259d576125ca565b60ff198516885283880195506125ca565b60008b81526020902060005b858110156125c25781548a8201529084019088016125a9565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061260e908301846124eb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561265057835183529284019291840191600101612634565b50909695505050505050565b6020815260006113a260208301846124eb565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612770576127706128c8565b604052919050565b6000821982111561278b5761278b612870565b500190565b60008261279f5761279f612886565b500490565b60008160001904831182151516156127be576127be612870565b500290565b6000828210156127d5576127d5612870565b500390565b60005b838110156127f55781810151838201526020016127dd565b838111156112155750506000910152565b600181811c9082168061281a57607f821691505b6020821081141561283b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561285557612855612870565b5060010190565b60008261286b5761286b612886565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610db657600080fdfea2646970667358221220f11a3076c109a4b836c5b56a17942e4132fba2ff0b367b347ec1b5c9f20f55d964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000115368616f6c696e53616d7572616953535700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000115368616f6c696e53616d75726169535357000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005f68747470733a2f2f67726166666974696d616e73696f6e6c6162732e6d7970696e6174612e636c6f75642f697066732f516d6234675a686734734b417a393778794c6e31436751506569637051324d4d7a6f63375062356567674c356e542f000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d64397271754351533941757035326139616355776a6d526735446a52483850784333663568764e4b456e77350000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): ShaolinSamuraiSSW
Arg [1] : _symbol (string): ShaolinSamuraiSSW
Arg [2] : _initBaseURI (string): https://graffitimansionlabs.mypinata.cloud/ipfs/Qmb4gZhg4sKAz97xyLn1CgQPeicpQ2MMzoc7Pb5eggL5nT/
Arg [3] : _initNotRevealedUri (string): ipfs://Qmd9rquCQS9Aup52a9acUwjmRg5DjRH8PxC3f5hvNKEnw5
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 5368616f6c696e53616d75726169535357000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [7] : 5368616f6c696e53616d75726169535357000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000005f
Arg [9] : 68747470733a2f2f67726166666974696d616e73696f6e6c6162732e6d797069
Arg [10] : 6e6174612e636c6f75642f697066732f516d6234675a686734734b417a393778
Arg [11] : 794c6e31436751506569637051324d4d7a6f63375062356567674c356e542f00
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [13] : 697066733a2f2f516d64397271754351533941757035326139616355776a6d52
Arg [14] : 6735446a52483850784333663568764e4b456e77350000000000000000000000
Deployed Bytecode Sourcemap
157:5123:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;989:222:4;;;;;;;;;;-1:-1:-1;989:222:4;;;;;:::i;:::-;;:::i;:::-;;;8550:14:14;;8543:22;8525:41;;8513:2;8498:18;989:222:4;;;;;;;;2408:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1131:163:12:-;;;;;;;;;;-1:-1:-1;1131:163:12;;;;;:::i;:::-;-1:-1:-1;;;;;1258:28:12;1226:7;1258:28;;;:21;:28;;;;;;;1131:163;;;;16154:25:14;;;16142:2;16127:18;1131:163:12;16008:177:14;3919:217:3;;;;;;;;;;-1:-1:-1;3919:217:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7211:32:14;;;7193:51;;7181:2;7166:18;3919:217:3;7047:203:14;360:28:12;;;;;;;;;;;;;:::i;3457:401:3:-;;;;;;;;;;-1:-1:-1;3457:401:3;;;;;:::i;:::-;;:::i;:::-;;493:44:12;;;;;;;;;;;;;;;;1614:111:4;;;;;;;;;;-1:-1:-1;1701:10:4;:17;1614:111;;4442:104:12;;;;;;;;;;-1:-1:-1;4442:104:12;;;;;:::i;:::-;;:::i;4646:330:3:-;;;;;;;;;;-1:-1:-1;4646:330:3;;;;;:::i;:::-;;:::i;624:33:12:-;;;;;;;;;;-1:-1:-1;624:33:12;;;;;;;;;;;1302:593;;;;;;:::i;:::-;;:::i;1290:253:4:-;;;;;;;;;;-1:-1:-1;1290:253:4;;;;;:::i;:::-;;:::i;4768:102:12:-;;;;;;;;;;-1:-1:-1;4768:102:12;;;;;:::i;:::-;;:::i;5091:186::-;;;;;;;;;;;;;:::i;5042:179:3:-;;;;;;;;;;-1:-1:-1;5042:179:3;;;;;:::i;:::-;;:::i;3474:390:12:-;;;;;;;;;;-1:-1:-1;3474:390:12;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1797:230:4:-;;;;;;;;;;-1:-1:-1;1797:230:4;;;;;:::i;:::-;;:::i;441:45:12:-;;;;;;;;;;;;482:4;441:45;;664:28;;;;;;;;;;-1:-1:-1;664:28:12;;;;;;;;;;;4668:92;;;;;;;;;;-1:-1:-1;4668:92:12;;;;;:::i;:::-;;:::i;699:25::-;;;;;;;;;;-1:-1:-1;699:25:12;;;;;;;;;;;4955:128;;;;;;;;;;-1:-1:-1;4955:128:12;;;;;:::i;:::-;;:::i;2111:235:3:-;;;;;;;;;;-1:-1:-1;2111:235:3;;;;;:::i;:::-;;:::i;785:56:12:-;;;;;;;;;;-1:-1:-1;785:56:12;;;;;:::i;:::-;;;;;;;;;;;;;;1849:205:3;;;;;;;;;;-1:-1:-1;1849:205:3;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;546:33:12:-;;;;;;;;;;-1:-1:-1;546:33:12;;;;;;;;1029:85:10;;;;;;;;;;-1:-1:-1;1101:6:10;;-1:-1:-1;;;;;1101:6:10;1029:85;;586:31:12;;;;;;;;;;-1:-1:-1;586:31:12;;;;;;;;;;;2570:102:3;;;;;;;;;;;;;:::i;4203:153::-;;;;;;;;;;-1:-1:-1;4203:153:3;;;;;:::i;:::-;;:::i;4878:69:12:-;;;;;;;;;;;;;:::i;3885:313::-;;;;;;;;;;-1:-1:-1;3885:313:12;;;;;:::i;:::-;;:::i;5287:320:3:-;;;;;;;;;;-1:-1:-1;5287:320:3;;;;;:::i;:::-;;:::i;316:37:12:-;;;;;;;;;;;;;:::i;2741:725::-;;;;;;;;;;-1:-1:-1;2741:725:12;;;;;:::i;:::-;;:::i;4206:112::-;;;;;;;;;;-1:-1:-1;4206:112:12;;;;;:::i;:::-;;:::i;2355:262::-;;;;;;;;;;;;;:::i;4326:108::-;;;;;;;;;;-1:-1:-1;4326:108:12;;;;;:::i;:::-;;:::i;4422:162:3:-;;;;;;;;;;-1:-1:-1;4422:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;4542:25:3;;;4519:4;4542:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4422:162;4554:106:12;;;;;;;;;;-1:-1:-1;4554:106:12;;;;;:::i;:::-;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;395:39:12:-;;;;;;;;;;;;;;;;1903:444;;;;;;:::i;:::-;;:::i;989:222:4:-;1091:4;-1:-1:-1;;;;;;1114:50:4;;-1:-1:-1;;;1114:50:4;;:90;;;1168:36;1192:11;1168:23;:36::i;:::-;1107:97;989:222;-1:-1:-1;;989:222:4:o;2408:98:3:-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3919:217::-;3995:7;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:3;4014:73;;;;-1:-1:-1;;;4014:73:3;;13377:2:14;4014:73:3;;;13359:21:14;13416:2;13396:18;;;13389:30;13455:34;13435:18;;;13428:62;-1:-1:-1;;;13506:18:14;;;13499:42;13558:19;;4014:73:3;;;;;;;;;-1:-1:-1;4105:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4105:24:3;;3919:217::o;360:28:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3457:401:3:-;3537:13;3553:23;3568:7;3553:14;:23::i;:::-;3537:39;;3600:5;-1:-1:-1;;;;;3594:11:3;:2;-1:-1:-1;;;;;3594:11:3;;;3586:57;;;;-1:-1:-1;;;3586:57:3;;14977:2:14;3586:57:3;;;14959:21:14;15016:2;14996:18;;;14989:30;15055:34;15035:18;;;15028:62;-1:-1:-1;;;15106:18:14;;;15099:31;15147:19;;3586:57:3;14775:397:14;3586:57:3;719:10:1;-1:-1:-1;;;;;3675:21:3;;;;:62;;-1:-1:-1;3700:37:3;3717:5;719:10:1;4422:162:3;:::i;3700:37::-;3654:165;;;;-1:-1:-1;;;3654:165:3;;11770:2:14;3654:165:3;;;11752:21:14;11809:2;11789:18;;;11782:30;11848:34;11828:18;;;11821:62;11919:26;11899:18;;;11892:54;11963:19;;3654:165:3;11568:420:14;3654:165:3;3830:21;3839:2;3843:7;3830:8;:21::i;:::-;3527:331;3457:401;;:::o;4442:104:12:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4515:9:12::1;:23:::0;4442:104::o;4646:330:3:-;4835:41;719:10:1;4868:7:3;4835:18;:41::i;:::-;4827:103;;;;-1:-1:-1;;;4827:103:3;;;;;;;:::i;:::-;4941:28;4951:4;4957:2;4961:7;4941:9;:28::i;1302:593:12:-;1380:6;;;;;;;1379:7;1371:16;;;;;;1398:14;1415:13;1701:10:4;:17;;1614:111;1415:13:12;1460:9;;1398:30;;-1:-1:-1;1460:26:12;;1474:11;1460:13;:26::i;:::-;1447:9;:39;;1439:48;;;;;;1530:22;;1506:20;1515:11;1506:6;:20;:::i;:::-;:46;;1498:55;;;;;;1594:10;1572:33;;;;:21;:33;;;;;;1609:1;-1:-1:-1;1572:38:12;1564:47;;;;;;1630:13;;;;:21;;:13;:21;1622:30;;;;;;1668:9;1663:225;1687:11;1683:1;:15;1663:225;;;1796:10;1756:65;;;;:21;:65;;;;;;:72;;1826:1;1756:69;:72::i;:::-;1742:10;1720:33;;;;:21;:33;;;;;:108;;;;1843:33;;1865:10;1874:1;1865:6;:10;:::i;:::-;1843:9;:33::i;:::-;1700:3;;;;:::i;:::-;;;;1663:225;;1290:253:4;1387:7;1422:23;1439:5;1422:16;:23::i;:::-;1414:5;:31;1406:87;;;;-1:-1:-1;;;1406:87:4;;9003:2:14;1406:87:4;;;8985:21:14;9042:2;9022:18;;;9015:30;9081:34;9061:18;;;9054:62;-1:-1:-1;;;9132:18:14;;;9125:41;9183:19;;1406:87:4;8801:407:14;1406:87:4;-1:-1:-1;;;;;;1510:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1290:253::o;4768:102:12:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4840:6:12::1;:22:::0;;-1:-1:-1;;4840:22:12::1;4849:13:::0;::::1;4840:22:::0;::::1;::::0;;;::::1;::::0;;4768:102::o;5091:186::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;5160:82:12::1;::::0;5142:12:::1;::::0;5168:10:::1;::::0;5206:21:::1;::::0;5142:12;5160:82;5142:12;5160:82;5206:21;5168:10;5160:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5141:101;;;5261:7;5253:16;;;::::0;::::1;;5130:147;5091:186::o:0;5042:179:3:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;3474:390:12:-;3561:16;3595:23;3621:17;3631:6;3621:9;:17::i;:::-;3595:43;;3649:25;3691:15;3677:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3677:30:12;;3649:58;;3723:9;3718:113;3738:15;3734:1;:19;3718:113;;;3789:30;3809:6;3817:1;3789:19;:30::i;:::-;3775:8;3784:1;3775:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;3755:3;;;;:::i;:::-;;;;3718:113;;;-1:-1:-1;3848:8:12;3474:390;-1:-1:-1;;;3474:390:12:o;1797:230:4:-;1872:7;1907:30;1701:10;:17;;1614:111;1907:30;1899:5;:38;1891:95;;;;-1:-1:-1;;;1891:95:4;;15797:2:14;1891:95:4;;;15779:21:14;15836:2;15816:18;;;15809:30;15875:34;15855:18;;;15848:62;-1:-1:-1;;;15926:18:14;;;15919:42;15978:19;;1891:95:4;15595:408:14;1891:95:4;2003:10;2014:5;2003:17;;;;;;;;:::i;:::-;;;;;;;;;1996:24;;1797:230;;;:::o;4668:92:12:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4738:14:12;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;4668:92:::0;:::o;4955:128::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;5040:22:12::1;:35:::0;4955:128::o;2111:235:3:-;2183:7;2218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2218:16:3;2252:19;2244:73;;;;-1:-1:-1;;;2244:73:3;;12606:2:14;2244:73:3;;;12588:21:14;12645:2;12625:18;;;12618:30;12684:34;12664:18;;;12657:62;-1:-1:-1;;;12735:18:14;;;12728:39;12784:19;;2244:73:3;12404:405:14;1849:205:3;1921:7;-1:-1:-1;;;;;1948:19:3;;1940:74;;;;-1:-1:-1;;;1940:74:3;;12195:2:14;1940:74:3;;;12177:21:14;12234:2;12214:18;;;12207:30;12273:34;12253:18;;;12246:62;-1:-1:-1;;;12324:18:14;;;12317:40;12374:19;;1940:74:3;11993:406:14;1940:74:3;-1:-1:-1;;;;;;2031:16:3;;;;;:9;:16;;;;;;;1849:205::o;1661:101:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;2570:102:3:-;2626:13;2658:7;2651:14;;;;;:::i;4203:153::-;4297:52;719:10:1;4330:8:3;4340;4297:18;:52::i;4878:69:12:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4924:8:12::1;:15:::0;;-1:-1:-1;;4924:15:12::1;::::0;::::1;::::0;;4878:69::o;3885:313::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4001:9:12::1;3996:195;4020:12;:19;4016:1;:23;3996:195;;;4102:77;4177:1;4102:21;:70;4142:12;4155:1;4142:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4102:70:12::1;-1:-1:-1::0;;;;;4102:70:12::1;;;;;;;;;;;;;:74;;:77;;;;:::i;:::-;4061:21;:38;4083:12;4096:1;4083:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;4061:38:12::1;-1:-1:-1::0;;;;;4061:38:12::1;;;;;;;;;;;;:118;;;;4041:3;;;;;:::i;:::-;;;;3996:195;;5287:320:3::0;5456:41;719:10:1;5489:7:3;5456:18;:41::i;:::-;5448:103;;;;-1:-1:-1;;;5448:103:3;;;;;;;:::i;:::-;5561:39;5575:4;5581:2;5585:7;5594:5;5561:13;:39::i;:::-;5287:320;;;;:::o;316:37:12:-;;;;;;;:::i;2741:725::-;7144:4:3;7167:16;;;:7;:16;;;;;;2859:13:12;;-1:-1:-1;;;;;7167:16:3;2890:113:12;;;;-1:-1:-1;;;2890:113:12;;14561:2:14;2890:113:12;;;14543:21:14;14600:2;14580:18;;;14573:30;14639:34;14619:18;;;14612:62;-1:-1:-1;;;14690:18:14;;;14683:45;14745:19;;2890:113:12;14359:411:14;2890:113:12;3020:8;;;;;;;3016:71;;3061:14;3054:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2741:725;;;:::o;3016:71::-;3099:28;3130:10;:8;:10::i;:::-;3099:41;;3202:1;3177:14;3171:28;:32;:287;;;;;;;;;;;;;;;;;3295:14;3336:18;:7;:16;:18::i;:::-;3381:13;3252:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3171:287;3151:307;2741:725;-1:-1:-1;;;2741:725:12:o;4206:112::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4281:13:12::1;:29:::0;;-1:-1:-1;;4281:29:12::1;4297:13:::0;::::1;4281:29:::0;;;::::1;::::0;;4206:112::o;2355:262::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;2410:13:12::1;::::0;;;::::1;;;:22;2402:31;;;::::0;::::1;;2444:14;2461:13;1701:10:4::0;:17;;1614:111;2461:13:12::1;2444:30;;2490:9;2485:94;2509:3;2505:1;:7;2485:94;;;2534:33;2544:10;2556;2565:1:::0;2556:6;:10:::1;:::i;2534:33::-;2514:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2485:94;;;-1:-1:-1::0;;2589:13:12::1;:20:::0;;-1:-1:-1;;2589:20:12::1;::::0;::::1;::::0;;2355:262::o;4326:108::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4399:11:12::1;:27:::0;;-1:-1:-1;;4399:27:12::1;4413:13:::0;::::1;4399:27;;::::0;;;::::1;::::0;;4326:108::o;4554:106::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;4631:21:12;;::::1;::::0;:14:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;1911:198:10:-:0;1101:6;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:10;;9834:2:14;1991:73:10::1;::::0;::::1;9816:21:14::0;9873:2;9853:18;;;9846:30;9912:34;9892:18;;;9885:62;-1:-1:-1;;;9963:18:14;;;9956:36;10009:19;;1991:73:10::1;9632:402:14::0;1991:73:10::1;2074:28;2093:8;2074:18;:28::i;1903:444:12:-:0;1984:6;;;;;;;1983:7;1975:16;;;;;;2002:14;2019:13;1701:10:4;:17;;1614:111;2019:13:12;2064:9;;2002:30;;-1:-1:-1;2064:26:12;;2078:11;2064:13;:26::i;:::-;2051:9;:39;;2043:48;;;;;;482:4;2110:20;2119:11;2110:6;:20;:::i;:::-;:38;;2102:47;;;;;;2168:11;;;;;;;;:19;;:11;:19;2160:28;;;;;;2222:2;2207:11;:17;;2199:26;;;;;;2243:9;2238:102;2262:11;2258:1;:15;2238:102;;;2295:33;2305:10;2317;2326:1;2317:6;:10;:::i;2295:33::-;2275:3;;;;:::i;:::-;;;;2238:102;;1490:300:3;1592:4;-1:-1:-1;;;;;;1627:40:3;;-1:-1:-1;;;1627:40:3;;:104;;-1:-1:-1;;;;;;;1683:48:3;;-1:-1:-1;;;1683:48:3;1627:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:2;;;1747:36:3;829:155:2;10930:171:3;11004:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11004:29:3;-1:-1:-1;;;;;11004:29:3;;;;;;;;:24;;11057:23;11004:24;11057:14;:23::i;:::-;-1:-1:-1;;;;;11048:46:3;;;;;;;;;;;10930:171;;:::o;7362:344::-;7455:4;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:3;7471:73;;;;-1:-1:-1;;;7471:73:3;;11357:2:14;7471:73:3;;;11339:21:14;11396:2;11376:18;;;11369:30;11435:34;11415:18;;;11408:62;-1:-1:-1;;;11486:18:14;;;11479:42;11538:19;;7471:73:3;11155:408:14;7471:73:3;7554:13;7570:23;7585:7;7570:14;:23::i;:::-;7554:39;;7622:5;-1:-1:-1;;;;;7611:16:3;:7;-1:-1:-1;;;;;7611:16:3;;:51;;;;7655:7;-1:-1:-1;;;;;7631:31:3;:20;7643:7;7631:11;:20::i;:::-;-1:-1:-1;;;;;7631:31:3;;7611:51;:87;;;-1:-1:-1;;;;;;4542:25:3;;;4519:4;4542:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7666:32;7603:96;7362:344;-1:-1:-1;;;;7362:344:3:o;10259:560::-;10413:4;-1:-1:-1;;;;;10386:31:3;:23;10401:7;10386:14;:23::i;:::-;-1:-1:-1;;;;;10386:31:3;;10378:85;;;;-1:-1:-1;;;10378:85:3;;14151:2:14;10378:85:3;;;14133:21:14;14190:2;14170:18;;;14163:30;14229:34;14209:18;;;14202:62;-1:-1:-1;;;14280:18:14;;;14273:39;14329:19;;10378:85:3;13949:405:14;10378:85:3;-1:-1:-1;;;;;10481:16:3;;10473:65;;;;-1:-1:-1;;;10473:65:3;;10598:2:14;10473:65:3;;;10580:21:14;10637:2;10617:18;;;10610:30;10676:34;10656:18;;;10649:62;-1:-1:-1;;;10727:18:14;;;10720:34;10771:19;;10473:65:3;10396:400:14;10473:65:3;10549:39;10570:4;10576:2;10580:7;10549:20;:39::i;:::-;10650:29;10667:1;10671:7;10650:8;:29::i;:::-;-1:-1:-1;;;;;10690:15:3;;;;;;:9;:15;;;;;:20;;10709:1;;10690:15;:20;;10709:1;;10690:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10720:13:3;;;;;;:9;:13;;;;;:18;;10737:1;;10720:13;:18;;10737:1;;10720:18;:::i;:::-;;;;-1:-1:-1;;10748:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10748:21:3;-1:-1:-1;;;;;10748:21:3;;;;;;;;;10785:27;;10748:16;;10785:27;;;;;;;10259:560;;;:::o;3451:96:11:-;3509:7;3535:5;3539:1;3535;:5;:::i;3108:96::-;3166:7;3192:5;3196:1;3192;:5;:::i;8036:108:3:-;8111:26;8121:2;8125:7;8111:26;;;;;;;;;;;;:9;:26::i;2263:187:10:-;2355:6;;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;;;;;2371:17:10;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;11236:307:3:-;11386:8;-1:-1:-1;;;;;11377:17:3;:5;-1:-1:-1;;;;;11377:17:3;;;11369:55;;;;-1:-1:-1;;;11369:55:3;;11003:2:14;11369:55:3;;;10985:21:14;11042:2;11022:18;;;11015:30;11081:27;11061:18;;;11054:55;11126:18;;11369:55:3;10801:349:14;11369:55:3;-1:-1:-1;;;;;11434:25:3;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11434:46:3;;;;;;;;;;11495:41;;8525::14;;;11495::3;;8498:18:14;11495:41:3;;;;;;;11236:307;;;:::o;2741:96:11:-;2799:7;2825:5;2829:1;2825;:5;:::i;6469:307:3:-;6620:28;6630:4;6636:2;6640:7;6620:9;:28::i;:::-;6666:48;6689:4;6695:2;6699:7;6708:5;6666:22;:48::i;:::-;6658:111;;;;-1:-1:-1;;;6658:111:3;;;;;;;:::i;2625:108:12:-;2685:13;2718:7;2711:14;;;;;:::i;328:703:13:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:13;;;;;;;;;;;;-1:-1:-1;;;627:10:13;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:13;;-1:-1:-1;773:2:13;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:13;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:13;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:13;;;;;;;;-1:-1:-1;972:11:13;981:2;972:11;;:::i;:::-;;;844:150;;2623:572:4;-1:-1:-1;;;;;2822:18:4;;2818:183;;2856:40;2888:7;4004:10;:17;;3977:24;;;;:15;:24;;;;;:44;;;4031:24;;;;;;;;;;;;3901:161;2856:40;2818:183;;;2925:2;-1:-1:-1;;;;;2917:10:4;:4;-1:-1:-1;;;;;2917:10:4;;2913:88;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3014:16:4;;3010:179;;3046:45;3083:7;3046:36;:45::i;3010:179::-;3118:4;-1:-1:-1;;;;;3112:10:4;:2;-1:-1:-1;;;;;3112:10:4;;3108:81;;3138:40;3166:2;3170:7;3138:27;:40::i;8365:311:3:-;8490:18;8496:2;8500:7;8490:5;:18::i;:::-;8539:54;8570:1;8574:2;8578:7;8587:5;8539:22;:54::i;:::-;8518:151;;;;-1:-1:-1;;;8518:151:3;;;;;;;:::i;12096:778::-;12246:4;-1:-1:-1;;;;;12266:13:3;;1066:20:0;1114:8;12262:606:3;;12301:72;;-1:-1:-1;;;12301:72:3;;-1:-1:-1;;;;;12301:36:3;;;;;:72;;719:10:1;;12352:4:3;;12358:7;;12367:5;;12301:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12301:72:3;;;;;;;;-1:-1:-1;;12301:72:3;;;;;;;;;;;;:::i;:::-;;;12297:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12540:13:3;;12536:266;;12582:60;;-1:-1:-1;;;12582:60:3;;;;;;;:::i;12536:266::-;12754:6;12748:13;12739:6;12735:2;12731:15;12724:38;12297:519;-1:-1:-1;;;;;;12423:51:3;-1:-1:-1;;;12423:51:3;;-1:-1:-1;12416:58:3;;12262:606;-1:-1:-1;12853:4:3;12096:778;;;;;;:::o;4679:970:4:-;4941:22;4991:1;4966:22;4983:4;4966:16;:22::i;:::-;:26;;;;:::i;:::-;5002:18;5023:26;;;:17;:26;;;;;;4941:51;;-1:-1:-1;5153:28:4;;;5149:323;;-1:-1:-1;;;;;5219:18:4;;5197:19;5219:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5268:30;;;;;;:44;;;5384:30;;:17;:30;;;;;:43;;;5149:323;-1:-1:-1;5565:26:4;;;;:17;:26;;;;;;;;5558:33;;;-1:-1:-1;;;;;5608:18:4;;;;;:12;:18;;;;;:34;;;;;;;5601:41;4679:970::o;5937:1061::-;6211:10;:17;6186:22;;6211:21;;6231:1;;6211:21;:::i;:::-;6242:18;6263:24;;;:15;:24;;;;;;6631:10;:26;;6186:46;;-1:-1:-1;6263:24:4;;6186:46;;6631:26;;;;;;:::i;:::-;;;;;;;;;6609:48;;6693:11;6668:10;6679;6668:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6772:28;;;:15;:28;;;;;;;:41;;;6941:24;;;;;6934:31;6975:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6008:990;;;5937:1061;:::o;3489:217::-;3573:14;3590:20;3607:2;3590:16;:20::i;:::-;-1:-1:-1;;;;;3620:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3664:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3489:217:4:o;8998:372:3:-;-1:-1:-1;;;;;9077:16:3;;9069:61;;;;-1:-1:-1;;;9069:61:3;;13016:2:14;9069:61:3;;;12998:21:14;;;13035:18;;;13028:30;13094:34;13074:18;;;13067:62;13146:18;;9069:61:3;12814:356:14;9069:61:3;7144:4;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:3;:30;9140:58;;;;-1:-1:-1;;;9140:58:3;;10241:2:14;9140:58:3;;;10223:21:14;10280:2;10260:18;;;10253:30;10319;10299:18;;;10292:58;10367:18;;9140:58:3;10039:352:14;9140:58:3;9209:45;9238:1;9242:2;9246:7;9209:20;:45::i;:::-;-1:-1:-1;;;;;9265:13:3;;;;;;:9;:13;;;;;:18;;9282:1;;9265:13;:18;;9282:1;;9265:18;:::i;:::-;;;;-1:-1:-1;;9293:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9293:21:3;-1:-1:-1;;;;;9293:21:3;;;;;;;;9330:33;;9293:16;;;9330:33;;9293:16;;9330:33;8998:372;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:14;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:14;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:14;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:14;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:14:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:14;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:14;2746:963;-1:-1:-1;;;;;;;;2746:963:14:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:14;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:14;;4858:180;-1:-1:-1;4858:180:14:o;5043:257::-;5084:3;5122:5;5116:12;5149:6;5144:3;5137:19;5165:63;5221:6;5214:4;5209:3;5205:14;5198:4;5191:5;5187:16;5165:63;:::i;:::-;5282:2;5261:15;-1:-1:-1;;5257:29:14;5248:39;;;;5289:4;5244:50;;5043:257;-1:-1:-1;;5043:257:14:o;5305:1527::-;5529:3;5567:6;5561:13;5593:4;5606:51;5650:6;5645:3;5640:2;5632:6;5628:15;5606:51;:::i;:::-;5720:13;;5679:16;;;;5742:55;5720:13;5679:16;5764:15;;;5742:55;:::i;:::-;5886:13;;5819:20;;;5859:1;;5946;5968:18;;;;6021;;;;6048:93;;6126:4;6116:8;6112:19;6100:31;;6048:93;6189:2;6179:8;6176:16;6156:18;6153:40;6150:167;;;-1:-1:-1;;;6216:33:14;;6272:4;6269:1;6262:15;6302:4;6223:3;6290:17;6150:167;6333:18;6360:110;;;;6484:1;6479:328;;;;6326:481;;6360:110;-1:-1:-1;;6395:24:14;;6381:39;;6440:20;;;;-1:-1:-1;6360:110:14;;6479:328;16543:1;16536:14;;;16580:4;16567:18;;6574:1;6588:169;6602:8;6599:1;6596:15;6588:169;;;6684:14;;6669:13;;;6662:37;6727:16;;;;6619:10;;6588:169;;;6592:3;;6788:8;6781:5;6777:20;6770:27;;6326:481;-1:-1:-1;6823:3:14;;5305:1527;-1:-1:-1;;;;;;;;;;;5305:1527:14:o;7255:488::-;-1:-1:-1;;;;;7524:15:14;;;7506:34;;7576:15;;7571:2;7556:18;;7549:43;7623:2;7608:18;;7601:34;;;7671:3;7666:2;7651:18;;7644:31;;;7449:4;;7692:45;;7717:19;;7709:6;7692:45;:::i;:::-;7684:53;7255:488;-1:-1:-1;;;;;;7255:488:14:o;7748:632::-;7919:2;7971:21;;;8041:13;;7944:18;;;8063:22;;;7890:4;;7919:2;8142:15;;;;8116:2;8101:18;;;7890:4;8185:169;8199:6;8196:1;8193:13;8185:169;;;8260:13;;8248:26;;8329:15;;;;8294:12;;;;8221:1;8214:9;8185:169;;;-1:-1:-1;8371:3:14;;7748:632;-1:-1:-1;;;;;;7748:632:14:o;8577:219::-;8726:2;8715:9;8708:21;8689:4;8746:44;8786:2;8775:9;8771:18;8763:6;8746:44;:::i;9213:414::-;9415:2;9397:21;;;9454:2;9434:18;;;9427:30;9493:34;9488:2;9473:18;;9466:62;-1:-1:-1;;;9559:2:14;9544:18;;9537:48;9617:3;9602:19;;9213:414::o;13588:356::-;13790:2;13772:21;;;13809:18;;;13802:30;13868:34;13863:2;13848:18;;13841:62;13935:2;13920:18;;13588:356::o;15177:413::-;15379:2;15361:21;;;15418:2;15398:18;;;15391:30;15457:34;15452:2;15437:18;;15430:62;-1:-1:-1;;;15523:2:14;15508:18;;15501:47;15580:3;15565:19;;15177:413::o;16190:275::-;16261:2;16255:9;16326:2;16307:13;;-1:-1:-1;;16303:27:14;16291:40;;16361:18;16346:34;;16382:22;;;16343:62;16340:88;;;16408:18;;:::i;:::-;16444:2;16437:22;16190:275;;-1:-1:-1;16190:275:14:o;16596:128::-;16636:3;16667:1;16663:6;16660:1;16657:13;16654:39;;;16673:18;;:::i;:::-;-1:-1:-1;16709:9:14;;16596:128::o;16729:120::-;16769:1;16795;16785:35;;16800:18;;:::i;:::-;-1:-1:-1;16834:9:14;;16729:120::o;16854:168::-;16894:7;16960:1;16956;16952:6;16948:14;16945:1;16942:21;16937:1;16930:9;16923:17;16919:45;16916:71;;;16967:18;;:::i;:::-;-1:-1:-1;17007:9:14;;16854:168::o;17027:125::-;17067:4;17095:1;17092;17089:8;17086:34;;;17100:18;;:::i;:::-;-1:-1:-1;17137:9:14;;17027:125::o;17157:258::-;17229:1;17239:113;17253:6;17250:1;17247:13;17239:113;;;17329:11;;;17323:18;17310:11;;;17303:39;17275:2;17268:10;17239:113;;;17370:6;17367:1;17364:13;17361:48;;;-1:-1:-1;;17405:1:14;17387:16;;17380:27;17157:258::o;17420:380::-;17499:1;17495:12;;;;17542;;;17563:61;;17617:4;17609:6;17605:17;17595:27;;17563:61;17670:2;17662:6;17659:14;17639:18;17636:38;17633:161;;;17716:10;17711:3;17707:20;17704:1;17697:31;17751:4;17748:1;17741:15;17779:4;17776:1;17769:15;17633:161;;17420:380;;;:::o;17805:135::-;17844:3;-1:-1:-1;;17865:17:14;;17862:43;;;17885:18;;:::i;:::-;-1:-1:-1;17932:1:14;17921:13;;17805:135::o;17945:112::-;17977:1;18003;17993:35;;18008:18;;:::i;:::-;-1:-1:-1;18042:9:14;;17945:112::o;18062:127::-;18123:10;18118:3;18114:20;18111:1;18104:31;18154:4;18151:1;18144:15;18178:4;18175:1;18168:15;18194:127;18255:10;18250:3;18246:20;18243:1;18236:31;18286:4;18283:1;18276:15;18310:4;18307:1;18300:15;18326:127;18387:10;18382:3;18378:20;18375:1;18368:31;18418:4;18415:1;18408:15;18442:4;18439:1;18432:15;18458:127;18519:10;18514:3;18510:20;18507:1;18500:31;18550:4;18547:1;18540:15;18574:4;18571:1;18564:15;18590:127;18651:10;18646:3;18642:20;18639:1;18632:31;18682:4;18679:1;18672:15;18706:4;18703:1;18696:15;18722:131;-1:-1:-1;;;;;;18796:32:14;;18786:43;;18776:71;;18843:1;18840;18833:12
Swarm Source
ipfs://f11a3076c109a4b836c5b56a17942e4132fba2ff0b367b347ec1b5c9f20f55d9
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.