ERC-721
Overview
Max Total Supply
0 GG
Holders
99
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GGLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GalacticGaylords
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // @@@@ @@@@ @@, @@@@ @@@@ .@@@@@@ @@@@@ @@@@@@ // @@@ @@ @@ @@ @@ @@ @@ .@@ @@@ @@@ // @@@ @@@@ @@ @@ @@ @@ @@ @@ @@ @@@ @@@ // @@@ @@ @@@@@@ @@ @@@@@@ @@ @@ @@@ @@@ // @@@@@@. @@ @@ @@@@ @@ @@ @@@@ @@ @@@@@ @@@@@@ // *@@@@@@@@@ @@@@@@ @@@& .@@@@@@ @@@@@@@@@@@@@@@@@@@@@\ @@@@@@@@@@ @@@@@@@@@@ // @@@ @@@ @@/ @@ @@@@ @@@ #@@@ @@@ @@@ @@@ @@@ #@@@ @@ // @@@@ @@@ @@@ @@@ @@@ @@@ #@@@ @@@@@@ @@@ @@@ @@@ @@@ #@@@ // @@@( #@@ @@@ @@@@@. #@@@ @@ @@ @@@@@@@@@@& @@@ @@@ @@@@@@@@@@ // @@@( @@@@@@@ @@@@@@@@@@ @@@* #@@@ /@@@@@@( @@@ (@@@ @@@ .@@@ @@ // @@@@ &@@ @@@* @@@ @@@ #@@@ @@@ @@@ @@@@@@@@@& #@@ @@ // @@@@@@@@@@ %@@@ @@@@ @@@% #@@@@@@@@@@@ ,. @@@ @@@@@ %%@& @@@@@@@@@@ pragma solidity ^0.8.16; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import { OwnableRoles } from "./auth/OwnableRoles.sol"; import {IERC2981, ERC2981} from "./extensions/ERC2981.sol"; import "./opensea/DefaultOperatorFilterer.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; contract GalacticGaylords is ERC721, ReentrancyGuard, OwnableRoles, DefaultOperatorFilterer, ERC2981{ using Counters for Counters.Counter; // ============================================================= // STORAGE // ============================================================= uint256 public PLANET_PRICE; uint256 public MAX_SUPPLY; uint256 public MAX_MULTIMINT; address public _fundingRecipient; address private _burnAuthorizedContract; bytes32 public rootHash; //@dev MINTER_ROLE extensibility for minter contracts. //@dev ADMIN_ROLE for performing admin actions. //@dev DEV_ROLE for developer support. uint256 public constant MINTER_ROLE = _ROLE_2; uint256 public constant DEV_ROLE = _ROLE_1; uint256 public constant ADMIN_ROLE = _ROLE_0; /** Planet Sale Status**/ bool private Planet1SaleOpen = false; bool private Planet2SaleOpen = false; bool private Planet3SaleOpen = false; bool private Planet4SaleOpen = false; bool private Planet5SaleOpen = false; bool private Planet6SaleOpen = false; bool private Planet7SaleOpen = false; bool private Planet8SaleOpen = false; bool private Planet9SaleOpen = false; bool private Planet10SaleOpen = false; /** Rainbow Sale Status **/ bool private P1RainbowOpen = true; bool private P2RainbowOpen = false; bool private P3RainbowOpen = false; bool private P4RainbowOpen = false; bool private P5RainbowOpen = false; bool private P6RainbowOpen = false; bool private P7RainbowOpen = false; bool private P8RainbowOpen = false; bool private P9RainbowOpen = false; bool private P10RainbowOpen = false; string private customBaseURI; /** Planet Supply **/ uint256 public MAX_REG_PLANET; // All other Planets uint256 public MAX_SPECIAL_PLANET; // Binary /** Planet Supply **/ uint256 private PLANET1_SUPPLY; // Binary uint256 private PLANET2_SUPPLY; // Red uint256 private PLANET3_SUPPLY; // Orange uint256 private PLANET4_SUPPLY; // Yellow uint256 private PLANET5_SUPPLY; // Green uint256 private PLANET6_SUPPLY; // Blue uint256 private PLANET7_SUPPLY; // Indigo uint256 private PLANET8_SUPPLY; // Violet uint256 private PLANET9_SUPPLY; // White uint256 private PLANET10_SUPPLY; // Black uint256 private WHALE_SUPPLY; // Whale Pass // @Notice -This maps users mints per planet mapping(address => uint256) private Planet1CountMap; // Binary mapping(address => uint256) private Planet2CountMap; // Red mapping(address => uint256) private Planet3CountMap; // Orange mapping(address => uint256) private Planet4CountMap; // Yellow mapping(address => uint256) private Planet5CountMap; // Green mapping(address => uint256) private Planet6CountMap; // Blue mapping(address => uint256) private Planet7CountMap; // Indigo mapping(address => uint256) private Planet8CountMap; // Violet mapping(address => uint256) private Planet9CountMap; // White mapping(address => uint256) private Planet10CountMap; // Black constructor ( string memory tokenName, //Galactic Gaylords string memory tokenSymbol, //GG string memory customBaseURI_, //ipfs://QmWjmNv2hFJTtmP7ukgCZ65nCzuf7N5HMcDtFbQauyszRN/ address fundingrecipient, // 0x1a178ecF995eba436aD2bc89364413C4D0D43472 uint256 planetPrice //0.1ETH - 100000000000000000 ) ERC721(tokenName, tokenSymbol) { // GalacticGaylords, $GG _initializeOwner(0x1a178ecF995eba436aD2bc89364413C4D0D43472); customBaseURI = customBaseURI_; PLANET_PRICE = planetPrice; MAX_MULTIMINT = 10; _fundingRecipient = fundingrecipient; MAX_SPECIAL_PLANET = 1; MAX_REG_PLANET = 10; _grantRoles(0x8AB5496a45c92c36eC293d2681F1d3706eaff85D,1); _setDefaultRoyalty(0x1a178ecF995eba436aD2bc89364413C4D0D43472, 1000); /** Defining Planet Quantities **/ PLANET1_SUPPLY = 101; //Binary PLANET2_SUPPLY = 1100; //Red PLANET3_SUPPLY = 1100; //Orange PLANET4_SUPPLY = 1100; //Yellow PLANET5_SUPPLY = 1100; //Green PLANET6_SUPPLY = 1100; //Blue PLANET7_SUPPLY = 1100; //Indigo PLANET8_SUPPLY = 1100; //Violet PLANET9_SUPPLY = 1100; // White PLANET10_SUPPLY = 1100; // White WHALE_SUPPLY = 10; // Whale pass MAX_SUPPLY = PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY + PLANET4_SUPPLY + PLANET5_SUPPLY + PLANET6_SUPPLY + PLANET7_SUPPLY + PLANET8_SUPPLY + PLANET9_SUPPLY + PLANET10_SUPPLY + WHALE_SUPPLY; } // ============================================================= // // Sale Control // // ============================================================= // // Returns on all public sale status in 1 array. function allPlanetSaleStatus() public view returns (bool[10] memory) { return [Planet1SaleOpen, Planet2SaleOpen, Planet3SaleOpen, Planet4SaleOpen, Planet5SaleOpen, Planet6SaleOpen, Planet7SaleOpen, Planet8SaleOpen, Planet9SaleOpen, Planet10SaleOpen]; } // Returns on all rainbow list sale status in 1 array. function allRainbowStatus() public view returns (bool[10] memory) { return [P1RainbowOpen, P2RainbowOpen, P3RainbowOpen, P4RainbowOpen, P5RainbowOpen, P6RainbowOpen, P7RainbowOpen, P8RainbowOpen, P9RainbowOpen, P10RainbowOpen]; } // Set max amount of mints for all planets except binary function setMaxRegMint(uint256 newMaxReg) external onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { MAX_REG_PLANET = newMaxReg; } // Set max amount of mints for binary function setMaxSpecial(uint256 newMaxSpecial) external onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { MAX_SPECIAL_PLANET = newMaxSpecial; } // Set max amount of mints for binary function setMaxSupply(uint256 newMax) external onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { MAX_SUPPLY = newMax; } // Set max amount of mints per transaction function setPlanetPrice(uint256 newPrice) external onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { PLANET_PRICE = newPrice; } // Toggle Sale Status function togglePlanetSaleStatus(uint256 planetNumber) public onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { if (planetNumber == 1) { Planet1SaleOpen = !Planet1SaleOpen; } else if (planetNumber == 2) { Planet2SaleOpen = !Planet2SaleOpen; } else if (planetNumber == 3) { Planet3SaleOpen = !Planet3SaleOpen; } else if (planetNumber == 4) { Planet4SaleOpen = !Planet4SaleOpen; } else if (planetNumber == 5) { Planet5SaleOpen = !Planet5SaleOpen; } else if (planetNumber == 6) { Planet6SaleOpen = !Planet6SaleOpen; } else if (planetNumber == 7) { Planet7SaleOpen = !Planet7SaleOpen; } else if (planetNumber == 8) { Planet8SaleOpen = !Planet8SaleOpen; } else if (planetNumber == 9) { Planet9SaleOpen = !Planet9SaleOpen; } else if (planetNumber == 10) { Planet10SaleOpen = !Planet10SaleOpen; } } // Toggle Rainbow list status function toggleRainbowListStatus(uint256 planetNumber) public onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE){ if (planetNumber == 1) { P1RainbowOpen = !P1RainbowOpen; } else if (planetNumber == 2) { P2RainbowOpen = !P2RainbowOpen; } else if (planetNumber == 3) { P3RainbowOpen = !P3RainbowOpen; } else if (planetNumber == 4) { P4RainbowOpen = !P4RainbowOpen; } else if (planetNumber == 5) { P5RainbowOpen = !P5RainbowOpen; } else if (planetNumber == 6) { P6RainbowOpen = !P6RainbowOpen; } else if (planetNumber == 7) { P7RainbowOpen = !P7RainbowOpen; } else if (planetNumber == 8) { P8RainbowOpen = !P8RainbowOpen; } else if (planetNumber == 9) { P9RainbowOpen = !P9RainbowOpen; } else if (planetNumber == 10) { P10RainbowOpen = !P10RainbowOpen; } } //====================================================================// // Control Panel - Getters // //====================================================================// //Return Base URI function baseTokenURI() public view returns (string memory) { return customBaseURI; } function _baseURI() internal view virtual override returns (string memory) { return customBaseURI; } function _verifyProof(address _addr, bytes32[] calldata _proof) internal view returns (bool _isValid) { bytes32 leaf = keccak256(bytes.concat(keccak256(abi.encode(_addr)))); _isValid = MerkleProof.verify(_proof, rootHash, leaf); } //====================================================================// // Control Panel - Setters // //====================================================================// // Change Splits contract for mint proceeds function setFundingRecipient(address fundingRecipient) external onlyRolesOrOwner(ADMIN_ROLE) { _fundingRecipient = fundingRecipient; } function setBaseURI(string memory customBaseURI_) external onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { customBaseURI = customBaseURI_; } //Set new Merkleroot function setRootHash(bytes32 _rootHash) public onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { rootHash = _rootHash; } // Set max amount of mints per transaction function setMaxMultiMint(uint256 maxMultiMint) external onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { MAX_MULTIMINT = maxMultiMint; } // Set max amount of mints per transaction function setWhaleSupply(uint256 newSupply) external onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE) { WHALE_SUPPLY = newSupply; } // ============================================================= // // Admin Mint Functions // // ============================================================= // function adminMint(uint256 planetNumber, address recipient, uint256 count) public onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE | MINTER_ROLE) { if (planetNumber == 1) { P1Mint(recipient,count); } else if (planetNumber == 2) { P2Mint(recipient,count); } else if (planetNumber == 3) { P3Mint(recipient,count); } else if (planetNumber == 4) { P4Mint(recipient,count); } else if (planetNumber == 5) { P5Mint(recipient,count); } else if (planetNumber == 6) { P6Mint(recipient,count); } else if (planetNumber == 7) { P7Mint(recipient,count); } else if (planetNumber == 8) { P8Mint(recipient,count); }else if (planetNumber == 9) { P9Mint(recipient,count); } else if (planetNumber == 10) { P10Mint(recipient,count); } } function issueWhalePass(address recipient) public onlyRolesOrOwner(ADMIN_ROLE | DEV_ROLE | MINTER_ROLE){ require(totalWhaleSupply() + 1 < WHALE_SUPPLY, "Exceeds max supply"); whaleSupplyCounter.increment(); _safeMint(recipient, totalWhaleSupply() + PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY + PLANET4_SUPPLY + PLANET5_SUPPLY + PLANET6_SUPPLY + PLANET7_SUPPLY + PLANET8_SUPPLY + PLANET9_SUPPLY + PLANET10_SUPPLY); } // ============================================================= // // Planet Mint Functions // // ============================================================= // function RainbowListMint(uint256 planetNumber, address recipient, uint256 count, bytes32[] calldata _proof) public payable nonReentrant { if (!_verifyProof(recipient, _proof)) { revert InvalidProof(); } require(msg.value >= PLANET_PRICE * count, "Insufficient payment"); if (planetNumber == 1) { require(P1RainbowOpen, "Sale not active"); //Public sale P1checks(recipient,count); } else if (planetNumber == 2) { require(P2RainbowOpen, "Sale not active"); //Public sale P2checks(recipient,count); } else if (planetNumber == 3) { require(P3RainbowOpen, "Sale not active"); //Public sale P3checks(recipient,count); } else if (planetNumber == 4) { require(P4RainbowOpen, "Sale not active"); //Public sale P4checks(recipient,count); } else if (planetNumber == 5) { require(P5RainbowOpen, "Sale not active"); //Public sale P5checks(recipient,count); } else if (planetNumber == 6) { require(P6RainbowOpen, "Sale not active"); //Public sale P6checks(recipient,count); } else if (planetNumber == 7) { require(P7RainbowOpen, "Sale not active"); //Public sale P7checks(recipient,count); } else if (planetNumber == 8) { require(P8RainbowOpen, "Sale not active"); //Public sale P8checks(recipient,count); }else if (planetNumber == 9) { require(P9RainbowOpen, "Sale not active"); //Public sale P9checks(recipient,count); } else if (planetNumber == 10) { require(P10RainbowOpen, "Sale not active"); //Public sale P10checks(recipient,count); } payable(_fundingRecipient).transfer(msg.value); } function PublicMint(uint256 planetNumber, address recipient, uint256 count) public payable nonReentrant { require(msg.value >= PLANET_PRICE * count, "Insufficient payment"); if (planetNumber == 1) { require(Planet1SaleOpen, "Sale not active"); //Public sale P1checks(recipient,count); } else if (planetNumber == 2) { require(Planet2SaleOpen, "Sale not active"); //Public sale P2checks(recipient,count); } else if (planetNumber == 3) { require(Planet3SaleOpen, "Sale not active"); //Public sale P3checks(recipient,count); } else if (planetNumber == 4) { require(Planet4SaleOpen, "Sale not active"); //Public sale P4checks(recipient,count); } else if (planetNumber == 5) { require(Planet5SaleOpen, "Sale not active"); //Public sale P5checks(recipient,count); } else if (planetNumber == 6) { require(Planet6SaleOpen, "Sale not active"); //Public sale P6checks(recipient,count); } else if (planetNumber == 7) { require(Planet7SaleOpen, "Sale not active"); //Public sale P7checks(recipient,count); } else if (planetNumber == 8) { require(Planet8SaleOpen, "Sale not active"); //Public sale P8checks(recipient,count); }else if (planetNumber == 9) { require(Planet9SaleOpen, "Sale not active"); //Public sale P9checks(recipient,count); } else if (planetNumber == 10) { require(Planet10SaleOpen, "Sale not active"); //Public sale P10checks(recipient,count); } payable(_fundingRecipient).transfer(msg.value); } // ============================================================= // // Internal Mint Checks // // ============================================================= // // PLANET 1 CHECKS function P1checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet1MintCount(recipient) > 0) { updatePlanet1MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P1Mint(recipient,count); } // PLANET 2 CHECKS function P2checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet2MintCount(recipient) > 0) { updatePlanet2MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P2Mint(recipient,count); } // PLANET 3 CHECKS function P3checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet3MintCount(recipient) > 0) { updatePlanet3MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P3Mint(recipient,count); } // PLANET 4 CHECKS function P4checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet4MintCount(recipient) > 0) { updatePlanet4MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P4Mint(recipient,count); } // PLANET 5 CHECKS function P5checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet5MintCount(recipient) > 0) { updatePlanet5MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P5Mint(recipient,count); } // PLANET 6 CHECKS function P6checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet6MintCount(recipient) > 0) { updatePlanet6MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P6Mint(recipient,count); } // PLANET 7 CHECKS function P7checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet7MintCount(recipient) > 0) { updatePlanet7MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P7Mint(recipient,count); } // PLANET 8 CHECKS function P8checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet8MintCount(recipient) > 0) { updatePlanet8MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P8Mint(recipient,count); } // PLANET 9 CHECKS function P9checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet9MintCount(recipient) > 0) { updatePlanet9MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P9Mint(recipient,count); } // PLANET 10 CHECKS function P10checks(address recipient, uint256 count) internal { require(count - 1 < MAX_MULTIMINT, "Trying to mint too many at a time"); if (allowedPlanet10MintCount(recipient) > 0) { updatePlanet10MintCount(recipient, count); } else { revert("Minting limit exceeded"); } P10Mint(recipient,count); } // ============================================================= // // Internal Mint Functions // // ============================================================= // //Checks required for any and all mints. Even admin mints, could abstract supply to the admin call.. function P1Mint(address recipient, uint256 count) internal{ require(totalPlanet1Supply() + count - 1 < PLANET1_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet1SupplyCounter.increment(); _safeMint(recipient, totalPlanet1Supply()); } } function P2Mint(address recipient, uint256 count) internal{ require(totalPlanet2Supply() + count - 1 < PLANET2_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet2SupplyCounter.increment(); _safeMint(recipient, totalPlanet2Supply() + PLANET1_SUPPLY); } } function P3Mint(address recipient, uint256 count) internal{ require(totalPlanet3Supply() + count - 1 < PLANET3_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet3SupplyCounter.increment(); _safeMint(recipient, totalPlanet3Supply() + PLANET1_SUPPLY + PLANET2_SUPPLY ); } } function P4Mint(address recipient, uint256 count) internal{ require(totalPlanet4Supply() + count - 1 < PLANET4_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet4SupplyCounter.increment(); _safeMint(recipient, totalPlanet4Supply() + PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY ); } } function P5Mint(address recipient, uint256 count) internal{ require(totalPlanet5Supply() + count - 1 < PLANET5_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet5SupplyCounter.increment(); _safeMint(recipient, totalPlanet5Supply() + PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY + PLANET4_SUPPLY); } } function P6Mint(address recipient, uint256 count) internal{ require(totalPlanet6Supply() + count - 1 < PLANET6_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet6SupplyCounter.increment(); _safeMint(recipient, totalPlanet6Supply() + PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY + PLANET4_SUPPLY + PLANET5_SUPPLY); } } function P7Mint(address recipient, uint256 count) internal{ require(totalPlanet7Supply() + count - 1 < PLANET7_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet7SupplyCounter.increment(); _safeMint(recipient, totalPlanet7Supply() + PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY + PLANET4_SUPPLY + PLANET5_SUPPLY + PLANET6_SUPPLY); } } function P8Mint(address recipient, uint256 count) internal{ require(totalPlanet8Supply() + count - 1 < PLANET8_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet8SupplyCounter.increment(); _safeMint(recipient, totalPlanet8Supply() + PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY + PLANET4_SUPPLY + PLANET5_SUPPLY + PLANET6_SUPPLY + PLANET7_SUPPLY); } } function P9Mint(address recipient, uint256 count) internal{ require(totalPlanet9Supply() + count - 1 < PLANET9_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet9SupplyCounter.increment(); _safeMint(recipient, totalPlanet9Supply() + PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY + PLANET4_SUPPLY + PLANET5_SUPPLY + PLANET6_SUPPLY + PLANET7_SUPPLY + PLANET8_SUPPLY); } } function P10Mint(address recipient, uint256 count) internal{ require(totalPlanet10Supply() + count - 1 < PLANET10_SUPPLY, "Exceeds max supply"); for (uint256 i = 0; i < count; i++) { planet10SupplyCounter.increment(); _safeMint(recipient, totalPlanet10Supply() + PLANET1_SUPPLY + PLANET2_SUPPLY + PLANET3_SUPPLY + PLANET4_SUPPLY + PLANET5_SUPPLY + PLANET6_SUPPLY + PLANET7_SUPPLY + PLANET8_SUPPLY + PLANET9_SUPPLY); } } // ============================================================= // // Planet Mint Limitations // // ============================================================= // //** Getters & setter for EACH planet **// //Planet 1 //getter function allowedPlanet1MintCount(address minter) internal view returns (uint256) { return MAX_SPECIAL_PLANET - Planet1CountMap[minter]; } //setter function updatePlanet1MintCount(address minter, uint256 count) private { Planet1CountMap[minter] += count; } // PLANET 2 //getter function allowedPlanet2MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet2CountMap[minter]; } //setter function updatePlanet2MintCount(address minter, uint256 count) private { Planet2CountMap[minter] += count; } // PLANET 3 //getter function allowedPlanet3MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet3CountMap[minter]; } //setter function updatePlanet3MintCount(address minter, uint256 count) private { Planet3CountMap[minter] += count; } // PLANET 4 //getter function allowedPlanet4MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet4CountMap[minter]; } //setter function updatePlanet4MintCount(address minter, uint256 count) private { Planet4CountMap[minter] += count; } // PLANET 5 //getter function allowedPlanet5MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet5CountMap[minter]; } //setter function updatePlanet5MintCount(address minter, uint256 count) private { Planet5CountMap[minter] += count; } // PLANET 6 //getter function allowedPlanet6MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet6CountMap[minter]; } //setter function updatePlanet6MintCount(address minter, uint256 count) private { Planet6CountMap[minter] += count; } // PLANET 7 //getter function allowedPlanet7MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet7CountMap[minter]; } //setter function updatePlanet7MintCount(address minter, uint256 count) private { Planet7CountMap[minter] += count; } // PLANET 8 //getter function allowedPlanet8MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet8CountMap[minter]; } //setter function updatePlanet8MintCount(address minter, uint256 count) private { Planet8CountMap[minter] += count; } // PLANET 9 //getter function allowedPlanet9MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet9CountMap[minter]; } //setter function updatePlanet9MintCount(address minter, uint256 count) private { Planet9CountMap[minter] += count; } // PLANET 10 //getter function allowedPlanet10MintCount(address minter) internal view returns (uint256) { return MAX_REG_PLANET - Planet10CountMap[minter]; } //setter function updatePlanet10MintCount(address minter, uint256 count) private { Planet10CountMap[minter] += count; } function currentMintsAllowed(uint256 planetNumber, address minter) public view returns (uint256 supply) { if (planetNumber == 1) { return MAX_SPECIAL_PLANET - Planet1CountMap[minter]; } else if (planetNumber == 2) { return MAX_REG_PLANET - Planet2CountMap[minter]; } else if (planetNumber == 3) { return MAX_REG_PLANET - Planet3CountMap[minter]; } else if (planetNumber == 4) { return MAX_REG_PLANET - Planet4CountMap[minter]; } else if (planetNumber == 5) { return MAX_REG_PLANET - Planet5CountMap[minter]; } else if (planetNumber == 6) { return MAX_REG_PLANET - Planet6CountMap[minter]; } else if (planetNumber == 7) { return MAX_REG_PLANET - Planet7CountMap[minter]; } else if (planetNumber == 8) { return MAX_REG_PLANET - Planet8CountMap[minter]; } else if (planetNumber == 9) { return MAX_REG_PLANET - Planet9CountMap[minter]; } else if (planetNumber == 10) { return MAX_REG_PLANET - Planet10CountMap[minter]; } } // ============================================================= // // Migration Supports // // ============================================================= // // Only the owner of the token, its approved operators, and // the authorized contract can call this function. function burn(uint256 tokenId) public virtual { // Avoid unnecessary approvals for the authorized contract require( msg.sender == _burnAuthorizedContract || _isApprovedOrOwner(msg.sender, tokenId), "ERC721: caller is not token owner nor approved"); _burn(tokenId); } function setBurnAuthorizedContract(address authorizedContract) external onlyRolesOrOwner (ADMIN_ROLE | DEV_ROLE) { _burnAuthorizedContract = authorizedContract; } // ============================================================= // // Planet Counters Support // // ============================================================= // Counters.Counter private planet1SupplyCounter; Counters.Counter private planet2SupplyCounter; Counters.Counter private planet3SupplyCounter; Counters.Counter private planet4SupplyCounter; Counters.Counter private planet5SupplyCounter; Counters.Counter private planet6SupplyCounter; Counters.Counter private planet7SupplyCounter; Counters.Counter private planet8SupplyCounter; Counters.Counter private planet9SupplyCounter; Counters.Counter private planet10SupplyCounter; Counters.Counter private whaleSupplyCounter; // ============================================================= // // Planet Supply Support // // ============================================================= // function totalPlanet1Supply() internal view returns (uint256) { return planet1SupplyCounter.current(); } function totalPlanet2Supply() internal view returns (uint256) { return planet2SupplyCounter.current(); } function totalPlanet3Supply() internal view returns (uint256) { return planet3SupplyCounter.current(); } function totalPlanet4Supply() internal view returns (uint256) { return planet4SupplyCounter.current(); } function totalPlanet5Supply() internal view returns (uint256) { return planet5SupplyCounter.current(); } function totalPlanet6Supply() internal view returns (uint256) { return planet6SupplyCounter.current(); } function totalPlanet7Supply() internal view returns (uint256) { return planet7SupplyCounter.current(); } function totalPlanet8Supply() internal view returns (uint256) { return planet8SupplyCounter.current(); } function totalPlanet9Supply() internal view returns (uint256) { return planet9SupplyCounter.current(); } function totalPlanet10Supply() internal view returns (uint256) { return planet10SupplyCounter.current(); } function totalWhaleSupply() internal view returns (uint256) { return whaleSupplyCounter.current(); } function currentPlanetSupply(uint256 planetNumber) public view returns (uint256 supply) { if (planetNumber == 1) { return planet1SupplyCounter.current(); } else if (planetNumber == 2) { return planet2SupplyCounter.current(); } else if (planetNumber == 3) { return planet3SupplyCounter.current(); } else if (planetNumber == 4) { return planet4SupplyCounter.current(); } else if (planetNumber == 5) { return planet5SupplyCounter.current(); } else if (planetNumber == 6) { return planet6SupplyCounter.current(); } else if (planetNumber == 7) { return planet7SupplyCounter.current(); } else if (planetNumber == 8) { return planet8SupplyCounter.current(); } else if (planetNumber == 9) { return planet9SupplyCounter.current(); } else if (planetNumber == 10) { return planet10SupplyCounter.current(); } else if (planetNumber == 11) { return whaleSupplyCounter.current(); } } // ============================================================= // // Supports Interface // // ============================================================= // function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } //Merkleroot error error InvalidProof(); // ============================================================= // // Opensea Registry // // ============================================================= // function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) { super.setApprovalForAll(operator, approved); } function approve(address operator, uint256 tokenId) public override onlyAllowedOperatorApproval(operator) { super.approve(operator, tokenId); } function transferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override onlyAllowedOperator(from) { super.safeTransferFrom(from, to, tokenId, data); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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 See {ERC721-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual override { super._beforeTokenTransfer(from, to, firstTokenId, batchSize); if (batchSize > 1) { // Will only trigger during construction. Batch transferring (minting) is not available afterwards. revert("ERC721Enumerable: consecutive transfers not supported"); } uint256 tokenId = firstTokenId; 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 (last updated v4.8.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Tree proofs. * * The tree and the proofs can be generated using our * https://github.com/OpenZeppelin/merkle-tree[JavaScript library]. * You will find a quickstart guide in the readme. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. * OpenZeppelin's JavaScript library generates merkle trees that are safe * against this attack out of the box. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Calldata version of {verify} * * _Available since v4.7._ */ function verifyCalldata( bytes32[] calldata proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProofCalldata(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Calldata version of {processProof} * * _Available since v4.7._ */ function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { computedHash = _hashPair(computedHash, proof[i]); } return computedHash; } /** * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerify( bytes32[] memory proof, bool[] memory proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProof(proof, proofFlags, leaves) == root; } /** * @dev Calldata version of {multiProofVerify} * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function multiProofVerifyCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32 root, bytes32[] memory leaves ) internal pure returns (bool) { return processMultiProofCalldata(proof, proofFlags, leaves) == root; } /** * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false * respectively. * * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer). * * _Available since v4.7._ */ function processMultiProof( bytes32[] memory proof, bool[] memory proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } /** * @dev Calldata version of {processMultiProof}. * * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details. * * _Available since v4.7._ */ function processMultiProofCalldata( bytes32[] calldata proof, bool[] calldata proofFlags, bytes32[] memory leaves ) internal pure returns (bytes32 merkleRoot) { // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of // the merkle tree. uint256 leavesLen = leaves.length; uint256 totalHashes = proofFlags.length; // Check proof validity. require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof"); // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop". bytes32[] memory hashes = new bytes32[](totalHashes); uint256 leafPos = 0; uint256 hashPos = 0; uint256 proofPos = 0; // At each step, we compute the next hash using two values: // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we // get the next hash. // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the // `proof` array. for (uint256 i = 0; i < totalHashes; i++) { bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]; bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++]; hashes[i] = _hashPair(a, b); } if (totalHashes > 0) { return hashes[totalHashes - 1]; } else if (leavesLen > 0) { return leaves[0]; } else { return proof[0]; } } function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) { return a < b ? _efficientHash(a, b) : _efficientHash(b, a); } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { /// @solidity memory-safe-assembly assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {OperatorFilterer} from "./OperatorFilterer.sol"; /** * @title DefaultOperatorFilterer * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription. */ abstract contract DefaultOperatorFilterer is OperatorFilterer { address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6); constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../interfaces/IERC2981.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @notice Simple single owner and multiroles authorization mixin. /// @author Solady (https://github.com/vectorized/solady/blob/main/src/auth/OwnableRoles.sol) /// @dev While the ownable portion follows [EIP-173](https://eips.ethereum.org/EIPS/eip-173) /// for compatibility, the nomenclature for the 2-step ownership handover and roles /// may be unique to this codebase. abstract contract OwnableRoles { /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* CUSTOM ERRORS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The caller is not authorized to call the function. error Unauthorized(); /// @dev The `newOwner` cannot be the zero address. error NewOwnerIsZeroAddress(); /// @dev The `pendingOwner` does not have a valid handover request. error NoHandoverRequest(); /// @dev `bytes4(keccak256(bytes("Unauthorized()")))`. uint256 private constant _UNAUTHORIZED_ERROR_SELECTOR = 0x82b42900; /// @dev `bytes4(keccak256(bytes("NewOwnerIsZeroAddress()")))`. uint256 private constant _NEW_OWNER_IS_ZERO_ADDRESS_ERROR_SELECTOR = 0x7448fbae; /// @dev `bytes4(keccak256(bytes("NoHandoverRequest()")))`. uint256 private constant _NO_HANDOVER_REQUEST_ERROR_SELECTOR = 0x6f5e8818; /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* EVENTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The ownership is transferred from `oldOwner` to `newOwner`. /// This event is intentionally kept the same as OpenZeppelin's Ownable to be /// compatible with indexers and [EIP-173](https://eips.ethereum.org/EIPS/eip-173), /// despite it not being as lightweight as a single argument event. event OwnershipTransferred(address indexed oldOwner, address indexed newOwner); /// @dev An ownership handover to `pendingOwner` has been requested. event OwnershipHandoverRequested(address indexed pendingOwner); /// @dev The ownership handover to `pendingOwner` has been cancelled. event OwnershipHandoverCanceled(address indexed pendingOwner); /// @dev The `user`'s roles is updated to `roles`. /// Each bit of `roles` represents whether the role is set. event RolesUpdated(address indexed user, uint256 indexed roles); /// @dev `keccak256(bytes("OwnershipTransferred(address,address)"))`. uint256 private constant _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE = 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0; /// @dev `keccak256(bytes("OwnershipHandoverRequested(address)"))`. uint256 private constant _OWNERSHIP_HANDOVER_REQUESTED_EVENT_SIGNATURE = 0xdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d; /// @dev `keccak256(bytes("OwnershipHandoverCanceled(address)"))`. uint256 private constant _OWNERSHIP_HANDOVER_CANCELED_EVENT_SIGNATURE = 0xfa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c92; /// @dev `keccak256(bytes("RolesUpdated(address,uint256)"))`. uint256 private constant _ROLES_UPDATED_EVENT_SIGNATURE = 0x715ad5ce61fc9595c7b415289d59cf203f23a94fa06f04af7e489a0a76e1fe26; /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* STORAGE */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev The owner slot is given by: `not(_OWNER_SLOT_NOT)`. /// It is intentionally choosen to be a high value /// to avoid collision with lower slots. /// The choice of manual storage layout is to enable compatibility /// with both regular and upgradeable contracts. /// /// The role slot of `user` is given by: /// ``` /// mstore(0x00, or(shl(96, user), _OWNER_SLOT_NOT)) /// let roleSlot := keccak256(0x00, 0x20) /// ``` /// This automatically ignores the upper bits of the `user` in case /// they are not clean, as well as keep the `keccak256` under 32-bytes. uint256 private constant _OWNER_SLOT_NOT = 0x8b78c6d8; /// The ownership handover slot of `newOwner` is given by: /// ``` /// mstore(0x00, or(shl(96, user), _HANDOVER_SLOT_SEED)) /// let handoverSlot := keccak256(0x00, 0x20) /// ``` /// It stores the expiry timestamp of the two-step ownership handover. uint256 private constant _HANDOVER_SLOT_SEED = 0x389a75e1; /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* INTERNAL FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Initializes the owner directly without authorization guard. /// This function must be called upon initialization, /// regardless of whether the contract is upgradeable or not. /// This is to enable generalization to both regular and upgradeable contracts, /// and to save gas in case the initial owner is not the caller. /// For performance reasons, this function will not check if there /// is an existing owner. function _initializeOwner(address newOwner) internal virtual { assembly { // Clean the upper 96 bits. newOwner := shr(96, shl(96, newOwner)) // Store the new value. sstore(not(_OWNER_SLOT_NOT), newOwner) // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, 0, newOwner) } } /// @dev Sets the owner directly without authorization guard. function _setOwner(address newOwner) internal virtual { assembly { let ownerSlot := not(_OWNER_SLOT_NOT) // Clean the upper 96 bits. newOwner := shr(96, shl(96, newOwner)) // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, sload(ownerSlot), newOwner) // Store the new value. sstore(ownerSlot, newOwner) } } /// @dev Grants the roles directly without authorization guard. /// Each bit of `roles` represents the role to turn on. function _grantRoles(address user, uint256 roles) internal virtual { assembly { // Compute the role slot. mstore(0x00, or(shl(96, user), _OWNER_SLOT_NOT)) let roleSlot := keccak256(0x00, 0x20) // Load the current value and `or` it with `roles`. let newRoles := or(sload(roleSlot), roles) // Store the new value. sstore(roleSlot, newRoles) // Emit the {RolesUpdated} event. log3(0, 0, _ROLES_UPDATED_EVENT_SIGNATURE, shr(96, shl(96, user)), newRoles) } } /// @dev Removes the roles directly without authorization guard. /// Each bit of `roles` represents the role to turn off. function _removeRoles(address user, uint256 roles) internal virtual { assembly { // Compute the role slot. mstore(0x00, or(shl(96, user), _OWNER_SLOT_NOT)) let roleSlot := keccak256(0x00, 0x20) // Load the current value. let currentRoles := sload(roleSlot) // Use `and` to compute the intersection of `currentRoles` and `roles`, // `xor` it with `currentRoles` to flip the bits in the intersection. let newRoles := xor(currentRoles, and(currentRoles, roles)) // Then, store the new value. sstore(roleSlot, newRoles) // Emit the {RolesUpdated} event. log3(0, 0, _ROLES_UPDATED_EVENT_SIGNATURE, shr(96, shl(96, user)), newRoles) } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* PUBLIC UPDATE FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Allows the owner to transfer the ownership to `newOwner`. function transferOwnership(address newOwner) public virtual onlyOwner { assembly { // Clean the upper 96 bits. newOwner := shr(96, shl(96, newOwner)) // Reverts if the `newOwner` is the zero address. if iszero(newOwner) { mstore(0x00, _NEW_OWNER_IS_ZERO_ADDRESS_ERROR_SELECTOR) revert(0x1c, 0x04) } // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, caller(), newOwner) // Store the new value. sstore(not(_OWNER_SLOT_NOT), newOwner) } } /// @dev Allows the owner to renounce their ownership. function renounceOwnership() public virtual onlyOwner { assembly { // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, caller(), 0) // Store the new value. sstore(not(_OWNER_SLOT_NOT), 0) } } /// @dev Request a two-step ownership handover to the caller. /// The request will be automatically expire in 48 hours (172800 seconds) by default. function requestOwnershipHandover() public virtual { unchecked { uint256 expires = block.timestamp + ownershipHandoverValidFor(); assembly { // Compute and set the handover slot to 1. mstore(0x00, or(shl(96, caller()), _HANDOVER_SLOT_SEED)) sstore(keccak256(0x00, 0x20), expires) // Emit the {OwnershipHandoverRequested} event. log2(0, 0, _OWNERSHIP_HANDOVER_REQUESTED_EVENT_SIGNATURE, caller()) } } } /// @dev Cancels the two-step ownership handover to the caller, if any. function cancelOwnershipHandover() public virtual { assembly { // Compute and set the handover slot to 0. mstore(0x00, or(shl(96, caller()), _HANDOVER_SLOT_SEED)) sstore(keccak256(0x00, 0x20), 0) // Emit the {OwnershipHandoverCanceled} event. log2(0, 0, _OWNERSHIP_HANDOVER_CANCELED_EVENT_SIGNATURE, caller()) } } /// @dev Allows the owner to complete the two-step ownership handover to `pendingOwner`. /// Reverts if there is no existing ownership handover requested by `pendingOwner`. function completeOwnershipHandover(address pendingOwner) public virtual onlyOwner { assembly { // Clean the upper 96 bits. pendingOwner := shr(96, shl(96, pendingOwner)) // Compute and set the handover slot to 0. mstore(0x00, or(shl(96, pendingOwner), _HANDOVER_SLOT_SEED)) let handoverSlot := keccak256(0x00, 0x20) // If the handover does not exist, or has expired. if gt(timestamp(), sload(handoverSlot)) { mstore(0x00, _NO_HANDOVER_REQUEST_ERROR_SELECTOR) revert(0x1c, 0x04) } // Set the handover slot to 0. sstore(handoverSlot, 0) // Emit the {OwnershipTransferred} event. log3(0, 0, _OWNERSHIP_TRANSFERRED_EVENT_SIGNATURE, caller(), pendingOwner) // Store the new value. sstore(not(_OWNER_SLOT_NOT), pendingOwner) } } /// @dev Allows the owner to grant `user` `roles`. /// If the `user` already has a role, then it will be an no-op for the role. function grantRoles(address user, uint256 roles) public virtual onlyOwner { _grantRoles(user, roles); } /// @dev Allows the owner to remove `user` `roles`. /// If the `user` does not have a role, then it will be an no-op for the role. function revokeRoles(address user, uint256 roles) public virtual onlyOwner { _removeRoles(user, roles); } /// @dev Allow the caller to remove their own roles. /// If the caller does not have a role, then it will be an no-op for the role. function renounceRoles(uint256 roles) public virtual { _removeRoles(msg.sender, roles); } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* PUBLIC READ FUNCTIONS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Returns the owner of the contract. function owner() public view virtual returns (address result) { assembly { result := sload(not(_OWNER_SLOT_NOT)) } } /// @dev Returns the expiry timestamp for the two-step ownership handover to `pendingOwner`. function ownershipHandoverExpiresAt(address pendingOwner) public view virtual returns (uint256 result) { assembly { // Compute the handover slot. mstore(0x00, or(shl(96, pendingOwner), _HANDOVER_SLOT_SEED)) // Load the handover slot. result := sload(keccak256(0x00, 0x20)) } } /// @dev Returns how long a two-step ownership handover is valid for in seconds. function ownershipHandoverValidFor() public view virtual returns (uint64) { return 48 * 3600; } /// @dev Returns whether `user` has any of `roles`. function hasAnyRole(address user, uint256 roles) public view virtual returns (bool result) { assembly { // Compute the role slot. mstore(0x00, or(shl(96, user), _OWNER_SLOT_NOT)) // Load the stored value, and set the result to whether the // `and` intersection of the value and `roles` is not zero. result := iszero(iszero(and(sload(keccak256(0x00, 0x20)), roles))) } } /// @dev Returns whether `user` has all of `roles`. function hasAllRoles(address user, uint256 roles) public view virtual returns (bool result) { assembly { // Compute the role slot. mstore(0x00, or(shl(96, user), _OWNER_SLOT_NOT)) // Whether the stored value is contains all the set bits in `roles`. result := eq(and(sload(keccak256(0x00, 0x20)), roles), roles) } } /// @dev Returns the roles of `user`. function rolesOf(address user) public view virtual returns (uint256 roles) { assembly { // Compute the role slot. mstore(0x00, or(shl(96, user), _OWNER_SLOT_NOT)) // Load the stored value. roles := sload(keccak256(0x00, 0x20)) } } /// @dev Convenience function to return a `roles` bitmap from the `ordinals`. /// This is meant for frontends like Etherscan, and is therefore not fully optimized. /// Not recommended to be called on-chain. function rolesFromOrdinals(uint8[] memory ordinals) public pure returns (uint256 roles) { assembly { // Skip the length slot. let o := add(ordinals, 0x20) // `shl` 5 is equivalent to multiplying by 0x20. let end := add(o, shl(5, mload(ordinals))) // prettier-ignore for {} iszero(eq(o, end)) { o := add(o, 0x20) } { roles := or(roles, shl(and(mload(o), 0xff), 1)) } } } /// @dev Convenience function to return a `roles` bitmap from the `ordinals`. /// This is meant for frontends like Etherscan, and is therefore not fully optimized. /// Not recommended to be called on-chain. function ordinalsFromRoles(uint256 roles) public pure returns (uint8[] memory ordinals) { assembly { // Grab the pointer to the free memory. let ptr := add(mload(0x40), 0x20) // The absence of lookup tables, De Bruijn, etc., here is intentional for // smaller bytecode, as this function is not meant to be called on-chain. // prettier-ignore for { let i := 0 } 1 { i := add(i, 1) } { mstore(ptr, i) // `shr` 5 is equivalent to multiplying by 0x20. // Push back into the ordinals array if the bit is set. ptr := add(ptr, shl(5, and(roles, 1))) roles := shr(1, roles) // prettier-ignore if iszero(roles) { break } } // Set `ordinals` to the start of the free memory. ordinals := mload(0x40) // Allocate the memory. mstore(0x40, ptr) // Store the length of `ordinals`. mstore(ordinals, shr(5, sub(ptr, add(ordinals, 0x20)))) } } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* MODIFIERS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ /// @dev Marks a function as only callable by the owner. modifier onlyOwner() virtual { assembly { // If the caller is not the stored owner, revert. if iszero(eq(caller(), sload(not(_OWNER_SLOT_NOT)))) { mstore(0x00, _UNAUTHORIZED_ERROR_SELECTOR) revert(0x1c, 0x04) } } _; } /// @dev Marks a function as only callable by an account with `roles`. modifier onlyRoles(uint256 roles) virtual { assembly { // Compute the role slot. mstore(0x00, or(shl(96, caller()), _OWNER_SLOT_NOT)) // Load the stored value, and if the `and` intersection // of the value and `roles` is zero, revert. if iszero(and(sload(keccak256(0x00, 0x20)), roles)) { mstore(0x00, _UNAUTHORIZED_ERROR_SELECTOR) revert(0x1c, 0x04) } } _; } /// @dev Marks a function as only callable by the owner or by an account /// with `roles`. Checks for ownership first, then lazily checks for roles. modifier onlyOwnerOrRoles(uint256 roles) virtual { assembly { // If the caller is not the stored owner. if iszero(eq(caller(), sload(not(_OWNER_SLOT_NOT)))) { // Compute the role slot. mstore(0x00, or(shl(96, caller()), _OWNER_SLOT_NOT)) // Load the stored value, and if the `and` intersection // of the value and `roles` is zero, revert. if iszero(and(sload(keccak256(0x00, 0x20)), roles)) { mstore(0x00, _UNAUTHORIZED_ERROR_SELECTOR) revert(0x1c, 0x04) } } } _; } /// @dev Marks a function as only callable by an account with `roles` /// or the owner. Checks for roles first, then lazily checks for ownership. modifier onlyRolesOrOwner(uint256 roles) virtual { assembly { // Compute the role slot. mstore(0x00, or(shl(96, caller()), _OWNER_SLOT_NOT)) // Load the stored value, and if the `and` intersection // of the value and `roles` is zero, revert. if iszero(and(sload(keccak256(0x00, 0x20)), roles)) { // If the caller is not the stored owner. if iszero(eq(caller(), sload(not(_OWNER_SLOT_NOT)))) { mstore(0x00, _UNAUTHORIZED_ERROR_SELECTOR) revert(0x1c, 0x04) } } } _; } /*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/ /* ROLE CONSTANTS */ /*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/ // IYKYK uint256 internal constant _ROLE_0 = 1 << 0; uint256 internal constant _ROLE_1 = 1 << 1; uint256 internal constant _ROLE_2 = 1 << 2; uint256 internal constant _ROLE_3 = 1 << 3; uint256 internal constant _ROLE_4 = 1 << 4; uint256 internal constant _ROLE_5 = 1 << 5; uint256 internal constant _ROLE_6 = 1 << 6; uint256 internal constant _ROLE_7 = 1 << 7; uint256 internal constant _ROLE_8 = 1 << 8; uint256 internal constant _ROLE_9 = 1 << 9; uint256 internal constant _ROLE_10 = 1 << 10; uint256 internal constant _ROLE_11 = 1 << 11; uint256 internal constant _ROLE_12 = 1 << 12; uint256 internal constant _ROLE_13 = 1 << 13; uint256 internal constant _ROLE_14 = 1 << 14; uint256 internal constant _ROLE_15 = 1 << 15; uint256 internal constant _ROLE_16 = 1 << 16; uint256 internal constant _ROLE_17 = 1 << 17; uint256 internal constant _ROLE_18 = 1 << 18; uint256 internal constant _ROLE_19 = 1 << 19; uint256 internal constant _ROLE_20 = 1 << 20; uint256 internal constant _ROLE_21 = 1 << 21; uint256 internal constant _ROLE_22 = 1 << 22; uint256 internal constant _ROLE_23 = 1 << 23; uint256 internal constant _ROLE_24 = 1 << 24; uint256 internal constant _ROLE_25 = 1 << 25; uint256 internal constant _ROLE_26 = 1 << 26; uint256 internal constant _ROLE_27 = 1 << 27; uint256 internal constant _ROLE_28 = 1 << 28; uint256 internal constant _ROLE_29 = 1 << 29; uint256 internal constant _ROLE_30 = 1 << 30; uint256 internal constant _ROLE_31 = 1 << 31; uint256 internal constant _ROLE_32 = 1 << 32; uint256 internal constant _ROLE_33 = 1 << 33; uint256 internal constant _ROLE_34 = 1 << 34; uint256 internal constant _ROLE_35 = 1 << 35; uint256 internal constant _ROLE_36 = 1 << 36; uint256 internal constant _ROLE_37 = 1 << 37; uint256 internal constant _ROLE_38 = 1 << 38; uint256 internal constant _ROLE_39 = 1 << 39; uint256 internal constant _ROLE_40 = 1 << 40; uint256 internal constant _ROLE_41 = 1 << 41; uint256 internal constant _ROLE_42 = 1 << 42; uint256 internal constant _ROLE_43 = 1 << 43; uint256 internal constant _ROLE_44 = 1 << 44; uint256 internal constant _ROLE_45 = 1 << 45; uint256 internal constant _ROLE_46 = 1 << 46; uint256 internal constant _ROLE_47 = 1 << 47; uint256 internal constant _ROLE_48 = 1 << 48; uint256 internal constant _ROLE_49 = 1 << 49; uint256 internal constant _ROLE_50 = 1 << 50; uint256 internal constant _ROLE_51 = 1 << 51; uint256 internal constant _ROLE_52 = 1 << 52; uint256 internal constant _ROLE_53 = 1 << 53; uint256 internal constant _ROLE_54 = 1 << 54; uint256 internal constant _ROLE_55 = 1 << 55; uint256 internal constant _ROLE_56 = 1 << 56; uint256 internal constant _ROLE_57 = 1 << 57; uint256 internal constant _ROLE_58 = 1 << 58; uint256 internal constant _ROLE_59 = 1 << 59; uint256 internal constant _ROLE_60 = 1 << 60; uint256 internal constant _ROLE_61 = 1 << 61; uint256 internal constant _ROLE_62 = 1 << 62; uint256 internal constant _ROLE_63 = 1 << 63; uint256 internal constant _ROLE_64 = 1 << 64; uint256 internal constant _ROLE_65 = 1 << 65; uint256 internal constant _ROLE_66 = 1 << 66; uint256 internal constant _ROLE_67 = 1 << 67; uint256 internal constant _ROLE_68 = 1 << 68; uint256 internal constant _ROLE_69 = 1 << 69; uint256 internal constant _ROLE_70 = 1 << 70; uint256 internal constant _ROLE_71 = 1 << 71; uint256 internal constant _ROLE_72 = 1 << 72; uint256 internal constant _ROLE_73 = 1 << 73; uint256 internal constant _ROLE_74 = 1 << 74; uint256 internal constant _ROLE_75 = 1 << 75; uint256 internal constant _ROLE_76 = 1 << 76; uint256 internal constant _ROLE_77 = 1 << 77; uint256 internal constant _ROLE_78 = 1 << 78; uint256 internal constant _ROLE_79 = 1 << 79; uint256 internal constant _ROLE_80 = 1 << 80; uint256 internal constant _ROLE_81 = 1 << 81; uint256 internal constant _ROLE_82 = 1 << 82; uint256 internal constant _ROLE_83 = 1 << 83; uint256 internal constant _ROLE_84 = 1 << 84; uint256 internal constant _ROLE_85 = 1 << 85; uint256 internal constant _ROLE_86 = 1 << 86; uint256 internal constant _ROLE_87 = 1 << 87; uint256 internal constant _ROLE_88 = 1 << 88; uint256 internal constant _ROLE_89 = 1 << 89; uint256 internal constant _ROLE_90 = 1 << 90; uint256 internal constant _ROLE_91 = 1 << 91; uint256 internal constant _ROLE_92 = 1 << 92; uint256 internal constant _ROLE_93 = 1 << 93; uint256 internal constant _ROLE_94 = 1 << 94; uint256 internal constant _ROLE_95 = 1 << 95; uint256 internal constant _ROLE_96 = 1 << 96; uint256 internal constant _ROLE_97 = 1 << 97; uint256 internal constant _ROLE_98 = 1 << 98; uint256 internal constant _ROLE_99 = 1 << 99; uint256 internal constant _ROLE_100 = 1 << 100; uint256 internal constant _ROLE_101 = 1 << 101; uint256 internal constant _ROLE_102 = 1 << 102; uint256 internal constant _ROLE_103 = 1 << 103; uint256 internal constant _ROLE_104 = 1 << 104; uint256 internal constant _ROLE_105 = 1 << 105; uint256 internal constant _ROLE_106 = 1 << 106; uint256 internal constant _ROLE_107 = 1 << 107; uint256 internal constant _ROLE_108 = 1 << 108; uint256 internal constant _ROLE_109 = 1 << 109; uint256 internal constant _ROLE_110 = 1 << 110; uint256 internal constant _ROLE_111 = 1 << 111; uint256 internal constant _ROLE_112 = 1 << 112; uint256 internal constant _ROLE_113 = 1 << 113; uint256 internal constant _ROLE_114 = 1 << 114; uint256 internal constant _ROLE_115 = 1 << 115; uint256 internal constant _ROLE_116 = 1 << 116; uint256 internal constant _ROLE_117 = 1 << 117; uint256 internal constant _ROLE_118 = 1 << 118; uint256 internal constant _ROLE_119 = 1 << 119; uint256 internal constant _ROLE_120 = 1 << 120; uint256 internal constant _ROLE_121 = 1 << 121; uint256 internal constant _ROLE_122 = 1 << 122; uint256 internal constant _ROLE_123 = 1 << 123; uint256 internal constant _ROLE_124 = 1 << 124; uint256 internal constant _ROLE_125 = 1 << 125; uint256 internal constant _ROLE_126 = 1 << 126; uint256 internal constant _ROLE_127 = 1 << 127; uint256 internal constant _ROLE_128 = 1 << 128; uint256 internal constant _ROLE_129 = 1 << 129; uint256 internal constant _ROLE_130 = 1 << 130; uint256 internal constant _ROLE_131 = 1 << 131; uint256 internal constant _ROLE_132 = 1 << 132; uint256 internal constant _ROLE_133 = 1 << 133; uint256 internal constant _ROLE_134 = 1 << 134; uint256 internal constant _ROLE_135 = 1 << 135; uint256 internal constant _ROLE_136 = 1 << 136; uint256 internal constant _ROLE_137 = 1 << 137; uint256 internal constant _ROLE_138 = 1 << 138; uint256 internal constant _ROLE_139 = 1 << 139; uint256 internal constant _ROLE_140 = 1 << 140; uint256 internal constant _ROLE_141 = 1 << 141; uint256 internal constant _ROLE_142 = 1 << 142; uint256 internal constant _ROLE_143 = 1 << 143; uint256 internal constant _ROLE_144 = 1 << 144; uint256 internal constant _ROLE_145 = 1 << 145; uint256 internal constant _ROLE_146 = 1 << 146; uint256 internal constant _ROLE_147 = 1 << 147; uint256 internal constant _ROLE_148 = 1 << 148; uint256 internal constant _ROLE_149 = 1 << 149; uint256 internal constant _ROLE_150 = 1 << 150; uint256 internal constant _ROLE_151 = 1 << 151; uint256 internal constant _ROLE_152 = 1 << 152; uint256 internal constant _ROLE_153 = 1 << 153; uint256 internal constant _ROLE_154 = 1 << 154; uint256 internal constant _ROLE_155 = 1 << 155; uint256 internal constant _ROLE_156 = 1 << 156; uint256 internal constant _ROLE_157 = 1 << 157; uint256 internal constant _ROLE_158 = 1 << 158; uint256 internal constant _ROLE_159 = 1 << 159; uint256 internal constant _ROLE_160 = 1 << 160; uint256 internal constant _ROLE_161 = 1 << 161; uint256 internal constant _ROLE_162 = 1 << 162; uint256 internal constant _ROLE_163 = 1 << 163; uint256 internal constant _ROLE_164 = 1 << 164; uint256 internal constant _ROLE_165 = 1 << 165; uint256 internal constant _ROLE_166 = 1 << 166; uint256 internal constant _ROLE_167 = 1 << 167; uint256 internal constant _ROLE_168 = 1 << 168; uint256 internal constant _ROLE_169 = 1 << 169; uint256 internal constant _ROLE_170 = 1 << 170; uint256 internal constant _ROLE_171 = 1 << 171; uint256 internal constant _ROLE_172 = 1 << 172; uint256 internal constant _ROLE_173 = 1 << 173; uint256 internal constant _ROLE_174 = 1 << 174; uint256 internal constant _ROLE_175 = 1 << 175; uint256 internal constant _ROLE_176 = 1 << 176; uint256 internal constant _ROLE_177 = 1 << 177; uint256 internal constant _ROLE_178 = 1 << 178; uint256 internal constant _ROLE_179 = 1 << 179; uint256 internal constant _ROLE_180 = 1 << 180; uint256 internal constant _ROLE_181 = 1 << 181; uint256 internal constant _ROLE_182 = 1 << 182; uint256 internal constant _ROLE_183 = 1 << 183; uint256 internal constant _ROLE_184 = 1 << 184; uint256 internal constant _ROLE_185 = 1 << 185; uint256 internal constant _ROLE_186 = 1 << 186; uint256 internal constant _ROLE_187 = 1 << 187; uint256 internal constant _ROLE_188 = 1 << 188; uint256 internal constant _ROLE_189 = 1 << 189; uint256 internal constant _ROLE_190 = 1 << 190; uint256 internal constant _ROLE_191 = 1 << 191; uint256 internal constant _ROLE_192 = 1 << 192; uint256 internal constant _ROLE_193 = 1 << 193; uint256 internal constant _ROLE_194 = 1 << 194; uint256 internal constant _ROLE_195 = 1 << 195; uint256 internal constant _ROLE_196 = 1 << 196; uint256 internal constant _ROLE_197 = 1 << 197; uint256 internal constant _ROLE_198 = 1 << 198; uint256 internal constant _ROLE_199 = 1 << 199; uint256 internal constant _ROLE_200 = 1 << 200; uint256 internal constant _ROLE_201 = 1 << 201; uint256 internal constant _ROLE_202 = 1 << 202; uint256 internal constant _ROLE_203 = 1 << 203; uint256 internal constant _ROLE_204 = 1 << 204; uint256 internal constant _ROLE_205 = 1 << 205; uint256 internal constant _ROLE_206 = 1 << 206; uint256 internal constant _ROLE_207 = 1 << 207; uint256 internal constant _ROLE_208 = 1 << 208; uint256 internal constant _ROLE_209 = 1 << 209; uint256 internal constant _ROLE_210 = 1 << 210; uint256 internal constant _ROLE_211 = 1 << 211; uint256 internal constant _ROLE_212 = 1 << 212; uint256 internal constant _ROLE_213 = 1 << 213; uint256 internal constant _ROLE_214 = 1 << 214; uint256 internal constant _ROLE_215 = 1 << 215; uint256 internal constant _ROLE_216 = 1 << 216; uint256 internal constant _ROLE_217 = 1 << 217; uint256 internal constant _ROLE_218 = 1 << 218; uint256 internal constant _ROLE_219 = 1 << 219; uint256 internal constant _ROLE_220 = 1 << 220; uint256 internal constant _ROLE_221 = 1 << 221; uint256 internal constant _ROLE_222 = 1 << 222; uint256 internal constant _ROLE_223 = 1 << 223; uint256 internal constant _ROLE_224 = 1 << 224; uint256 internal constant _ROLE_225 = 1 << 225; uint256 internal constant _ROLE_226 = 1 << 226; uint256 internal constant _ROLE_227 = 1 << 227; uint256 internal constant _ROLE_228 = 1 << 228; uint256 internal constant _ROLE_229 = 1 << 229; uint256 internal constant _ROLE_230 = 1 << 230; uint256 internal constant _ROLE_231 = 1 << 231; uint256 internal constant _ROLE_232 = 1 << 232; uint256 internal constant _ROLE_233 = 1 << 233; uint256 internal constant _ROLE_234 = 1 << 234; uint256 internal constant _ROLE_235 = 1 << 235; uint256 internal constant _ROLE_236 = 1 << 236; uint256 internal constant _ROLE_237 = 1 << 237; uint256 internal constant _ROLE_238 = 1 << 238; uint256 internal constant _ROLE_239 = 1 << 239; uint256 internal constant _ROLE_240 = 1 << 240; uint256 internal constant _ROLE_241 = 1 << 241; uint256 internal constant _ROLE_242 = 1 << 242; uint256 internal constant _ROLE_243 = 1 << 243; uint256 internal constant _ROLE_244 = 1 << 244; uint256 internal constant _ROLE_245 = 1 << 245; uint256 internal constant _ROLE_246 = 1 << 246; uint256 internal constant _ROLE_247 = 1 << 247; uint256 internal constant _ROLE_248 = 1 << 248; uint256 internal constant _ROLE_249 = 1 << 249; uint256 internal constant _ROLE_250 = 1 << 250; uint256 internal constant _ROLE_251 = 1 << 251; uint256 internal constant _ROLE_252 = 1 << 252; uint256 internal constant _ROLE_253 = 1 << 253; uint256 internal constant _ROLE_254 = 1 << 254; uint256 internal constant _ROLE_255 = 1 << 255; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // 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 (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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 (last updated v4.8.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: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseExtension = ".json"; string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension)) : ""; } /** * @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 overridden 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 token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token owner or 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: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @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 _ownerOf(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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256, /* firstTokenId */ uint256 batchSize ) internal virtual { if (batchSize > 1) { if (from != address(0)) { _balances[from] -= batchSize; } if (to != address(0)) { _balances[to] += batchSize; } } } /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol"; /** * @title OperatorFilterer * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another * registrant's entries in the OperatorFilterRegistry. * @dev This smart contract is meant to be inherited by token contracts so they can use the following: * - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods. * - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods. */ abstract contract OperatorFilterer { error OperatorNotAllowed(address operator); IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY = IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E); constructor(address subscriptionOrRegistrantToCopy, bool subscribe) { // If an inheriting token contract is deployed to a network without the registry deployed, the modifier // will not revert, but the contract will need to be registered with the registry once it is deployed in // order for the modifier to filter addresses. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (subscribe) { OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy); } else { if (subscriptionOrRegistrantToCopy != address(0)) { OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy); } else { OPERATOR_FILTER_REGISTRY.register(address(this)); } } } } modifier onlyAllowedOperator(address from) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { // Allow spending tokens from addresses with balance // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred // from an EOA. if (from == msg.sender) { _; return; } if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) { revert OperatorNotAllowed(msg.sender); } } _; } modifier onlyAllowedOperatorApproval(address operator) virtual { // Check registry code length to facilitate testing in environments without a deployed registry. if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) { if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) { revert OperatorNotAllowed(operator); } } _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * ERC165 bytes to add to interface array - set in parent contract * implementing this standard * * bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a * bytes4 private constant _INTERFACE_ID_ERC2981 = 0x2a55205a; * _registerInterface(_INTERFACE_ID_ERC2981); */ /** * @notice Called with the sale price to determine how much royalty * is owed and to whom. * @param _tokenId - the NFT asset queried for royalty information * @param _salePrice - the sale price of the NFT asset specified by _tokenId * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for _salePrice */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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); /** * @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 (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/Math.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @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] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 (last updated v4.6.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 `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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`. * * 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; /** * @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.13; interface IOperatorFilterRegistry { function isOperatorAllowed(address registrant, address operator) external view returns (bool); function register(address registrant) external; function registerAndSubscribe(address registrant, address subscription) external; function registerAndCopyEntries(address registrant, address registrantToCopy) external; function unregister(address addr) external; function updateOperator(address registrant, address operator, bool filtered) external; function updateOperators(address registrant, address[] calldata operators, bool filtered) external; function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external; function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external; function subscribe(address registrant, address registrantToSubscribe) external; function unsubscribe(address registrant, bool copyExistingEntries) external; function subscriptionOf(address addr) external returns (address registrant); function subscribers(address registrant) external returns (address[] memory); function subscriberAt(address registrant, uint256 index) external returns (address); function copyEntriesOf(address registrant, address registrantToCopy) external; function isOperatorFiltered(address registrant, address operator) external returns (bool); function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool); function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool); function filteredOperators(address addr) external returns (address[] memory); function filteredCodeHashes(address addr) external returns (bytes32[] memory); function filteredOperatorAt(address registrant, uint256 index) external returns (address); function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32); function isRegistered(address addr) external returns (bool); function codeHashOf(address addr) external returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"tokenName","type":"string"},{"internalType":"string","name":"tokenSymbol","type":"string"},{"internalType":"string","name":"customBaseURI_","type":"string"},{"internalType":"address","name":"fundingrecipient","type":"address"},{"internalType":"uint256","name":"planetPrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidProof","type":"error"},{"inputs":[],"name":"NewOwnerIsZeroAddress","type":"error"},{"inputs":[],"name":"NoHandoverRequest","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pendingOwner","type":"address"}],"name":"OwnershipHandoverRequested","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"roles","type":"uint256"}],"name":"RolesUpdated","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":"ADMIN_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_REG_PLANET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SPECIAL_PLANET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PLANET_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"planetNumber","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"planetNumber","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"RainbowListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_fundingRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"planetNumber","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allPlanetSaleStatus","outputs":[{"internalType":"bool[10]","name":"","type":"bool[10]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allRainbowStatus","outputs":[{"internalType":"bool[10]","name":"","type":"bool[10]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cancelOwnershipHandover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pendingOwner","type":"address"}],"name":"completeOwnershipHandover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"planetNumber","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"currentMintsAllowed","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"planetNumber","type":"uint256"}],"name":"currentPlanetSupply","outputs":[{"internalType":"uint256","name":"supply","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":"user","type":"address"},{"internalType":"uint256","name":"roles","type":"uint256"}],"name":"grantRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"roles","type":"uint256"}],"name":"hasAllRoles","outputs":[{"internalType":"bool","name":"result","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"roles","type":"uint256"}],"name":"hasAnyRole","outputs":[{"internalType":"bool","name":"result","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"issueWhalePass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"roles","type":"uint256"}],"name":"ordinalsFromRoles","outputs":[{"internalType":"uint8[]","name":"ordinals","type":"uint8[]"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"result","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":"address","name":"pendingOwner","type":"address"}],"name":"ownershipHandoverExpiresAt","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownershipHandoverValidFor","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"roles","type":"uint256"}],"name":"renounceRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"requestOwnershipHandover","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"roles","type":"uint256"}],"name":"revokeRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"ordinals","type":"uint8[]"}],"name":"rolesFromOrdinals","outputs":[{"internalType":"uint256","name":"roles","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"rolesOf","outputs":[{"internalType":"uint256","name":"roles","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rootHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"authorizedContract","type":"address"}],"name":"setBurnAuthorizedContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"fundingRecipient","type":"address"}],"name":"setFundingRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMultiMint","type":"uint256"}],"name":"setMaxMultiMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxReg","type":"uint256"}],"name":"setMaxRegMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSpecial","type":"uint256"}],"name":"setMaxSpecial","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPlanetPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"setRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setWhaleSupply","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":"planetNumber","type":"uint256"}],"name":"togglePlanetSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"planetNumber","type":"uint256"}],"name":"toggleRainbowListStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]
Contract Creation Code
6080604052600f80546001600160a01b0319166a01000000000000000000001790553480156200002e57600080fd5b5060405162005d4b38038062005d4b8339810160408190526200005191620005a3565b733cc6cdda760b79bafa08df41ecfa224f810dceb6600186866000620000788382620006f1565b506001620000878282620006f1565b50506001600655506daaeb6d7670e522a718067333cd4e3b15620001d45780156200012257604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200010357600080fd5b505af115801562000118573d6000803e3d6000fd5b50505050620001d4565b6001600160a01b03821615620001735760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620000e8565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001ba57600080fd5b505af1158015620001cf573d6000803e3d6000fd5b505050505b50620001f69050731a178ecf995eba436ad2bc89364413c4d0d4347262000351565b6010620002048482620006f1565b506009819055600a600b819055600c80546001600160a01b0319166001600160a01b038516179055600160128190556011919091556200025a90738ab5496a45c92c36ec293d2681f1d3706eaff85d906200038d565b6200027c731a178ecf995eba436ad2bc89364413c4d0d434726103e8620003d9565b6065601381905561044c601481905560158190556016819055601781905560188190556019819055601a819055601b819055601c819055600a601d819055918190819081908190819081908190620002d6908290620007bd565b620002e29190620007bd565b620002ee9190620007bd565b620002fa9190620007bd565b620003069190620007bd565b620003129190620007bd565b6200031e9190620007bd565b6200032a9190620007bd565b620003369190620007bd565b620003429190620007bd565b600a5550620007e59350505050565b6001600160a01b0316638b78c6d8198190558060007f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08180a350565b638b78c6d88260601b17600052602060002081815417808255808460601b60601c7f715ad5ce61fc9595c7b415289d59cf203f23a94fa06f04af7e489a0a76e1fe26600080a350505050565b6127106001600160601b03821611156200044d5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620004a55760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000444565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600755565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200050657600080fd5b81516001600160401b0380821115620005235762000523620004de565b604051601f8301601f19908116603f011681019082821181831017156200054e576200054e620004de565b816040528381526020925086838588010111156200056b57600080fd5b600091505b838210156200058f578582018301518183018401529082019062000570565b600093810190920192909252949350505050565b600080600080600060a08688031215620005bc57600080fd5b85516001600160401b0380821115620005d457600080fd5b620005e289838a01620004f4565b96506020880151915080821115620005f957600080fd5b6200060789838a01620004f4565b955060408801519150808211156200061e57600080fd5b506200062d88828901620004f4565b606088015190945090506001600160a01b03811681146200064d57600080fd5b80925050608086015190509295509295909350565b600181811c908216806200067757607f821691505b6020821081036200069857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620006ec57600081815260208120601f850160051c81016020861015620006c75750805b601f850160051c820191505b81811015620006e857828155600101620006d3565b5050505b505050565b81516001600160401b038111156200070d576200070d620004de565b62000725816200071e845462000662565b846200069e565b602080601f8311600181146200075d5760008415620007445750858301515b600019600386901b1c1916600185901b178555620006e8565b600085815260208120601f198616915b828110156200078e578886015182559484019460019091019084016200076d565b5085821015620007ad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820180821115620007df57634e487b7160e01b600052601160045260246000fd5b92915050565b61555680620007f56000396000f3fe6080604052600436106103b85760003560e01c80636f8b44b0116101f2578063b78928271161010d578063e55a8ee9116100a0578063f04e283e1161006f578063f04e283e14610b3d578063f2fde38b14610b5d578063fcf0f0d314610b7d578063fee81cf414610b9257600080fd5b8063e55a8ee914610aab578063e985e9c514610ac1578063ea322fd214610b0a578063ebddbdff14610b2a57600080fd5b8063d5391393116100dc578063d539139314610a43578063d547cfb714610a58578063d7533f0214610a6d578063db5efaa914610a8b57600080fd5b8063b7892827146109cd578063b88d4fde146109ed578063b8fc105114610a0d578063c87b56dd14610a2357600080fd5b80638be5b5f9116101855780639a8a0b7e116101545780639a8a0b7e14610964578063a06d05291461097a578063a22cb4651461098d578063ad028061146109ad57600080fd5b80638be5b5f9146109015780638da5cb5b1461091657806395d89b411461092f578063993539191461094457600080fd5b8063753c96a5116101c1578063753c96a51461089457806375b238fc146108b457806375ce317a146108c95780638631890e146108eb57600080fd5b80636f8b44b01461081257806370a0823114610832578063715018a6146108525780637359e41f1461086757600080fd5b80632de94807116102e2578063514e62fc116102755780635ade573d116102445780635ade573d146107925780635bd5c9b7146107b25780636352211e146107d257806367291c00146107f257600080fd5b8063514e62fc1461070657806354d1f13d1461073d57806355f804b3146107525780635826edfb1461077257600080fd5b806342842e0e116102b157806342842e0e1461068657806342966c68146106a657806346b800ff146106c65780634a4ee7b1146106e657600080fd5b80632de94807146105fd57806332cb6b0c1461062e57806341da8d8d1461064457806341f434341461066457600080fd5b80631cd64df41161035a5780632569296211610329578063256929621461056957806328ef5e7f1461057e5780632a55205a1461059e5780632d7eae66146105dd57600080fd5b80631cd64df4146104dc5780631d80009a1461051357806323b872dd14610529578063241d96511461054957600080fd5b8063095ea7b311610396578063095ea7b31461044c57806313a661ed1461046e578063183a4f6e1461049c5780631c10893f146104bc57600080fd5b806301ffc9a7146103bd57806306fdde03146103f2578063081812fc14610414575b600080fd5b3480156103c957600080fd5b506103dd6103d8366004614d31565b610bc3565b60405190151581526020015b60405180910390f35b3480156103fe57600080fd5b50610407610bd4565b6040516103e99190614d9e565b34801561042057600080fd5b5061043461042f366004614db1565b610c66565b6040516001600160a01b0390911681526020016103e9565b34801561045857600080fd5b5061046c610467366004614de1565b610c8d565b005b34801561047a57600080fd5b5061048e610489366004614e52565b610d5b565b6040519081526020016103e9565b3480156104a857600080fd5b5061046c6104b7366004614db1565b610d8e565b3480156104c857600080fd5b5061046c6104d7366004614de1565b610d9b565b3480156104e857600080fd5b506103dd6104f7366004614de1565b60609190911b638b78c6d8176000908152602090205481161490565b34801561051f57600080fd5b5061048e600e5481565b34801561053557600080fd5b5061046c610544366004614f0b565b610dc4565b34801561055557600080fd5b5061046c610564366004614f47565b610e9d565b34801561057557600080fd5b5061046c610ef6565b34801561058a57600080fd5b5061046c610599366004614db1565b610f47565b3480156105aa57600080fd5b506105be6105b9366004614f62565b611204565b604080516001600160a01b0390931683526020830191909152016103e9565b3480156105e957600080fd5b5061046c6105f8366004614db1565b6112bf565b34801561060957600080fd5b5061048e610618366004614f47565b60601b638b78c6d8176000908152602090205490565b34801561063a57600080fd5b5061048e600a5481565b34801561065057600080fd5b5061046c61065f366004614f47565b6112fe565b34801561067057600080fd5b506104346daaeb6d7670e522a718067333cd4e81565b34801561069257600080fd5b5061046c6106a1366004614f0b565b61142f565b3480156106b257600080fd5b5061046c6106c1366004614db1565b6114fd565b3480156106d257600080fd5b5061046c6106e1366004614f47565b611596565b3480156106f257600080fd5b5061046c610701366004614de1565b6115f2565b34801561071257600080fd5b506103dd610721366004614de1565b60609190911b638b78c6d8176000908152602090205416151590565b34801561074957600080fd5b5061046c611617565b34801561075e57600080fd5b5061046c61076d366004614fdc565b611654565b34801561077e57600080fd5b5061048e61078d366004615025565b611699565b34801561079e57600080fd5b5061046c6107ad366004614db1565b61186d565b3480156107be57600080fd5b50600c54610434906001600160a01b031681565b3480156107de57600080fd5b506104346107ed366004614db1565b611a6b565b3480156107fe57600080fd5b5061046c61080d366004615051565b611ad0565b34801561081e57600080fd5b5061046c61082d366004614db1565b611bbc565b34801561083e57600080fd5b5061048e61084d366004614f47565b611bfb565b34801561085e57600080fd5b5061046c611c95565b34801561087357600080fd5b50610887610882366004614db1565b611ce3565b6040516103e99190615076565b3480156108a057600080fd5b5061046c6108af366004614db1565b611d2b565b3480156108c057600080fd5b5061048e600181565b3480156108d557600080fd5b506108de611d6a565b6040516103e991906150bd565b3480156108f757600080fd5b5061048e60095481565b34801561090d57600080fd5b506108de611e36565b34801561092257600080fd5b50638b78c6d81954610434565b34801561093b57600080fd5b50610407611f16565b34801561095057600080fd5b5061046c61095f366004614db1565b611f25565b34801561097057600080fd5b5061048e60115481565b61046c610988366004615051565b611f64565b34801561099957600080fd5b5061046c6109a83660046150ff565b6123bf565b3480156109b957600080fd5b5061048e6109c8366004614db1565b612483565b3480156109d957600080fd5b5061046c6109e8366004614db1565b61253a565b3480156109f957600080fd5b5061046c610a08366004615136565b612579565b348015610a1957600080fd5b5061048e600b5481565b348015610a2f57600080fd5b50610407610a3e366004614db1565b612655565b348015610a4f57600080fd5b5061048e600481565b348015610a6457600080fd5b506104076126f3565b348015610a7957600080fd5b506040516202a30081526020016103e9565b348015610a9757600080fd5b5061046c610aa6366004614db1565b612702565b348015610ab757600080fd5b5061048e60125481565b348015610acd57600080fd5b506103dd610adc3660046151b2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b1657600080fd5b5061046c610b25366004614db1565b612741565b61046c610b383660046151dc565b612780565b348015610b4957600080fd5b5061046c610b58366004614f47565b612c33565b348015610b6957600080fd5b5061046c610b78366004614f47565b612cb5565b348015610b8957600080fd5b5061048e600281565b348015610b9e57600080fd5b5061048e610bad366004614f47565b60601b63389a75e1176000908152602090205490565b6000610bce82612d1c565b92915050565b606060008054610be390615273565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0f90615273565b8015610c5c5780601f10610c3157610100808354040283529160200191610c5c565b820191906000526020600020905b815481529060010190602001808311610c3f57829003601f168201915b5050505050905090565b6000610c7182612d5a565b506000908152600460205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15610d4c57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1f91906152ad565b610d4c57604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b610d568383612dbe565b505050565b600060208201825160051b81015b808214610d8757600160ff8351161b83179250602082019150610d69565b5050919050565b610d983382612eea565b50565b638b78c6d819543314610db6576382b429006000526004601cfd5b610dc08282612f3b565b5050565b826daaeb6d7670e522a718067333cd4e3b15610e8c57336001600160a01b03821603610dfa57610df5848484612f87565b610e97565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d91906152ad565b610e8c57604051633b79c77360e21b8152336004820152602401610d43565b610e97848484612f87565b50505050565b6001638b78c6d83360601b176000528060206000205416610ed357638b78c6d819543314610ed3576382b429006000526004601cfd5b50600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006202a30067ffffffffffffffff164201905063389a75e13360601b1760005280602060002055337fdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d600080a250565b6002600117638b78c6d83360601b176000528060206000205416610f8057638b78c6d819543314610f80576382b429006000526004601cfd5b81600103610fb9575050600f80546aff000000000000000000001981166a01000000000000000000009182900460ff1615909102179055565b81600203610ff4575050600f80546bff00000000000000000000001981166b0100000000000000000000009182900460ff1615909102179055565b81600303611031575050600f80546cff0000000000000000000000001981166c010000000000000000000000009182900460ff1615909102179055565b81600403611070575050600f80546dff000000000000000000000000001981166d01000000000000000000000000009182900460ff1615909102179055565b816005036110a6575050600f80546eff0000000000000000000000000000198116600160701b9182900460ff1615909102179055565b816006036110ec575050600f80547fffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffff8116600160781b9182900460ff1615909102179055565b81600703611132575050600f80547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff8116600160801b9182900460ff1615909102179055565b81600803611178575050600f80547fffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffff8116600160881b9182900460ff1615909102179055565b816009036111be575050600f80547fffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffff8116600160901b9182900460ff1615909102179055565b81600a03610dc0575050600f80547fffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffff8116600160981b9182900460ff1615909102179055565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff169282019290925282916112835750604080518082019091526007546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b6020810151600090612710906112a7906bffffffffffffffffffffffff16876152e0565b6112b191906152ff565b915196919550909350505050565b6002600117638b78c6d83360601b1760005280602060002054166112f857638b78c6d8195433146112f8576382b429006000526004601cfd5b50600e55565b3360601b638b78c6d81760009081526020902054600790811661133657638b78c6d819543314611336576382b429006000526004601cfd5b601d54611341612ffe565b61134c906001615321565b1061138e5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b61139c603280546001019055565b610dc082601c54601b54601a546019546018546017546016546015546014546013546113c6612ffe565b6113d09190615321565b6113da9190615321565b6113e49190615321565b6113ee9190615321565b6113f89190615321565b6114029190615321565b61140c9190615321565b6114169190615321565b6114209190615321565b61142a9190615321565b61300e565b826daaeb6d7670e522a718067333cd4e3b156114f257336001600160a01b0382160361146057610df5848484613028565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d391906152ad565b6114f257604051633b79c77360e21b8152336004820152602401610d43565b610e97848484613028565b600d546001600160a01b031633148061151b575061151b3382613043565b61158d5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610d43565b610d98816130c1565b6002600117638b78c6d83360601b1760005280602060002054166115cf57638b78c6d8195433146115cf576382b429006000526004601cfd5b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b638b78c6d81954331461160d576382b429006000526004601cfd5b610dc08282612eea565b63389a75e13360601b176000526000602060002055337ffa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c92600080a2565b6002600117638b78c6d83360601b17600052806020600020541661168d57638b78c6d81954331461168d576382b429006000526004601cfd5b6010610d568382615382565b6000826001036116d0576001600160a01b0382166000908152601e60205260409020546012546116c99190615442565b9050610bce565b826002036116fe576001600160a01b0382166000908152601f60205260409020546011546116c99190615442565b8260030361172b576001600160a01b03821660009081526020805260409020546011546116c99190615442565b82600403611759576001600160a01b0382166000908152602160205260409020546011546116c99190615442565b82600503611787576001600160a01b0382166000908152602260205260409020546011546116c99190615442565b826006036117b5576001600160a01b0382166000908152602360205260409020546011546116c99190615442565b826007036117e3576001600160a01b0382166000908152602460205260409020546011546116c99190615442565b82600803611811576001600160a01b0382166000908152602560205260409020546011546116c99190615442565b8260090361183f576001600160a01b0382166000908152602660205260409020546011546116c99190615442565b82600a03610bce576001600160a01b0382166000908152602760205260409020546011546116c99190615442565b6002600117638b78c6d83360601b1760005280602060002054166118a657638b78c6d8195433146118a6576382b429006000526004601cfd5b816001036118c457600f805460ff19811660ff909116151790555050565b816002036118eb575050600f805461ff001981166101009182900460ff1615909102179055565b81600303611914575050600f805462ff0000198116620100009182900460ff1615909102179055565b8160040361193f575050600f805463ff00000019811663010000009182900460ff1615909102179055565b8160050361196c575050600f805464ff000000001981166401000000009182900460ff1615909102179055565b8160060361199b575050600f805465ff0000000000198116650100000000009182900460ff1615909102179055565b816007036119cc575050600f805466ff00000000000019811666010000000000009182900460ff1615909102179055565b816008036119ff575050600f805467ff000000000000001981166701000000000000009182900460ff1615909102179055565b81600903611a34575050600f805468ff0000000000000000198116680100000000000000009182900460ff1615909102179055565b81600a03610dc0575050600f805469ff00000000000000000019811669010000000000000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610bce5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d43565b3360601b638b78c6d817600090815260209020546007908116611b0857638b78c6d819543314611b08576382b429006000526004601cfd5b83600103611b1a57610df58383613164565b83600203611b2c57610df583836131ff565b83600303611b3e57610df5838361329d565b83600403611b5057610df5838361333e565b83600503611b6257610df583836133e2565b83600603611b7457610df58383613489565b83600703611b8657610df58383613533565b83600803611b9857610df583836135e0565b83600903611baa57610df58383613690565b83600a03610e9757610e978383613743565b6002600117638b78c6d83360601b176000528060206000205416611bf557638b78c6d819543314611bf5576382b429006000526004601cfd5b50600a55565b60006001600160a01b038216611c795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d43565b506001600160a01b031660009081526003602052604090205490565b638b78c6d819543314611cb0576382b429006000526004601cfd5b6000337f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36000638b78c6d81955565b606060206040510160005b8082526001841660051b820191508360011c93508315611d1057600101611cee565b5060405191508060405260208201810360051c825250919050565b6002600117638b78c6d83360601b176000528060206000205416611d6457638b78c6d819543314611d64576382b429006000526004601cfd5b50600955565b611d72614cfc565b506040805161014081018252600f5460ff8082161515835261010080830482161515602085015262010000830482161515948401949094526301000000820481161515606084015264010000000082048116151560808401526501000000000082048116151560a0840152660100000000000082048116151560c084015267010000000000000082048116151560e0840152680100000000000000008204811615159383019390935269010000000000000000009004909116151561012082015290565b611e3e614cfc565b506040805161014081018252600f5460ff6a010000000000000000000082048116151583526b01000000000000000000000082048116151560208401526c01000000000000000000000000820481161515938301939093526d01000000000000000000000000008104831615156060830152600160701b8104831615156080830152600160781b81048316151560a0830152600160801b81048316151560c0830152600160881b81048316151560e0830152600160901b810483161515610100830152600160981b9004909116151561012082015290565b606060018054610be390615273565b6002600117638b78c6d83360601b176000528060206000205416611f5e57638b78c6d819543314611f5e576382b429006000526004601cfd5b50601255565b611f6c6137f9565b80600954611f7a91906152e0565b341015611fc95760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e74207061796d656e740000000000000000000000006044820152606401610d43565b8260010361202457600f5460ff166120155760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613852565b61237b565b8260020361207f57600f54610100900460ff166120755760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613929565b826003036120db57600f5462010000900460ff166120d15760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f82826139b3565b8260040361213857600f546301000000900460ff1661212e5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613a3d565b8260050361219657600f54640100000000900460ff1661218c5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613ac7565b826006036121f557600f5465010000000000900460ff166121eb5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613b51565b8260070361225557600f546601000000000000900460ff1661224b5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613bdb565b826008036122b657600f54670100000000000000900460ff166122ac5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613c65565b8260090361231857600f5468010000000000000000900460ff1661230e5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613cef565b82600a0361237b57600f546901000000000000000000900460ff166123715760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61237b8282613d79565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156123b4573d6000803e3d6000fd5b50610d566001600655565b816daaeb6d7670e522a718067333cd4e3b1561247957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561242d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245191906152ad565b61247957604051633b79c77360e21b81526001600160a01b0382166004820152602401610d43565b610d568383613e03565b60008160010361249557602854610bce565b816002036124a557602954610bce565b816003036124b557602a54610bce565b816004036124c557602b54610bce565b816005036124d557602c54610bce565b816006036124e557602d54610bce565b816007036124f557602e54610bce565b8160080361250557602f54610bce565b8160090361251557603054610bce565b81600a0361252557603154610bce565b81600b0361253557603254610bce565b919050565b6002600117638b78c6d83360601b17600052806020600020541661257357638b78c6d819543314612573576382b429006000526004601cfd5b50601155565b836daaeb6d7670e522a718067333cd4e3b1561264257336001600160a01b038216036125b0576125ab85858585613e0e565b61264e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156125ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262391906152ad565b61264257604051633b79c77360e21b8152336004820152602401610d43565b61264e85858585613e0e565b5050505050565b606061266082612d5a565b60408051808201909152600581527f2e6a736f6e0000000000000000000000000000000000000000000000000000006020820152600061269e6126f3565b905060008151116126be57604051806020016040528060008152506126eb565b806126c885613e86565b836040516020016126db93929190615455565b6040516020818303038152906040525b949350505050565b606060108054610be390615273565b6002600117638b78c6d83360601b17600052806020600020541661273b57638b78c6d81954331461273b576382b429006000526004601cfd5b50600b55565b6002600117638b78c6d83360601b17600052806020600020541661277a57638b78c6d81954331461277a576382b429006000526004601cfd5b50601d55565b6127886137f9565b612793848383613f26565b6127c9576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826009546127d791906152e0565b3410156128265760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e74207061796d656e740000000000000000000000006044820152606401610d43565b8460010361288f57600f546a0100000000000000000000900460ff166128805760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613852565b612bef565b846002036128f457600f546b010000000000000000000000900460ff166128ea5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613929565b8460030361295a57600f546c01000000000000000000000000900460ff166129505760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a84846139b3565b846004036129c157600f546d0100000000000000000000000000900460ff166129b75760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613a3d565b84600503612a1e57600f54600160701b900460ff16612a145760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613ac7565b84600603612a7b57600f54600160781b900460ff16612a715760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613b51565b84600703612ad857600f54600160801b900460ff16612ace5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613bdb565b84600803612b3557600f54600160881b900460ff16612b2b5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613c65565b84600903612b9257600f54600160901b900460ff16612b885760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613cef565b84600a03612bef57600f54600160981b900460ff16612be55760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b612bef8484613d79565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015612c28573d6000803e3d6000fd5b5061264e6001600655565b638b78c6d819543314612c4e576382b429006000526004601cfd5b8060601b60601c905063389a75e18160601b1760005260206000208054421115612c8057636f5e88186000526004601cfd5b600081555080337f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3638b78c6d81955565b638b78c6d819543314612cd0576382b429006000526004601cfd5b6001600160a01b031680612cec57637448fbae6000526004601cfd5b80337f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3638b78c6d81955565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610bce5750610bce82613fbe565b6000818152600260205260409020546001600160a01b0316610d985760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d43565b6000612dc982611a6b565b9050806001600160a01b0316836001600160a01b031603612e525760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610d43565b336001600160a01b0382161480612e6e5750612e6e8133610adc565b612ee05760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d43565b610d568383614059565b638b78c6d88260601b176000526020600020805482811681189050808255808460601b60601c7f715ad5ce61fc9595c7b415289d59cf203f23a94fa06f04af7e489a0a76e1fe26600080a350505050565b638b78c6d88260601b17600052602060002081815417808255808460601b60601c7f715ad5ce61fc9595c7b415289d59cf203f23a94fa06f04af7e489a0a76e1fe26600080a350505050565b612f913382613043565b612ff35760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610d43565b610d568383836140c7565b600061300960325490565b905090565b610dc08282604051806020016040528060008152506142cd565b610d5683838360405180602001604052806000815250612579565b60008061304f83611a6b565b9050806001600160a01b0316846001600160a01b0316148061309657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806126eb5750836001600160a01b03166130af84610c66565b6001600160a01b031614949350505050565b60006130cc82611a6b565b90506130dc81600084600161434b565b6130e582611a6b565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6013546001826131726143d3565b61317c9190615321565b6131869190615442565b106131c85760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d56576131e1602880546001019055565b6131ed8361142a6143d3565b806131f781615498565b9150506131cb565b60145460018261320d6143de565b6132179190615321565b6132219190615442565b106132635760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761327c602980546001019055565b61328b836013546114206143de565b8061329581615498565b915050613266565b6015546001826132ab6143e9565b6132b59190615321565b6132bf9190615442565b106133015760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761331a602a80546001019055565b61332c836014546013546114166143e9565b8061333681615498565b915050613304565b60165460018261334c6143f4565b6133569190615321565b6133609190615442565b106133a25760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d56576133bb602b80546001019055565b6133d08360155460145460135461140c6143f4565b806133da81615498565b9150506133a5565b6017546001826133f06143ff565b6133fa9190615321565b6134049190615442565b106134465760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761345f602c80546001019055565b613477836016546015546014546013546114026143ff565b8061348181615498565b915050613449565b60185460018261349761440a565b6134a19190615321565b6134ab9190615442565b106134ed5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d5657613506602d80546001019055565b613521836017546016546015546014546013546113f861440a565b8061352b81615498565b9150506134f0565b601954600182613541614415565b61354b9190615321565b6135559190615442565b106135975760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d56576135b0602e80546001019055565b6135ce836018546017546016546015546014546013546113ee614415565b806135d881615498565b91505061359a565b601a546001826135ee614420565b6135f89190615321565b6136029190615442565b106136445760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761365d602f80546001019055565b61367e836019546018546017546016546015546014546013546113e4614420565b8061368881615498565b915050613647565b601b5460018261369e61442b565b6136a89190615321565b6136b29190615442565b106136f45760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761370d603080546001019055565b61373183601a546019546018546017546016546015546014546013546113da61442b565b8061373b81615498565b9150506136f7565b601c54600182613751614436565b61375b9190615321565b6137659190615442565b106137a75760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d56576137c0603180546001019055565b6137e783601b54601a546019546018546017546016546015546014546013546113d0614436565b806137f181615498565b9150506137aa565b60026006540361384b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d43565b6002600655565b600b54613860600183615442565b106138b75760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b60006138c283614441565b11156138d7576138d28282614467565b61391f565b60405162461bcd60e51b815260206004820152601660248201527f4d696e74696e67206c696d6974206578636565646564000000000000000000006044820152606401610d43565b610dc08282613164565b600b54613937600183615442565b1061398e5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b600061399983614498565b11156138d7576139a982826144be565b610dc082826131ff565b600b546139c1600183615442565b10613a185760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613a23836144e6565b11156138d757613a33828261450b565b610dc0828261329d565b600b54613a4b600183615442565b10613aa25760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613aad83614532565b11156138d757613abd8282614558565b610dc0828261333e565b600b54613ad5600183615442565b10613b2c5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613b3783614580565b11156138d757613b4782826145a6565b610dc082826133e2565b600b54613b5f600183615442565b10613bb65760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613bc1836145ce565b11156138d757613bd182826145f4565b610dc08282613489565b600b54613be9600183615442565b10613c405760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613c4b8361461c565b11156138d757613c5b8282614642565b610dc08282613533565b600b54613c73600183615442565b10613cca5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613cd58361466a565b11156138d757613ce58282614690565b610dc082826135e0565b600b54613cfd600183615442565b10613d545760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613d5f836146b8565b11156138d757613d6f82826146de565b610dc08282613690565b600b54613d87600183615442565b10613dde5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613de983614706565b11156138d757613df9828261472c565b610dc08282613743565b610dc0338383614754565b613e183383613043565b613e7a5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610d43565b610e9784848484614822565b60606000613e93836148a0565b600101905060008167ffffffffffffffff811115613eb357613eb3614e0b565b6040519080825280601f01601f191660200182016040528015613edd576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084613ee757509392505050565b604080516001600160a01b038516602082015260009182910160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050613fb584848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050614982565b95945050505050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061402157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bce57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610bce565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061408e82611a6b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b03166140da82611a6b565b6001600160a01b03161461413e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d43565b6001600160a01b0382166141b95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d43565b6141c6838383600161434b565b826001600160a01b03166141d982611a6b565b6001600160a01b03161461423d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d43565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6142d78383614998565b6142e46000848484614b31565b610d565760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d43565b6001811115610e97576001600160a01b03841615614391576001600160a01b0384166000908152600360205260408120805483929061438b908490615442565b90915550505b6001600160a01b03831615610e97576001600160a01b038316600090815260036020526040812080548392906143c8908490615321565b909155505050505050565b600061300960285490565b600061300960295490565b6000613009602a5490565b6000613009602b5490565b6000613009602c5490565b6000613009602d5490565b6000613009602e5490565b6000613009602f5490565b600061300960305490565b600061300960315490565b6001600160a01b0381166000908152601e6020526040812054601254610bce9190615442565b6001600160a01b0382166000908152601e60205260408120805483929061448f908490615321565b90915550505050565b6001600160a01b0381166000908152601f6020526040812054601154610bce9190615442565b6001600160a01b0382166000908152601f60205260408120805483929061448f908490615321565b6001600160a01b0381166000908152602080526040812054601154610bce9190615442565b6001600160a01b03821660009081526020805260408120805483929061448f908490615321565b6001600160a01b038116600090815260216020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602160205260408120805483929061448f908490615321565b6001600160a01b038116600090815260226020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602260205260408120805483929061448f908490615321565b6001600160a01b038116600090815260236020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602360205260408120805483929061448f908490615321565b6001600160a01b038116600090815260246020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602460205260408120805483929061448f908490615321565b6001600160a01b038116600090815260256020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602560205260408120805483929061448f908490615321565b6001600160a01b038116600090815260266020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602660205260408120805483929061448f908490615321565b6001600160a01b038116600090815260276020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602760205260408120805483929061448f908490615321565b816001600160a01b0316836001600160a01b0316036147b55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d43565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61482d8484846140c7565b61483984848484614b31565b610e975760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d43565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106148e9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310614915576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061493357662386f26fc10000830492506010015b6305f5e100831061494b576305f5e100830492506008015b612710831061495f57612710830492506004015b60648310614971576064830492506002015b600a8310610bce5760010192915050565b60008261498f8584614c7d565b14949350505050565b6001600160a01b0382166149ee5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d43565b6000818152600260205260409020546001600160a01b031615614a535760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d43565b614a6160008383600161434b565b6000818152600260205260409020546001600160a01b031615614ac65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d43565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15614c7257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614b759033908990889088906004016154b1565b6020604051808303816000875af1925050508015614bb0575060408051601f3d908101601f19168201909252614bad918101906154ed565b60015b614c58573d808015614bde576040519150601f19603f3d011682016040523d82523d6000602084013e614be3565b606091505b508051600003614c505760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506126eb565b506001949350505050565b600081815b8451811015614cc257614cae82868381518110614ca157614ca161550a565b6020026020010151614cca565b915080614cba81615498565b915050614c82565b509392505050565b6000818310614ce6576000828152602084905260409020614cf5565b60008381526020839052604090205b9392505050565b604051806101400160405280600a906020820280368337509192915050565b6001600160e01b031981168114610d9857600080fd5b600060208284031215614d4357600080fd5b8135614cf581614d1b565b60005b83811015614d69578181015183820152602001614d51565b50506000910152565b60008151808452614d8a816020860160208601614d4e565b601f01601f19169290920160200192915050565b602081526000614cf56020830184614d72565b600060208284031215614dc357600080fd5b5035919050565b80356001600160a01b038116811461253557600080fd5b60008060408385031215614df457600080fd5b614dfd83614dca565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715614e4a57614e4a614e0b565b604052919050565b60006020808385031215614e6557600080fd5b823567ffffffffffffffff80821115614e7d57600080fd5b818501915085601f830112614e9157600080fd5b813581811115614ea357614ea3614e0b565b8060051b9150614eb4848301614e21565b8181529183018401918481019088841115614ece57600080fd5b938501935b83851015614eff578435925060ff83168314614eef5760008081fd5b8282529385019390850190614ed3565b98975050505050505050565b600080600060608486031215614f2057600080fd5b614f2984614dca565b9250614f3760208501614dca565b9150604084013590509250925092565b600060208284031215614f5957600080fd5b614cf582614dca565b60008060408385031215614f7557600080fd5b50508035926020909101359150565b600067ffffffffffffffff831115614f9e57614f9e614e0b565b614fb1601f8401601f1916602001614e21565b9050828152838383011115614fc557600080fd5b828260208301376000602084830101529392505050565b600060208284031215614fee57600080fd5b813567ffffffffffffffff81111561500557600080fd5b8201601f8101841361501657600080fd5b6126eb84823560208401614f84565b6000806040838503121561503857600080fd5b8235915061504860208401614dca565b90509250929050565b60008060006060848603121561506657600080fd5b83359250614f3760208501614dca565b6020808252825182820181905260009190848201906040850190845b818110156150b157835160ff1683529284019291840191600101615092565b50909695505050505050565b6101408101818360005b600a8110156150e857815115158352602092830192909101906001016150c7565b50505092915050565b8015158114610d9857600080fd5b6000806040838503121561511257600080fd5b61511b83614dca565b9150602083013561512b816150f1565b809150509250929050565b6000806000806080858703121561514c57600080fd5b61515585614dca565b935061516360208601614dca565b925060408501359150606085013567ffffffffffffffff81111561518657600080fd5b8501601f8101871361519757600080fd5b6151a687823560208401614f84565b91505092959194509250565b600080604083850312156151c557600080fd5b6151ce83614dca565b915061504860208401614dca565b6000806000806000608086880312156151f457600080fd5b8535945061520460208701614dca565b935060408601359250606086013567ffffffffffffffff8082111561522857600080fd5b818801915088601f83011261523c57600080fd5b81358181111561524b57600080fd5b8960208260051b850101111561526057600080fd5b9699959850939650602001949392505050565b600181811c9082168061528757607f821691505b6020821081036152a757634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156152bf57600080fd5b8151614cf5816150f1565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156152fa576152fa6152ca565b500290565b60008261531c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610bce57610bce6152ca565b601f821115610d5657600081815260208120601f850160051c8101602086101561535b5750805b601f850160051c820191505b8181101561537a57828155600101615367565b505050505050565b815167ffffffffffffffff81111561539c5761539c614e0b565b6153b0816153aa8454615273565b84615334565b602080601f8311600181146153e557600084156153cd5750858301515b600019600386901b1c1916600185901b17855561537a565b600085815260208120601f198616915b82811015615414578886015182559484019460019091019084016153f5565b50858210156154325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610bce57610bce6152ca565b60008451615467818460208901614d4e565b84519083019061547b818360208901614d4e565b845191019061548e818360208801614d4e565b0195945050505050565b6000600182016154aa576154aa6152ca565b5060010190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526154e36080830184614d72565b9695505050505050565b6000602082840312156154ff57600080fd5b8151614cf581614d1b565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b845d3cf09f3b5d8ada5d1db022adcedf46cf2269080b22793a58909ccb0e5e364736f6c6343000810003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000001a178ecf995eba436ad2bc89364413c4d0d43472000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000000000000000001147616c6163746963204761796c6f726473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000247470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576a6d4e763268464a54746d5037756b67435a36356e437a7566374e35484d634474466251617579737a524e2f00000000000000000000
Deployed Bytecode
0x6080604052600436106103b85760003560e01c80636f8b44b0116101f2578063b78928271161010d578063e55a8ee9116100a0578063f04e283e1161006f578063f04e283e14610b3d578063f2fde38b14610b5d578063fcf0f0d314610b7d578063fee81cf414610b9257600080fd5b8063e55a8ee914610aab578063e985e9c514610ac1578063ea322fd214610b0a578063ebddbdff14610b2a57600080fd5b8063d5391393116100dc578063d539139314610a43578063d547cfb714610a58578063d7533f0214610a6d578063db5efaa914610a8b57600080fd5b8063b7892827146109cd578063b88d4fde146109ed578063b8fc105114610a0d578063c87b56dd14610a2357600080fd5b80638be5b5f9116101855780639a8a0b7e116101545780639a8a0b7e14610964578063a06d05291461097a578063a22cb4651461098d578063ad028061146109ad57600080fd5b80638be5b5f9146109015780638da5cb5b1461091657806395d89b411461092f578063993539191461094457600080fd5b8063753c96a5116101c1578063753c96a51461089457806375b238fc146108b457806375ce317a146108c95780638631890e146108eb57600080fd5b80636f8b44b01461081257806370a0823114610832578063715018a6146108525780637359e41f1461086757600080fd5b80632de94807116102e2578063514e62fc116102755780635ade573d116102445780635ade573d146107925780635bd5c9b7146107b25780636352211e146107d257806367291c00146107f257600080fd5b8063514e62fc1461070657806354d1f13d1461073d57806355f804b3146107525780635826edfb1461077257600080fd5b806342842e0e116102b157806342842e0e1461068657806342966c68146106a657806346b800ff146106c65780634a4ee7b1146106e657600080fd5b80632de94807146105fd57806332cb6b0c1461062e57806341da8d8d1461064457806341f434341461066457600080fd5b80631cd64df41161035a5780632569296211610329578063256929621461056957806328ef5e7f1461057e5780632a55205a1461059e5780632d7eae66146105dd57600080fd5b80631cd64df4146104dc5780631d80009a1461051357806323b872dd14610529578063241d96511461054957600080fd5b8063095ea7b311610396578063095ea7b31461044c57806313a661ed1461046e578063183a4f6e1461049c5780631c10893f146104bc57600080fd5b806301ffc9a7146103bd57806306fdde03146103f2578063081812fc14610414575b600080fd5b3480156103c957600080fd5b506103dd6103d8366004614d31565b610bc3565b60405190151581526020015b60405180910390f35b3480156103fe57600080fd5b50610407610bd4565b6040516103e99190614d9e565b34801561042057600080fd5b5061043461042f366004614db1565b610c66565b6040516001600160a01b0390911681526020016103e9565b34801561045857600080fd5b5061046c610467366004614de1565b610c8d565b005b34801561047a57600080fd5b5061048e610489366004614e52565b610d5b565b6040519081526020016103e9565b3480156104a857600080fd5b5061046c6104b7366004614db1565b610d8e565b3480156104c857600080fd5b5061046c6104d7366004614de1565b610d9b565b3480156104e857600080fd5b506103dd6104f7366004614de1565b60609190911b638b78c6d8176000908152602090205481161490565b34801561051f57600080fd5b5061048e600e5481565b34801561053557600080fd5b5061046c610544366004614f0b565b610dc4565b34801561055557600080fd5b5061046c610564366004614f47565b610e9d565b34801561057557600080fd5b5061046c610ef6565b34801561058a57600080fd5b5061046c610599366004614db1565b610f47565b3480156105aa57600080fd5b506105be6105b9366004614f62565b611204565b604080516001600160a01b0390931683526020830191909152016103e9565b3480156105e957600080fd5b5061046c6105f8366004614db1565b6112bf565b34801561060957600080fd5b5061048e610618366004614f47565b60601b638b78c6d8176000908152602090205490565b34801561063a57600080fd5b5061048e600a5481565b34801561065057600080fd5b5061046c61065f366004614f47565b6112fe565b34801561067057600080fd5b506104346daaeb6d7670e522a718067333cd4e81565b34801561069257600080fd5b5061046c6106a1366004614f0b565b61142f565b3480156106b257600080fd5b5061046c6106c1366004614db1565b6114fd565b3480156106d257600080fd5b5061046c6106e1366004614f47565b611596565b3480156106f257600080fd5b5061046c610701366004614de1565b6115f2565b34801561071257600080fd5b506103dd610721366004614de1565b60609190911b638b78c6d8176000908152602090205416151590565b34801561074957600080fd5b5061046c611617565b34801561075e57600080fd5b5061046c61076d366004614fdc565b611654565b34801561077e57600080fd5b5061048e61078d366004615025565b611699565b34801561079e57600080fd5b5061046c6107ad366004614db1565b61186d565b3480156107be57600080fd5b50600c54610434906001600160a01b031681565b3480156107de57600080fd5b506104346107ed366004614db1565b611a6b565b3480156107fe57600080fd5b5061046c61080d366004615051565b611ad0565b34801561081e57600080fd5b5061046c61082d366004614db1565b611bbc565b34801561083e57600080fd5b5061048e61084d366004614f47565b611bfb565b34801561085e57600080fd5b5061046c611c95565b34801561087357600080fd5b50610887610882366004614db1565b611ce3565b6040516103e99190615076565b3480156108a057600080fd5b5061046c6108af366004614db1565b611d2b565b3480156108c057600080fd5b5061048e600181565b3480156108d557600080fd5b506108de611d6a565b6040516103e991906150bd565b3480156108f757600080fd5b5061048e60095481565b34801561090d57600080fd5b506108de611e36565b34801561092257600080fd5b50638b78c6d81954610434565b34801561093b57600080fd5b50610407611f16565b34801561095057600080fd5b5061046c61095f366004614db1565b611f25565b34801561097057600080fd5b5061048e60115481565b61046c610988366004615051565b611f64565b34801561099957600080fd5b5061046c6109a83660046150ff565b6123bf565b3480156109b957600080fd5b5061048e6109c8366004614db1565b612483565b3480156109d957600080fd5b5061046c6109e8366004614db1565b61253a565b3480156109f957600080fd5b5061046c610a08366004615136565b612579565b348015610a1957600080fd5b5061048e600b5481565b348015610a2f57600080fd5b50610407610a3e366004614db1565b612655565b348015610a4f57600080fd5b5061048e600481565b348015610a6457600080fd5b506104076126f3565b348015610a7957600080fd5b506040516202a30081526020016103e9565b348015610a9757600080fd5b5061046c610aa6366004614db1565b612702565b348015610ab757600080fd5b5061048e60125481565b348015610acd57600080fd5b506103dd610adc3660046151b2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610b1657600080fd5b5061046c610b25366004614db1565b612741565b61046c610b383660046151dc565b612780565b348015610b4957600080fd5b5061046c610b58366004614f47565b612c33565b348015610b6957600080fd5b5061046c610b78366004614f47565b612cb5565b348015610b8957600080fd5b5061048e600281565b348015610b9e57600080fd5b5061048e610bad366004614f47565b60601b63389a75e1176000908152602090205490565b6000610bce82612d1c565b92915050565b606060008054610be390615273565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0f90615273565b8015610c5c5780601f10610c3157610100808354040283529160200191610c5c565b820191906000526020600020905b815481529060010190602001808311610c3f57829003601f168201915b5050505050905090565b6000610c7182612d5a565b506000908152600460205260409020546001600160a01b031690565b816daaeb6d7670e522a718067333cd4e3b15610d4c57604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610cfb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1f91906152ad565b610d4c57604051633b79c77360e21b81526001600160a01b03821660048201526024015b60405180910390fd5b610d568383612dbe565b505050565b600060208201825160051b81015b808214610d8757600160ff8351161b83179250602082019150610d69565b5050919050565b610d983382612eea565b50565b638b78c6d819543314610db6576382b429006000526004601cfd5b610dc08282612f3b565b5050565b826daaeb6d7670e522a718067333cd4e3b15610e8c57336001600160a01b03821603610dfa57610df5848484612f87565b610e97565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610e49573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6d91906152ad565b610e8c57604051633b79c77360e21b8152336004820152602401610d43565b610e97848484612f87565b50505050565b6001638b78c6d83360601b176000528060206000205416610ed357638b78c6d819543314610ed3576382b429006000526004601cfd5b50600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006202a30067ffffffffffffffff164201905063389a75e13360601b1760005280602060002055337fdbf36a107da19e49527a7176a1babf963b4b0ff8cde35ee35d6cd8f1f9ac7e1d600080a250565b6002600117638b78c6d83360601b176000528060206000205416610f8057638b78c6d819543314610f80576382b429006000526004601cfd5b81600103610fb9575050600f80546aff000000000000000000001981166a01000000000000000000009182900460ff1615909102179055565b81600203610ff4575050600f80546bff00000000000000000000001981166b0100000000000000000000009182900460ff1615909102179055565b81600303611031575050600f80546cff0000000000000000000000001981166c010000000000000000000000009182900460ff1615909102179055565b81600403611070575050600f80546dff000000000000000000000000001981166d01000000000000000000000000009182900460ff1615909102179055565b816005036110a6575050600f80546eff0000000000000000000000000000198116600160701b9182900460ff1615909102179055565b816006036110ec575050600f80547fffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffff8116600160781b9182900460ff1615909102179055565b81600703611132575050600f80547fffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffff8116600160801b9182900460ff1615909102179055565b81600803611178575050600f80547fffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffff8116600160881b9182900460ff1615909102179055565b816009036111be575050600f80547fffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffff8116600160901b9182900460ff1615909102179055565b81600a03610dc0575050600f80547fffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffff8116600160981b9182900460ff1615909102179055565b60008281526008602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046bffffffffffffffffffffffff169282019290925282916112835750604080518082019091526007546001600160a01b0381168252600160a01b90046bffffffffffffffffffffffff1660208201525b6020810151600090612710906112a7906bffffffffffffffffffffffff16876152e0565b6112b191906152ff565b915196919550909350505050565b6002600117638b78c6d83360601b1760005280602060002054166112f857638b78c6d8195433146112f8576382b429006000526004601cfd5b50600e55565b3360601b638b78c6d81760009081526020902054600790811661133657638b78c6d819543314611336576382b429006000526004601cfd5b601d54611341612ffe565b61134c906001615321565b1061138e5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b61139c603280546001019055565b610dc082601c54601b54601a546019546018546017546016546015546014546013546113c6612ffe565b6113d09190615321565b6113da9190615321565b6113e49190615321565b6113ee9190615321565b6113f89190615321565b6114029190615321565b61140c9190615321565b6114169190615321565b6114209190615321565b61142a9190615321565b61300e565b826daaeb6d7670e522a718067333cd4e3b156114f257336001600160a01b0382160361146057610df5848484613028565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114d391906152ad565b6114f257604051633b79c77360e21b8152336004820152602401610d43565b610e97848484613028565b600d546001600160a01b031633148061151b575061151b3382613043565b61158d5760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206e6f7220617070726f7665640000000000000000000000000000000000006064820152608401610d43565b610d98816130c1565b6002600117638b78c6d83360601b1760005280602060002054166115cf57638b78c6d8195433146115cf576382b429006000526004601cfd5b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b638b78c6d81954331461160d576382b429006000526004601cfd5b610dc08282612eea565b63389a75e13360601b176000526000602060002055337ffa7b8eab7da67f412cc9575ed43464468f9bfbae89d1675917346ca6d8fe3c92600080a2565b6002600117638b78c6d83360601b17600052806020600020541661168d57638b78c6d81954331461168d576382b429006000526004601cfd5b6010610d568382615382565b6000826001036116d0576001600160a01b0382166000908152601e60205260409020546012546116c99190615442565b9050610bce565b826002036116fe576001600160a01b0382166000908152601f60205260409020546011546116c99190615442565b8260030361172b576001600160a01b03821660009081526020805260409020546011546116c99190615442565b82600403611759576001600160a01b0382166000908152602160205260409020546011546116c99190615442565b82600503611787576001600160a01b0382166000908152602260205260409020546011546116c99190615442565b826006036117b5576001600160a01b0382166000908152602360205260409020546011546116c99190615442565b826007036117e3576001600160a01b0382166000908152602460205260409020546011546116c99190615442565b82600803611811576001600160a01b0382166000908152602560205260409020546011546116c99190615442565b8260090361183f576001600160a01b0382166000908152602660205260409020546011546116c99190615442565b82600a03610bce576001600160a01b0382166000908152602760205260409020546011546116c99190615442565b6002600117638b78c6d83360601b1760005280602060002054166118a657638b78c6d8195433146118a6576382b429006000526004601cfd5b816001036118c457600f805460ff19811660ff909116151790555050565b816002036118eb575050600f805461ff001981166101009182900460ff1615909102179055565b81600303611914575050600f805462ff0000198116620100009182900460ff1615909102179055565b8160040361193f575050600f805463ff00000019811663010000009182900460ff1615909102179055565b8160050361196c575050600f805464ff000000001981166401000000009182900460ff1615909102179055565b8160060361199b575050600f805465ff0000000000198116650100000000009182900460ff1615909102179055565b816007036119cc575050600f805466ff00000000000019811666010000000000009182900460ff1615909102179055565b816008036119ff575050600f805467ff000000000000001981166701000000000000009182900460ff1615909102179055565b81600903611a34575050600f805468ff0000000000000000198116680100000000000000009182900460ff1615909102179055565b81600a03610dc0575050600f805469ff00000000000000000019811669010000000000000000009182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b031680610bce5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d43565b3360601b638b78c6d817600090815260209020546007908116611b0857638b78c6d819543314611b08576382b429006000526004601cfd5b83600103611b1a57610df58383613164565b83600203611b2c57610df583836131ff565b83600303611b3e57610df5838361329d565b83600403611b5057610df5838361333e565b83600503611b6257610df583836133e2565b83600603611b7457610df58383613489565b83600703611b8657610df58383613533565b83600803611b9857610df583836135e0565b83600903611baa57610df58383613690565b83600a03610e9757610e978383613743565b6002600117638b78c6d83360601b176000528060206000205416611bf557638b78c6d819543314611bf5576382b429006000526004601cfd5b50600a55565b60006001600160a01b038216611c795760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d43565b506001600160a01b031660009081526003602052604090205490565b638b78c6d819543314611cb0576382b429006000526004601cfd5b6000337f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36000638b78c6d81955565b606060206040510160005b8082526001841660051b820191508360011c93508315611d1057600101611cee565b5060405191508060405260208201810360051c825250919050565b6002600117638b78c6d83360601b176000528060206000205416611d6457638b78c6d819543314611d64576382b429006000526004601cfd5b50600955565b611d72614cfc565b506040805161014081018252600f5460ff8082161515835261010080830482161515602085015262010000830482161515948401949094526301000000820481161515606084015264010000000082048116151560808401526501000000000082048116151560a0840152660100000000000082048116151560c084015267010000000000000082048116151560e0840152680100000000000000008204811615159383019390935269010000000000000000009004909116151561012082015290565b611e3e614cfc565b506040805161014081018252600f5460ff6a010000000000000000000082048116151583526b01000000000000000000000082048116151560208401526c01000000000000000000000000820481161515938301939093526d01000000000000000000000000008104831615156060830152600160701b8104831615156080830152600160781b81048316151560a0830152600160801b81048316151560c0830152600160881b81048316151560e0830152600160901b810483161515610100830152600160981b9004909116151561012082015290565b606060018054610be390615273565b6002600117638b78c6d83360601b176000528060206000205416611f5e57638b78c6d819543314611f5e576382b429006000526004601cfd5b50601255565b611f6c6137f9565b80600954611f7a91906152e0565b341015611fc95760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e74207061796d656e740000000000000000000000006044820152606401610d43565b8260010361202457600f5460ff166120155760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613852565b61237b565b8260020361207f57600f54610100900460ff166120755760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613929565b826003036120db57600f5462010000900460ff166120d15760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f82826139b3565b8260040361213857600f546301000000900460ff1661212e5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613a3d565b8260050361219657600f54640100000000900460ff1661218c5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613ac7565b826006036121f557600f5465010000000000900460ff166121eb5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613b51565b8260070361225557600f546601000000000000900460ff1661224b5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613bdb565b826008036122b657600f54670100000000000000900460ff166122ac5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613c65565b8260090361231857600f5468010000000000000000900460ff1661230e5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61201f8282613cef565b82600a0361237b57600f546901000000000000000000900460ff166123715760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61237b8282613d79565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156123b4573d6000803e3d6000fd5b50610d566001600655565b816daaeb6d7670e522a718067333cd4e3b1561247957604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561242d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245191906152ad565b61247957604051633b79c77360e21b81526001600160a01b0382166004820152602401610d43565b610d568383613e03565b60008160010361249557602854610bce565b816002036124a557602954610bce565b816003036124b557602a54610bce565b816004036124c557602b54610bce565b816005036124d557602c54610bce565b816006036124e557602d54610bce565b816007036124f557602e54610bce565b8160080361250557602f54610bce565b8160090361251557603054610bce565b81600a0361252557603154610bce565b81600b0361253557603254610bce565b919050565b6002600117638b78c6d83360601b17600052806020600020541661257357638b78c6d819543314612573576382b429006000526004601cfd5b50601155565b836daaeb6d7670e522a718067333cd4e3b1561264257336001600160a01b038216036125b0576125ab85858585613e0e565b61264e565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156125ff573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061262391906152ad565b61264257604051633b79c77360e21b8152336004820152602401610d43565b61264e85858585613e0e565b5050505050565b606061266082612d5a565b60408051808201909152600581527f2e6a736f6e0000000000000000000000000000000000000000000000000000006020820152600061269e6126f3565b905060008151116126be57604051806020016040528060008152506126eb565b806126c885613e86565b836040516020016126db93929190615455565b6040516020818303038152906040525b949350505050565b606060108054610be390615273565b6002600117638b78c6d83360601b17600052806020600020541661273b57638b78c6d81954331461273b576382b429006000526004601cfd5b50600b55565b6002600117638b78c6d83360601b17600052806020600020541661277a57638b78c6d81954331461277a576382b429006000526004601cfd5b50601d55565b6127886137f9565b612793848383613f26565b6127c9576040517f09bde33900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b826009546127d791906152e0565b3410156128265760405162461bcd60e51b815260206004820152601460248201527f496e73756666696369656e74207061796d656e740000000000000000000000006044820152606401610d43565b8460010361288f57600f546a0100000000000000000000900460ff166128805760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613852565b612bef565b846002036128f457600f546b010000000000000000000000900460ff166128ea5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613929565b8460030361295a57600f546c01000000000000000000000000900460ff166129505760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a84846139b3565b846004036129c157600f546d0100000000000000000000000000900460ff166129b75760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613a3d565b84600503612a1e57600f54600160701b900460ff16612a145760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613ac7565b84600603612a7b57600f54600160781b900460ff16612a715760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613b51565b84600703612ad857600f54600160801b900460ff16612ace5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613bdb565b84600803612b3557600f54600160881b900460ff16612b2b5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613c65565b84600903612b9257600f54600160901b900460ff16612b885760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b61288a8484613cef565b84600a03612bef57600f54600160981b900460ff16612be55760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610d43565b612bef8484613d79565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015612c28573d6000803e3d6000fd5b5061264e6001600655565b638b78c6d819543314612c4e576382b429006000526004601cfd5b8060601b60601c905063389a75e18160601b1760005260206000208054421115612c8057636f5e88186000526004601cfd5b600081555080337f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3638b78c6d81955565b638b78c6d819543314612cd0576382b429006000526004601cfd5b6001600160a01b031680612cec57637448fbae6000526004601cfd5b80337f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3638b78c6d81955565b60006001600160e01b031982167f2a55205a000000000000000000000000000000000000000000000000000000001480610bce5750610bce82613fbe565b6000818152600260205260409020546001600160a01b0316610d985760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d43565b6000612dc982611a6b565b9050806001600160a01b0316836001600160a01b031603612e525760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610d43565b336001600160a01b0382161480612e6e5750612e6e8133610adc565b612ee05760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d43565b610d568383614059565b638b78c6d88260601b176000526020600020805482811681189050808255808460601b60601c7f715ad5ce61fc9595c7b415289d59cf203f23a94fa06f04af7e489a0a76e1fe26600080a350505050565b638b78c6d88260601b17600052602060002081815417808255808460601b60601c7f715ad5ce61fc9595c7b415289d59cf203f23a94fa06f04af7e489a0a76e1fe26600080a350505050565b612f913382613043565b612ff35760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610d43565b610d568383836140c7565b600061300960325490565b905090565b610dc08282604051806020016040528060008152506142cd565b610d5683838360405180602001604052806000815250612579565b60008061304f83611a6b565b9050806001600160a01b0316846001600160a01b0316148061309657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806126eb5750836001600160a01b03166130af84610c66565b6001600160a01b031614949350505050565b60006130cc82611a6b565b90506130dc81600084600161434b565b6130e582611a6b565b600083815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0385168085526003845282852080546000190190558785526002909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6013546001826131726143d3565b61317c9190615321565b6131869190615442565b106131c85760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d56576131e1602880546001019055565b6131ed8361142a6143d3565b806131f781615498565b9150506131cb565b60145460018261320d6143de565b6132179190615321565b6132219190615442565b106132635760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761327c602980546001019055565b61328b836013546114206143de565b8061329581615498565b915050613266565b6015546001826132ab6143e9565b6132b59190615321565b6132bf9190615442565b106133015760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761331a602a80546001019055565b61332c836014546013546114166143e9565b8061333681615498565b915050613304565b60165460018261334c6143f4565b6133569190615321565b6133609190615442565b106133a25760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d56576133bb602b80546001019055565b6133d08360155460145460135461140c6143f4565b806133da81615498565b9150506133a5565b6017546001826133f06143ff565b6133fa9190615321565b6134049190615442565b106134465760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761345f602c80546001019055565b613477836016546015546014546013546114026143ff565b8061348181615498565b915050613449565b60185460018261349761440a565b6134a19190615321565b6134ab9190615442565b106134ed5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d5657613506602d80546001019055565b613521836017546016546015546014546013546113f861440a565b8061352b81615498565b9150506134f0565b601954600182613541614415565b61354b9190615321565b6135559190615442565b106135975760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d56576135b0602e80546001019055565b6135ce836018546017546016546015546014546013546113ee614415565b806135d881615498565b91505061359a565b601a546001826135ee614420565b6135f89190615321565b6136029190615442565b106136445760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761365d602f80546001019055565b61367e836019546018546017546016546015546014546013546113e4614420565b8061368881615498565b915050613647565b601b5460018261369e61442b565b6136a89190615321565b6136b29190615442565b106136f45760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d565761370d603080546001019055565b61373183601a546019546018546017546016546015546014546013546113da61442b565b8061373b81615498565b9150506136f7565b601c54600182613751614436565b61375b9190615321565b6137659190615442565b106137a75760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b6044820152606401610d43565b60005b81811015610d56576137c0603180546001019055565b6137e783601b54601a546019546018546017546016546015546014546013546113d0614436565b806137f181615498565b9150506137aa565b60026006540361384b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610d43565b6002600655565b600b54613860600183615442565b106138b75760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b60006138c283614441565b11156138d7576138d28282614467565b61391f565b60405162461bcd60e51b815260206004820152601660248201527f4d696e74696e67206c696d6974206578636565646564000000000000000000006044820152606401610d43565b610dc08282613164565b600b54613937600183615442565b1061398e5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b600061399983614498565b11156138d7576139a982826144be565b610dc082826131ff565b600b546139c1600183615442565b10613a185760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613a23836144e6565b11156138d757613a33828261450b565b610dc0828261329d565b600b54613a4b600183615442565b10613aa25760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613aad83614532565b11156138d757613abd8282614558565b610dc0828261333e565b600b54613ad5600183615442565b10613b2c5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613b3783614580565b11156138d757613b4782826145a6565b610dc082826133e2565b600b54613b5f600183615442565b10613bb65760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613bc1836145ce565b11156138d757613bd182826145f4565b610dc08282613489565b600b54613be9600183615442565b10613c405760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613c4b8361461c565b11156138d757613c5b8282614642565b610dc08282613533565b600b54613c73600183615442565b10613cca5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613cd58361466a565b11156138d757613ce58282614690565b610dc082826135e0565b600b54613cfd600183615442565b10613d545760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613d5f836146b8565b11156138d757613d6f82826146de565b610dc08282613690565b600b54613d87600183615442565b10613dde5760405162461bcd60e51b815260206004820152602160248201527f547279696e6720746f206d696e7420746f6f206d616e7920617420612074696d6044820152606560f81b6064820152608401610d43565b6000613de983614706565b11156138d757613df9828261472c565b610dc08282613743565b610dc0338383614754565b613e183383613043565b613e7a5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608401610d43565b610e9784848484614822565b60606000613e93836148a0565b600101905060008167ffffffffffffffff811115613eb357613eb3614e0b565b6040519080825280601f01601f191660200182016040528015613edd576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8504945084613ee757509392505050565b604080516001600160a01b038516602082015260009182910160408051601f1981840301815282825280516020918201209083015201604051602081830303815290604052805190602001209050613fb584848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600e549150849050614982565b95945050505050565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061402157506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bce57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610bce565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061408e82611a6b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b826001600160a01b03166140da82611a6b565b6001600160a01b03161461413e5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d43565b6001600160a01b0382166141b95760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d43565b6141c6838383600161434b565b826001600160a01b03166141d982611a6b565b6001600160a01b03161461423d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610d43565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6142d78383614998565b6142e46000848484614b31565b610d565760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d43565b6001811115610e97576001600160a01b03841615614391576001600160a01b0384166000908152600360205260408120805483929061438b908490615442565b90915550505b6001600160a01b03831615610e97576001600160a01b038316600090815260036020526040812080548392906143c8908490615321565b909155505050505050565b600061300960285490565b600061300960295490565b6000613009602a5490565b6000613009602b5490565b6000613009602c5490565b6000613009602d5490565b6000613009602e5490565b6000613009602f5490565b600061300960305490565b600061300960315490565b6001600160a01b0381166000908152601e6020526040812054601254610bce9190615442565b6001600160a01b0382166000908152601e60205260408120805483929061448f908490615321565b90915550505050565b6001600160a01b0381166000908152601f6020526040812054601154610bce9190615442565b6001600160a01b0382166000908152601f60205260408120805483929061448f908490615321565b6001600160a01b0381166000908152602080526040812054601154610bce9190615442565b6001600160a01b03821660009081526020805260408120805483929061448f908490615321565b6001600160a01b038116600090815260216020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602160205260408120805483929061448f908490615321565b6001600160a01b038116600090815260226020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602260205260408120805483929061448f908490615321565b6001600160a01b038116600090815260236020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602360205260408120805483929061448f908490615321565b6001600160a01b038116600090815260246020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602460205260408120805483929061448f908490615321565b6001600160a01b038116600090815260256020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602560205260408120805483929061448f908490615321565b6001600160a01b038116600090815260266020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602660205260408120805483929061448f908490615321565b6001600160a01b038116600090815260276020526040812054601154610bce9190615442565b6001600160a01b0382166000908152602760205260408120805483929061448f908490615321565b816001600160a01b0316836001600160a01b0316036147b55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d43565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61482d8484846140c7565b61483984848484614b31565b610e975760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d43565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106148e9577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef81000000008310614915576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc10000831061493357662386f26fc10000830492506010015b6305f5e100831061494b576305f5e100830492506008015b612710831061495f57612710830492506004015b60648310614971576064830492506002015b600a8310610bce5760010192915050565b60008261498f8584614c7d565b14949350505050565b6001600160a01b0382166149ee5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d43565b6000818152600260205260409020546001600160a01b031615614a535760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d43565b614a6160008383600161434b565b6000818152600260205260409020546001600160a01b031615614ac65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d43565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15614c7257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290614b759033908990889088906004016154b1565b6020604051808303816000875af1925050508015614bb0575060408051601f3d908101601f19168201909252614bad918101906154ed565b60015b614c58573d808015614bde576040519150601f19603f3d011682016040523d82523d6000602084013e614be3565b606091505b508051600003614c505760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401610d43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506126eb565b506001949350505050565b600081815b8451811015614cc257614cae82868381518110614ca157614ca161550a565b6020026020010151614cca565b915080614cba81615498565b915050614c82565b509392505050565b6000818310614ce6576000828152602084905260409020614cf5565b60008381526020839052604090205b9392505050565b604051806101400160405280600a906020820280368337509192915050565b6001600160e01b031981168114610d9857600080fd5b600060208284031215614d4357600080fd5b8135614cf581614d1b565b60005b83811015614d69578181015183820152602001614d51565b50506000910152565b60008151808452614d8a816020860160208601614d4e565b601f01601f19169290920160200192915050565b602081526000614cf56020830184614d72565b600060208284031215614dc357600080fd5b5035919050565b80356001600160a01b038116811461253557600080fd5b60008060408385031215614df457600080fd5b614dfd83614dca565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715614e4a57614e4a614e0b565b604052919050565b60006020808385031215614e6557600080fd5b823567ffffffffffffffff80821115614e7d57600080fd5b818501915085601f830112614e9157600080fd5b813581811115614ea357614ea3614e0b565b8060051b9150614eb4848301614e21565b8181529183018401918481019088841115614ece57600080fd5b938501935b83851015614eff578435925060ff83168314614eef5760008081fd5b8282529385019390850190614ed3565b98975050505050505050565b600080600060608486031215614f2057600080fd5b614f2984614dca565b9250614f3760208501614dca565b9150604084013590509250925092565b600060208284031215614f5957600080fd5b614cf582614dca565b60008060408385031215614f7557600080fd5b50508035926020909101359150565b600067ffffffffffffffff831115614f9e57614f9e614e0b565b614fb1601f8401601f1916602001614e21565b9050828152838383011115614fc557600080fd5b828260208301376000602084830101529392505050565b600060208284031215614fee57600080fd5b813567ffffffffffffffff81111561500557600080fd5b8201601f8101841361501657600080fd5b6126eb84823560208401614f84565b6000806040838503121561503857600080fd5b8235915061504860208401614dca565b90509250929050565b60008060006060848603121561506657600080fd5b83359250614f3760208501614dca565b6020808252825182820181905260009190848201906040850190845b818110156150b157835160ff1683529284019291840191600101615092565b50909695505050505050565b6101408101818360005b600a8110156150e857815115158352602092830192909101906001016150c7565b50505092915050565b8015158114610d9857600080fd5b6000806040838503121561511257600080fd5b61511b83614dca565b9150602083013561512b816150f1565b809150509250929050565b6000806000806080858703121561514c57600080fd5b61515585614dca565b935061516360208601614dca565b925060408501359150606085013567ffffffffffffffff81111561518657600080fd5b8501601f8101871361519757600080fd5b6151a687823560208401614f84565b91505092959194509250565b600080604083850312156151c557600080fd5b6151ce83614dca565b915061504860208401614dca565b6000806000806000608086880312156151f457600080fd5b8535945061520460208701614dca565b935060408601359250606086013567ffffffffffffffff8082111561522857600080fd5b818801915088601f83011261523c57600080fd5b81358181111561524b57600080fd5b8960208260051b850101111561526057600080fd5b9699959850939650602001949392505050565b600181811c9082168061528757607f821691505b6020821081036152a757634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156152bf57600080fd5b8151614cf5816150f1565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156152fa576152fa6152ca565b500290565b60008261531c57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610bce57610bce6152ca565b601f821115610d5657600081815260208120601f850160051c8101602086101561535b5750805b601f850160051c820191505b8181101561537a57828155600101615367565b505050505050565b815167ffffffffffffffff81111561539c5761539c614e0b565b6153b0816153aa8454615273565b84615334565b602080601f8311600181146153e557600084156153cd5750858301515b600019600386901b1c1916600185901b17855561537a565b600085815260208120601f198616915b82811015615414578886015182559484019460019091019084016153f5565b50858210156154325787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610bce57610bce6152ca565b60008451615467818460208901614d4e565b84519083019061547b818360208901614d4e565b845191019061548e818360208801614d4e565b0195945050505050565b6000600182016154aa576154aa6152ca565b5060010190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526154e36080830184614d72565b9695505050505050565b6000602082840312156154ff57600080fd5b8151614cf581614d1b565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220b845d3cf09f3b5d8ada5d1db022adcedf46cf2269080b22793a58909ccb0e5e364736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000001200000000000000000000000001a178ecf995eba436ad2bc89364413c4d0d43472000000000000000000000000000000000000000000000000016345785d8a0000000000000000000000000000000000000000000000000000000000000000001147616c6163746963204761796c6f726473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000247470000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d576a6d4e763268464a54746d5037756b67435a36356e437a7566374e35484d634474466251617579737a524e2f00000000000000000000
-----Decoded View---------------
Arg [0] : tokenName (string): Galactic Gaylords
Arg [1] : tokenSymbol (string): GG
Arg [2] : customBaseURI_ (string): ipfs://QmWjmNv2hFJTtmP7ukgCZ65nCzuf7N5HMcDtFbQauyszRN/
Arg [3] : fundingrecipient (address): 0x1a178ecF995eba436aD2bc89364413C4D0D43472
Arg [4] : planetPrice (uint256): 100000000000000000
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 0000000000000000000000001a178ecf995eba436ad2bc89364413c4d0d43472
Arg [4] : 000000000000000000000000000000000000000000000000016345785d8a0000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [6] : 47616c6163746963204761796c6f726473000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 4747000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [10] : 697066733a2f2f516d576a6d4e763268464a54746d5037756b67435a36356e43
Arg [11] : 7a7566374e35484d634474466251617579737a524e2f00000000000000000000
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.