Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
4,444 GOMR
Holders
489
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
20 GOMRLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GOMR
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// // // ______ ______ ______ ______ __ __ ______ ______ ______ __ __ __ __ ______ ______ ______ __ __ // /\ ___\ /\ ___\ /\__ _\ /\ __ \ /\ \/\ \ /\__ _\ /\__ _\ /\ __ \ /\ "-./ \ /\ \_\ \ /\ == \ /\ __ \ /\ __ \ /\ "-./ \ // \ \ \__ \ \ \ __\ \/_/\ \/ \ \ \/\ \ \ \ \_\ \ \/_/\ \/ \/_/\ \/ \ \ __ \ \ \ \-./\ \ \ \____ \ \ \ __< \ \ \/\ \ \ \ \/\ \ \ \ \-./\ \ // \ \_____\ \ \_____\ \ \_\ \ \_____\ \ \_____\ \ \_\ \ \_\ \ \_\ \_\ \ \_\ \ \_\ \/\_____\ \ \_\ \_\ \ \_____\ \ \_____\ \ \_\ \ \_\ // \/_____/ \/_____/ \/_/ \/_____/ \/_____/ \/_/ \/_/ \/_/\/_/ \/_/ \/_/ \/_____/ \/_/ /_/ \/_____/ \/_____/ \/_/ \/_/ // // // // SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; import "./ERC721AQueryable.sol"; contract GOMR is ERC721AQueryable, Ownable { using Strings for uint256; mapping (address => uint256) private mintedWL; mapping (address => uint256) private mintedPresale; bytes32 public merkleRootPresale = ""; bytes32 public merkleRootWL = ""; uint256 public maxSupply = 4444; uint256 private pricePresale = 0.15 ether; uint256 private priceWL = 0.2 ether; uint256 private pricePublic = 0.25 ether; // presale, max per wallet: 4, wl: 3, public: 10 uint256 public maxPerTx = 10; uint256 public maxPerWalletPresale = 4; uint256 public maxPerWalletWL = 3; string private baseURI = ""; string public provenance = ""; string public uriNotRevealed = ""; uint256 public saleStatus = 0; // 0 - presale, 1 - whitelist, 2 - public bool public paused = true; bool public isRevealed; event Minted(address caller); constructor() ERC721A("Get Outta My Room!", "GOMR") {} function mintPublic(uint256 qty) external payable{ require(!paused, "Minting is paused"); require(saleStatus == 2, 'Public minting not enabled'); uint256 supply = totalSupply(); require(supply + qty <= maxSupply, "Sorry, not enough left!"); require(qty <= maxPerTx, "Sorry, too many per transaction"); require(msg.value >= pricePublic * qty, "Sorry, not enough amount sent!"); _safeMint(msg.sender, qty); emit Minted(msg.sender); } // Presale or whitelist mint function mintPresaleOrWL(uint256 qty, bytes32[] memory proof) external payable { require(saleStatus < 2, 'We are already on public sale'); require(!paused, "Minting is paused"); uint256 supply = totalSupply(); uint256 price = priceWL; if(saleStatus == 0){ // Presale bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(_verify(leaf, proof, false), "Sorry, you are not listed for presale"); require(mintedPresale[msg.sender] < maxPerWalletPresale, "Sorry, you already own the max allowed for the presale"); price = pricePresale; }else{ // Whitelist bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(_verify(leaf, proof, true), "Sorry, you are not whitelisted"); require(mintedWL[msg.sender] < maxPerWalletWL, "Sorry, you already own the max allowed for the whitelist"); } require(supply + qty <= maxSupply, "Sorry, not enough left!"); require(qty <= maxPerTx, "Sorry, too many per transaction"); require(msg.value >= price * qty, "Sorry, not enough amount sent!"); if(saleStatus == 0){ mintedPresale[msg.sender] += qty; }else{ mintedWL[msg.sender] += qty; } _safeMint(msg.sender, qty); emit Minted(msg.sender); } // getters function remaining() public view returns(uint256){ uint256 left = maxSupply - totalSupply(); return left; } // price function getPricePresale() public view returns (uint256){ return pricePresale; } function getPriceWL() public view returns (uint256){ return priceWL; } function getPricePublic() public view returns (uint256){ return pricePublic; } // uri function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (isRevealed == false) { return uriNotRevealed; } string memory base = baseURI; return bytes(base).length > 0 ? string(abi.encodePacked(base, tokenId.toString(), ".json")) : ""; } // verify merkle tree leaf function _verify(bytes32 leaf, bytes32[] memory proof, bool wl) internal view returns (bool){ if(wl){ return MerkleProof.verify(proof, merkleRootWL, leaf); } else { return MerkleProof.verify(proof, merkleRootPresale, leaf); } } // ADMIN AREA // switches function updateSaleStatus(uint256 _status) public onlyOwner{ // changes sale status: 0 -> presale, 1 -> whitelist, 2 -> public saleStatus = _status; } function flipPaused() public onlyOwner { paused = !paused; } function flipRevealed(string memory _URI) public onlyOwner { baseURI = _URI; isRevealed = !isRevealed; } // set maxes function setMaxPerWalletPresale(uint256 _max) public onlyOwner { maxPerWalletPresale = _max; } function setMaxPerWalletWL(uint256 _max) public onlyOwner { maxPerWalletWL = _max; } function setMaxPerTx(uint256 _newMax) public onlyOwner { maxPerTx = _newMax; } // set uris function setBaseURI(string memory _URI) public onlyOwner { baseURI = _URI; } function setUriNotRevealed(string memory _URI) public onlyOwner { uriNotRevealed = _URI; } function setProvenanceHash(string memory _provenance) public onlyOwner { provenance = _provenance; } // set prices function setPricePresale(uint256 _newPrice) public onlyOwner { pricePresale = _newPrice; } function setPriceWL(uint256 _newPrice) public onlyOwner { priceWL = _newPrice; } function setPricePublic(uint256 _newPrice) public onlyOwner { pricePublic = _newPrice; } // Set merkle trees root function setMerkleRootPresale(bytes32 _merkleRoot) public onlyOwner { merkleRootPresale = _merkleRoot; } function setMerkleRootWL(bytes32 _merkleRoot) public onlyOwner { merkleRootWL = _merkleRoot; } // Admin functions function closeMinting() public onlyOwner { uint256 supply = totalSupply(); maxSupply = supply; } function mintGiveaway(address _to, uint256 qty) external onlyOwner { uint256 supply = totalSupply(); require(supply + qty <= maxSupply, "Sorry, not enough left!"); _safeMint(_to, qty); } function withdraw() onlyOwner public { require(payable(0x4eA96bFB265A47C4485a8A164917a4e8487De928).send(address(this).balance)); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import './ERC721A.sol'; error InvalidQueryRange(); /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _currentIndex) { return ownership; } ownership = _ownerships[tokenId]; if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _currentIndex; // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, _currentIndex)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownerships[i]; if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } }
// 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 // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":false,"internalType":"address","name":"caller","type":"address"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"flipRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPricePublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPriceWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWalletWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPresale","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootWL","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintPresaleOrWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMax","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerWalletPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxPerWalletWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRootWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPricePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPriceWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setUriNotRevealed","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"updateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriNotRevealed","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600b556000600c5561115c600d55670214e8348c4f0000600e556702c68af0bb140000600f556703782dace9d90000601055600a6011556004601255600360135560405180602001604052806000815250601490805190602001906200006e9291906200029c565b506040518060200160405280600081525060159080519060200190620000969291906200029c565b506040518060200160405280600081525060169080519060200190620000be9291906200029c565b5060006017556001601860006101000a81548160ff021916908315150217905550348015620000ec57600080fd5b506040518060400160405280601281526020017f476574204f75747461204d7920526f6f6d2100000000000000000000000000008152506040518060400160405280600481526020017f474f4d52000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001719291906200029c565b5080600390805190602001906200018a9291906200029c565b506200019b620001c960201b60201c565b6000819055505050620001c3620001b7620001ce60201b60201c565b620001d660201b60201c565b620003b1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002aa906200034c565b90600052602060002090601f016020900481019282620002ce57600085556200031a565b82601f10620002e957805160ff19168380011785556200031a565b828001600101855582156200031a579182015b8281111562000319578251825591602001919060010190620002fc565b5b5090506200032991906200032d565b5090565b5b80821115620003485760008160009055506001016200032e565b5090565b600060028204905060018216806200036557607f821691505b602082108114156200037c576200037b62000382565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615a7080620003c16000396000f3fe6080604052600436106103545760003560e01c80635bbb2177116101c6578063b88d4fde116100f7578063d6492d8111610095578063f2fde38b1161006f578063f2fde38b14610c13578063f9020e3314610c3c578063f968adbe14610c67578063fe0716ec14610c925761035b565b8063d6492d8114610b8f578063e985e9c514610bba578063efd0cbf914610bf75761035b565b8063c3bb0cc2116100d1578063c3bb0cc214610ad5578063c6f6f21614610afe578063c87b56dd14610b27578063d5abeb0114610b645761035b565b8063b88d4fde14610a46578063c1612d4114610a6f578063c23dc68f14610a985761035b565b80638462151c1161016457806395d89b411161013e57806395d89b411461098c57806399a2557a146109b7578063a22cb465146109f4578063ad3e31b714610a1d5761035b565b80638462151c1461090d57806387491c601461094a5780638da5cb5b146109615761035b565b80636352211e116101a05780636352211e1461085357806370a0823114610890578063715018a6146108cd57806381d8488f146108e45761035b565b80635bbb2177146107c05780635c975abb146107fd5780635daaf45d146108285761035b565b806325ee97e3116102a057806342842e0e1161023e57806354ea65851161021857806354ea65851461071857806355234ec01461074357806355f804b31461076e5780635a94133c146107975761035b565b806342842e0e1461069b5780634530a832146106c457806354214f69146106ed5761035b565b806335b36c441161027a57806335b36c44146106165780633ccfd60b1461063f5780633fab10061461065657806340fe00181461067f5761035b565b806325ee97e3146105a95780632f07801e146105d4578063333171bb146105ff5761035b565b80630fab6da81161030d57806318160ddd116102e757806318160ddd146105015780631b60efb01461052c578063230a9b8d1461055557806323b872dd146105805761035b565b80630fab6da81461048457806310969523146104ad578063162d2261146104d65761035b565b806301c124b71461036057806301ffc9a71461038b57806306fdde03146103c8578063081812fc146103f3578063095ea7b3146104305780630f7309e8146104595761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610cbb565b6040516103829190614f0e565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190614803565b610cc1565b6040516103bf9190614ef3565b60405180910390f35b3480156103d457600080fd5b506103dd610da3565b6040516103ea9190614f29565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906148a6565b610e35565b6040516104279190614e48565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906146fa565b610eb1565b005b34801561046557600080fd5b5061046e610fbc565b60405161047b9190614f29565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a691906148a6565b61104a565b005b3480156104b957600080fd5b506104d460048036038101906104cf919061485d565b6110d0565b005b3480156104e257600080fd5b506104eb611166565b6040516104f89190614f29565b60405180910390f35b34801561050d57600080fd5b506105166111f4565b6040516105239190615106565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e91906146fa565b61120b565b005b34801561056157600080fd5b5061056a6112f2565b6040516105779190615106565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a291906145e4565b6112f8565b005b3480156105b557600080fd5b506105be611308565b6040516105cb9190615106565b60405180910390f35b3480156105e057600080fd5b506105e961130e565b6040516105f69190615106565b60405180910390f35b34801561060b57600080fd5b50610614611318565b005b34801561062257600080fd5b5061063d600480360381019061063891906148a6565b6113c0565b005b34801561064b57600080fd5b50610654611446565b005b34801561066257600080fd5b5061067d6004803603810190610678919061485d565b611516565b005b610699600480360381019061069491906148d3565b6115d6565b005b3480156106a757600080fd5b506106c260048036038101906106bd91906145e4565b611a6f565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906148a6565b611a8f565b005b3480156106f957600080fd5b50610702611b15565b60405161070f9190614ef3565b60405180910390f35b34801561072457600080fd5b5061072d611b28565b60405161073a9190615106565b60405180910390f35b34801561074f57600080fd5b50610758611b32565b6040516107659190615106565b60405180910390f35b34801561077a57600080fd5b506107956004803603810190610790919061485d565b611b53565b005b3480156107a357600080fd5b506107be60048036038101906107b991906148a6565b611be9565b005b3480156107cc57600080fd5b506107e760048036038101906107e2919061478d565b611c6f565b6040516107f49190614eaf565b60405180910390f35b34801561080957600080fd5b50610812611d30565b60405161081f9190614ef3565b60405180910390f35b34801561083457600080fd5b5061083d611d43565b60405161084a9190615106565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906148a6565b611d4d565b6040516108879190614e48565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190614577565b611d63565b6040516108c49190615106565b60405180910390f35b3480156108d957600080fd5b506108e2611e33565b005b3480156108f057600080fd5b5061090b600480360381019061090691906148a6565b611ebb565b005b34801561091957600080fd5b50610934600480360381019061092f9190614577565b611f41565b6040516109419190614ed1565b60405180910390f35b34801561095657600080fd5b5061095f612143565b005b34801561096d57600080fd5b506109766121d5565b6040516109839190614e48565b60405180910390f35b34801561099857600080fd5b506109a16121ff565b6040516109ae9190614f29565b60405180910390f35b3480156109c357600080fd5b506109de60048036038101906109d9919061473a565b612291565b6040516109eb9190614ed1565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a1691906146ba565b612558565b005b348015610a2957600080fd5b50610a446004803603810190610a3f91906147d6565b6126d0565b005b348015610a5257600080fd5b50610a6d6004803603810190610a689190614637565b612756565b005b348015610a7b57600080fd5b50610a966004803603810190610a9191906148a6565b6127d2565b005b348015610aa457600080fd5b50610abf6004803603810190610aba91906148a6565b612858565b604051610acc91906150eb565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af7919061485d565b612975565b005b348015610b0a57600080fd5b50610b256004803603810190610b2091906148a6565b612a0b565b005b348015610b3357600080fd5b50610b4e6004803603810190610b4991906148a6565b612a91565b604051610b5b9190614f29565b60405180910390f35b348015610b7057600080fd5b50610b79612c6a565b604051610b869190615106565b60405180910390f35b348015610b9b57600080fd5b50610ba4612c70565b604051610bb19190614f0e565b60405180910390f35b348015610bc657600080fd5b50610be16004803603810190610bdc91906145a4565b612c76565b604051610bee9190614ef3565b60405180910390f35b610c116004803603810190610c0c91906148a6565b612d0a565b005b348015610c1f57600080fd5b50610c3a6004803603810190610c359190614577565b612ed5565b005b348015610c4857600080fd5b50610c51612fcd565b604051610c5e9190615106565b60405180910390f35b348015610c7357600080fd5b50610c7c612fd3565b604051610c899190615106565b60405180910390f35b348015610c9e57600080fd5b50610cb96004803603810190610cb491906147d6565b612fd9565b005b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d8c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d9c5750610d9b8261305f565b5b9050919050565b606060028054610db29061549e565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde9061549e565b8015610e2b5780601f10610e0057610100808354040283529160200191610e2b565b820191906000526020600020905b815481529060010190602001808311610e0e57829003601f168201915b5050505050905090565b6000610e40826130c9565b610e76576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ebc82611d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f24576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f43613117565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f755750610f7381610f6e613117565b612c76565b155b15610fac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fb783838361311f565b505050565b60158054610fc99061549e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff59061549e565b80156110425780601f1061101757610100808354040283529160200191611042565b820191906000526020600020905b81548152906001019060200180831161102557829003601f168201915b505050505081565b611052613117565b73ffffffffffffffffffffffffffffffffffffffff166110706121d5565b73ffffffffffffffffffffffffffffffffffffffff16146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90614fab565b60405180910390fd5b8060128190555050565b6110d8613117565b73ffffffffffffffffffffffffffffffffffffffff166110f66121d5565b73ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390614fab565b60405180910390fd5b80601590805190602001906111629291906141f7565b5050565b601680546111739061549e565b80601f016020809104026020016040519081016040528092919081815260200182805461119f9061549e565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b505050505081565b60006111fe6131d1565b6001546000540303905090565b611213613117565b73ffffffffffffffffffffffffffffffffffffffff166112316121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90614fab565b60405180910390fd5b60006112916111f4565b9050600d5482826112a291906152b5565b11156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90614feb565b60405180910390fd5b6112ed83836131d6565b505050565b60125481565b6113038383836131f4565b505050565b60135481565b6000600e54905090565b611320613117565b73ffffffffffffffffffffffffffffffffffffffff1661133e6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90614fab565b60405180910390fd5b601860009054906101000a900460ff1615601860006101000a81548160ff021916908315150217905550565b6113c8613117565b73ffffffffffffffffffffffffffffffffffffffff166113e66121d5565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390614fab565b60405180910390fd5b8060178190555050565b61144e613117565b73ffffffffffffffffffffffffffffffffffffffff1661146c6121d5565b73ffffffffffffffffffffffffffffffffffffffff16146114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990614fab565b60405180910390fd5b734ea96bfb265a47c4485a8a164917a4e8487de92873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061151457600080fd5b565b61151e613117565b73ffffffffffffffffffffffffffffffffffffffff1661153c6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990614fab565b60405180910390fd5b80601490805190602001906115a89291906141f7565b50601860019054906101000a900460ff1615601860016101000a81548160ff02191690831515021790555050565b60026017541061161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290614fcb565b60405180910390fd5b601860009054906101000a900460ff161561166b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611662906150ab565b60405180910390fd5b60006116756111f4565b90506000600f5490506000601754141561178d5760003360405160200161169c9190614dd2565b6040516020818303038152906040528051906020012090506116c0818560006136e5565b6116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f69061506b565b60405180910390fd5b601254600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906150cb565b60405180910390fd5b600e54915050611888565b6000336040516020016117a09190614dd2565b6040516020818303038152906040528051906020012090506117c4818560016136e5565b611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa9061504b565b60405180910390fd5b601354600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d9061502b565b60405180910390fd5b505b600d54848361189791906152b5565b11156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90614feb565b60405180910390fd5b60115484111561191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490614f8b565b60405180910390fd5b8381611929919061533c565b34101561196b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119629061508b565b60405180910390fd5b600060175414156119d15783600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c591906152b5565b92505081905550611a28565b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2091906152b5565b925050819055505b611a3233856131d6565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051611a619190614e48565b60405180910390a150505050565b611a8a83838360405180602001604052806000815250612756565b505050565b611a97613117565b73ffffffffffffffffffffffffffffffffffffffff16611ab56121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290614fab565b60405180910390fd5b8060108190555050565b601860019054906101000a900460ff1681565b6000601054905090565b600080611b3d6111f4565b600d54611b4a9190615396565b90508091505090565b611b5b613117565b73ffffffffffffffffffffffffffffffffffffffff16611b796121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690614fab565b60405180910390fd5b8060149080519060200190611be59291906141f7565b5050565b611bf1613117565b73ffffffffffffffffffffffffffffffffffffffff16611c0f6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90614fab565b60405180910390fd5b80600e8190555050565b606060008251905060008167ffffffffffffffff811115611c9357611c92615665565b5b604051908082528060200260200182016040528015611ccc57816020015b611cb961427d565b815260200190600190039081611cb15790505b50905060005b828114611d2557611cfc858281518110611cef57611cee615636565b5b6020026020010151612858565b828281518110611d0f57611d0e615636565b5b6020026020010181905250806001019050611cd2565b508092505050919050565b601860009054906101000a900460ff1681565b6000600f54905090565b6000611d5882613718565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611e3b613117565b73ffffffffffffffffffffffffffffffffffffffff16611e596121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690614fab565b60405180910390fd5b611eb960006139a7565b565b611ec3613117565b73ffffffffffffffffffffffffffffffffffffffff16611ee16121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614fab565b60405180910390fd5b80600f8190555050565b60606000806000611f5185611d63565b905060008167ffffffffffffffff811115611f6f57611f6e615665565b5b604051908082528060200260200182016040528015611f9d5781602001602082028036833780820191505090505b509050611fa861427d565b6000611fb26131d1565b90505b83861461213557600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050915081604001511561208e5761212a565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ce57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612129578083878060010198508151811061211c5761211b615636565b5b6020026020010181815250505b5b806001019050611fb5565b508195505050505050919050565b61214b613117565b73ffffffffffffffffffffffffffffffffffffffff166121696121d5565b73ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690614fab565b60405180910390fd5b60006121c96111f4565b905080600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461220e9061549e565b80601f016020809104026020016040519081016040528092919081815260200182805461223a9061549e565b80156122875780601f1061225c57610100808354040283529160200191612287565b820191906000526020600020905b81548152906001019060200180831161226a57829003601f168201915b5050505050905090565b60608183106122cc576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060005490506122dc6131d1565b8510156122ee576122eb6131d1565b94505b808411156122fa578093505b600061230587611d63565b905084861015612328576000868603905081811015612322578091505b5061232d565b600090505b60008167ffffffffffffffff81111561234957612348615665565b5b6040519080825280602002602001820160405280156123775781602001602082028036833780820191505090505b509050600082141561238f5780945050505050612551565b600061239a88612858565b9050600081604001516123af57816000015190505b60008990505b8881141580156123c55750848714155b1561254357600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050925082604001511561249c57612538565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146124dc57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612537578084888060010199508151811061252a57612529615636565b5b6020026020010181815250505b5b8060010190506123b5565b508583528296505050505050505b9392505050565b612560613117565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125d2613117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661267f613117565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126c49190614ef3565b60405180910390a35050565b6126d8613117565b73ffffffffffffffffffffffffffffffffffffffff166126f66121d5565b73ffffffffffffffffffffffffffffffffffffffff161461274c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274390614fab565b60405180910390fd5b80600c8190555050565b6127618484846131f4565b6127808373ffffffffffffffffffffffffffffffffffffffff16613a6d565b8015612795575061279384848484613a80565b155b156127cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6127da613117565b73ffffffffffffffffffffffffffffffffffffffff166127f86121d5565b73ffffffffffffffffffffffffffffffffffffffff161461284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590614fab565b60405180910390fd5b8060138190555050565b61286061427d565b61286861427d565b6128706131d1565b83108061287f57506000548310155b1561288d5780915050612970565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156129635780915050612970565b61296c83613718565b9150505b919050565b61297d613117565b73ffffffffffffffffffffffffffffffffffffffff1661299b6121d5565b73ffffffffffffffffffffffffffffffffffffffff16146129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890614fab565b60405180910390fd5b8060169080519060200190612a079291906141f7565b5050565b612a13613117565b73ffffffffffffffffffffffffffffffffffffffff16612a316121d5565b73ffffffffffffffffffffffffffffffffffffffff1614612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e90614fab565b60405180910390fd5b8060118190555050565b6060612a9c826130c9565b612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad29061500b565b60405180910390fd5b60001515601860019054906101000a900460ff1615151415612b895760168054612b049061549e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b309061549e565b8015612b7d5780601f10612b5257610100808354040283529160200191612b7d565b820191906000526020600020905b815481529060010190602001808311612b6057829003601f168201915b50505050509050612c65565b600060148054612b989061549e565b80601f0160208091040260200160405190810160405280929190818152602001828054612bc49061549e565b8015612c115780601f10612be657610100808354040283529160200191612c11565b820191906000526020600020905b815481529060010190602001808311612bf457829003601f168201915b505050505090506000815111612c365760405180602001604052806000815250612c61565b80612c4084613be0565b604051602001612c51929190614e19565b6040516020818303038152906040525b9150505b919050565b600d5481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601860009054906101000a900460ff1615612d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d51906150ab565b60405180910390fd5b600260175414612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9690614f6b565b60405180910390fd5b6000612da96111f4565b9050600d548282612dba91906152b5565b1115612dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df290614feb565b60405180910390fd5b601154821115612e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790614f8b565b60405180910390fd5b81601054612e4e919061533c565b341015612e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e879061508b565b60405180910390fd5b612e9a33836131d6565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051612ec99190614e48565b60405180910390a15050565b612edd613117565b73ffffffffffffffffffffffffffffffffffffffff16612efb6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4890614fab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb890614f4b565b60405180910390fd5b612fca816139a7565b50565b60175481565b60115481565b612fe1613117565b73ffffffffffffffffffffffffffffffffffffffff16612fff6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614613055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304c90614fab565b60405180910390fd5b80600b8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816130d46131d1565b111580156130e3575060005482105b8015613110575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6131f0828260405180602001604052806000815250613d41565b5050565b60006131ff82613718565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16613226613117565b73ffffffffffffffffffffffffffffffffffffffff16148061325957506132588260000151613253613117565b612c76565b5b8061329e5750613267613117565b73ffffffffffffffffffffffffffffffffffffffff1661328684610e35565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806132d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614613340576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133a7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133b48585856001613d53565b6133c4600084846000015161311f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613675576000548110156136745782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136de8585856001613d59565b5050505050565b60008115613701576136fa83600c5486613d5f565b9050613711565b61370e83600b5486613d5f565b90505b9392505050565b61372061427d565b60008290508061372e6131d1565b1115801561373d575060005481105b15613970576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161396e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146138525780925050506139a2565b5b60011561396d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146139685780925050506139a2565b613853565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613aa6613117565b8786866040518563ffffffff1660e01b8152600401613ac89493929190614e63565b602060405180830381600087803b158015613ae257600080fd5b505af1925050508015613b1357506040513d601f19601f82011682018060405250810190613b109190614830565b60015b613b8d573d8060008114613b43576040519150601f19603f3d011682016040523d82523d6000602084013e613b48565b606091505b50600081511415613b85576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613c28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613d3c565b600082905060005b60008214613c5a578080613c4390615501565b915050600a82613c53919061530b565b9150613c30565b60008167ffffffffffffffff811115613c7657613c75615665565b5b6040519080825280601f01601f191660200182016040528015613ca85781602001600182028036833780820191505090505b5090505b60008514613d3557600182613cc19190615396565b9150600a85613cd09190615578565b6030613cdc91906152b5565b60f81b818381518110613cf257613cf1615636565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613d2e919061530b565b9450613cac565b8093505050505b919050565b613d4e8383836001613d76565b505050565b50505050565b50505050565b600082613d6c8584614144565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613de3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613e1e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613e2b6000868387613d53565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613ff55750613ff48773ffffffffffffffffffffffffffffffffffffffff16613a6d565b5b156140bb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461406a6000888480600101955088613a80565b6140a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613ffb5782600054146140b657600080fd5b614127565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156140bc575b81600081905550505061413d6000868387613d59565b5050505050565b60008082905060005b84518110156141ec57600085828151811061416b5761416a615636565b5b602002602001015190508083116141ac57828160405160200161418f929190614ded565b6040516020818303038152906040528051906020012092506141d8565b80836040516020016141bf929190614ded565b6040516020818303038152906040528051906020012092505b5080806141e490615501565b91505061414d565b508091505092915050565b8280546142039061549e565b90600052602060002090601f016020900481019282614225576000855561426c565b82601f1061423e57805160ff191683800117855561426c565b8280016001018555821561426c579182015b8281111561426b578251825591602001919060010190614250565b5b50905061427991906142c0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156142d95760008160009055506001016142c1565b5090565b60006142f06142eb84615146565b615121565b9050808382526020820190508285602086028201111561431357614312615699565b5b60005b85811015614343578161432988826144c7565b845260208401935060208301925050600181019050614316565b5050509392505050565b600061436061435b84615172565b615121565b9050808382526020820190508285602086028201111561438357614382615699565b5b60005b858110156143b357816143998882614562565b845260208401935060208301925050600181019050614386565b5050509392505050565b60006143d06143cb8461519e565b615121565b9050828152602081018484840111156143ec576143eb61569e565b5b6143f784828561545c565b509392505050565b600061441261440d846151cf565b615121565b90508281526020810184848401111561442e5761442d61569e565b5b61443984828561545c565b509392505050565b600081359050614450816159c7565b92915050565b600082601f83011261446b5761446a615694565b5b813561447b8482602086016142dd565b91505092915050565b600082601f83011261449957614498615694565b5b81356144a984826020860161434d565b91505092915050565b6000813590506144c1816159de565b92915050565b6000813590506144d6816159f5565b92915050565b6000813590506144eb81615a0c565b92915050565b60008151905061450081615a0c565b92915050565b600082601f83011261451b5761451a615694565b5b813561452b8482602086016143bd565b91505092915050565b600082601f83011261454957614548615694565b5b81356145598482602086016143ff565b91505092915050565b60008135905061457181615a23565b92915050565b60006020828403121561458d5761458c6156a8565b5b600061459b84828501614441565b91505092915050565b600080604083850312156145bb576145ba6156a8565b5b60006145c985828601614441565b92505060206145da85828601614441565b9150509250929050565b6000806000606084860312156145fd576145fc6156a8565b5b600061460b86828701614441565b935050602061461c86828701614441565b925050604061462d86828701614562565b9150509250925092565b60008060008060808587031215614651576146506156a8565b5b600061465f87828801614441565b945050602061467087828801614441565b935050604061468187828801614562565b925050606085013567ffffffffffffffff8111156146a2576146a16156a3565b5b6146ae87828801614506565b91505092959194509250565b600080604083850312156146d1576146d06156a8565b5b60006146df85828601614441565b92505060206146f0858286016144b2565b9150509250929050565b60008060408385031215614711576147106156a8565b5b600061471f85828601614441565b925050602061473085828601614562565b9150509250929050565b600080600060608486031215614753576147526156a8565b5b600061476186828701614441565b935050602061477286828701614562565b925050604061478386828701614562565b9150509250925092565b6000602082840312156147a3576147a26156a8565b5b600082013567ffffffffffffffff8111156147c1576147c06156a3565b5b6147cd84828501614484565b91505092915050565b6000602082840312156147ec576147eb6156a8565b5b60006147fa848285016144c7565b91505092915050565b600060208284031215614819576148186156a8565b5b6000614827848285016144dc565b91505092915050565b600060208284031215614846576148456156a8565b5b6000614854848285016144f1565b91505092915050565b600060208284031215614873576148726156a8565b5b600082013567ffffffffffffffff811115614891576148906156a3565b5b61489d84828501614534565b91505092915050565b6000602082840312156148bc576148bb6156a8565b5b60006148ca84828501614562565b91505092915050565b600080604083850312156148ea576148e96156a8565b5b60006148f885828601614562565b925050602083013567ffffffffffffffff811115614919576149186156a3565b5b61492585828601614456565b9150509250929050565b600061493b8383614d21565b60608301905092915050565b60006149538383614da5565b60208301905092915050565b614968816153ca565b82525050565b614977816153ca565b82525050565b61498e614989826153ca565b61554a565b82525050565b600061499f82615220565b6149a98185615266565b93506149b483615200565b8060005b838110156149e55781516149cc888261492f565b97506149d78361524c565b9250506001810190506149b8565b5085935050505092915050565b60006149fd8261522b565b614a078185615277565b9350614a1283615210565b8060005b83811015614a43578151614a2a8882614947565b9750614a3583615259565b925050600181019050614a16565b5085935050505092915050565b614a59816153dc565b82525050565b614a68816153dc565b82525050565b614a77816153e8565b82525050565b614a8e614a89826153e8565b61555c565b82525050565b6000614a9f82615236565b614aa98185615288565b9350614ab981856020860161546b565b614ac2816156ad565b840191505092915050565b6000614ad882615241565b614ae28185615299565b9350614af281856020860161546b565b614afb816156ad565b840191505092915050565b6000614b1182615241565b614b1b81856152aa565b9350614b2b81856020860161546b565b80840191505092915050565b6000614b44602683615299565b9150614b4f826156cb565b604082019050919050565b6000614b67601a83615299565b9150614b728261571a565b602082019050919050565b6000614b8a601f83615299565b9150614b9582615743565b602082019050919050565b6000614bad6005836152aa565b9150614bb88261576c565b600582019050919050565b6000614bd0602083615299565b9150614bdb82615795565b602082019050919050565b6000614bf3601d83615299565b9150614bfe826157be565b602082019050919050565b6000614c16601783615299565b9150614c21826157e7565b602082019050919050565b6000614c39602f83615299565b9150614c4482615810565b604082019050919050565b6000614c5c603883615299565b9150614c678261585f565b604082019050919050565b6000614c7f601e83615299565b9150614c8a826158ae565b602082019050919050565b6000614ca2602583615299565b9150614cad826158d7565b604082019050919050565b6000614cc5601e83615299565b9150614cd082615926565b602082019050919050565b6000614ce8601183615299565b9150614cf38261594f565b602082019050919050565b6000614d0b603683615299565b9150614d1682615978565b604082019050919050565b606082016000820151614d37600085018261495f565b506020820151614d4a6020850182614dc3565b506040820151614d5d6040850182614a50565b50505050565b606082016000820151614d79600085018261495f565b506020820151614d8c6020850182614dc3565b506040820151614d9f6040850182614a50565b50505050565b614dae8161543e565b82525050565b614dbd8161543e565b82525050565b614dcc81615448565b82525050565b6000614dde828461497d565b60148201915081905092915050565b6000614df98285614a7d565b602082019150614e098284614a7d565b6020820191508190509392505050565b6000614e258285614b06565b9150614e318284614b06565b9150614e3c82614ba0565b91508190509392505050565b6000602082019050614e5d600083018461496e565b92915050565b6000608082019050614e78600083018761496e565b614e85602083018661496e565b614e926040830185614db4565b8181036060830152614ea48184614a94565b905095945050505050565b60006020820190508181036000830152614ec98184614994565b905092915050565b60006020820190508181036000830152614eeb81846149f2565b905092915050565b6000602082019050614f086000830184614a5f565b92915050565b6000602082019050614f236000830184614a6e565b92915050565b60006020820190508181036000830152614f438184614acd565b905092915050565b60006020820190508181036000830152614f6481614b37565b9050919050565b60006020820190508181036000830152614f8481614b5a565b9050919050565b60006020820190508181036000830152614fa481614b7d565b9050919050565b60006020820190508181036000830152614fc481614bc3565b9050919050565b60006020820190508181036000830152614fe481614be6565b9050919050565b6000602082019050818103600083015261500481614c09565b9050919050565b6000602082019050818103600083015261502481614c2c565b9050919050565b6000602082019050818103600083015261504481614c4f565b9050919050565b6000602082019050818103600083015261506481614c72565b9050919050565b6000602082019050818103600083015261508481614c95565b9050919050565b600060208201905081810360008301526150a481614cb8565b9050919050565b600060208201905081810360008301526150c481614cdb565b9050919050565b600060208201905081810360008301526150e481614cfe565b9050919050565b60006060820190506151006000830184614d63565b92915050565b600060208201905061511b6000830184614db4565b92915050565b600061512b61513c565b905061513782826154d0565b919050565b6000604051905090565b600067ffffffffffffffff82111561516157615160615665565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561518d5761518c615665565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151b9576151b8615665565b5b6151c2826156ad565b9050602081019050919050565b600067ffffffffffffffff8211156151ea576151e9615665565b5b6151f3826156ad565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152c08261543e565b91506152cb8361543e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615300576152ff6155a9565b5b828201905092915050565b60006153168261543e565b91506153218361543e565b925082615331576153306155d8565b5b828204905092915050565b60006153478261543e565b91506153528361543e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561538b5761538a6155a9565b5b828202905092915050565b60006153a18261543e565b91506153ac8361543e565b9250828210156153bf576153be6155a9565b5b828203905092915050565b60006153d58261541e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561548957808201518184015260208101905061546e565b83811115615498576000848401525b50505050565b600060028204905060018216806154b657607f821691505b602082108114156154ca576154c9615607565b5b50919050565b6154d9826156ad565b810181811067ffffffffffffffff821117156154f8576154f7615665565b5b80604052505050565b600061550c8261543e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561553f5761553e6155a9565b5b600182019050919050565b600061555582615566565b9050919050565b6000819050919050565b6000615571826156be565b9050919050565b60006155838261543e565b915061558e8361543e565b92508261559e5761559d6155d8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74696e67206e6f7420656e61626c6564000000000000600082015250565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57652061726520616c7265616479206f6e207075626c69632073616c65000000600082015250565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f536f7272792c20796f7520616c7265616479206f776e20746865206d6178206160008201527f6c6c6f77656420666f72207468652077686974656c6973740000000000000000602082015250565b7f536f7272792c20796f7520617265206e6f742077686974656c69737465640000600082015250565b7f536f7272792c20796f7520617265206e6f74206c697374656420666f7220707260008201527f6573616c65000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f536f7272792c20796f7520616c7265616479206f776e20746865206d6178206160008201527f6c6c6f77656420666f72207468652070726573616c6500000000000000000000602082015250565b6159d0816153ca565b81146159db57600080fd5b50565b6159e7816153dc565b81146159f257600080fd5b50565b6159fe816153e8565b8114615a0957600080fd5b50565b615a15816153f2565b8114615a2057600080fd5b50565b615a2c8161543e565b8114615a3757600080fd5b5056fea2646970667358221220c98140374013c741ce0290b7f9f367945a62cdcd8a5770c45b31fc70c7678ab164736f6c63430008070033
Deployed Bytecode
0x6080604052600436106103545760003560e01c80635bbb2177116101c6578063b88d4fde116100f7578063d6492d8111610095578063f2fde38b1161006f578063f2fde38b14610c13578063f9020e3314610c3c578063f968adbe14610c67578063fe0716ec14610c925761035b565b8063d6492d8114610b8f578063e985e9c514610bba578063efd0cbf914610bf75761035b565b8063c3bb0cc2116100d1578063c3bb0cc214610ad5578063c6f6f21614610afe578063c87b56dd14610b27578063d5abeb0114610b645761035b565b8063b88d4fde14610a46578063c1612d4114610a6f578063c23dc68f14610a985761035b565b80638462151c1161016457806395d89b411161013e57806395d89b411461098c57806399a2557a146109b7578063a22cb465146109f4578063ad3e31b714610a1d5761035b565b80638462151c1461090d57806387491c601461094a5780638da5cb5b146109615761035b565b80636352211e116101a05780636352211e1461085357806370a0823114610890578063715018a6146108cd57806381d8488f146108e45761035b565b80635bbb2177146107c05780635c975abb146107fd5780635daaf45d146108285761035b565b806325ee97e3116102a057806342842e0e1161023e57806354ea65851161021857806354ea65851461071857806355234ec01461074357806355f804b31461076e5780635a94133c146107975761035b565b806342842e0e1461069b5780634530a832146106c457806354214f69146106ed5761035b565b806335b36c441161027a57806335b36c44146106165780633ccfd60b1461063f5780633fab10061461065657806340fe00181461067f5761035b565b806325ee97e3146105a95780632f07801e146105d4578063333171bb146105ff5761035b565b80630fab6da81161030d57806318160ddd116102e757806318160ddd146105015780631b60efb01461052c578063230a9b8d1461055557806323b872dd146105805761035b565b80630fab6da81461048457806310969523146104ad578063162d2261146104d65761035b565b806301c124b71461036057806301ffc9a71461038b57806306fdde03146103c8578063081812fc146103f3578063095ea7b3146104305780630f7309e8146104595761035b565b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610cbb565b6040516103829190614f0e565b60405180910390f35b34801561039757600080fd5b506103b260048036038101906103ad9190614803565b610cc1565b6040516103bf9190614ef3565b60405180910390f35b3480156103d457600080fd5b506103dd610da3565b6040516103ea9190614f29565b60405180910390f35b3480156103ff57600080fd5b5061041a600480360381019061041591906148a6565b610e35565b6040516104279190614e48565b60405180910390f35b34801561043c57600080fd5b50610457600480360381019061045291906146fa565b610eb1565b005b34801561046557600080fd5b5061046e610fbc565b60405161047b9190614f29565b60405180910390f35b34801561049057600080fd5b506104ab60048036038101906104a691906148a6565b61104a565b005b3480156104b957600080fd5b506104d460048036038101906104cf919061485d565b6110d0565b005b3480156104e257600080fd5b506104eb611166565b6040516104f89190614f29565b60405180910390f35b34801561050d57600080fd5b506105166111f4565b6040516105239190615106565b60405180910390f35b34801561053857600080fd5b50610553600480360381019061054e91906146fa565b61120b565b005b34801561056157600080fd5b5061056a6112f2565b6040516105779190615106565b60405180910390f35b34801561058c57600080fd5b506105a760048036038101906105a291906145e4565b6112f8565b005b3480156105b557600080fd5b506105be611308565b6040516105cb9190615106565b60405180910390f35b3480156105e057600080fd5b506105e961130e565b6040516105f69190615106565b60405180910390f35b34801561060b57600080fd5b50610614611318565b005b34801561062257600080fd5b5061063d600480360381019061063891906148a6565b6113c0565b005b34801561064b57600080fd5b50610654611446565b005b34801561066257600080fd5b5061067d6004803603810190610678919061485d565b611516565b005b610699600480360381019061069491906148d3565b6115d6565b005b3480156106a757600080fd5b506106c260048036038101906106bd91906145e4565b611a6f565b005b3480156106d057600080fd5b506106eb60048036038101906106e691906148a6565b611a8f565b005b3480156106f957600080fd5b50610702611b15565b60405161070f9190614ef3565b60405180910390f35b34801561072457600080fd5b5061072d611b28565b60405161073a9190615106565b60405180910390f35b34801561074f57600080fd5b50610758611b32565b6040516107659190615106565b60405180910390f35b34801561077a57600080fd5b506107956004803603810190610790919061485d565b611b53565b005b3480156107a357600080fd5b506107be60048036038101906107b991906148a6565b611be9565b005b3480156107cc57600080fd5b506107e760048036038101906107e2919061478d565b611c6f565b6040516107f49190614eaf565b60405180910390f35b34801561080957600080fd5b50610812611d30565b60405161081f9190614ef3565b60405180910390f35b34801561083457600080fd5b5061083d611d43565b60405161084a9190615106565b60405180910390f35b34801561085f57600080fd5b5061087a600480360381019061087591906148a6565b611d4d565b6040516108879190614e48565b60405180910390f35b34801561089c57600080fd5b506108b760048036038101906108b29190614577565b611d63565b6040516108c49190615106565b60405180910390f35b3480156108d957600080fd5b506108e2611e33565b005b3480156108f057600080fd5b5061090b600480360381019061090691906148a6565b611ebb565b005b34801561091957600080fd5b50610934600480360381019061092f9190614577565b611f41565b6040516109419190614ed1565b60405180910390f35b34801561095657600080fd5b5061095f612143565b005b34801561096d57600080fd5b506109766121d5565b6040516109839190614e48565b60405180910390f35b34801561099857600080fd5b506109a16121ff565b6040516109ae9190614f29565b60405180910390f35b3480156109c357600080fd5b506109de60048036038101906109d9919061473a565b612291565b6040516109eb9190614ed1565b60405180910390f35b348015610a0057600080fd5b50610a1b6004803603810190610a1691906146ba565b612558565b005b348015610a2957600080fd5b50610a446004803603810190610a3f91906147d6565b6126d0565b005b348015610a5257600080fd5b50610a6d6004803603810190610a689190614637565b612756565b005b348015610a7b57600080fd5b50610a966004803603810190610a9191906148a6565b6127d2565b005b348015610aa457600080fd5b50610abf6004803603810190610aba91906148a6565b612858565b604051610acc91906150eb565b60405180910390f35b348015610ae157600080fd5b50610afc6004803603810190610af7919061485d565b612975565b005b348015610b0a57600080fd5b50610b256004803603810190610b2091906148a6565b612a0b565b005b348015610b3357600080fd5b50610b4e6004803603810190610b4991906148a6565b612a91565b604051610b5b9190614f29565b60405180910390f35b348015610b7057600080fd5b50610b79612c6a565b604051610b869190615106565b60405180910390f35b348015610b9b57600080fd5b50610ba4612c70565b604051610bb19190614f0e565b60405180910390f35b348015610bc657600080fd5b50610be16004803603810190610bdc91906145a4565b612c76565b604051610bee9190614ef3565b60405180910390f35b610c116004803603810190610c0c91906148a6565b612d0a565b005b348015610c1f57600080fd5b50610c3a6004803603810190610c359190614577565b612ed5565b005b348015610c4857600080fd5b50610c51612fcd565b604051610c5e9190615106565b60405180910390f35b348015610c7357600080fd5b50610c7c612fd3565b604051610c899190615106565b60405180910390f35b348015610c9e57600080fd5b50610cb96004803603810190610cb491906147d6565b612fd9565b005b600b5481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d8c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d9c5750610d9b8261305f565b5b9050919050565b606060028054610db29061549e565b80601f0160208091040260200160405190810160405280929190818152602001828054610dde9061549e565b8015610e2b5780601f10610e0057610100808354040283529160200191610e2b565b820191906000526020600020905b815481529060010190602001808311610e0e57829003601f168201915b5050505050905090565b6000610e40826130c9565b610e76576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ebc82611d4d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f24576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f43613117565b73ffffffffffffffffffffffffffffffffffffffff1614158015610f755750610f7381610f6e613117565b612c76565b155b15610fac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fb783838361311f565b505050565b60158054610fc99061549e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff59061549e565b80156110425780601f1061101757610100808354040283529160200191611042565b820191906000526020600020905b81548152906001019060200180831161102557829003601f168201915b505050505081565b611052613117565b73ffffffffffffffffffffffffffffffffffffffff166110706121d5565b73ffffffffffffffffffffffffffffffffffffffff16146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90614fab565b60405180910390fd5b8060128190555050565b6110d8613117565b73ffffffffffffffffffffffffffffffffffffffff166110f66121d5565b73ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390614fab565b60405180910390fd5b80601590805190602001906111629291906141f7565b5050565b601680546111739061549e565b80601f016020809104026020016040519081016040528092919081815260200182805461119f9061549e565b80156111ec5780601f106111c1576101008083540402835291602001916111ec565b820191906000526020600020905b8154815290600101906020018083116111cf57829003601f168201915b505050505081565b60006111fe6131d1565b6001546000540303905090565b611213613117565b73ffffffffffffffffffffffffffffffffffffffff166112316121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90614fab565b60405180910390fd5b60006112916111f4565b9050600d5482826112a291906152b5565b11156112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da90614feb565b60405180910390fd5b6112ed83836131d6565b505050565b60125481565b6113038383836131f4565b505050565b60135481565b6000600e54905090565b611320613117565b73ffffffffffffffffffffffffffffffffffffffff1661133e6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611394576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138b90614fab565b60405180910390fd5b601860009054906101000a900460ff1615601860006101000a81548160ff021916908315150217905550565b6113c8613117565b73ffffffffffffffffffffffffffffffffffffffff166113e66121d5565b73ffffffffffffffffffffffffffffffffffffffff161461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390614fab565b60405180910390fd5b8060178190555050565b61144e613117565b73ffffffffffffffffffffffffffffffffffffffff1661146c6121d5565b73ffffffffffffffffffffffffffffffffffffffff16146114c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b990614fab565b60405180910390fd5b734ea96bfb265a47c4485a8a164917a4e8487de92873ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f1935050505061151457600080fd5b565b61151e613117565b73ffffffffffffffffffffffffffffffffffffffff1661153c6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990614fab565b60405180910390fd5b80601490805190602001906115a89291906141f7565b50601860019054906101000a900460ff1615601860016101000a81548160ff02191690831515021790555050565b60026017541061161b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161290614fcb565b60405180910390fd5b601860009054906101000a900460ff161561166b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611662906150ab565b60405180910390fd5b60006116756111f4565b90506000600f5490506000601754141561178d5760003360405160200161169c9190614dd2565b6040516020818303038152906040528051906020012090506116c0818560006136e5565b6116ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f69061506b565b60405180910390fd5b601254600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611779906150cb565b60405180910390fd5b600e54915050611888565b6000336040516020016117a09190614dd2565b6040516020818303038152906040528051906020012090506117c4818560016136e5565b611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa9061504b565b60405180910390fd5b601354600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611886576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187d9061502b565b60405180910390fd5b505b600d54848361189791906152b5565b11156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90614feb565b60405180910390fd5b60115484111561191d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191490614f8b565b60405180910390fd5b8381611929919061533c565b34101561196b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119629061508b565b60405180910390fd5b600060175414156119d15783600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119c591906152b5565b92505081905550611a28565b83600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a2091906152b5565b925050819055505b611a3233856131d6565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051611a619190614e48565b60405180910390a150505050565b611a8a83838360405180602001604052806000815250612756565b505050565b611a97613117565b73ffffffffffffffffffffffffffffffffffffffff16611ab56121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290614fab565b60405180910390fd5b8060108190555050565b601860019054906101000a900460ff1681565b6000601054905090565b600080611b3d6111f4565b600d54611b4a9190615396565b90508091505090565b611b5b613117565b73ffffffffffffffffffffffffffffffffffffffff16611b796121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc690614fab565b60405180910390fd5b8060149080519060200190611be59291906141f7565b5050565b611bf1613117565b73ffffffffffffffffffffffffffffffffffffffff16611c0f6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c90614fab565b60405180910390fd5b80600e8190555050565b606060008251905060008167ffffffffffffffff811115611c9357611c92615665565b5b604051908082528060200260200182016040528015611ccc57816020015b611cb961427d565b815260200190600190039081611cb15790505b50905060005b828114611d2557611cfc858281518110611cef57611cee615636565b5b6020026020010151612858565b828281518110611d0f57611d0e615636565b5b6020026020010181905250806001019050611cd2565b508092505050919050565b601860009054906101000a900460ff1681565b6000600f54905090565b6000611d5882613718565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dcb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611e3b613117565b73ffffffffffffffffffffffffffffffffffffffff16611e596121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690614fab565b60405180910390fd5b611eb960006139a7565b565b611ec3613117565b73ffffffffffffffffffffffffffffffffffffffff16611ee16121d5565b73ffffffffffffffffffffffffffffffffffffffff1614611f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2e90614fab565b60405180910390fd5b80600f8190555050565b60606000806000611f5185611d63565b905060008167ffffffffffffffff811115611f6f57611f6e615665565b5b604051908082528060200260200182016040528015611f9d5781602001602082028036833780820191505090505b509050611fa861427d565b6000611fb26131d1565b90505b83861461213557600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050915081604001511561208e5761212a565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146120ce57816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612129578083878060010198508151811061211c5761211b615636565b5b6020026020010181815250505b5b806001019050611fb5565b508195505050505050919050565b61214b613117565b73ffffffffffffffffffffffffffffffffffffffff166121696121d5565b73ffffffffffffffffffffffffffffffffffffffff16146121bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b690614fab565b60405180910390fd5b60006121c96111f4565b905080600d8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461220e9061549e565b80601f016020809104026020016040519081016040528092919081815260200182805461223a9061549e565b80156122875780601f1061225c57610100808354040283529160200191612287565b820191906000526020600020905b81548152906001019060200180831161226a57829003601f168201915b5050505050905090565b60608183106122cc576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060005490506122dc6131d1565b8510156122ee576122eb6131d1565b94505b808411156122fa578093505b600061230587611d63565b905084861015612328576000868603905081811015612322578091505b5061232d565b600090505b60008167ffffffffffffffff81111561234957612348615665565b5b6040519080825280602002602001820160405280156123775781602001602082028036833780820191505090505b509050600082141561238f5780945050505050612551565b600061239a88612858565b9050600081604001516123af57816000015190505b60008990505b8881141580156123c55750848714155b1561254357600460008281526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050925082604001511561249c57612538565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146124dc57826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612537578084888060010199508151811061252a57612529615636565b5b6020026020010181815250505b5b8060010190506123b5565b508583528296505050505050505b9392505050565b612560613117565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125c5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006125d2613117565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661267f613117565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126c49190614ef3565b60405180910390a35050565b6126d8613117565b73ffffffffffffffffffffffffffffffffffffffff166126f66121d5565b73ffffffffffffffffffffffffffffffffffffffff161461274c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274390614fab565b60405180910390fd5b80600c8190555050565b6127618484846131f4565b6127808373ffffffffffffffffffffffffffffffffffffffff16613a6d565b8015612795575061279384848484613a80565b155b156127cc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6127da613117565b73ffffffffffffffffffffffffffffffffffffffff166127f86121d5565b73ffffffffffffffffffffffffffffffffffffffff161461284e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284590614fab565b60405180910390fd5b8060138190555050565b61286061427d565b61286861427d565b6128706131d1565b83108061287f57506000548310155b1561288d5780915050612970565b600460008481526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151156129635780915050612970565b61296c83613718565b9150505b919050565b61297d613117565b73ffffffffffffffffffffffffffffffffffffffff1661299b6121d5565b73ffffffffffffffffffffffffffffffffffffffff16146129f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e890614fab565b60405180910390fd5b8060169080519060200190612a079291906141f7565b5050565b612a13613117565b73ffffffffffffffffffffffffffffffffffffffff16612a316121d5565b73ffffffffffffffffffffffffffffffffffffffff1614612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e90614fab565b60405180910390fd5b8060118190555050565b6060612a9c826130c9565b612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad29061500b565b60405180910390fd5b60001515601860019054906101000a900460ff1615151415612b895760168054612b049061549e565b80601f0160208091040260200160405190810160405280929190818152602001828054612b309061549e565b8015612b7d5780601f10612b5257610100808354040283529160200191612b7d565b820191906000526020600020905b815481529060010190602001808311612b6057829003601f168201915b50505050509050612c65565b600060148054612b989061549e565b80601f0160208091040260200160405190810160405280929190818152602001828054612bc49061549e565b8015612c115780601f10612be657610100808354040283529160200191612c11565b820191906000526020600020905b815481529060010190602001808311612bf457829003601f168201915b505050505090506000815111612c365760405180602001604052806000815250612c61565b80612c4084613be0565b604051602001612c51929190614e19565b6040516020818303038152906040525b9150505b919050565b600d5481565b600c5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601860009054906101000a900460ff1615612d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d51906150ab565b60405180910390fd5b600260175414612d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9690614f6b565b60405180910390fd5b6000612da96111f4565b9050600d548282612dba91906152b5565b1115612dfb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df290614feb565b60405180910390fd5b601154821115612e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3790614f8b565b60405180910390fd5b81601054612e4e919061533c565b341015612e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e879061508b565b60405180910390fd5b612e9a33836131d6565b7f90ddedd5a25821bba11fbb98de02ec1f75c1be90ae147d6450ce873e7b78b5d833604051612ec99190614e48565b60405180910390a15050565b612edd613117565b73ffffffffffffffffffffffffffffffffffffffff16612efb6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614612f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4890614fab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612fc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb890614f4b565b60405180910390fd5b612fca816139a7565b50565b60175481565b60115481565b612fe1613117565b73ffffffffffffffffffffffffffffffffffffffff16612fff6121d5565b73ffffffffffffffffffffffffffffffffffffffff1614613055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304c90614fab565b60405180910390fd5b80600b8190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816130d46131d1565b111580156130e3575060005482105b8015613110575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b6131f0828260405180602001604052806000815250613d41565b5050565b60006131ff82613718565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16613226613117565b73ffffffffffffffffffffffffffffffffffffffff16148061325957506132588260000151613253613117565b612c76565b5b8061329e5750613267613117565b73ffffffffffffffffffffffffffffffffffffffff1661328684610e35565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806132d7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614613340576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156133a7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133b48585856001613d53565b6133c4600084846000015161311f565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613675576000548110156136745782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136de8585856001613d59565b5050505050565b60008115613701576136fa83600c5486613d5f565b9050613711565b61370e83600b5486613d5f565b90505b9392505050565b61372061427d565b60008290508061372e6131d1565b1115801561373d575060005481105b15613970576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161396e57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146138525780925050506139a2565b5b60011561396d57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146139685780925050506139a2565b613853565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080823b905060008111915050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613aa6613117565b8786866040518563ffffffff1660e01b8152600401613ac89493929190614e63565b602060405180830381600087803b158015613ae257600080fd5b505af1925050508015613b1357506040513d601f19601f82011682018060405250810190613b109190614830565b60015b613b8d573d8060008114613b43576040519150601f19603f3d011682016040523d82523d6000602084013e613b48565b606091505b50600081511415613b85576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415613c28576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613d3c565b600082905060005b60008214613c5a578080613c4390615501565b915050600a82613c53919061530b565b9150613c30565b60008167ffffffffffffffff811115613c7657613c75615665565b5b6040519080825280601f01601f191660200182016040528015613ca85781602001600182028036833780820191505090505b5090505b60008514613d3557600182613cc19190615396565b9150600a85613cd09190615578565b6030613cdc91906152b5565b60f81b818381518110613cf257613cf1615636565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613d2e919061530b565b9450613cac565b8093505050505b919050565b613d4e8383836001613d76565b505050565b50505050565b50505050565b600082613d6c8584614144565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613de3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613e1e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613e2b6000868387613d53565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015613ff55750613ff48773ffffffffffffffffffffffffffffffffffffffff16613a6d565b5b156140bb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461406a6000888480600101955088613a80565b6140a0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415613ffb5782600054146140b657600080fd5b614127565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156140bc575b81600081905550505061413d6000868387613d59565b5050505050565b60008082905060005b84518110156141ec57600085828151811061416b5761416a615636565b5b602002602001015190508083116141ac57828160405160200161418f929190614ded565b6040516020818303038152906040528051906020012092506141d8565b80836040516020016141bf929190614ded565b6040516020818303038152906040528051906020012092505b5080806141e490615501565b91505061414d565b508091505092915050565b8280546142039061549e565b90600052602060002090601f016020900481019282614225576000855561426c565b82601f1061423e57805160ff191683800117855561426c565b8280016001018555821561426c579182015b8281111561426b578251825591602001919060010190614250565b5b50905061427991906142c0565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156142d95760008160009055506001016142c1565b5090565b60006142f06142eb84615146565b615121565b9050808382526020820190508285602086028201111561431357614312615699565b5b60005b85811015614343578161432988826144c7565b845260208401935060208301925050600181019050614316565b5050509392505050565b600061436061435b84615172565b615121565b9050808382526020820190508285602086028201111561438357614382615699565b5b60005b858110156143b357816143998882614562565b845260208401935060208301925050600181019050614386565b5050509392505050565b60006143d06143cb8461519e565b615121565b9050828152602081018484840111156143ec576143eb61569e565b5b6143f784828561545c565b509392505050565b600061441261440d846151cf565b615121565b90508281526020810184848401111561442e5761442d61569e565b5b61443984828561545c565b509392505050565b600081359050614450816159c7565b92915050565b600082601f83011261446b5761446a615694565b5b813561447b8482602086016142dd565b91505092915050565b600082601f83011261449957614498615694565b5b81356144a984826020860161434d565b91505092915050565b6000813590506144c1816159de565b92915050565b6000813590506144d6816159f5565b92915050565b6000813590506144eb81615a0c565b92915050565b60008151905061450081615a0c565b92915050565b600082601f83011261451b5761451a615694565b5b813561452b8482602086016143bd565b91505092915050565b600082601f83011261454957614548615694565b5b81356145598482602086016143ff565b91505092915050565b60008135905061457181615a23565b92915050565b60006020828403121561458d5761458c6156a8565b5b600061459b84828501614441565b91505092915050565b600080604083850312156145bb576145ba6156a8565b5b60006145c985828601614441565b92505060206145da85828601614441565b9150509250929050565b6000806000606084860312156145fd576145fc6156a8565b5b600061460b86828701614441565b935050602061461c86828701614441565b925050604061462d86828701614562565b9150509250925092565b60008060008060808587031215614651576146506156a8565b5b600061465f87828801614441565b945050602061467087828801614441565b935050604061468187828801614562565b925050606085013567ffffffffffffffff8111156146a2576146a16156a3565b5b6146ae87828801614506565b91505092959194509250565b600080604083850312156146d1576146d06156a8565b5b60006146df85828601614441565b92505060206146f0858286016144b2565b9150509250929050565b60008060408385031215614711576147106156a8565b5b600061471f85828601614441565b925050602061473085828601614562565b9150509250929050565b600080600060608486031215614753576147526156a8565b5b600061476186828701614441565b935050602061477286828701614562565b925050604061478386828701614562565b9150509250925092565b6000602082840312156147a3576147a26156a8565b5b600082013567ffffffffffffffff8111156147c1576147c06156a3565b5b6147cd84828501614484565b91505092915050565b6000602082840312156147ec576147eb6156a8565b5b60006147fa848285016144c7565b91505092915050565b600060208284031215614819576148186156a8565b5b6000614827848285016144dc565b91505092915050565b600060208284031215614846576148456156a8565b5b6000614854848285016144f1565b91505092915050565b600060208284031215614873576148726156a8565b5b600082013567ffffffffffffffff811115614891576148906156a3565b5b61489d84828501614534565b91505092915050565b6000602082840312156148bc576148bb6156a8565b5b60006148ca84828501614562565b91505092915050565b600080604083850312156148ea576148e96156a8565b5b60006148f885828601614562565b925050602083013567ffffffffffffffff811115614919576149186156a3565b5b61492585828601614456565b9150509250929050565b600061493b8383614d21565b60608301905092915050565b60006149538383614da5565b60208301905092915050565b614968816153ca565b82525050565b614977816153ca565b82525050565b61498e614989826153ca565b61554a565b82525050565b600061499f82615220565b6149a98185615266565b93506149b483615200565b8060005b838110156149e55781516149cc888261492f565b97506149d78361524c565b9250506001810190506149b8565b5085935050505092915050565b60006149fd8261522b565b614a078185615277565b9350614a1283615210565b8060005b83811015614a43578151614a2a8882614947565b9750614a3583615259565b925050600181019050614a16565b5085935050505092915050565b614a59816153dc565b82525050565b614a68816153dc565b82525050565b614a77816153e8565b82525050565b614a8e614a89826153e8565b61555c565b82525050565b6000614a9f82615236565b614aa98185615288565b9350614ab981856020860161546b565b614ac2816156ad565b840191505092915050565b6000614ad882615241565b614ae28185615299565b9350614af281856020860161546b565b614afb816156ad565b840191505092915050565b6000614b1182615241565b614b1b81856152aa565b9350614b2b81856020860161546b565b80840191505092915050565b6000614b44602683615299565b9150614b4f826156cb565b604082019050919050565b6000614b67601a83615299565b9150614b728261571a565b602082019050919050565b6000614b8a601f83615299565b9150614b9582615743565b602082019050919050565b6000614bad6005836152aa565b9150614bb88261576c565b600582019050919050565b6000614bd0602083615299565b9150614bdb82615795565b602082019050919050565b6000614bf3601d83615299565b9150614bfe826157be565b602082019050919050565b6000614c16601783615299565b9150614c21826157e7565b602082019050919050565b6000614c39602f83615299565b9150614c4482615810565b604082019050919050565b6000614c5c603883615299565b9150614c678261585f565b604082019050919050565b6000614c7f601e83615299565b9150614c8a826158ae565b602082019050919050565b6000614ca2602583615299565b9150614cad826158d7565b604082019050919050565b6000614cc5601e83615299565b9150614cd082615926565b602082019050919050565b6000614ce8601183615299565b9150614cf38261594f565b602082019050919050565b6000614d0b603683615299565b9150614d1682615978565b604082019050919050565b606082016000820151614d37600085018261495f565b506020820151614d4a6020850182614dc3565b506040820151614d5d6040850182614a50565b50505050565b606082016000820151614d79600085018261495f565b506020820151614d8c6020850182614dc3565b506040820151614d9f6040850182614a50565b50505050565b614dae8161543e565b82525050565b614dbd8161543e565b82525050565b614dcc81615448565b82525050565b6000614dde828461497d565b60148201915081905092915050565b6000614df98285614a7d565b602082019150614e098284614a7d565b6020820191508190509392505050565b6000614e258285614b06565b9150614e318284614b06565b9150614e3c82614ba0565b91508190509392505050565b6000602082019050614e5d600083018461496e565b92915050565b6000608082019050614e78600083018761496e565b614e85602083018661496e565b614e926040830185614db4565b8181036060830152614ea48184614a94565b905095945050505050565b60006020820190508181036000830152614ec98184614994565b905092915050565b60006020820190508181036000830152614eeb81846149f2565b905092915050565b6000602082019050614f086000830184614a5f565b92915050565b6000602082019050614f236000830184614a6e565b92915050565b60006020820190508181036000830152614f438184614acd565b905092915050565b60006020820190508181036000830152614f6481614b37565b9050919050565b60006020820190508181036000830152614f8481614b5a565b9050919050565b60006020820190508181036000830152614fa481614b7d565b9050919050565b60006020820190508181036000830152614fc481614bc3565b9050919050565b60006020820190508181036000830152614fe481614be6565b9050919050565b6000602082019050818103600083015261500481614c09565b9050919050565b6000602082019050818103600083015261502481614c2c565b9050919050565b6000602082019050818103600083015261504481614c4f565b9050919050565b6000602082019050818103600083015261506481614c72565b9050919050565b6000602082019050818103600083015261508481614c95565b9050919050565b600060208201905081810360008301526150a481614cb8565b9050919050565b600060208201905081810360008301526150c481614cdb565b9050919050565b600060208201905081810360008301526150e481614cfe565b9050919050565b60006060820190506151006000830184614d63565b92915050565b600060208201905061511b6000830184614db4565b92915050565b600061512b61513c565b905061513782826154d0565b919050565b6000604051905090565b600067ffffffffffffffff82111561516157615160615665565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561518d5761518c615665565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151b9576151b8615665565b5b6151c2826156ad565b9050602081019050919050565b600067ffffffffffffffff8211156151ea576151e9615665565b5b6151f3826156ad565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152c08261543e565b91506152cb8361543e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615300576152ff6155a9565b5b828201905092915050565b60006153168261543e565b91506153218361543e565b925082615331576153306155d8565b5b828204905092915050565b60006153478261543e565b91506153528361543e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561538b5761538a6155a9565b5b828202905092915050565b60006153a18261543e565b91506153ac8361543e565b9250828210156153bf576153be6155a9565b5b828203905092915050565b60006153d58261541e565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561548957808201518184015260208101905061546e565b83811115615498576000848401525b50505050565b600060028204905060018216806154b657607f821691505b602082108114156154ca576154c9615607565b5b50919050565b6154d9826156ad565b810181811067ffffffffffffffff821117156154f8576154f7615665565b5b80604052505050565b600061550c8261543e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561553f5761553e6155a9565b5b600182019050919050565b600061555582615566565b9050919050565b6000819050919050565b6000615571826156be565b9050919050565b60006155838261543e565b915061558e8361543e565b92508261559e5761559d6155d8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e74696e67206e6f7420656e61626c6564000000000000600082015250565b7f536f7272792c20746f6f206d616e7920706572207472616e73616374696f6e00600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f57652061726520616c7265616479206f6e207075626c69632073616c65000000600082015250565b7f536f7272792c206e6f7420656e6f756768206c65667421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f536f7272792c20796f7520616c7265616479206f776e20746865206d6178206160008201527f6c6c6f77656420666f72207468652077686974656c6973740000000000000000602082015250565b7f536f7272792c20796f7520617265206e6f742077686974656c69737465640000600082015250565b7f536f7272792c20796f7520617265206e6f74206c697374656420666f7220707260008201527f6573616c65000000000000000000000000000000000000000000000000000000602082015250565b7f536f7272792c206e6f7420656e6f75676820616d6f756e742073656e74210000600082015250565b7f4d696e74696e6720697320706175736564000000000000000000000000000000600082015250565b7f536f7272792c20796f7520616c7265616479206f776e20746865206d6178206160008201527f6c6c6f77656420666f72207468652070726573616c6500000000000000000000602082015250565b6159d0816153ca565b81146159db57600080fd5b50565b6159e7816153dc565b81146159f257600080fd5b50565b6159fe816153e8565b8114615a0957600080fd5b50565b615a15816153f2565b8114615a2057600080fd5b50565b615a2c8161543e565b8114615a3757600080fd5b5056fea2646970667358221220c98140374013c741ce0290b7f9f367945a62cdcd8a5770c45b31fc70c7678ab164736f6c63430008070033
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.