Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,684 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Mint | 18977236 | 383 days ago | IN | 0.75 ETH | 0.0056409 | ||||
Withdraw | 17928858 | 530 days ago | IN | 0 ETH | 0.00143599 | ||||
Mint | 17781629 | 550 days ago | IN | 0.25 ETH | 0.002194 | ||||
Mint | 17615994 | 573 days ago | IN | 0.25 ETH | 0.0015838 | ||||
Reserve | 17070735 | 650 days ago | IN | 0 ETH | 0.0029905 | ||||
Mint | 17045341 | 654 days ago | IN | 0.25 ETH | 0.00290949 | ||||
Mint | 17027713 | 656 days ago | IN | 0.75 ETH | 0.00288804 | ||||
Reserve | 16970659 | 664 days ago | IN | 0 ETH | 0.00289471 | ||||
Reserve | 16970654 | 664 days ago | IN | 0 ETH | 0.00269098 | ||||
Reserve | 16970653 | 664 days ago | IN | 0 ETH | 0.00269187 | ||||
Reserve | 16970653 | 664 days ago | IN | 0 ETH | 0.00269187 | ||||
Reserve | 16970652 | 664 days ago | IN | 0 ETH | 0.00273795 | ||||
Reserve | 16970651 | 664 days ago | IN | 0 ETH | 0.00483049 | ||||
Reserve | 16970650 | 664 days ago | IN | 0 ETH | 0.00502295 | ||||
Reserve | 16970649 | 664 days ago | IN | 0 ETH | 0.00285336 | ||||
Mint | 16946417 | 668 days ago | IN | 0.25 ETH | 0.00185822 | ||||
Mint | 16927697 | 670 days ago | IN | 0.75 ETH | 0.00462825 | ||||
Mint | 16927647 | 670 days ago | IN | 0.75 ETH | 0.00302321 | ||||
Mint | 16927379 | 671 days ago | IN | 0.75 ETH | 0.00395166 | ||||
Mint | 16927270 | 671 days ago | IN | 0.75 ETH | 0.00473004 | ||||
Mint | 16926146 | 671 days ago | IN | 2.5 ETH | 0.00811666 | ||||
Mint | 16925605 | 671 days ago | IN | 0.25 ETH | 0.00234229 | ||||
Mint | 16923671 | 671 days ago | IN | 0.75 ETH | 0.00261905 | ||||
Mint | 16923298 | 671 days ago | IN | 0.75 ETH | 0.00274406 | ||||
Mint | 16920931 | 671 days ago | IN | 0.75 ETH | 0.00428579 |
Latest 18 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17928858 | 530 days ago | 18.75 ETH | ||||
16637400 | 711 days ago | 35.75 ETH | ||||
16394415 | 745 days ago | 108.75 ETH | ||||
15719107 | 840 days ago | 56.25 ETH | ||||
15487494 | 873 days ago | 12.5 ETH | ||||
15393430 | 888 days ago | 81 ETH | ||||
15240192 | 912 days ago | 28.75 ETH | ||||
15189071 | 920 days ago | 108.5 ETH | ||||
15092497 | 935 days ago | 128.5 ETH | ||||
14998988 | 951 days ago | 74.75 ETH | ||||
14969459 | 956 days ago | 62 ETH | ||||
14879468 | 972 days ago | 147 ETH | ||||
14756841 | 991 days ago | 165.75 ETH | ||||
14657161 | 1007 days ago | 114.85 ETH | ||||
14622768 | 1013 days ago | 65 ETH | ||||
14617852 | 1013 days ago | 46 ETH | ||||
14617360 | 1013 days ago | 22.2 ETH | ||||
14616404 | 1014 days ago | 1.8 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ShibaArmyAdminV2
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "./ShibaArmy.sol"; contract ShibaArmyAdminV2 is Ownable { using Strings for uint256; enum saleTypes {WHITELIST, PRESALE, PUBLICSALE} struct saleConfig { uint256 price; uint256 maxAvailable; uint256 maxPerWallet; uint256 maxPerDogeArmy; saleTypes saleType; } saleConfig private publicSale = saleConfig( .25 ether, 10000, 10000, 10000, saleTypes.PUBLICSALE ); saleConfig private preSale = saleConfig( .2 ether, 10000, 10000, 1, saleTypes.PRESALE ); saleConfig private whitelistSale = saleConfig( .15 ether, 2000, 10, 1, saleTypes.WHITELIST ); IERC721 immutable private DOGE_ARMY; ShibaArmy immutable private SHIBA_ARMY; ShibaArmy immutable private SALE2; uint256 constant public MAX_SHIBA = 10000; mapping(uint256 => bool) private isDogeArmyMintClaimedAdmin; // presale mapping(address => uint256) public numDogeArmyHolderMintClaimed; // whitelist function isDogeArmyMintClaimed(uint256 id) public view returns (bool) { return(SHIBA_ARMY.isDogeArmyMintClaimed(id) || SALE2.isDogeArmyMintClaimed(id) || isDogeArmyMintClaimedAdmin[id]); } event DogeArmyMintClaimed(uint256 id); event totalDogeArmyHolderMinted(address holder, uint256 numMinted); event saleLaunched(uint256 launchTime); uint256 public tokensSold; uint256 public launchTime; bool public saleActive; bool public publicSaleStarted; constructor(ERC721 _dogeArmy, ShibaArmy _shibaArmy, ShibaArmy _sale2) { DOGE_ARMY = _dogeArmy; tokensSold = 500; SHIBA_ARMY = _shibaArmy; SALE2 = _sale2; } function balanceOf(address holder) external view returns (uint256) { return SHIBA_ARMY.balanceOf(holder); } function totalSupply() public view returns (uint256) { return SHIBA_ARMY.totalSupply(); } function mint(uint256 numTokensToMint, uint256[] calldata dogeArmyClaimIDs) external payable { // check that sale is active require(saleActive); require(!isSalePaused, "Sale has been paused by owner"); // determine what sale type we are currently in saleConfig memory config = getSaleConfig(); require(msg.value >= config.price * numTokensToMint, "Not enough ETH"); require(config.maxAvailable >= tokensSold + numTokensToMint, "Not enough available tokens to mint"); require(MAX_SHIBA >= tokensSold + numTokensToMint, "Not enough available tokens to mint in this phase"); require(MAX_SHIBA >= totalSupply() + numTokensToMint, "Not enough supply available"); if(config.maxPerWallet != MAX_SHIBA) { require(config.maxPerWallet >= SHIBA_ARMY.numDogeArmyHolderMintClaimed(msg.sender) + numDogeArmyHolderMintClaimed[msg.sender] + numTokensToMint, "Wallet has already claimed maximum mints"); numDogeArmyHolderMintClaimed[msg.sender] += numTokensToMint; emit totalDogeArmyHolderMinted(msg.sender, numDogeArmyHolderMintClaimed[msg.sender]); } bool isDogeArmyMatch = false; if(config.maxPerDogeArmy != MAX_SHIBA){ isDogeArmyMatch = true; require(dogeArmyClaimIDs.length == numTokensToMint); } for (uint256 i = 0; i < numTokensToMint; i++) { if(isDogeArmyMatch){ require(!isDogeArmyMintClaimed(dogeArmyClaimIDs[i]), "DogeArmy Mint already claimed"); // has the Doge Army token already been used to claim a mint require(DOGE_ARMY.ownerOf(dogeArmyClaimIDs[i]) == msg.sender, "Caller not the owner of Doge Army Token"); isDogeArmyMintClaimedAdmin[dogeArmyClaimIDs[i]] = true; emit DogeArmyMintClaimed(dogeArmyClaimIDs[i]); } } tokensSold += numTokensToMint; SHIBA_ARMY.reserve(numTokensToMint, msg.sender); } // returns the current sale config function getSaleConfig() public view returns (saleConfig memory currentConfig) { if(publicSaleStarted) { return publicSale; } uint256 daysSinceSaleStarted = (block.timestamp - launchTime) / 60 / 60 / 24; if(daysSinceSaleStarted < 4){ // check for whitelist sale window // 500 per day of whitelist sale uint256 currentMaxAvailable = (daysSinceSaleStarted + 1) * 500; currentConfig = saleConfig( whitelistSale.price, currentMaxAvailable, whitelistSale.maxPerWallet, whitelistSale.maxPerDogeArmy, saleTypes.WHITELIST ); return currentConfig; } else if (daysSinceSaleStarted < 7){ // check for presale window return preSale; } } // Owner functions function launchSale() external onlyOwner { launchTime = SHIBA_ARMY.launchTime(); saleActive = true; emit saleLaunched(launchTime); } function setLaunchTime(uint256 newLaunchTime) external onlyOwner { launchTime = newLaunchTime; } function launchPublicSale() external onlyOwner { uint256 daysSinceSaleStarted = (block.timestamp - launchTime) % (1 days); require(saleActive); require(daysSinceSaleStarted > 7); publicSaleStarted = true; } bool isSalePaused = false; event salePauseToggled(bool isSalePaused); function toggleSalePaused() external onlyOwner { isSalePaused = !isSalePaused; emit salePauseToggled(isSalePaused); } function reserve(uint256 amount, address destination) external onlyOwner { SHIBA_ARMY.reserve(amount, destination); } function freezeURI() external onlyOwner { SHIBA_ARMY.freezeURI(); } function withdraw() external onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function withdrawSA() external onlyOwner { SHIBA_ARMY.withdraw(); (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function reveal() external onlyOwner { SHIBA_ARMY.reveal(); } function setUnrevealedURI(string calldata _unrevealedURI) external onlyOwner { SHIBA_ARMY.setUnrevealedURI(_unrevealedURI); } function setBaseURI(string calldata _newBaseURI) external onlyOwner { SHIBA_ARMY.setBaseURI(_newBaseURI); } function addProvenance(uint256 id) external onlyOwner { SHIBA_ARMY.addProvenance(id); } function transferSAOwnership() external onlyOwner() { SHIBA_ARMY.transferOwnership(msg.sender); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity 0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; contract ShibaArmy is ERC721, Ownable { using Strings for uint256; enum saleTypes {WHITELIST, PRESALE, PUBLICSALE} struct saleConfig { uint256 price; uint256 maxAvailable; uint256 maxPerWallet; uint256 maxPerDogeArmy; saleTypes saleType; } saleConfig private publicSale = saleConfig( .25 ether, 10000, 10000, 10000, saleTypes.PUBLICSALE ); saleConfig private preSale = saleConfig( .2 ether, 10000, 10000, 1, saleTypes.PRESALE ); saleConfig private whitelistSale = saleConfig( .15 ether, 2000, 10, 1, saleTypes.WHITELIST ); IERC721 immutable private DOGE_ARMY; uint256 constant public MAX_SHIBA = 10000; uint256 public totalSupply; bool public isURIFrozen; bool public revealed; mapping(uint256 => bool) public isDogeArmyMintClaimed; // presale mapping(address => uint256) public numDogeArmyHolderMintClaimed; // whitelist uint256[] public provenanceIds; string public unrevealedURI = "ipfs://QmRYAGJoQ55vykWG4uGVJUt5jCddUP3p2zChs3KXnsNQrM"; string public baseURI; event DogeArmyMintClaimed(uint256 id); event totalDogeArmyHolderMinted(address holder, uint256 numMinted); constructor(ERC721 _dogeArmy) ERC721("ShibaArmy", "SA") { DOGE_ARMY = _dogeArmy; } uint256 public tokensSold; uint256 public launchTime; bool public saleActive; bool public publicSaleStarted; event saleLaunched(uint256 launchTime); function mint(uint256 numTokensToMint, uint256[] calldata dogeArmyClaimIDs) external payable { // check that sale is active require(saleActive); require(!isSalePaused, "Sale has been paused by owner"); // determine what sale type we are currently in saleConfig memory config = getSaleConfig(); require(config.maxAvailable >= tokensSold + numTokensToMint, "Not enough available tokens to mint"); require(MAX_SHIBA >= tokensSold + numTokensToMint, "Not enough available tokens to mint"); if(config.maxPerWallet != MAX_SHIBA) { require(config.maxPerWallet >= numDogeArmyHolderMintClaimed[msg.sender] + numTokensToMint, "Wallet has already claimed maximum mints"); numDogeArmyHolderMintClaimed[msg.sender] += numTokensToMint; emit totalDogeArmyHolderMinted(msg.sender, numDogeArmyHolderMintClaimed[msg.sender]); } bool isDogeArmyMatch = false; if(config.maxPerDogeArmy != MAX_SHIBA){ isDogeArmyMatch = true; require(dogeArmyClaimIDs.length == numTokensToMint); } for (uint256 i = 0; i < numTokensToMint; i++) { if(isDogeArmyMatch){ require(!isDogeArmyMintClaimed[dogeArmyClaimIDs[i]], "DogeArmy Mint already claimed"); // has the Doge Army token already been used to claim a mint require(DOGE_ARMY.ownerOf(dogeArmyClaimIDs[i]) == msg.sender, "Caller not the owner of Doge Army Token"); isDogeArmyMintClaimed[dogeArmyClaimIDs[i]] = true; emit DogeArmyMintClaimed(dogeArmyClaimIDs[i]); } _safeMint(msg.sender, ++totalSupply); tokensSold++; } } // returns the current sale config function getSaleConfig() public view returns (saleConfig memory currentConfig) { if(publicSaleStarted) { return publicSale; } uint256 daysSinceSaleStarted = (block.timestamp - launchTime) / 60 / 60 / 24; if(daysSinceSaleStarted < 4){ // check for whitelist sale window // 500 per day of whitelist sale uint256 currentMaxAvailable = (daysSinceSaleStarted + 1) * 500; currentConfig = saleConfig( whitelistSale.price, currentMaxAvailable, whitelistSale.maxPerWallet, whitelistSale.maxPerDogeArmy, saleTypes.WHITELIST ); return currentConfig; } else if (daysSinceSaleStarted < 7){ // check for presale window return preSale; } } // Owner functions function launchSale() external onlyOwner { require(!saleActive); launchTime = block.timestamp; saleActive = true; emit saleLaunched(launchTime); } function launchPublicSale() external onlyOwner { uint256 daysSinceSaleStarted = (block.timestamp - launchTime) % (1 days); require(saleActive); require(daysSinceSaleStarted > 7); publicSaleStarted = true; } bool isSalePaused = false; event salePauseToggled(bool isSalePaused); function toggleSalePaused() external onlyOwner { isSalePaused = !isSalePaused; emit salePauseToggled(isSalePaused); } function reserve(uint256 amount, address destination) external onlyOwner { require(amount > 0, "cannot mint 0"); require(totalSupply + amount <= MAX_SHIBA, "Sold Out"); for (uint256 i = 0; i < amount; i++) { _safeMint(destination, ++totalSupply); } } function freezeURI() external onlyOwner { isURIFrozen = true; // emit PermanentURI(string ""_value"", uint256 indexed 0); } function withdraw() external onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function reveal() external onlyOwner { revealed = true; } function setUnrevealedURI(string calldata _unrevealedURI) external onlyOwner { unrevealedURI = _unrevealedURI; } function setBaseURI(string calldata _newBaseURI) external onlyOwner { require(!isURIFrozen, "URI is Frozen"); baseURI = _newBaseURI; } function addProvenance(uint256 id) external onlyOwner { provenanceIds.push(id); } // view/pure functions function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if(revealed == false) { return unrevealedURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : ""; } function _baseURI() internal view override returns (string memory) { return baseURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: 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 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: 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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract ERC721","name":"_dogeArmy","type":"address"},{"internalType":"contract ShibaArmy","name":"_shibaArmy","type":"address"},{"internalType":"contract ShibaArmy","name":"_sale2","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"DogeArmyMintClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"launchTime","type":"uint256"}],"name":"saleLaunched","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isSalePaused","type":"bool"}],"name":"salePauseToggled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"numMinted","type":"uint256"}],"name":"totalDogeArmyHolderMinted","type":"event"},{"inputs":[],"name":"MAX_SHIBA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"addProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getSaleConfig","outputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxAvailable","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"},{"internalType":"uint256","name":"maxPerDogeArmy","type":"uint256"},{"internalType":"enum ShibaArmyAdminV2.saleTypes","name":"saleType","type":"uint8"}],"internalType":"struct ShibaArmyAdminV2.saleConfig","name":"currentConfig","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"isDogeArmyMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokensToMint","type":"uint256"},{"internalType":"uint256[]","name":"dogeArmyClaimIDs","type":"uint256[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numDogeArmyHolderMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLaunchTime","type":"uint256"}],"name":"setLaunchTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokensSold","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferSAOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawSA","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526040518060a001604052806703782dace9d9000081526020016127108152602001612710815260200161271081526020016002808111156200004b576200004a620004d5565b5b81525060016000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff02191690836002811115620000a657620000a5620004d5565b5b021790555050506040518060a001604052806702c68af0bb1400008152602001612710815260200161271081526020016001815260200160016002811115620000f457620000f3620004d5565b5b81525060066000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff021916908360028111156200014f576200014e620004d5565b5b021790555050506040518060a00160405280670214e8348c4f000081526020016107d08152602001600a815260200160018152602001600060028111156200019c576200019b620004d5565b5b815250600b6000820151816000015560208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548160ff02191690836002811115620001f757620001f6620004d5565b5b021790555050506000601460026101000a81548160ff0219169083151502179055503480156200022657600080fd5b50604051620034fb380380620034fb83398181016040528101906200024c91906200041d565b6200026c620002606200032360201b60201c565b6200032b60201b60201c565b8273ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506101f46012819055508173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660c08173ffffffffffffffffffffffffffffffffffffffff1660601b815250505050506200053d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620004008162000509565b92915050565b600081519050620004178162000523565b92915050565b60008060006060848603121562000439576200043862000504565b5b60006200044986828701620003ef565b93505060206200045c8682870162000406565b92505060406200046f8682870162000406565b9150509250925092565b60006200048682620004b5565b9050919050565b60006200049a8262000479565b9050919050565b6000620004ae8262000479565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600080fd5b62000514816200048d565b81146200052057600080fd5b50565b6200052e81620004a1565b81146200053a57600080fd5b50565b60805160601c60a05160601c60c05160601c612f2a620005d160003960006117bf01526000818161060f0152818161071c015281816107ab01528181610a6001528181610eba01528181610fca015281816111dc0152818161129a015281816114540152818161168c0152818161171001528181611a0201528181611b00015261201c01526000610cdf0152612f2a6000f3fe60806040526004361061019c5760003560e01c8063790ca413116100ec578063c61caf901161008a578063cadd3e0c11610064578063cadd3e0c146104fd578063cea943ee14610514578063f2fde38b1461053f578063fe2c7fee146105685761019c565b8063c61caf90146104b8578063c793803c146104cf578063ca17cf05146104e65761019c565b80639ff46e74116100c65780639ff46e7414610410578063a2e9147714610439578063a475b5dd14610464578063c0d3b9e91461047b5761019c565b8063790ca413146103a35780637f7376e8146103ce5780638da5cb5b146103e55761019c565b8063518ab2a81161015957806366aa92331161013357806366aa9233146102e757806368428a1b1461032457806370a082311461034f578063715018a61461038c5761019c565b8063518ab2a814610268578063537707bc1461029357806355f804b3146102be5761019c565b806303339bcb146101a157806308450703146101ca57806318160ddd146101e15780632d69044f1461020c5780632f085eec146102285780633ccfd60b14610251575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906123fb565b610591565b005b3480156101d657600080fd5b506101df61069e565b005b3480156101ed57600080fd5b506101f66107a7565b60405161020391906128ef565b60405180910390f35b6102266004803603810190610221919061243b565b61084c565b005b34801561023457600080fd5b5061024f600480360381019061024a91906123a1565b610f4c565b005b34801561025d57600080fd5b50610266611056565b005b34801561027457600080fd5b5061027d611152565b60405161028a91906128ef565b60405180910390f35b34801561029f57600080fd5b506102a8611158565b6040516102b591906128ef565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612354565b61115e565b005b3480156102f357600080fd5b5061030e600480360381019061030991906122cd565b61126b565b60405161031b91906128ef565b60405180910390f35b34801561033057600080fd5b50610339611283565b6040516103469190612755565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906122cd565b611296565b60405161038391906128ef565b60405180910390f35b34801561039857600080fd5b506103a1611348565b005b3480156103af57600080fd5b506103b86113d0565b6040516103c591906128ef565b60405180910390f35b3480156103da57600080fd5b506103e36113d6565b005b3480156103f157600080fd5b506103fa61154c565b6040516104079190612711565b60405180910390f35b34801561041c57600080fd5b50610437600480360381019061043291906123a1565b611575565b005b34801561044557600080fd5b5061044e6115fb565b60405161045b9190612755565b60405180910390f35b34801561047057600080fd5b5061047961160e565b005b34801561048757600080fd5b506104a2600480360381019061049d91906123a1565b61170c565b6040516104af9190612755565b60405180910390f35b3480156104c457600080fd5b506104cd611896565b005b3480156104db57600080fd5b506104e4611984565b005b3480156104f257600080fd5b506104fb611a82565b005b34801561050957600080fd5b50610512611bfe565b005b34801561052057600080fd5b50610529611cde565b60405161053691906128d4565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906122cd565b611ea6565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612354565b611f9e565b005b6105996120ab565b73ffffffffffffffffffffffffffffffffffffffff166105b761154c565b73ffffffffffffffffffffffffffffffffffffffff161461060d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060490612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166303339bcb83836040518363ffffffff1660e01b815260040161066892919061290a565b600060405180830381600087803b15801561068257600080fd5b505af1158015610696573d6000803e3d6000fd5b505050505050565b6106a66120ab565b73ffffffffffffffffffffffffffffffffffffffff166106c461154c565b73ffffffffffffffffffffffffffffffffffffffff161461071a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071190612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f2fde38b336040518263ffffffff1660e01b81526004016107739190612711565b600060405180830381600087803b15801561078d57600080fd5b505af11580156107a1573d6000803e3d6000fd5b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561080f57600080fd5b505afa158015610823573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084791906123ce565b905090565b601460009054906101000a900460ff1661086557600080fd5b601460029054906101000a900460ff16156108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac90612834565b60405180910390fd5b60006108bf611cde565b90508381600001516108d191906129d6565b341015610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a90612874565b60405180910390fd5b83601254610921919061294f565b81602001511015610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e906127b4565b60405180910390fd5b83601254610975919061294f565b61271010156109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b090612854565b60405180910390fd5b836109c26107a7565b6109cc919061294f565b6127101015610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a07906127f4565b60405180910390fd5b612710816040015114610c305783601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020547f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166366aa9233336040518263ffffffff1660e01b8152600401610ab79190612711565b60206040518083038186803b158015610acf57600080fd5b505afa158015610ae3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0791906123ce565b610b11919061294f565b610b1b919061294f565b81604001511015610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890612794565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bb0919061294f565b925050819055507f2b7037a04723079a9e4a2cc2170197efd67a8f2ba73c6d70dfb112bfdaa0fc4b33601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051610c2792919061272c565b60405180910390a15b6000612710826060015114610c535760019050848484905014610c5257600080fd5b5b60005b85811015610e9e578115610e8b57610c86858583818110610c7a57610c79612be7565b5b9050602002013561170c565b15610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd906128b4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16636352211e878785818110610d2c57610d2b612be7565b5b905060200201356040518263ffffffff1660e01b8152600401610d4f91906128ef565b60206040518083038186803b158015610d6757600080fd5b505afa158015610d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9f91906122fa565b73ffffffffffffffffffffffffffffffffffffffff1614610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90612814565b60405180910390fd5b600160106000878785818110610e0e57610e0d612be7565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055507f370816993d66faf9c3780089493fda4721dadc3c4bbe4ca98cb1fa5c2521d152858583818110610e6e57610e6d612be7565b5b90506020020135604051610e8291906128ef565b60405180910390a15b8080610e9690612ae0565b915050610c56565b508460126000828254610eb1919061294f565b925050819055507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166303339bcb86336040518363ffffffff1660e01b8152600401610f1392919061290a565b600060405180830381600087803b158015610f2d57600080fd5b505af1158015610f41573d6000803e3d6000fd5b505050505050505050565b610f546120ab565b73ffffffffffffffffffffffffffffffffffffffff16610f7261154c565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632f085eec826040518263ffffffff1660e01b815260040161102191906128ef565b600060405180830381600087803b15801561103b57600080fd5b505af115801561104f573d6000803e3d6000fd5b5050505050565b61105e6120ab565b73ffffffffffffffffffffffffffffffffffffffff1661107c61154c565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990612894565b60405180910390fd5b60006110dc61154c565b73ffffffffffffffffffffffffffffffffffffffff16476040516110ff906126fc565b60006040518083038185875af1925050503d806000811461113c576040519150601f19603f3d011682016040523d82523d6000602084013e611141565b606091505b505090508061114f57600080fd5b50565b60125481565b61271081565b6111666120ab565b73ffffffffffffffffffffffffffffffffffffffff1661118461154c565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166355f804b383836040518363ffffffff1660e01b8152600401611235929190612770565b600060405180830381600087803b15801561124f57600080fd5b505af1158015611263573d6000803e3d6000fd5b505050505050565b60116020528060005260406000206000915090505481565b601460009054906101000a900460ff1681565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016112f19190612711565b60206040518083038186803b15801561130957600080fd5b505afa15801561131d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134191906123ce565b9050919050565b6113506120ab565b73ffffffffffffffffffffffffffffffffffffffff1661136e61154c565b73ffffffffffffffffffffffffffffffffffffffff16146113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612894565b60405180910390fd5b6113ce60006120b3565b565b60135481565b6113de6120ab565b73ffffffffffffffffffffffffffffffffffffffff166113fc61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663790ca4136040518163ffffffff1660e01b815260040160206040518083038186803b1580156114b857600080fd5b505afa1580156114cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f091906123ce565b6013819055506001601460006101000a81548160ff0219169083151502179055507fe7b8bf7acc285459df6b77232eb91e928c7c34e51f57a65de486a9a9e80dba2b60135460405161154291906128ef565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61157d6120ab565b73ffffffffffffffffffffffffffffffffffffffff1661159b61154c565b73ffffffffffffffffffffffffffffffffffffffff16146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612894565b60405180910390fd5b8060138190555050565b601460019054906101000a900460ff1681565b6116166120ab565b73ffffffffffffffffffffffffffffffffffffffff1661163461154c565b73ffffffffffffffffffffffffffffffffffffffff161461168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a475b5dd6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156116f257600080fd5b505af1158015611706573d6000803e3d6000fd5b50505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c0d3b9e9836040518263ffffffff1660e01b815260040161176791906128ef565b60206040518083038186803b15801561177f57600080fd5b505afa158015611793573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b79190612327565b8061186757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c0d3b9e9836040518263ffffffff1660e01b815260040161181691906128ef565b60206040518083038186803b15801561182e57600080fd5b505afa158015611842573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118669190612327565b5b8061188f57506010600083815260200190815260200160002060009054906101000a900460ff165b9050919050565b61189e6120ab565b73ffffffffffffffffffffffffffffffffffffffff166118bc61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190990612894565b60405180910390fd5b601460029054906101000a900460ff1615601460026101000a81548160ff0219169083151502179055507fb8302d060648830cfc856bfe834195403d66ae761547b284e7fe8414b4d3ea90601460029054906101000a900460ff1660405161197a9190612755565b60405180910390a1565b61198c6120ab565b73ffffffffffffffffffffffffffffffffffffffff166119aa61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c793803c6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a6857600080fd5b505af1158015611a7c573d6000803e3d6000fd5b50505050565b611a8a6120ab565b73ffffffffffffffffffffffffffffffffffffffff16611aa861154c565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16633ccfd60b6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611b6657600080fd5b505af1158015611b7a573d6000803e3d6000fd5b505050506000611b8861154c565b73ffffffffffffffffffffffffffffffffffffffff1647604051611bab906126fc565b60006040518083038185875af1925050503d8060008114611be8576040519150601f19603f3d011682016040523d82523d6000602084013e611bed565b606091505b5050905080611bfb57600080fd5b50565b611c066120ab565b73ffffffffffffffffffffffffffffffffffffffff16611c2461154c565b73ffffffffffffffffffffffffffffffffffffffff1614611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190612894565b60405180910390fd5b60006201518060135442611c8e9190612a30565b611c989190612b29565b9050601460009054906101000a900460ff16611cb357600080fd5b60078111611cc057600080fd5b6001601460016101000a81548160ff02191690831515021790555050565b611ce6612177565b601460019054906101000a900460ff1615611d725760016040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff166002811115611d5557611d54612bb8565b5b6002811115611d6757611d66612bb8565b5b815250509050611ea3565b60006018603c8060135442611d879190612a30565b611d9191906129a5565b611d9b91906129a5565b611da591906129a5565b90506004811015611e205760006101f4600183611dc2919061294f565b611dcc91906129d6565b90506040518060a00160405280600b600001548152602001828152602001600b600201548152602001600b60030154815260200160006002811115611e1457611e13612bb8565b5b81525092505050611ea3565b6007811015611ea15760066040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff166002811115611e8357611e82612bb8565b5b6002811115611e9557611e94612bb8565b5b81525050915050611ea3565b505b90565b611eae6120ab565b73ffffffffffffffffffffffffffffffffffffffff16611ecc61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990612894565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f89906127d4565b60405180910390fd5b611f9b816120b3565b50565b611fa66120ab565b73ffffffffffffffffffffffffffffffffffffffff16611fc461154c565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190612894565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663fe2c7fee83836040518363ffffffff1660e01b8152600401612075929190612770565b600060405180830381600087803b15801561208f57600080fd5b505af11580156120a3573d6000803e3d6000fd5b505050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600060028111156121b2576121b1612bb8565b5b81525090565b6000813590506121c781612eaf565b92915050565b6000815190506121dc81612eaf565b92915050565b60008083601f8401126121f8576121f7612c1b565b5b8235905067ffffffffffffffff81111561221557612214612c16565b5b60208301915083602082028301111561223157612230612c20565b5b9250929050565b60008151905061224781612ec6565b92915050565b60008083601f84011261226357612262612c1b565b5b8235905067ffffffffffffffff8111156122805761227f612c16565b5b60208301915083600182028301111561229c5761229b612c20565b5b9250929050565b6000813590506122b281612edd565b92915050565b6000815190506122c781612edd565b92915050565b6000602082840312156122e3576122e2612c2a565b5b60006122f1848285016121b8565b91505092915050565b6000602082840312156123105761230f612c2a565b5b600061231e848285016121cd565b91505092915050565b60006020828403121561233d5761233c612c2a565b5b600061234b84828501612238565b91505092915050565b6000806020838503121561236b5761236a612c2a565b5b600083013567ffffffffffffffff81111561238957612388612c25565b5b6123958582860161224d565b92509250509250929050565b6000602082840312156123b7576123b6612c2a565b5b60006123c5848285016122a3565b91505092915050565b6000602082840312156123e4576123e3612c2a565b5b60006123f2848285016122b8565b91505092915050565b6000806040838503121561241257612411612c2a565b5b6000612420858286016122a3565b9250506020612431858286016121b8565b9150509250929050565b60008060006040848603121561245457612453612c2a565b5b6000612462868287016122a3565b935050602084013567ffffffffffffffff81111561248357612482612c25565b5b61248f868287016121e2565b92509250509250925092565b6124a481612a64565b82525050565b6124b381612a76565b82525050565b6124c281612abf565b82525050565b60006124d4838561293e565b93506124e1838584612ad1565b6124ea83612c2f565b840190509392505050565b600061250260288361293e565b915061250d82612c40565b604082019050919050565b600061252560238361293e565b915061253082612c8f565b604082019050919050565b600061254860268361293e565b915061255382612cde565b604082019050919050565b600061256b601b8361293e565b915061257682612d2d565b602082019050919050565b600061258e60278361293e565b915061259982612d56565b604082019050919050565b60006125b1601d8361293e565b91506125bc82612da5565b602082019050919050565b60006125d460318361293e565b91506125df82612dce565b604082019050919050565b60006125f7600e8361293e565b915061260282612e1d565b602082019050919050565b600061261a60208361293e565b915061262582612e46565b602082019050919050565b600061263d600083612933565b915061264882612e6f565b600082019050919050565b6000612660601d8361293e565b915061266b82612e72565b602082019050919050565b60a08201600082015161268c60008501826126de565b50602082015161269f60208501826126de565b5060408201516126b260408501826126de565b5060608201516126c560608501826126de565b5060808201516126d860808501826124b9565b50505050565b6126e781612ab5565b82525050565b6126f681612ab5565b82525050565b600061270782612630565b9150819050919050565b6000602082019050612726600083018461249b565b92915050565b6000604082019050612741600083018561249b565b61274e60208301846126ed565b9392505050565b600060208201905061276a60008301846124aa565b92915050565b6000602082019050818103600083015261278b8184866124c8565b90509392505050565b600060208201905081810360008301526127ad816124f5565b9050919050565b600060208201905081810360008301526127cd81612518565b9050919050565b600060208201905081810360008301526127ed8161253b565b9050919050565b6000602082019050818103600083015261280d8161255e565b9050919050565b6000602082019050818103600083015261282d81612581565b9050919050565b6000602082019050818103600083015261284d816125a4565b9050919050565b6000602082019050818103600083015261286d816125c7565b9050919050565b6000602082019050818103600083015261288d816125ea565b9050919050565b600060208201905081810360008301526128ad8161260d565b9050919050565b600060208201905081810360008301526128cd81612653565b9050919050565b600060a0820190506128e96000830184612676565b92915050565b600060208201905061290460008301846126ed565b92915050565b600060408201905061291f60008301856126ed565b61292c602083018461249b565b9392505050565b600081905092915050565b600082825260208201905092915050565b600061295a82612ab5565b915061296583612ab5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561299a57612999612b5a565b5b828201905092915050565b60006129b082612ab5565b91506129bb83612ab5565b9250826129cb576129ca612b89565b5b828204905092915050565b60006129e182612ab5565b91506129ec83612ab5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2557612a24612b5a565b5b828202905092915050565b6000612a3b82612ab5565b9150612a4683612ab5565b925082821015612a5957612a58612b5a565b5b828203905092915050565b6000612a6f82612a95565b9050919050565b60008115159050919050565b6000819050612a9082612e9b565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aca82612a82565b9050919050565b82818337600083830152505050565b6000612aeb82612ab5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b1e57612b1d612b5a565b5b600182019050919050565b6000612b3482612ab5565b9150612b3f83612ab5565b925082612b4f57612b4e612b89565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57616c6c65742068617320616c726561647920636c61696d6564206d6178696d60008201527f756d206d696e7473000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820617661696c61626c6520746f6b656e7320746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820737570706c7920617661696c61626c650000000000600082015250565b7f43616c6c6572206e6f7420746865206f776e6572206f6620446f67652041726d60008201527f7920546f6b656e00000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206265656e20706175736564206279206f776e6572000000600082015250565b7f4e6f7420656e6f75676820617661696c61626c6520746f6b656e7320746f206d60008201527f696e7420696e2074686973207068617365000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f446f676541726d79204d696e7420616c726561647920636c61696d6564000000600082015250565b60038110612eac57612eab612bb8565b5b50565b612eb881612a64565b8114612ec357600080fd5b50565b612ecf81612a76565b8114612eda57600080fd5b50565b612ee681612ab5565b8114612ef157600080fd5b5056fea26469706673582212209d4d3e25612ff454a9fcb0e9a4c5d00378bf425e838b59e3396d9833d60daf7464736f6c6343000807003300000000000000000000000021177c97be40b52b002fbee000a03212708bcf470000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be70000000000000000000000006624499997dee871b7302a14225be63d0f900943
Deployed Bytecode
0x60806040526004361061019c5760003560e01c8063790ca413116100ec578063c61caf901161008a578063cadd3e0c11610064578063cadd3e0c146104fd578063cea943ee14610514578063f2fde38b1461053f578063fe2c7fee146105685761019c565b8063c61caf90146104b8578063c793803c146104cf578063ca17cf05146104e65761019c565b80639ff46e74116100c65780639ff46e7414610410578063a2e9147714610439578063a475b5dd14610464578063c0d3b9e91461047b5761019c565b8063790ca413146103a35780637f7376e8146103ce5780638da5cb5b146103e55761019c565b8063518ab2a81161015957806366aa92331161013357806366aa9233146102e757806368428a1b1461032457806370a082311461034f578063715018a61461038c5761019c565b8063518ab2a814610268578063537707bc1461029357806355f804b3146102be5761019c565b806303339bcb146101a157806308450703146101ca57806318160ddd146101e15780632d69044f1461020c5780632f085eec146102285780633ccfd60b14610251575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c391906123fb565b610591565b005b3480156101d657600080fd5b506101df61069e565b005b3480156101ed57600080fd5b506101f66107a7565b60405161020391906128ef565b60405180910390f35b6102266004803603810190610221919061243b565b61084c565b005b34801561023457600080fd5b5061024f600480360381019061024a91906123a1565b610f4c565b005b34801561025d57600080fd5b50610266611056565b005b34801561027457600080fd5b5061027d611152565b60405161028a91906128ef565b60405180910390f35b34801561029f57600080fd5b506102a8611158565b6040516102b591906128ef565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612354565b61115e565b005b3480156102f357600080fd5b5061030e600480360381019061030991906122cd565b61126b565b60405161031b91906128ef565b60405180910390f35b34801561033057600080fd5b50610339611283565b6040516103469190612755565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906122cd565b611296565b60405161038391906128ef565b60405180910390f35b34801561039857600080fd5b506103a1611348565b005b3480156103af57600080fd5b506103b86113d0565b6040516103c591906128ef565b60405180910390f35b3480156103da57600080fd5b506103e36113d6565b005b3480156103f157600080fd5b506103fa61154c565b6040516104079190612711565b60405180910390f35b34801561041c57600080fd5b50610437600480360381019061043291906123a1565b611575565b005b34801561044557600080fd5b5061044e6115fb565b60405161045b9190612755565b60405180910390f35b34801561047057600080fd5b5061047961160e565b005b34801561048757600080fd5b506104a2600480360381019061049d91906123a1565b61170c565b6040516104af9190612755565b60405180910390f35b3480156104c457600080fd5b506104cd611896565b005b3480156104db57600080fd5b506104e4611984565b005b3480156104f257600080fd5b506104fb611a82565b005b34801561050957600080fd5b50610512611bfe565b005b34801561052057600080fd5b50610529611cde565b60405161053691906128d4565b60405180910390f35b34801561054b57600080fd5b50610566600480360381019061056191906122cd565b611ea6565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612354565b611f9e565b005b6105996120ab565b73ffffffffffffffffffffffffffffffffffffffff166105b761154c565b73ffffffffffffffffffffffffffffffffffffffff161461060d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060490612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff166303339bcb83836040518363ffffffff1660e01b815260040161066892919061290a565b600060405180830381600087803b15801561068257600080fd5b505af1158015610696573d6000803e3d6000fd5b505050505050565b6106a66120ab565b73ffffffffffffffffffffffffffffffffffffffff166106c461154c565b73ffffffffffffffffffffffffffffffffffffffff161461071a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071190612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff1663f2fde38b336040518263ffffffff1660e01b81526004016107739190612711565b600060405180830381600087803b15801561078d57600080fd5b505af11580156107a1573d6000803e3d6000fd5b50505050565b60007f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561080f57600080fd5b505afa158015610823573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061084791906123ce565b905090565b601460009054906101000a900460ff1661086557600080fd5b601460029054906101000a900460ff16156108b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ac90612834565b60405180910390fd5b60006108bf611cde565b90508381600001516108d191906129d6565b341015610913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090a90612874565b60405180910390fd5b83601254610921919061294f565b81602001511015610967576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095e906127b4565b60405180910390fd5b83601254610975919061294f565b61271010156109b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b090612854565b60405180910390fd5b836109c26107a7565b6109cc919061294f565b6127101015610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a07906127f4565b60405180910390fd5b612710816040015114610c305783601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020547f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff166366aa9233336040518263ffffffff1660e01b8152600401610ab79190612711565b60206040518083038186803b158015610acf57600080fd5b505afa158015610ae3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b0791906123ce565b610b11919061294f565b610b1b919061294f565b81604001511015610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5890612794565b60405180910390fd5b83601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610bb0919061294f565b925050819055507f2b7037a04723079a9e4a2cc2170197efd67a8f2ba73c6d70dfb112bfdaa0fc4b33601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054604051610c2792919061272c565b60405180910390a15b6000612710826060015114610c535760019050848484905014610c5257600080fd5b5b60005b85811015610e9e578115610e8b57610c86858583818110610c7a57610c79612be7565b5b9050602002013561170c565b15610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd906128b4565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f00000000000000000000000021177c97be40b52b002fbee000a03212708bcf4773ffffffffffffffffffffffffffffffffffffffff16636352211e878785818110610d2c57610d2b612be7565b5b905060200201356040518263ffffffff1660e01b8152600401610d4f91906128ef565b60206040518083038186803b158015610d6757600080fd5b505afa158015610d7b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d9f91906122fa565b73ffffffffffffffffffffffffffffffffffffffff1614610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90612814565b60405180910390fd5b600160106000878785818110610e0e57610e0d612be7565b5b90506020020135815260200190815260200160002060006101000a81548160ff0219169083151502179055507f370816993d66faf9c3780089493fda4721dadc3c4bbe4ca98cb1fa5c2521d152858583818110610e6e57610e6d612be7565b5b90506020020135604051610e8291906128ef565b60405180910390a15b8080610e9690612ae0565b915050610c56565b508460126000828254610eb1919061294f565b925050819055507f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff166303339bcb86336040518363ffffffff1660e01b8152600401610f1392919061290a565b600060405180830381600087803b158015610f2d57600080fd5b505af1158015610f41573d6000803e3d6000fd5b505050505050505050565b610f546120ab565b73ffffffffffffffffffffffffffffffffffffffff16610f7261154c565b73ffffffffffffffffffffffffffffffffffffffff1614610fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbf90612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff16632f085eec826040518263ffffffff1660e01b815260040161102191906128ef565b600060405180830381600087803b15801561103b57600080fd5b505af115801561104f573d6000803e3d6000fd5b5050505050565b61105e6120ab565b73ffffffffffffffffffffffffffffffffffffffff1661107c61154c565b73ffffffffffffffffffffffffffffffffffffffff16146110d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c990612894565b60405180910390fd5b60006110dc61154c565b73ffffffffffffffffffffffffffffffffffffffff16476040516110ff906126fc565b60006040518083038185875af1925050503d806000811461113c576040519150601f19603f3d011682016040523d82523d6000602084013e611141565b606091505b505090508061114f57600080fd5b50565b60125481565b61271081565b6111666120ab565b73ffffffffffffffffffffffffffffffffffffffff1661118461154c565b73ffffffffffffffffffffffffffffffffffffffff16146111da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d190612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff166355f804b383836040518363ffffffff1660e01b8152600401611235929190612770565b600060405180830381600087803b15801561124f57600080fd5b505af1158015611263573d6000803e3d6000fd5b505050505050565b60116020528060005260406000206000915090505481565b601460009054906101000a900460ff1681565b60007f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff166370a08231836040518263ffffffff1660e01b81526004016112f19190612711565b60206040518083038186803b15801561130957600080fd5b505afa15801561131d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134191906123ce565b9050919050565b6113506120ab565b73ffffffffffffffffffffffffffffffffffffffff1661136e61154c565b73ffffffffffffffffffffffffffffffffffffffff16146113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb90612894565b60405180910390fd5b6113ce60006120b3565b565b60135481565b6113de6120ab565b73ffffffffffffffffffffffffffffffffffffffff166113fc61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611452576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144990612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff1663790ca4136040518163ffffffff1660e01b815260040160206040518083038186803b1580156114b857600080fd5b505afa1580156114cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114f091906123ce565b6013819055506001601460006101000a81548160ff0219169083151502179055507fe7b8bf7acc285459df6b77232eb91e928c7c34e51f57a65de486a9a9e80dba2b60135460405161154291906128ef565b60405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61157d6120ab565b73ffffffffffffffffffffffffffffffffffffffff1661159b61154c565b73ffffffffffffffffffffffffffffffffffffffff16146115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e890612894565b60405180910390fd5b8060138190555050565b601460019054906101000a900460ff1681565b6116166120ab565b73ffffffffffffffffffffffffffffffffffffffff1661163461154c565b73ffffffffffffffffffffffffffffffffffffffff161461168a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168190612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff1663a475b5dd6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156116f257600080fd5b505af1158015611706573d6000803e3d6000fd5b50505050565b60007f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff1663c0d3b9e9836040518263ffffffff1660e01b815260040161176791906128ef565b60206040518083038186803b15801561177f57600080fd5b505afa158015611793573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b79190612327565b8061186757507f0000000000000000000000006624499997dee871b7302a14225be63d0f90094373ffffffffffffffffffffffffffffffffffffffff1663c0d3b9e9836040518263ffffffff1660e01b815260040161181691906128ef565b60206040518083038186803b15801561182e57600080fd5b505afa158015611842573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118669190612327565b5b8061188f57506010600083815260200190815260200160002060009054906101000a900460ff165b9050919050565b61189e6120ab565b73ffffffffffffffffffffffffffffffffffffffff166118bc61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611912576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190990612894565b60405180910390fd5b601460029054906101000a900460ff1615601460026101000a81548160ff0219169083151502179055507fb8302d060648830cfc856bfe834195403d66ae761547b284e7fe8414b4d3ea90601460029054906101000a900460ff1660405161197a9190612755565b60405180910390a1565b61198c6120ab565b73ffffffffffffffffffffffffffffffffffffffff166119aa61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f790612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff1663c793803c6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611a6857600080fd5b505af1158015611a7c573d6000803e3d6000fd5b50505050565b611a8a6120ab565b73ffffffffffffffffffffffffffffffffffffffff16611aa861154c565b73ffffffffffffffffffffffffffffffffffffffff1614611afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af590612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff16633ccfd60b6040518163ffffffff1660e01b8152600401600060405180830381600087803b158015611b6657600080fd5b505af1158015611b7a573d6000803e3d6000fd5b505050506000611b8861154c565b73ffffffffffffffffffffffffffffffffffffffff1647604051611bab906126fc565b60006040518083038185875af1925050503d8060008114611be8576040519150601f19603f3d011682016040523d82523d6000602084013e611bed565b606091505b5050905080611bfb57600080fd5b50565b611c066120ab565b73ffffffffffffffffffffffffffffffffffffffff16611c2461154c565b73ffffffffffffffffffffffffffffffffffffffff1614611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7190612894565b60405180910390fd5b60006201518060135442611c8e9190612a30565b611c989190612b29565b9050601460009054906101000a900460ff16611cb357600080fd5b60078111611cc057600080fd5b6001601460016101000a81548160ff02191690831515021790555050565b611ce6612177565b601460019054906101000a900460ff1615611d725760016040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff166002811115611d5557611d54612bb8565b5b6002811115611d6757611d66612bb8565b5b815250509050611ea3565b60006018603c8060135442611d879190612a30565b611d9191906129a5565b611d9b91906129a5565b611da591906129a5565b90506004811015611e205760006101f4600183611dc2919061294f565b611dcc91906129d6565b90506040518060a00160405280600b600001548152602001828152602001600b600201548152602001600b60030154815260200160006002811115611e1457611e13612bb8565b5b81525092505050611ea3565b6007811015611ea15760066040518060a0016040529081600082015481526020016001820154815260200160028201548152602001600382015481526020016004820160009054906101000a900460ff166002811115611e8357611e82612bb8565b5b6002811115611e9557611e94612bb8565b5b81525050915050611ea3565b505b90565b611eae6120ab565b73ffffffffffffffffffffffffffffffffffffffff16611ecc61154c565b73ffffffffffffffffffffffffffffffffffffffff1614611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990612894565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f89906127d4565b60405180910390fd5b611f9b816120b3565b50565b611fa66120ab565b73ffffffffffffffffffffffffffffffffffffffff16611fc461154c565b73ffffffffffffffffffffffffffffffffffffffff161461201a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201190612894565b60405180910390fd5b7f0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be773ffffffffffffffffffffffffffffffffffffffff1663fe2c7fee83836040518363ffffffff1660e01b8152600401612075929190612770565b600060405180830381600087803b15801561208f57600080fd5b505af11580156120a3573d6000803e3d6000fd5b505050505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6040518060a0016040528060008152602001600081526020016000815260200160008152602001600060028111156121b2576121b1612bb8565b5b81525090565b6000813590506121c781612eaf565b92915050565b6000815190506121dc81612eaf565b92915050565b60008083601f8401126121f8576121f7612c1b565b5b8235905067ffffffffffffffff81111561221557612214612c16565b5b60208301915083602082028301111561223157612230612c20565b5b9250929050565b60008151905061224781612ec6565b92915050565b60008083601f84011261226357612262612c1b565b5b8235905067ffffffffffffffff8111156122805761227f612c16565b5b60208301915083600182028301111561229c5761229b612c20565b5b9250929050565b6000813590506122b281612edd565b92915050565b6000815190506122c781612edd565b92915050565b6000602082840312156122e3576122e2612c2a565b5b60006122f1848285016121b8565b91505092915050565b6000602082840312156123105761230f612c2a565b5b600061231e848285016121cd565b91505092915050565b60006020828403121561233d5761233c612c2a565b5b600061234b84828501612238565b91505092915050565b6000806020838503121561236b5761236a612c2a565b5b600083013567ffffffffffffffff81111561238957612388612c25565b5b6123958582860161224d565b92509250509250929050565b6000602082840312156123b7576123b6612c2a565b5b60006123c5848285016122a3565b91505092915050565b6000602082840312156123e4576123e3612c2a565b5b60006123f2848285016122b8565b91505092915050565b6000806040838503121561241257612411612c2a565b5b6000612420858286016122a3565b9250506020612431858286016121b8565b9150509250929050565b60008060006040848603121561245457612453612c2a565b5b6000612462868287016122a3565b935050602084013567ffffffffffffffff81111561248357612482612c25565b5b61248f868287016121e2565b92509250509250925092565b6124a481612a64565b82525050565b6124b381612a76565b82525050565b6124c281612abf565b82525050565b60006124d4838561293e565b93506124e1838584612ad1565b6124ea83612c2f565b840190509392505050565b600061250260288361293e565b915061250d82612c40565b604082019050919050565b600061252560238361293e565b915061253082612c8f565b604082019050919050565b600061254860268361293e565b915061255382612cde565b604082019050919050565b600061256b601b8361293e565b915061257682612d2d565b602082019050919050565b600061258e60278361293e565b915061259982612d56565b604082019050919050565b60006125b1601d8361293e565b91506125bc82612da5565b602082019050919050565b60006125d460318361293e565b91506125df82612dce565b604082019050919050565b60006125f7600e8361293e565b915061260282612e1d565b602082019050919050565b600061261a60208361293e565b915061262582612e46565b602082019050919050565b600061263d600083612933565b915061264882612e6f565b600082019050919050565b6000612660601d8361293e565b915061266b82612e72565b602082019050919050565b60a08201600082015161268c60008501826126de565b50602082015161269f60208501826126de565b5060408201516126b260408501826126de565b5060608201516126c560608501826126de565b5060808201516126d860808501826124b9565b50505050565b6126e781612ab5565b82525050565b6126f681612ab5565b82525050565b600061270782612630565b9150819050919050565b6000602082019050612726600083018461249b565b92915050565b6000604082019050612741600083018561249b565b61274e60208301846126ed565b9392505050565b600060208201905061276a60008301846124aa565b92915050565b6000602082019050818103600083015261278b8184866124c8565b90509392505050565b600060208201905081810360008301526127ad816124f5565b9050919050565b600060208201905081810360008301526127cd81612518565b9050919050565b600060208201905081810360008301526127ed8161253b565b9050919050565b6000602082019050818103600083015261280d8161255e565b9050919050565b6000602082019050818103600083015261282d81612581565b9050919050565b6000602082019050818103600083015261284d816125a4565b9050919050565b6000602082019050818103600083015261286d816125c7565b9050919050565b6000602082019050818103600083015261288d816125ea565b9050919050565b600060208201905081810360008301526128ad8161260d565b9050919050565b600060208201905081810360008301526128cd81612653565b9050919050565b600060a0820190506128e96000830184612676565b92915050565b600060208201905061290460008301846126ed565b92915050565b600060408201905061291f60008301856126ed565b61292c602083018461249b565b9392505050565b600081905092915050565b600082825260208201905092915050565b600061295a82612ab5565b915061296583612ab5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561299a57612999612b5a565b5b828201905092915050565b60006129b082612ab5565b91506129bb83612ab5565b9250826129cb576129ca612b89565b5b828204905092915050565b60006129e182612ab5565b91506129ec83612ab5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a2557612a24612b5a565b5b828202905092915050565b6000612a3b82612ab5565b9150612a4683612ab5565b925082821015612a5957612a58612b5a565b5b828203905092915050565b6000612a6f82612a95565b9050919050565b60008115159050919050565b6000819050612a9082612e9b565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aca82612a82565b9050919050565b82818337600083830152505050565b6000612aeb82612ab5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612b1e57612b1d612b5a565b5b600182019050919050565b6000612b3482612ab5565b9150612b3f83612ab5565b925082612b4f57612b4e612b89565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f57616c6c65742068617320616c726561647920636c61696d6564206d6178696d60008201527f756d206d696e7473000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820617661696c61626c6520746f6b656e7320746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820737570706c7920617661696c61626c650000000000600082015250565b7f43616c6c6572206e6f7420746865206f776e6572206f6620446f67652041726d60008201527f7920546f6b656e00000000000000000000000000000000000000000000000000602082015250565b7f53616c6520686173206265656e20706175736564206279206f776e6572000000600082015250565b7f4e6f7420656e6f75676820617661696c61626c6520746f6b656e7320746f206d60008201527f696e7420696e2074686973207068617365000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820455448000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f446f676541726d79204d696e7420616c726561647920636c61696d6564000000600082015250565b60038110612eac57612eab612bb8565b5b50565b612eb881612a64565b8114612ec357600080fd5b50565b612ecf81612a76565b8114612eda57600080fd5b50565b612ee681612ab5565b8114612ef157600080fd5b5056fea26469706673582212209d4d3e25612ff454a9fcb0e9a4c5d00378bf425e838b59e3396d9833d60daf7464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000021177c97be40b52b002fbee000a03212708bcf470000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be70000000000000000000000006624499997dee871b7302a14225be63d0f900943
-----Decoded View---------------
Arg [0] : _dogeArmy (address): 0x21177C97Be40b52b002fbeE000a03212708BCf47
Arg [1] : _shibaArmy (address): 0x0e043e39E1F9382E4b3cB9B859a1452A93993bE7
Arg [2] : _sale2 (address): 0x6624499997DEe871B7302a14225BE63d0F900943
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000021177c97be40b52b002fbee000a03212708bcf47
Arg [1] : 0000000000000000000000000e043e39e1f9382e4b3cb9b859a1452a93993be7
Arg [2] : 0000000000000000000000006624499997dee871b7302a14225be63d0f900943
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,077.81 | 0.75 | $2,308.36 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.