Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
386 APIGS
Holders
209
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 APIGSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
APigs
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Boom.sol"; import "./BabyPigs.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract APigs is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard { string public baseTokenURI; function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, amount); } using Counters for Counters.Counter; Counters.Counter public _tokenSupply; uint256 public breedPrice = 500; uint256 private _price = 0.05 ether; uint256 private _reserved = 33; uint256 public maxAmount = 8; bool public paused = true; bool public publicMintPaused = true; bytes32 public _rootHash ; mapping(address => uint256) private walletCount; Boom private boomContract; BabyPigs private babyPigsContract; modifier aPigsOwner(uint256 _aPigId) { require(ownerOf(_aPigId) == msg.sender, "Pig does not belong to sender"); _; } constructor(string memory baseURI) ERC721("AlmightyPigs", "APIGS") { setBaseURI(baseURI); } function mintPreSale(bytes32[] memory _proof, uint256 num) external payable nonReentrant { uint256 supply = _tokenSupply.current(); require(!paused, "Minting paused"); require(publicMintPaused, "The Presale is over!"); bytes32 _leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_proof, _rootHash, _leaf), " Address is not whitelisted"); require( num > 0 && num < 3, " Max 2 per txn"); require(walletCount[msg.sender] + num <= 2, " Whitelist only can mint 2"); require(supply + num <= 3333 - _reserved, "Exceeds maximum supply"); require(msg.value >= _price * num, "Ether sent is not correct"); for (uint256 i = 1; i <= num; i++) { _safeMint(msg.sender, supply + i); _tokenSupply.increment(); } walletCount[msg.sender] += num; } function mint(uint256 num) external payable nonReentrant { uint256 supply = _tokenSupply.current(); require(!paused, "Minting paused"); require(!publicMintPaused, " Public sale is not live yet"); require( num > 0 && num < 3, " Max 2 per txn"); require(supply + num <= 3333 - _reserved, "Exceeds maximum supply"); require( walletCount[msg.sender] + num <= maxAmount, " Max Amount is reached!" ); require(msg.value >= _price * num, "Ether sent is not correct"); for (uint256 i = 1; i <= num; i++) { _safeMint(msg.sender, supply + i); _tokenSupply.increment(); } walletCount[msg.sender] += num; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function breed(uint256 _parent1, uint256 _parent2) external aPigsOwner(_parent1) aPigsOwner(_parent2) { require(_parent1 != _parent2, "Parents must be different"); boomContract.burn(msg.sender, breedPrice); babyPigsContract.mint(msg.sender); } function walletOfOwner(address owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(owner, i); } return tokensId; } function setmaxAmount(uint256 _newMax) public onlyOwner { maxAmount = _newMax; } function setRootHash(bytes32 rootHash) public onlyOwner { _rootHash = rootHash; } function giveAway(address _to, uint256 _amount) external onlyOwner { require(_amount <= _reserved, "Exceeds reserved supply"); uint256 supply = _tokenSupply.current(); for (uint256 i = 1; i <= _amount; i++) { _safeMint(_to, supply + i); _tokenSupply.increment(); } _reserved -= _amount; } function pause(bool state) public onlyOwner { paused = state; } function publicMintPause(bool state) public onlyOwner { publicMintPaused = state; } function setBabyPigsContract(address _babyPigsAddress) public onlyOwner { babyPigsContract = BabyPigs(_babyPigsAddress); } function setBoomContract(address _boomAddress) public onlyOwner { boomContract = Boom(_boomAddress); } function setBreedPrice(uint256 _newPrice) public onlyOwner { breedPrice = _newPrice; } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function transferFrom( address from, address to, uint256 tokenId ) public override { if (address(boomContract) != address(0)) { boomContract.updateTokens(from, to); } ERC721.transferFrom(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public override { if (address(boomContract) != address(0)) { boomContract.updateTokens(from, to); } ERC721.safeTransferFrom(from, to, tokenId, data); } function withdraw() public onlyOwner { require( payable(owner()).send(address(this).balance), "Withdraw unsuccessful" ); } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./APigs.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract Boom is ERC20, Ownable { uint256 public constant BOOM_RATE = 10; uint256 private startTime; address private aPigsAddress; mapping(address => uint256) public lastUpdate; APigs private aPigsContract; modifier onlyAPigsAddress() { require(msg.sender == address(aPigsContract), "Not aPigs address"); _; } constructor() ERC20("Boom", "$BOOM") { startTime = block.timestamp; } function updateTokens(address from, address to) external onlyAPigsAddress { if (from != address(0)) { _mint(from, getPendingTokens(from)); lastUpdate[from] = block.timestamp; } if (to != address(0)) { _mint(to, getPendingTokens(to)); lastUpdate[to] = block.timestamp; } } function getPendingTokens(address _user) public view returns (uint256) { uint256[] memory ownedAPigs = aPigsContract.walletOfOwner(_user); return (ownedAPigs.length * BOOM_RATE * ( (block.timestamp - (lastUpdate[_user] >= startTime ? lastUpdate[_user] : startTime)) )) / 86400; } function claim() external { _mint(msg.sender, getPendingTokens(msg.sender)); lastUpdate[msg.sender] = block.timestamp; } function giveAway(address _user, uint256 _amount) public onlyOwner { _mint(_user, _amount); } function burn(address _user, uint256 _amount) public onlyAPigsAddress { _burn(_user, _amount); } function setAPigsContract(address _aPigsAddress) public onlyOwner { aPigsContract = APigs(_aPigsAddress); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./APigs.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract BabyPigs is ERC721Enumerable, Ownable { string public baseTokenURI; APigs private aPigsContract; modifier onlyAPigsContract() { require(_msgSender() == address(aPigsContract), "Not aPigs address"); _; } constructor(string memory baseURI) ERC721("BabyPigs", "BABYPIGS") { setBaseURI(baseURI); } function mint(address _to) public onlyAPigsContract { uint256 supply = totalSupply(); require(supply + 1 <= 6666, "Exceeds maximum supply"); _safeMint(_to, totalSupply() + 1); } function walletOfOwner(address owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(owner, i); } return tokensId; } function setAPigsContract(address _aPigsAddress) public onlyOwner { aPigsContract = APigs(_aPigsAddress); } function setBaseURI(string memory baseURI) public onlyOwner { baseTokenURI = baseURI; } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { string memory _tokenURI = super.tokenURI(tokenId); return bytes(_tokenURI).length > 0 ? string(abi.encodePacked(_tokenURI, ".json")) : ""; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens 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 amount ) 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, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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.0 (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.0 (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.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_rootHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenSupply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_parent1","type":"uint256"},{"internalType":"uint256","name":"_parent2","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"breedPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"mintPreSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"publicMintPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_babyPigsAddress","type":"address"}],"name":"setBabyPigsContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_boomAddress","type":"address"}],"name":"setBoomContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setBreedPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"rootHash","type":"bytes32"}],"name":"setRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setmaxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526101f4600e5566b1a2bc2ec50000600f55602160105560086011556012805461ffff19166101011790553480156200003b57600080fd5b506040516200333e3803806200333e8339810160408190526200005e916200026d565b604080518082018252600c81526b416c6d69676874795069677360a01b602080830191825283518085019094526005845264415049475360d81b908401528151919291620000af91600091620001c7565b508051620000c5906001906020840190620001c7565b505050620000e2620000dc620000f960201b60201c565b620000fd565b6001600b55620000f2816200014f565b5062000396565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001ae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c390600c906020840190620001c7565b5050565b828054620001d59062000343565b90600052602060002090601f016020900481019282620001f9576000855562000244565b82601f106200021457805160ff191683800117855562000244565b8280016001018555821562000244579182015b828111156200024457825182559160200191906001019062000227565b506200025292915062000256565b5090565b5b8082111562000252576000815560010162000257565b6000602080838503121562000280578182fd5b82516001600160401b038082111562000297578384fd5b818501915085601f830112620002ab578384fd5b815181811115620002c057620002c062000380565b604051601f8201601f19908116603f01168101908382118183101715620002eb57620002eb62000380565b81604052828152888684870101111562000303578687fd5b8693505b8284101562000326578484018601518185018701529285019262000307565b828411156200033757868684830101525b98975050505050505050565b600181811c908216806200035857607f821691505b602082108114156200037a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612f9880620003a66000396000f3fe60806040526004361061023b5760003560e01c8063629b05f01161012e578063a22cb465116100ab578063ca8001441161006f578063ca80014414610672578063d547cfb714610692578063d9ecad7b146106a7578063e985e9c5146106c7578063f2fde38b1461071057600080fd5b8063a22cb465146105d2578063b88d4fde146105f2578063bb92891614610612578063c5aa530214610632578063c87b56dd1461065257600080fd5b806381aa92a2116100f257806381aa92a2146105595780638da5cb5b1461056c57806395d89b411461058a5780639bea80a11461059f578063a0712d68146105bf57600080fd5b8063629b05f0146104cd5780636352211e146104e457806370a0823114610504578063715018a61461052457806371beeba11461053957600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461044757806355f804b3146104675780635c975abb146104875780635f48f393146104a15780636283188c146104b757600080fd5b80632f745c59146103a657806333d9d5fd146103c65780633ccfd60b146103e557806342842e0e146103fa578063438b63001461041a57600080fd5b8063095ea7b311610203578063095ea7b31461031157806318160ddd1461033157806323b872dd146103505780632a5f510e146103705780632d7eae661461038657600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b957806308fd9f0b146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612b52565b610730565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004612b20565b610741565b005b3480156102a357600080fd5b506102ac610787565b60405161026c9190612cf6565b3480156102c557600080fd5b506102d96102d4366004612b3a565b610819565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612b20565b6108ae565b34801561031d57600080fd5b5061029561032c366004612a49565b6108f2565b34801561033d57600080fd5b506008545b60405190815260200161026c565b34801561035c57600080fd5b5061029561036b36600461296c565b610a08565b34801561037c57600080fd5b50610342600e5481565b34801561039257600080fd5b506102956103a1366004612b3a565b610a8c565b3480156103b257600080fd5b506103426103c1366004612a49565b610abb565b3480156103d257600080fd5b5060125461026090610100900460ff1681565b3480156103f157600080fd5b50610295610b51565b34801561040657600080fd5b5061029561041536600461296c565b610be9565b34801561042657600080fd5b5061043a610435366004612920565b610c04565b60405161026c9190612cb2565b34801561045357600080fd5b50610342610462366004612b3a565b610cc2565b34801561047357600080fd5b50610295610482366004612b8a565b610d63565b34801561049357600080fd5b506012546102609060ff1681565b3480156104ad57600080fd5b5061034260115481565b3480156104c357600080fd5b5061034260135481565b3480156104d957600080fd5b50600d546103429081565b3480156104f057600080fd5b506102d96104ff366004612b3a565b610da4565b34801561051057600080fd5b5061034261051f366004612920565b610e1b565b34801561053057600080fd5b50610295610ea2565b34801561054557600080fd5b50610295610554366004612b3a565b610ed6565b610295610567366004612a72565b610f05565b34801561057857600080fd5b50600a546001600160a01b03166102d9565b34801561059657600080fd5b506102ac61126e565b3480156105ab57600080fd5b506102956105ba366004612b3a565b61127d565b6102956105cd366004612b3a565b6112ac565b3480156105de57600080fd5b506102956105ed366004612a20565b611586565b3480156105fe57600080fd5b5061029561060d3660046129a7565b611591565b34801561061e57600080fd5b5061029561062d366004612920565b61161c565b34801561063e57600080fd5b5061029561064d366004612920565b611668565b34801561065e57600080fd5b506102ac61066d366004612b3a565b6116b4565b34801561067e57600080fd5b5061029561068d366004612a49565b611709565b34801561069e57600080fd5b506102ac6117e7565b3480156106b357600080fd5b506102956106c2366004612bd0565b611875565b3480156106d357600080fd5b506102606106e236600461293a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071c57600080fd5b5061029561072b366004612920565b611a52565b600061073b82611aed565b92915050565b600a546001600160a01b031633146107745760405162461bcd60e51b815260040161076b90612d5b565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461079690612ea0565b80601f01602080910402602001604051908101604052809291908181526020018280546107c290612ea0565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076b565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146108d85760405162461bcd60e51b815260040161076b90612d5b565b601280549115156101000261ff0019909216919091179055565b60006108fd82610da4565b9050806001600160a01b0316836001600160a01b0316141561096b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076b565b336001600160a01b0382161480610987575061098781336106e2565b6109f95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076b565b610a038383611b12565b505050565b6015546001600160a01b031615610a815760155460405163e7aa29e360e01b81526001600160a01b03858116600483015284811660248301529091169063e7aa29e390604401600060405180830381600087803b158015610a6857600080fd5b505af1158015610a7c573d6000803e3d6000fd5b505050505b610a03838383611b80565b600a546001600160a01b03163314610ab65760405162461bcd60e51b815260040161076b90612d5b565b601355565b6000610ac683610e1b565b8210610b285760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b7b5760405162461bcd60e51b815260040161076b90612d5b565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610be75760405162461bcd60e51b815260206004820152601560248201527415da5d1a191c985dc81d5b9cdd58d8d95cdcd99d5b605a1b604482015260640161076b565b565b610a0383838360405180602001604052806000815250611591565b60606000610c1183610e1b565b905060008167ffffffffffffffff811115610c3c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c65578160200160208202803683370190505b50905060005b82811015610cba57610c7d8582610abb565b828281518110610c9d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cb281612edb565b915050610c6b565b509392505050565b6000610ccd60085490565b8210610d305760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076b565b60088281548110610d5157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161076b90612d5b565b8051610da090600c906020840190612803565b5050565b6000818152600260205260408120546001600160a01b03168061073b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076b565b60006001600160a01b038216610e865760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ecc5760405162461bcd60e51b815260040161076b90612d5b565b610be76000611bb1565b600a546001600160a01b03163314610f005760405162461bcd60e51b815260040161076b90612d5b565b600e55565b6002600b541415610f585760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076b565b6002600b556000610f68600d5490565b60125490915060ff1615610faf5760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b604482015260640161076b565b601254610100900460ff16610ffd5760405162461bcd60e51b81526020600482015260146024820152735468652050726573616c65206973206f7665722160601b604482015260640161076b565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506110438460135483611c03565b61108f5760405162461bcd60e51b815260206004820152601b60248201527f2041646472657373206973206e6f742077686974656c69737465640000000000604482015260640161076b565b60008311801561109f5750600383105b6110dc5760405162461bcd60e51b815260206004820152600e60248201526d1026b0bc1019103832b9103a3c3760911b604482015260640161076b565b336000908152601460205260409020546002906110fa908590612e12565b11156111485760405162461bcd60e51b815260206004820152601a60248201527f2057686974656c697374206f6e6c792063616e206d696e742032000000000000604482015260640161076b565b60105461115790610d05612e5d565b6111618484612e12565b11156111a85760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161076b565b82600f546111b69190612e3e565b3410156112015760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161076b565b60015b83811161123e5761121e336112198386612e12565b611c19565b61122c600d80546001019055565b8061123681612edb565b915050611204565b50336000908152601460205260408120805485929061125e908490612e12565b90915550506001600b5550505050565b60606001805461079690612ea0565b600a546001600160a01b031633146112a75760405162461bcd60e51b815260040161076b90612d5b565b601155565b6002600b5414156112ff5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076b565b6002600b55600061130f600d5490565b60125490915060ff16156113565760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b604482015260640161076b565b601254610100900460ff16156113ae5760405162461bcd60e51b815260206004820152601c60248201527f205075626c69632073616c65206973206e6f74206c6976652079657400000000604482015260640161076b565b6000821180156113be5750600382105b6113fb5760405162461bcd60e51b815260206004820152600e60248201526d1026b0bc1019103832b9103a3c3760911b604482015260640161076b565b60105461140a90610d05612e5d565b6114148383612e12565b111561145b5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161076b565b60115433600090815260146020526040902054611479908490612e12565b11156114c75760405162461bcd60e51b815260206004820152601760248201527f204d617820416d6f756e74206973207265616368656421000000000000000000604482015260640161076b565b81600f546114d59190612e3e565b3410156115205760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161076b565b60015b82811161155857611538336112198385612e12565b611546600d80546001019055565b8061155081612edb565b915050611523565b503360009081526014602052604081208054849290611578908490612e12565b90915550506001600b555050565b610da0338383611c33565b6015546001600160a01b03161561160a5760155460405163e7aa29e360e01b81526001600160a01b03868116600483015285811660248301529091169063e7aa29e390604401600060405180830381600087803b1580156115f157600080fd5b505af1158015611605573d6000803e3d6000fd5b505050505b61161684848484611d02565b50505050565b600a546001600160a01b031633146116465760405162461bcd60e51b815260040161076b90612d5b565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146116925760405162461bcd60e51b815260040161076b90612d5b565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b606060006116c183611d34565b905060008151116116e15760405180602001604052806000815250611702565b806040516020016116f29190612c4c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117335760405162461bcd60e51b815260040161076b90612d5b565b6010548111156117855760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161076b565b6000611790600d5490565b905060015b8281116117ca576117aa846112198385612e12565b6117b8600d80546001019055565b806117c281612edb565b915050611795565b5081601060008282546117dd9190612e5d565b9091555050505050565b600c80546117f490612ea0565b80601f016020809104026020016040519081016040528092919081815260200182805461182090612ea0565b801561186d5780601f106118425761010080835404028352916020019161186d565b820191906000526020600020905b81548152906001019060200180831161185057829003601f168201915b505050505081565b813361188082610da4565b6001600160a01b0316146118d65760405162461bcd60e51b815260206004820152601d60248201527f50696720646f6573206e6f742062656c6f6e6720746f2073656e646572000000604482015260640161076b565b81336118e182610da4565b6001600160a01b0316146119375760405162461bcd60e51b815260206004820152601d60248201527f50696720646f6573206e6f742062656c6f6e6720746f2073656e646572000000604482015260640161076b565b828414156119875760405162461bcd60e51b815260206004820152601960248201527f506172656e7473206d75737420626520646966666572656e7400000000000000604482015260640161076b565b601554600e54604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b1580156119d757600080fd5b505af11580156119eb573d6000803e3d6000fd5b50506016546040516335313c2160e11b81523360048201526001600160a01b039091169250636a6278429150602401600060405180830381600087803b158015611a3457600080fd5b505af1158015611a48573d6000803e3d6000fd5b5050505050505050565b600a546001600160a01b03163314611a7c5760405162461bcd60e51b815260040161076b90612d5b565b6001600160a01b038116611ae15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076b565b611aea81611bb1565b50565b60006001600160e01b0319821663780e9d6360e01b148061073b575061073b82611df8565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b4782610da4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611b8a3382611e48565b611ba65760405162461bcd60e51b815260040161076b90612d90565b610a03838383611f3f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611c1085846120ea565b14949350505050565b610da082826040518060200160405280600081525061219c565b816001600160a01b0316836001600160a01b03161415611c955760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d0c3383611e48565b611d285760405162461bcd60e51b815260040161076b90612d90565b611616848484846121cf565b6000818152600260205260409020546060906001600160a01b0316611db35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076b565b6000611dbd612202565b90506000815111611ddd5760405180602001604052806000815250611702565b80611de784612211565b6040516020016116f2929190612c1d565b60006001600160e01b031982166380ac58cd60e01b1480611e2957506001600160e01b03198216635b5e139f60e01b145b8061073b57506301ffc9a760e01b6001600160e01b031983161461073b565b6000818152600260205260408120546001600160a01b0316611ec15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076b565b6000611ecc83610da4565b9050806001600160a01b0316846001600160a01b03161480611f075750836001600160a01b0316611efc84610819565b6001600160a01b0316145b80611f3757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f5282610da4565b6001600160a01b031614611fba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076b565b6001600160a01b03821661201c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076b565b61202783838361232b565b612032600082611b12565b6001600160a01b038316600090815260036020526040812080546001929061205b908490612e5d565b90915550506001600160a01b0382166000908152600360205260408120805460019290612089908490612e12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b8451811015610cba57600085828151811061211a57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161215c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612189565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061219481612edb565b9150506120ef565b6121a68383612336565b6121b36000848484612484565b610a035760405162461bcd60e51b815260040161076b90612d09565b6121da848484611f3f565b6121e684848484612484565b6116165760405162461bcd60e51b815260040161076b90612d09565b6060600c805461079690612ea0565b6060816122355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561225f578061224981612edb565b91506122589050600a83612e2a565b9150612239565b60008167ffffffffffffffff81111561228857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122b2576020820181803683370190505b5090505b8415611f37576122c7600183612e5d565b91506122d4600a86612ef6565b6122df906030612e12565b60f81b81838151811061230257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612324600a86612e2a565b94506122b6565b610a03838383612591565b6001600160a01b03821661238c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076b565b6000818152600260205260409020546001600160a01b0316156123f15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076b565b6123fd6000838361232b565b6001600160a01b0382166000908152600360205260408120805460019290612426908490612e12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561258657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124c8903390899088908890600401612c75565b602060405180830381600087803b1580156124e257600080fd5b505af1925050508015612512575060408051601f3d908101601f1916820190925261250f91810190612b6e565b60015b61256c573d808015612540576040519150601f19603f3d011682016040523d82523d6000602084013e612545565b606091505b5080516125645760405162461bcd60e51b815260040161076b90612d09565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f37565b506001949350505050565b6001600160a01b0383166125ec576125e781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61260f565b816001600160a01b0316836001600160a01b03161461260f5761260f8382612649565b6001600160a01b03821661262657610a03816126e6565b826001600160a01b0316826001600160a01b031614610a0357610a0382826127bf565b6000600161265684610e1b565b6126609190612e5d565b6000838152600760205260409020549091508082146126b3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126f890600190612e5d565b6000838152600960205260408120546008805493945090928490811061272e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061275d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127a357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127ca83610e1b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461280f90612ea0565b90600052602060002090601f0160209004810192826128315760008555612877565b82601f1061284a57805160ff1916838001178555612877565b82800160010185558215612877579182015b8281111561287757825182559160200191906001019061285c565b50612883929150612887565b5090565b5b808211156128835760008155600101612888565b600067ffffffffffffffff8311156128b6576128b6612f36565b6128c9601f8401601f1916602001612de1565b90508281528383830111156128dd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461290b57600080fd5b919050565b8035801515811461290b57600080fd5b600060208284031215612931578081fd5b611702826128f4565b6000806040838503121561294c578081fd5b612955836128f4565b9150612963602084016128f4565b90509250929050565b600080600060608486031215612980578081fd5b612989846128f4565b9250612997602085016128f4565b9150604084013590509250925092565b600080600080608085870312156129bc578081fd5b6129c5856128f4565b93506129d3602086016128f4565b925060408501359150606085013567ffffffffffffffff8111156129f5578182fd5b8501601f81018713612a05578182fd5b612a148782356020840161289c565b91505092959194509250565b60008060408385031215612a32578182fd5b612a3b836128f4565b915061296360208401612910565b60008060408385031215612a5b578182fd5b612a64836128f4565b946020939093013593505050565b60008060408385031215612a84578182fd5b823567ffffffffffffffff80821115612a9b578384fd5b818501915085601f830112612aae578384fd5b8135602082821115612ac257612ac2612f36565b8160051b9250612ad3818401612de1565b8281528181019085830185870184018b1015612aed578889fd5b8896505b84871015612b0f578035835260019690960195918301918301612af1565b509997909101359750505050505050565b600060208284031215612b31578081fd5b61170282612910565b600060208284031215612b4b578081fd5b5035919050565b600060208284031215612b63578081fd5b813561170281612f4c565b600060208284031215612b7f578081fd5b815161170281612f4c565b600060208284031215612b9b578081fd5b813567ffffffffffffffff811115612bb1578182fd5b8201601f81018413612bc1578182fd5b611f378482356020840161289c565b60008060408385031215612be2578182fd5b50508035926020909101359150565b60008151808452612c09816020860160208601612e74565b601f01601f19169290920160200192915050565b60008351612c2f818460208801612e74565b835190830190612c43818360208801612e74565b01949350505050565b60008251612c5e818460208701612e74565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ca890830184612bf1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612cea57835183529284019291840191600101612cce565b50909695505050505050565b6020815260006117026020830184612bf1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e0a57612e0a612f36565b604052919050565b60008219821115612e2557612e25612f0a565b500190565b600082612e3957612e39612f20565b500490565b6000816000190483118215151615612e5857612e58612f0a565b500290565b600082821015612e6f57612e6f612f0a565b500390565b60005b83811015612e8f578181015183820152602001612e77565b838111156116165750506000910152565b600181811c90821680612eb457607f821691505b60208210811415612ed557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612eef57612eef612f0a565b5060010190565b600082612f0557612f05612f20565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aea57600080fdfea2646970667358221220634c1cc7fed1a4e02aca1562d0796d81e540dec6e181f7f1adbc2ca1ffa4f14264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010616c6d6967687479706967732e636f6d00000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063629b05f01161012e578063a22cb465116100ab578063ca8001441161006f578063ca80014414610672578063d547cfb714610692578063d9ecad7b146106a7578063e985e9c5146106c7578063f2fde38b1461071057600080fd5b8063a22cb465146105d2578063b88d4fde146105f2578063bb92891614610612578063c5aa530214610632578063c87b56dd1461065257600080fd5b806381aa92a2116100f257806381aa92a2146105595780638da5cb5b1461056c57806395d89b411461058a5780639bea80a11461059f578063a0712d68146105bf57600080fd5b8063629b05f0146104cd5780636352211e146104e457806370a0823114610504578063715018a61461052457806371beeba11461053957600080fd5b80632f745c59116101bc5780634f6ccce7116101805780634f6ccce71461044757806355f804b3146104675780635c975abb146104875780635f48f393146104a15780636283188c146104b757600080fd5b80632f745c59146103a657806333d9d5fd146103c65780633ccfd60b146103e557806342842e0e146103fa578063438b63001461041a57600080fd5b8063095ea7b311610203578063095ea7b31461031157806318160ddd1461033157806323b872dd146103505780632a5f510e146103705780632d7eae661461038657600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b957806308fd9f0b146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612b52565b610730565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004612b20565b610741565b005b3480156102a357600080fd5b506102ac610787565b60405161026c9190612cf6565b3480156102c557600080fd5b506102d96102d4366004612b3a565b610819565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c366004612b20565b6108ae565b34801561031d57600080fd5b5061029561032c366004612a49565b6108f2565b34801561033d57600080fd5b506008545b60405190815260200161026c565b34801561035c57600080fd5b5061029561036b36600461296c565b610a08565b34801561037c57600080fd5b50610342600e5481565b34801561039257600080fd5b506102956103a1366004612b3a565b610a8c565b3480156103b257600080fd5b506103426103c1366004612a49565b610abb565b3480156103d257600080fd5b5060125461026090610100900460ff1681565b3480156103f157600080fd5b50610295610b51565b34801561040657600080fd5b5061029561041536600461296c565b610be9565b34801561042657600080fd5b5061043a610435366004612920565b610c04565b60405161026c9190612cb2565b34801561045357600080fd5b50610342610462366004612b3a565b610cc2565b34801561047357600080fd5b50610295610482366004612b8a565b610d63565b34801561049357600080fd5b506012546102609060ff1681565b3480156104ad57600080fd5b5061034260115481565b3480156104c357600080fd5b5061034260135481565b3480156104d957600080fd5b50600d546103429081565b3480156104f057600080fd5b506102d96104ff366004612b3a565b610da4565b34801561051057600080fd5b5061034261051f366004612920565b610e1b565b34801561053057600080fd5b50610295610ea2565b34801561054557600080fd5b50610295610554366004612b3a565b610ed6565b610295610567366004612a72565b610f05565b34801561057857600080fd5b50600a546001600160a01b03166102d9565b34801561059657600080fd5b506102ac61126e565b3480156105ab57600080fd5b506102956105ba366004612b3a565b61127d565b6102956105cd366004612b3a565b6112ac565b3480156105de57600080fd5b506102956105ed366004612a20565b611586565b3480156105fe57600080fd5b5061029561060d3660046129a7565b611591565b34801561061e57600080fd5b5061029561062d366004612920565b61161c565b34801561063e57600080fd5b5061029561064d366004612920565b611668565b34801561065e57600080fd5b506102ac61066d366004612b3a565b6116b4565b34801561067e57600080fd5b5061029561068d366004612a49565b611709565b34801561069e57600080fd5b506102ac6117e7565b3480156106b357600080fd5b506102956106c2366004612bd0565b611875565b3480156106d357600080fd5b506102606106e236600461293a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561071c57600080fd5b5061029561072b366004612920565b611a52565b600061073b82611aed565b92915050565b600a546001600160a01b031633146107745760405162461bcd60e51b815260040161076b90612d5b565b60405180910390fd5b6012805460ff1916911515919091179055565b60606000805461079690612ea0565b80601f01602080910402602001604051908101604052809291908181526020018280546107c290612ea0565b801561080f5780601f106107e45761010080835404028352916020019161080f565b820191906000526020600020905b8154815290600101906020018083116107f257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076b565b506000908152600460205260409020546001600160a01b031690565b600a546001600160a01b031633146108d85760405162461bcd60e51b815260040161076b90612d5b565b601280549115156101000261ff0019909216919091179055565b60006108fd82610da4565b9050806001600160a01b0316836001600160a01b0316141561096b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161076b565b336001600160a01b0382161480610987575061098781336106e2565b6109f95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161076b565b610a038383611b12565b505050565b6015546001600160a01b031615610a815760155460405163e7aa29e360e01b81526001600160a01b03858116600483015284811660248301529091169063e7aa29e390604401600060405180830381600087803b158015610a6857600080fd5b505af1158015610a7c573d6000803e3d6000fd5b505050505b610a03838383611b80565b600a546001600160a01b03163314610ab65760405162461bcd60e51b815260040161076b90612d5b565b601355565b6000610ac683610e1b565b8210610b285760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161076b565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b7b5760405162461bcd60e51b815260040161076b90612d5b565b600a546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050610be75760405162461bcd60e51b815260206004820152601560248201527415da5d1a191c985dc81d5b9cdd58d8d95cdcd99d5b605a1b604482015260640161076b565b565b610a0383838360405180602001604052806000815250611591565b60606000610c1183610e1b565b905060008167ffffffffffffffff811115610c3c57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610c65578160200160208202803683370190505b50905060005b82811015610cba57610c7d8582610abb565b828281518110610c9d57634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610cb281612edb565b915050610c6b565b509392505050565b6000610ccd60085490565b8210610d305760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161076b565b60088281548110610d5157634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610d8d5760405162461bcd60e51b815260040161076b90612d5b565b8051610da090600c906020840190612803565b5050565b6000818152600260205260408120546001600160a01b03168061073b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161076b565b60006001600160a01b038216610e865760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161076b565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610ecc5760405162461bcd60e51b815260040161076b90612d5b565b610be76000611bb1565b600a546001600160a01b03163314610f005760405162461bcd60e51b815260040161076b90612d5b565b600e55565b6002600b541415610f585760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076b565b6002600b556000610f68600d5490565b60125490915060ff1615610faf5760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b604482015260640161076b565b601254610100900460ff16610ffd5760405162461bcd60e51b81526020600482015260146024820152735468652050726573616c65206973206f7665722160601b604482015260640161076b565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506110438460135483611c03565b61108f5760405162461bcd60e51b815260206004820152601b60248201527f2041646472657373206973206e6f742077686974656c69737465640000000000604482015260640161076b565b60008311801561109f5750600383105b6110dc5760405162461bcd60e51b815260206004820152600e60248201526d1026b0bc1019103832b9103a3c3760911b604482015260640161076b565b336000908152601460205260409020546002906110fa908590612e12565b11156111485760405162461bcd60e51b815260206004820152601a60248201527f2057686974656c697374206f6e6c792063616e206d696e742032000000000000604482015260640161076b565b60105461115790610d05612e5d565b6111618484612e12565b11156111a85760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161076b565b82600f546111b69190612e3e565b3410156112015760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161076b565b60015b83811161123e5761121e336112198386612e12565b611c19565b61122c600d80546001019055565b8061123681612edb565b915050611204565b50336000908152601460205260408120805485929061125e908490612e12565b90915550506001600b5550505050565b60606001805461079690612ea0565b600a546001600160a01b031633146112a75760405162461bcd60e51b815260040161076b90612d5b565b601155565b6002600b5414156112ff5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161076b565b6002600b55600061130f600d5490565b60125490915060ff16156113565760405162461bcd60e51b815260206004820152600e60248201526d135a5b9d1a5b99c81c185d5cd95960921b604482015260640161076b565b601254610100900460ff16156113ae5760405162461bcd60e51b815260206004820152601c60248201527f205075626c69632073616c65206973206e6f74206c6976652079657400000000604482015260640161076b565b6000821180156113be5750600382105b6113fb5760405162461bcd60e51b815260206004820152600e60248201526d1026b0bc1019103832b9103a3c3760911b604482015260640161076b565b60105461140a90610d05612e5d565b6114148383612e12565b111561145b5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b604482015260640161076b565b60115433600090815260146020526040902054611479908490612e12565b11156114c75760405162461bcd60e51b815260206004820152601760248201527f204d617820416d6f756e74206973207265616368656421000000000000000000604482015260640161076b565b81600f546114d59190612e3e565b3410156115205760405162461bcd60e51b8152602060048201526019602482015278115d1a195c881cd95b9d081a5cc81b9bdd0818dbdc9c9958dd603a1b604482015260640161076b565b60015b82811161155857611538336112198385612e12565b611546600d80546001019055565b8061155081612edb565b915050611523565b503360009081526014602052604081208054849290611578908490612e12565b90915550506001600b555050565b610da0338383611c33565b6015546001600160a01b03161561160a5760155460405163e7aa29e360e01b81526001600160a01b03868116600483015285811660248301529091169063e7aa29e390604401600060405180830381600087803b1580156115f157600080fd5b505af1158015611605573d6000803e3d6000fd5b505050505b61161684848484611d02565b50505050565b600a546001600160a01b031633146116465760405162461bcd60e51b815260040161076b90612d5b565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146116925760405162461bcd60e51b815260040161076b90612d5b565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b606060006116c183611d34565b905060008151116116e15760405180602001604052806000815250611702565b806040516020016116f29190612c4c565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146117335760405162461bcd60e51b815260040161076b90612d5b565b6010548111156117855760405162461bcd60e51b815260206004820152601760248201527f4578636565647320726573657276656420737570706c79000000000000000000604482015260640161076b565b6000611790600d5490565b905060015b8281116117ca576117aa846112198385612e12565b6117b8600d80546001019055565b806117c281612edb565b915050611795565b5081601060008282546117dd9190612e5d565b9091555050505050565b600c80546117f490612ea0565b80601f016020809104026020016040519081016040528092919081815260200182805461182090612ea0565b801561186d5780601f106118425761010080835404028352916020019161186d565b820191906000526020600020905b81548152906001019060200180831161185057829003601f168201915b505050505081565b813361188082610da4565b6001600160a01b0316146118d65760405162461bcd60e51b815260206004820152601d60248201527f50696720646f6573206e6f742062656c6f6e6720746f2073656e646572000000604482015260640161076b565b81336118e182610da4565b6001600160a01b0316146119375760405162461bcd60e51b815260206004820152601d60248201527f50696720646f6573206e6f742062656c6f6e6720746f2073656e646572000000604482015260640161076b565b828414156119875760405162461bcd60e51b815260206004820152601960248201527f506172656e7473206d75737420626520646966666572656e7400000000000000604482015260640161076b565b601554600e54604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b1580156119d757600080fd5b505af11580156119eb573d6000803e3d6000fd5b50506016546040516335313c2160e11b81523360048201526001600160a01b039091169250636a6278429150602401600060405180830381600087803b158015611a3457600080fd5b505af1158015611a48573d6000803e3d6000fd5b5050505050505050565b600a546001600160a01b03163314611a7c5760405162461bcd60e51b815260040161076b90612d5b565b6001600160a01b038116611ae15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161076b565b611aea81611bb1565b50565b60006001600160e01b0319821663780e9d6360e01b148061073b575061073b82611df8565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b4782610da4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611b8a3382611e48565b611ba65760405162461bcd60e51b815260040161076b90612d90565b610a03838383611f3f565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611c1085846120ea565b14949350505050565b610da082826040518060200160405280600081525061219c565b816001600160a01b0316836001600160a01b03161415611c955760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161076b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611d0c3383611e48565b611d285760405162461bcd60e51b815260040161076b90612d90565b611616848484846121cf565b6000818152600260205260409020546060906001600160a01b0316611db35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161076b565b6000611dbd612202565b90506000815111611ddd5760405180602001604052806000815250611702565b80611de784612211565b6040516020016116f2929190612c1d565b60006001600160e01b031982166380ac58cd60e01b1480611e2957506001600160e01b03198216635b5e139f60e01b145b8061073b57506301ffc9a760e01b6001600160e01b031983161461073b565b6000818152600260205260408120546001600160a01b0316611ec15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161076b565b6000611ecc83610da4565b9050806001600160a01b0316846001600160a01b03161480611f075750836001600160a01b0316611efc84610819565b6001600160a01b0316145b80611f3757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f5282610da4565b6001600160a01b031614611fba5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161076b565b6001600160a01b03821661201c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161076b565b61202783838361232b565b612032600082611b12565b6001600160a01b038316600090815260036020526040812080546001929061205b908490612e5d565b90915550506001600160a01b0382166000908152600360205260408120805460019290612089908490612e12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b8451811015610cba57600085828151811061211a57634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161215c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612189565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061219481612edb565b9150506120ef565b6121a68383612336565b6121b36000848484612484565b610a035760405162461bcd60e51b815260040161076b90612d09565b6121da848484611f3f565b6121e684848484612484565b6116165760405162461bcd60e51b815260040161076b90612d09565b6060600c805461079690612ea0565b6060816122355750506040805180820190915260018152600360fc1b602082015290565b8160005b811561225f578061224981612edb565b91506122589050600a83612e2a565b9150612239565b60008167ffffffffffffffff81111561228857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122b2576020820181803683370190505b5090505b8415611f37576122c7600183612e5d565b91506122d4600a86612ef6565b6122df906030612e12565b60f81b81838151811061230257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612324600a86612e2a565b94506122b6565b610a03838383612591565b6001600160a01b03821661238c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161076b565b6000818152600260205260409020546001600160a01b0316156123f15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161076b565b6123fd6000838361232b565b6001600160a01b0382166000908152600360205260408120805460019290612426908490612e12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b1561258657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124c8903390899088908890600401612c75565b602060405180830381600087803b1580156124e257600080fd5b505af1925050508015612512575060408051601f3d908101601f1916820190925261250f91810190612b6e565b60015b61256c573d808015612540576040519150601f19603f3d011682016040523d82523d6000602084013e612545565b606091505b5080516125645760405162461bcd60e51b815260040161076b90612d09565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611f37565b506001949350505050565b6001600160a01b0383166125ec576125e781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61260f565b816001600160a01b0316836001600160a01b03161461260f5761260f8382612649565b6001600160a01b03821661262657610a03816126e6565b826001600160a01b0316826001600160a01b031614610a0357610a0382826127bf565b6000600161265684610e1b565b6126609190612e5d565b6000838152600760205260409020549091508082146126b3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126f890600190612e5d565b6000838152600960205260408120546008805493945090928490811061272e57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061275d57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806127a357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006127ca83610e1b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461280f90612ea0565b90600052602060002090601f0160209004810192826128315760008555612877565b82601f1061284a57805160ff1916838001178555612877565b82800160010185558215612877579182015b8281111561287757825182559160200191906001019061285c565b50612883929150612887565b5090565b5b808211156128835760008155600101612888565b600067ffffffffffffffff8311156128b6576128b6612f36565b6128c9601f8401601f1916602001612de1565b90508281528383830111156128dd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461290b57600080fd5b919050565b8035801515811461290b57600080fd5b600060208284031215612931578081fd5b611702826128f4565b6000806040838503121561294c578081fd5b612955836128f4565b9150612963602084016128f4565b90509250929050565b600080600060608486031215612980578081fd5b612989846128f4565b9250612997602085016128f4565b9150604084013590509250925092565b600080600080608085870312156129bc578081fd5b6129c5856128f4565b93506129d3602086016128f4565b925060408501359150606085013567ffffffffffffffff8111156129f5578182fd5b8501601f81018713612a05578182fd5b612a148782356020840161289c565b91505092959194509250565b60008060408385031215612a32578182fd5b612a3b836128f4565b915061296360208401612910565b60008060408385031215612a5b578182fd5b612a64836128f4565b946020939093013593505050565b60008060408385031215612a84578182fd5b823567ffffffffffffffff80821115612a9b578384fd5b818501915085601f830112612aae578384fd5b8135602082821115612ac257612ac2612f36565b8160051b9250612ad3818401612de1565b8281528181019085830185870184018b1015612aed578889fd5b8896505b84871015612b0f578035835260019690960195918301918301612af1565b509997909101359750505050505050565b600060208284031215612b31578081fd5b61170282612910565b600060208284031215612b4b578081fd5b5035919050565b600060208284031215612b63578081fd5b813561170281612f4c565b600060208284031215612b7f578081fd5b815161170281612f4c565b600060208284031215612b9b578081fd5b813567ffffffffffffffff811115612bb1578182fd5b8201601f81018413612bc1578182fd5b611f378482356020840161289c565b60008060408385031215612be2578182fd5b50508035926020909101359150565b60008151808452612c09816020860160208601612e74565b601f01601f19169290920160200192915050565b60008351612c2f818460208801612e74565b835190830190612c43818360208801612e74565b01949350505050565b60008251612c5e818460208701612e74565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ca890830184612bf1565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612cea57835183529284019291840191600101612cce565b50909695505050505050565b6020815260006117026020830184612bf1565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e0a57612e0a612f36565b604052919050565b60008219821115612e2557612e25612f0a565b500190565b600082612e3957612e39612f20565b500490565b6000816000190483118215151615612e5857612e58612f0a565b500290565b600082821015612e6f57612e6f612f0a565b500390565b60005b83811015612e8f578181015183820152602001612e77565b838111156116165750506000910152565b600181811c90821680612eb457607f821691505b60208210811415612ed557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612eef57612eef612f0a565b5060010190565b600082612f0557612f05612f20565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611aea57600080fdfea2646970667358221220634c1cc7fed1a4e02aca1562d0796d81e540dec6e181f7f1adbc2ca1ffa4f14264736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010616c6d6967687479706967732e636f6d00000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseURI (string): almightypigs.com
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [2] : 616c6d6967687479706967732e636f6d00000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.