ERC-721
Overview
Max Total Supply
4,029 SCRY
Holders
3,297
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SCRYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SCRY
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-31 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must 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 Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @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); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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 IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0) if (!_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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { 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 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) 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } pragma solidity ^0.8.0; contract SCRY is ERC721A, Ownable { using Strings for uint; uint public constant SCRY_LIMIT = 10; uint public constant MINT_PRICE = 0.0099 ether; uint public constant MAX_SUPPLY = 9999; address public immutable PAYMENT_ADDRESS; bool public isMetadataLocked = false; bool public isPaused = false; string private _baseURL = 'ipfs://QmZ2NTRwtLXgifwUchP58KNj8BLpS11WzvosfJ9tJNeaVV/'; constructor(address paymentsAddress_) ERC721A('sorceriestown.wtf', 'SCRY') { PAYMENT_ADDRESS = paymentsAddress_; } function _baseURI() internal view override returns (string memory) { return _baseURL; } function _startTokenId() internal pure override returns (uint) { return 1; } function lockSorceries() external onlyOwner { isMetadataLocked = true; } function reveal(string memory url) external onlyOwner { require(!isMetadataLocked, "locked"); _baseURL = url; } function mintedCount(address owner) external view returns (uint256) { return _numberMinted(owner); } function withdraw() external onlyOwner { uint balance = address(this).balance; require(balance > 0, 'broken'); payable(PAYMENT_ADDRESS).transfer(balance); } function tokenURI(uint tokenId) public view override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json")); } function mint(uint count) external payable { require(!isPaused, 'Sales are paused'); require(count <= SCRY_LIMIT,'Your are so thirsty'); require(_totalMinted() + count <= MAX_SUPPLY,'Sold Out? Sold Out!'); uint payCount = count; if(_numberMinted(msg.sender) == 0) { payCount--; } require( msg.value >= payCount * MINT_PRICE, 'Not enough ETH' ); _safeMint(msg.sender, count); } function devAirdrop(address to, uint count) external onlyOwner { require( _totalMinted() + count <= MAX_SUPPLY, 'sorceriestown.wtf: Over limit' ); _safeMint(to, count); } function setPause(bool value) external onlyOwner { isPaused = value; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"paymentsAddress_","type":"address"}],"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":"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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAYMENT_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SCRY_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"devAirdrop","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":[{"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":"isMetadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockSorceries","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"mintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setPause","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":[],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805461ffff60a01b19169055610100604052603660a081815290620022d560c039805162000038916009916020909101906200014b565b503480156200004657600080fd5b506040516200230b3803806200230b8339810160408190526200006991620001f1565b604080518082018252601181527039b7b931b2b934b2b9ba37bbb7173bba3360791b6020808301918252835180850190945260048452635343525960e01b908401528151919291620000be916002916200014b565b508051620000d49060039060208401906200014b565b5050600160005550620000e733620000f9565b6001600160a01b03166080526200025f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001599062000223565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b6000602082840312156200020457600080fd5b81516001600160a01b03811681146200021c57600080fd5b9392505050565b600181811c908216806200023857607f821691505b6020821081036200025957634e487b7160e01b600052602260045260246000fd5b50919050565b608051612053620002826000396000818161052c015261099101526120536000f3fe6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063bedb86fb11610095578063e026950511610064578063e02695051461051a578063e985e9c51461054e578063f2fde38b14610597578063fddcb5ea146105b757600080fd5b8063bedb86fb1461048d578063c002d23d146104ad578063c87b56dd146104c8578063d7e45cd7146104e857600080fd5b8063a0712d68116100d1578063a0712d6814610407578063a22cb4651461041a578063b187bd261461043a578063b88d4fde1461046d57600080fd5b80638da5cb5b146103bf57806395d89b41146103dd5780639fb3a336146103f257600080fd5b80633ccfd60b1161016f5780635fc4ca2a1161013e5780635fc4ca2a1461034a5780636352211e1461036a57806370a082311461038a578063715018a6146103aa57600080fd5b80633ccfd60b146102e057806342842e0e146102f55780634c2612471461031557806354860a0d1461033557600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102aa57806332cb6b0c146102ca57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611b33565b6105d7565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6106bc565b6040516101fe9190611ba8565b34801561023557600080fd5b50610249610244366004611bbb565b61074e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611bf0565b6107ab565b005b34801561028f57600080fd5b5060015460005403600019015b6040519081526020016101fe565b3480156102b657600080fd5b506102816102c5366004611c1a565b6108c7565b3480156102d657600080fd5b5061029c61270f81565b3480156102ec57600080fd5b506102816108d7565b34801561030157600080fd5b50610281610310366004611c1a565b6109de565b34801561032157600080fd5b50610281610330366004611ce2565b6109f9565b34801561034157600080fd5b5061029c600a81565b34801561035657600080fd5b50610281610365366004611bf0565b610ad1565b34801561037657600080fd5b50610249610385366004611bbb565b610b9e565b34801561039657600080fd5b5061029c6103a5366004611d2b565b610ba9565b3480156103b657600080fd5b50610281610c11565b3480156103cb57600080fd5b506008546001600160a01b0316610249565b3480156103e957600080fd5b5061021c610c77565b3480156103fe57600080fd5b50610281610c86565b610281610415366004611bbb565b610d21565b34801561042657600080fd5b50610281610435366004611d56565b610ee5565b34801561044657600080fd5b506008546101f2907501000000000000000000000000000000000000000000900460ff1681565b34801561047957600080fd5b50610281610488366004611d89565b610fb1565b34801561049957600080fd5b506102816104a8366004611e05565b611014565b3480156104b957600080fd5b5061029c66232bff5f46c00081565b3480156104d457600080fd5b5061021c6104e3366004611bbb565b6110b9565b3480156104f457600080fd5b506008546101f29074010000000000000000000000000000000000000000900460ff1681565b34801561052657600080fd5b506102497f000000000000000000000000000000000000000000000000000000000000000081565b34801561055a57600080fd5b506101f2610569366004611e20565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a357600080fd5b506102816105b2366004611d2b565b61116e565b3480156105c357600080fd5b5061029c6105d2366004611d2b565b611250565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061066a57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806106b657507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546106cb90611e4a565b80601f01602080910402602001604051908101604052809291908181526020018280546106f790611e4a565b80156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b60006107598261127b565b61078f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b6826112c9565b9050806001600160a01b0316836001600160a01b031603610803576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108535761081d8133610569565b610853576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d2838383611371565b505050565b6008546001600160a01b031633146109365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b47806109845760405162461bcd60e51b815260206004820152600660248201527f62726f6b656e0000000000000000000000000000000000000000000000000000604482015260640161092d565b6040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169082156108fc029083906000818181858888f193505050501580156109da573d6000803e3d6000fd5b5050565b6108d283838360405180602001604052806000815250610fb1565b6008546001600160a01b03163314610a535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b60085474010000000000000000000000000000000000000000900460ff1615610abe5760405162461bcd60e51b815260206004820152600660248201527f6c6f636b65640000000000000000000000000000000000000000000000000000604482015260640161092d565b80516109da906009906020840190611a6c565b6008546001600160a01b03163314610b2b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b61270f81610b3c6000546000190190565b610b469190611e9a565b1115610b945760405162461bcd60e51b815260206004820152601d60248201527f736f72636572696573746f776e2e7774663a204f766572206c696d6974000000604482015260640161092d565b6109da8282611595565b60006106b6826112c9565b60006001600160a01b038216610beb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b610c7560006115af565b565b6060600380546106cb90611e4a565b6008546001600160a01b03163314610ce05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6008547501000000000000000000000000000000000000000000900460ff1615610d8d5760405162461bcd60e51b815260206004820152601060248201527f53616c6573206172652070617573656400000000000000000000000000000000604482015260640161092d565b600a811115610dde5760405162461bcd60e51b815260206004820152601360248201527f596f75722061726520736f207468697273747900000000000000000000000000604482015260640161092d565b61270f81610def6000546000190190565b610df99190611e9a565b1115610e475760405162461bcd60e51b815260206004820152601360248201527f536f6c64204f75743f20536f6c64204f75742100000000000000000000000000604482015260640161092d565b33600090815260056020526040908190205482911c67ffffffffffffffff16600003610e7b5780610e7781611eb2565b9150505b610e8c66232bff5f46c00082611ec9565b341015610edb5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420656e6f75676820455448000000000000000000000000000000000000604482015260640161092d565b6109da3383611595565b336001600160a01b03831603610f27576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fbc848484611371565b6001600160a01b0383163b1561100e57610fd884848484611619565b61100e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461106e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b600880549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606110c48261127b565b6111365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161092d565b61113e611768565b61114783611777565b604051602001611158929190611ee8565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146111c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b6001600160a01b0381166112445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161092d565b61124d816115af565b50565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106b6565b60008160011115801561128f575060005482105b80156106b65750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000818060011161133f5760005481101561133f57600081815260046020526040812054907c01000000000000000000000000000000000000000000000000000000008216900361133d575b80600003611336575060001901600081815260046020526040902054611315565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061137c826112c9565b9050836001600160a01b0316816001600160a01b0316146113c9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806113e757506113e78533610569565b806114025750336113f78461074e565b6001600160a01b0316145b90508061143b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661147b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b871781179091558316900361154d5760018301600081815260046020526040812054900361154b57600054811461154b5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109da8282604051806020016040528060008152506118ac565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611667903390899088908890600401611f3f565b6020604051808303816000875af19250505080156116a2575060408051601f3d908101601f1916820190925261169f91810190611f7b565b60015b611719573d8080156116d0576040519150601f19603f3d011682016040523d82523d6000602084013e6116d5565b606091505b508051600003611711576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600980546106cb90611e4a565b6060816000036117ba57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156117e457806117ce81611f98565b91506117dd9050600a83611fc8565b91506117be565b60008167ffffffffffffffff8111156117ff576117ff611c56565b6040519080825280601f01601f191660200182016040528015611829576020820181803683370190505b5090505b84156117605761183e600183611fdc565b915061184b600a86611ff3565b611856906030611e9a565b60f81b81838151811061186b5761186b612007565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118a5600a86611fc8565b945061182d565b6000546001600160a01b0384166118ef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600003611929576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611a17575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119c76000878480600101955087611619565b6119fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061197c578260005414611a1257600080fd5b611a5c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a18575b50600090815561100e9085838684565b828054611a7890611e4a565b90600052602060002090601f016020900481019282611a9a5760008555611ae0565b82601f10611ab357805160ff1916838001178555611ae0565b82800160010185558215611ae0579182015b82811115611ae0578251825591602001919060010190611ac5565b50611aec929150611af0565b5090565b5b80821115611aec5760008155600101611af1565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461124d57600080fd5b600060208284031215611b4557600080fd5b813561133681611b05565b60005b83811015611b6b578181015183820152602001611b53565b8381111561100e5750506000910152565b60008151808452611b94816020860160208601611b50565b601f01601f19169290920160200192915050565b6020815260006113366020830184611b7c565b600060208284031215611bcd57600080fd5b5035919050565b80356001600160a01b0381168114611beb57600080fd5b919050565b60008060408385031215611c0357600080fd5b611c0c83611bd4565b946020939093013593505050565b600080600060608486031215611c2f57600080fd5b611c3884611bd4565b9250611c4660208501611bd4565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c8757611c87611c56565b604051601f8501601f19908116603f01168101908282118183101715611caf57611caf611c56565b81604052809350858152868686011115611cc857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cf457600080fd5b813567ffffffffffffffff811115611d0b57600080fd5b8201601f81018413611d1c57600080fd5b61176084823560208401611c6c565b600060208284031215611d3d57600080fd5b61133682611bd4565b80358015158114611beb57600080fd5b60008060408385031215611d6957600080fd5b611d7283611bd4565b9150611d8060208401611d46565b90509250929050565b60008060008060808587031215611d9f57600080fd5b611da885611bd4565b9350611db660208601611bd4565b925060408501359150606085013567ffffffffffffffff811115611dd957600080fd5b8501601f81018713611dea57600080fd5b611df987823560208401611c6c565b91505092959194509250565b600060208284031215611e1757600080fd5b61133682611d46565b60008060408385031215611e3357600080fd5b611e3c83611bd4565b9150611d8060208401611bd4565b600181811c90821680611e5e57607f821691505b602082108103611e7e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ead57611ead611e84565b500190565b600081611ec157611ec1611e84565b506000190190565b6000816000190483118215151615611ee357611ee3611e84565b500290565b60008351611efa818460208801611b50565b835190830190611f0e818360208801611b50565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f716080830184611b7c565b9695505050505050565b600060208284031215611f8d57600080fd5b815161133681611b05565b60006000198203611fab57611fab611e84565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611fd757611fd7611fb2565b500490565b600082821015611fee57611fee611e84565b500390565b60008261200257612002611fb2565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122050e03bc0ad1786e8f879210771a367dcd1fc048c6bae00645202b3dcf43b89a464736f6c634300080e0033697066733a2f2f516d5a324e545277744c58676966775563685035384b4e6a38424c70533131577a766f73664a39744a4e656156562f00000000000000000000000069bd64ec23f77a72f2be855d5ebec91c1ec5217c
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c80638da5cb5b116100f7578063bedb86fb11610095578063e026950511610064578063e02695051461051a578063e985e9c51461054e578063f2fde38b14610597578063fddcb5ea146105b757600080fd5b8063bedb86fb1461048d578063c002d23d146104ad578063c87b56dd146104c8578063d7e45cd7146104e857600080fd5b8063a0712d68116100d1578063a0712d6814610407578063a22cb4651461041a578063b187bd261461043a578063b88d4fde1461046d57600080fd5b80638da5cb5b146103bf57806395d89b41146103dd5780639fb3a336146103f257600080fd5b80633ccfd60b1161016f5780635fc4ca2a1161013e5780635fc4ca2a1461034a5780636352211e1461036a57806370a082311461038a578063715018a6146103aa57600080fd5b80633ccfd60b146102e057806342842e0e146102f55780634c2612471461031557806354860a0d1461033557600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102aa57806332cb6b0c146102ca57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611b33565b6105d7565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6106bc565b6040516101fe9190611ba8565b34801561023557600080fd5b50610249610244366004611bbb565b61074e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611bf0565b6107ab565b005b34801561028f57600080fd5b5060015460005403600019015b6040519081526020016101fe565b3480156102b657600080fd5b506102816102c5366004611c1a565b6108c7565b3480156102d657600080fd5b5061029c61270f81565b3480156102ec57600080fd5b506102816108d7565b34801561030157600080fd5b50610281610310366004611c1a565b6109de565b34801561032157600080fd5b50610281610330366004611ce2565b6109f9565b34801561034157600080fd5b5061029c600a81565b34801561035657600080fd5b50610281610365366004611bf0565b610ad1565b34801561037657600080fd5b50610249610385366004611bbb565b610b9e565b34801561039657600080fd5b5061029c6103a5366004611d2b565b610ba9565b3480156103b657600080fd5b50610281610c11565b3480156103cb57600080fd5b506008546001600160a01b0316610249565b3480156103e957600080fd5b5061021c610c77565b3480156103fe57600080fd5b50610281610c86565b610281610415366004611bbb565b610d21565b34801561042657600080fd5b50610281610435366004611d56565b610ee5565b34801561044657600080fd5b506008546101f2907501000000000000000000000000000000000000000000900460ff1681565b34801561047957600080fd5b50610281610488366004611d89565b610fb1565b34801561049957600080fd5b506102816104a8366004611e05565b611014565b3480156104b957600080fd5b5061029c66232bff5f46c00081565b3480156104d457600080fd5b5061021c6104e3366004611bbb565b6110b9565b3480156104f457600080fd5b506008546101f29074010000000000000000000000000000000000000000900460ff1681565b34801561052657600080fd5b506102497f00000000000000000000000069bd64ec23f77a72f2be855d5ebec91c1ec5217c81565b34801561055a57600080fd5b506101f2610569366004611e20565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105a357600080fd5b506102816105b2366004611d2b565b61116e565b3480156105c357600080fd5b5061029c6105d2366004611d2b565b611250565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061066a57507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806106b657507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546106cb90611e4a565b80601f01602080910402602001604051908101604052809291908181526020018280546106f790611e4a565b80156107445780601f1061071957610100808354040283529160200191610744565b820191906000526020600020905b81548152906001019060200180831161072757829003601f168201915b5050505050905090565b60006107598261127b565b61078f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b6826112c9565b9050806001600160a01b0316836001600160a01b031603610803576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216146108535761081d8133610569565b610853576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d2838383611371565b505050565b6008546001600160a01b031633146109365760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b47806109845760405162461bcd60e51b815260206004820152600660248201527f62726f6b656e0000000000000000000000000000000000000000000000000000604482015260640161092d565b6040516001600160a01b037f00000000000000000000000069bd64ec23f77a72f2be855d5ebec91c1ec5217c169082156108fc029083906000818181858888f193505050501580156109da573d6000803e3d6000fd5b5050565b6108d283838360405180602001604052806000815250610fb1565b6008546001600160a01b03163314610a535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b60085474010000000000000000000000000000000000000000900460ff1615610abe5760405162461bcd60e51b815260206004820152600660248201527f6c6f636b65640000000000000000000000000000000000000000000000000000604482015260640161092d565b80516109da906009906020840190611a6c565b6008546001600160a01b03163314610b2b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b61270f81610b3c6000546000190190565b610b469190611e9a565b1115610b945760405162461bcd60e51b815260206004820152601d60248201527f736f72636572696573746f776e2e7774663a204f766572206c696d6974000000604482015260640161092d565b6109da8282611595565b60006106b6826112c9565b60006001600160a01b038216610beb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b610c7560006115af565b565b6060600380546106cb90611e4a565b6008546001600160a01b03163314610ce05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6008547501000000000000000000000000000000000000000000900460ff1615610d8d5760405162461bcd60e51b815260206004820152601060248201527f53616c6573206172652070617573656400000000000000000000000000000000604482015260640161092d565b600a811115610dde5760405162461bcd60e51b815260206004820152601360248201527f596f75722061726520736f207468697273747900000000000000000000000000604482015260640161092d565b61270f81610def6000546000190190565b610df99190611e9a565b1115610e475760405162461bcd60e51b815260206004820152601360248201527f536f6c64204f75743f20536f6c64204f75742100000000000000000000000000604482015260640161092d565b33600090815260056020526040908190205482911c67ffffffffffffffff16600003610e7b5780610e7781611eb2565b9150505b610e8c66232bff5f46c00082611ec9565b341015610edb5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420656e6f75676820455448000000000000000000000000000000000000604482015260640161092d565b6109da3383611595565b336001600160a01b03831603610f27576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610fbc848484611371565b6001600160a01b0383163b1561100e57610fd884848484611619565b61100e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461106e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b600880549115157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff909216919091179055565b60606110c48261127b565b6111365760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161092d565b61113e611768565b61114783611777565b604051602001611158929190611ee8565b6040516020818303038152906040529050919050565b6008546001600160a01b031633146111c85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161092d565b6001600160a01b0381166112445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161092d565b61124d816115af565b50565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c166106b6565b60008160011115801561128f575060005482105b80156106b65750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b6000818060011161133f5760005481101561133f57600081815260046020526040812054907c01000000000000000000000000000000000000000000000000000000008216900361133d575b80600003611336575060001901600081815260046020526040902054611315565b9392505050565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061137c826112c9565b9050836001600160a01b0316816001600160a01b0316146113c9576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b03861614806113e757506113e78533610569565b806114025750336113f78461074e565b6001600160a01b0316145b90508061143b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841661147b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b871781179091558316900361154d5760018301600081815260046020526040812054900361154b57600054811461154b5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6109da8282604051806020016040528060008152506118ac565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611667903390899088908890600401611f3f565b6020604051808303816000875af19250505080156116a2575060408051601f3d908101601f1916820190925261169f91810190611f7b565b60015b611719573d8080156116d0576040519150601f19603f3d011682016040523d82523d6000602084013e6116d5565b606091505b508051600003611711576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b6060600980546106cb90611e4a565b6060816000036117ba57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156117e457806117ce81611f98565b91506117dd9050600a83611fc8565b91506117be565b60008167ffffffffffffffff8111156117ff576117ff611c56565b6040519080825280601f01601f191660200182016040528015611829576020820181803683370190505b5090505b84156117605761183e600183611fdc565b915061184b600a86611ff3565b611856906030611e9a565b60f81b81838151811061186b5761186b612007565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506118a5600a86611fc8565b945061182d565b6000546001600160a01b0384166118ef576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600003611929576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611a17575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119c76000878480600101955087611619565b6119fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061197c578260005414611a1257600080fd5b611a5c565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611a18575b50600090815561100e9085838684565b828054611a7890611e4a565b90600052602060002090601f016020900481019282611a9a5760008555611ae0565b82601f10611ab357805160ff1916838001178555611ae0565b82800160010185558215611ae0579182015b82811115611ae0578251825591602001919060010190611ac5565b50611aec929150611af0565b5090565b5b80821115611aec5760008155600101611af1565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461124d57600080fd5b600060208284031215611b4557600080fd5b813561133681611b05565b60005b83811015611b6b578181015183820152602001611b53565b8381111561100e5750506000910152565b60008151808452611b94816020860160208601611b50565b601f01601f19169290920160200192915050565b6020815260006113366020830184611b7c565b600060208284031215611bcd57600080fd5b5035919050565b80356001600160a01b0381168114611beb57600080fd5b919050565b60008060408385031215611c0357600080fd5b611c0c83611bd4565b946020939093013593505050565b600080600060608486031215611c2f57600080fd5b611c3884611bd4565b9250611c4660208501611bd4565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c8757611c87611c56565b604051601f8501601f19908116603f01168101908282118183101715611caf57611caf611c56565b81604052809350858152868686011115611cc857600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cf457600080fd5b813567ffffffffffffffff811115611d0b57600080fd5b8201601f81018413611d1c57600080fd5b61176084823560208401611c6c565b600060208284031215611d3d57600080fd5b61133682611bd4565b80358015158114611beb57600080fd5b60008060408385031215611d6957600080fd5b611d7283611bd4565b9150611d8060208401611d46565b90509250929050565b60008060008060808587031215611d9f57600080fd5b611da885611bd4565b9350611db660208601611bd4565b925060408501359150606085013567ffffffffffffffff811115611dd957600080fd5b8501601f81018713611dea57600080fd5b611df987823560208401611c6c565b91505092959194509250565b600060208284031215611e1757600080fd5b61133682611d46565b60008060408385031215611e3357600080fd5b611e3c83611bd4565b9150611d8060208401611bd4565b600181811c90821680611e5e57607f821691505b602082108103611e7e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ead57611ead611e84565b500190565b600081611ec157611ec1611e84565b506000190190565b6000816000190483118215151615611ee357611ee3611e84565b500290565b60008351611efa818460208801611b50565b835190830190611f0e818360208801611b50565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611f716080830184611b7c565b9695505050505050565b600060208284031215611f8d57600080fd5b815161133681611b05565b60006000198203611fab57611fab611e84565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611fd757611fd7611fb2565b500490565b600082821015611fee57611fee611e84565b500390565b60008261200257612002611fb2565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122050e03bc0ad1786e8f879210771a367dcd1fc048c6bae00645202b3dcf43b89a464736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000069bd64ec23f77a72f2be855d5ebec91c1ec5217c
-----Decoded View---------------
Arg [0] : paymentsAddress_ (address): 0x69Bd64eC23f77A72F2bE855D5EBeC91C1EC5217c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000069bd64ec23f77a72f2be855d5ebec91c1ec5217c
Deployed Bytecode Sourcemap
43962:2250:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15232:615;;;;;;;;;;-1:-1:-1;15232:615:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;15232:615:0;;;;;;;;20245:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22313:204::-;;;;;;;;;;-1:-1:-1;22313:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:1;;;1779:74;;1767:2;1752:18;22313:204:0;1633:226:1;21773:474:0;;;;;;;;;;-1:-1:-1;21773:474:0;;;;;:::i;:::-;;:::i;:::-;;14286:315;;;;;;;;;;-1:-1:-1;44678:1:0;14552:12;14339:7;14536:13;:28;-1:-1:-1;;14536:46:0;14286:315;;;2470:25:1;;;2458:2;2443:18;14286:315:0;2324:177:1;23199:170:0;;;;;;;;;;-1:-1:-1;23199:170:0;;;;;:::i;:::-;;:::i;44116:38::-;;;;;;;;;;;;44150:4;44116:38;;45035:167;;;;;;;;;;;;;:::i;23440:185::-;;;;;;;;;;-1:-1:-1;23440:185:0;;;;;:::i;:::-;;:::i;44783:125::-;;;;;;;;;;-1:-1:-1;44783:125:0;;;;;:::i;:::-;;:::i;44026:36::-;;;;;;;;;;;;44060:2;44026:36;;45935:189;;;;;;;;;;-1:-1:-1;45935:189:0;;;;;:::i;:::-;;:::i;20034:144::-;;;;;;;;;;-1:-1:-1;20034:144:0;;;;;:::i;:::-;;:::i;15911:224::-;;;;;;;;;;-1:-1:-1;15911:224:0;;;;;:::i;:::-;;:::i;43112:103::-;;;;;;;;;;;;;:::i;42461:87::-;;;;;;;;;;-1:-1:-1;42534:6:0;;-1:-1:-1;;;;;42534:6:0;42461:87;;20414:104;;;;;;;;;;;;;:::i;44692:86::-;;;;;;;;;;;;;:::i;45489:441::-;;;;;;:::i;:::-;;:::i;22589:308::-;;;;;;;;;;-1:-1:-1;22589:308:0;;;;;:::i;:::-;;:::i;44247:28::-;;;;;;;;;;-1:-1:-1;44247:28:0;;;;;;;;;;;23696:396;;;;;;;;;;-1:-1:-1;23696:396:0;;;;;:::i;:::-;;:::i;46132:75::-;;;;;;;;;;-1:-1:-1;46132:75:0;;;;;:::i;:::-;;:::i;44066:46::-;;;;;;;;;;;;44100:12;44066:46;;45209:275;;;;;;;;;;-1:-1:-1;45209:275:0;;;;;:::i;:::-;;:::i;44207:36::-;;;;;;;;;;-1:-1:-1;44207:36:0;;;;;;;;;;;44158:40;;;;;;;;;;;;;;;22968:164;;;;;;;;;;-1:-1:-1;22968:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23089:25:0;;;23065:4;23089:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22968:164;43370:201;;;;;;;;;;-1:-1:-1;43370:201:0;;;;;:::i;:::-;;:::i;44916:114::-;;;;;;;;;;-1:-1:-1;44916:114:0;;;;;:::i;:::-;;:::i;15232:615::-;15317:4;15617:25;;;;;;:102;;-1:-1:-1;15694:25:0;;;;;15617:102;:179;;;-1:-1:-1;15771:25:0;;;;;15617:179;15597:199;15232:615;-1:-1:-1;;15232:615:0:o;20245:100::-;20299:13;20332:5;20325:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20245:100;:::o;22313:204::-;22381:7;22406:16;22414:7;22406;:16::i;:::-;22401:64;;22431:34;;;;;;;;;;;;;;22401:64;-1:-1:-1;22485:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22485:24:0;;22313:204::o;21773:474::-;21846:13;21878:27;21897:7;21878:18;:27::i;:::-;21846:61;;21928:5;-1:-1:-1;;;;;21922:11:0;:2;-1:-1:-1;;;;;21922:11:0;;21918:48;;21942:24;;;;;;;;;;;;;;21918:48;38416:10;-1:-1:-1;;;;;21983:28:0;;;21979:175;;22031:44;22048:5;38416:10;22968:164;:::i;22031:44::-;22026:128;;22103:35;;;;;;;;;;;;;;22026:128;22166:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;22166:29:0;;;;;;;;;22211:28;;22166:24;;22211:28;;;;;;;21835:412;21773:474;;:::o;23199:170::-;23333:28;23343:4;23349:2;23353:7;23333:9;:28::i;:::-;23199:170;;;:::o;45035:167::-;42534:6;;-1:-1:-1;;;;;42534:6:0;38416:10;42681:23;42673:68;;;;-1:-1:-1;;;42673:68:0;;6561:2:1;42673:68:0;;;6543:21:1;;;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;6691:18;;42673:68:0;;;;;;;;;45094:21:::1;45128:11:::0;45120:30:::1;;;::::0;-1:-1:-1;;;45120:30:0;;6922:2:1;45120:30:0::1;::::0;::::1;6904:21:1::0;6961:1;6941:18;;;6934:29;6999:8;6979:18;;;6972:36;7025:18;;45120:30:0::1;6720:329:1::0;45120:30:0::1;45155:42;::::0;-1:-1:-1;;;;;45163:15:0::1;45155:33;::::0;:42;::::1;;;::::0;45189:7;;45155:42:::1;::::0;;;45189:7;45155:33;:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45074:128;45035:167::o:0;23440:185::-;23578:39;23595:4;23601:2;23605:7;23578:39;;;;;;;;;;;;:16;:39::i;44783:125::-;42534:6;;-1:-1:-1;;;;;42534:6:0;38416:10;42681:23;42673:68;;;;-1:-1:-1;;;42673:68:0;;6561:2:1;42673:68:0;;;6543:21:1;;;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;6691:18;;42673:68:0;6359:356:1;42673:68:0;44857:16:::1;::::0;;;::::1;;;44856:17;44848:36;;;::::0;-1:-1:-1;;;44848:36:0;;7256:2:1;44848:36:0::1;::::0;::::1;7238:21:1::0;7295:1;7275:18;;;7268:29;7333:8;7313:18;;;7306:36;7359:18;;44848:36:0::1;7054:329:1::0;44848:36:0::1;44889:14:::0;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;45935:189::-:0;42534:6;;-1:-1:-1;;;;;42534:6:0;38416:10;42681:23;42673:68;;;;-1:-1:-1;;;42673:68:0;;6561:2:1;42673:68:0;;;6543:21:1;;;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;6691:18;;42673:68:0;6359:356:1;42673:68:0;44150:4:::1;46033:5;46016:14;14746:7:::0;14934:13;-1:-1:-1;;14934:31:0;;14699:285;46016:14:::1;:22;;;;:::i;:::-;:36;;46003:91;;;::::0;-1:-1:-1;;;46003:91:0;;7912:2:1;46003:91:0::1;::::0;::::1;7894:21:1::0;7951:2;7931:18;;;7924:30;7990:31;7970:18;;;7963:59;8039:18;;46003:91:0::1;7710:353:1::0;46003:91:0::1;46099:20;46109:2;46113:5;46099:9;:20::i;20034:144::-:0;20098:7;20141:27;20160:7;20141:18;:27::i;15911:224::-;15975:7;-1:-1:-1;;;;;15999:19:0;;15995:60;;16027:28;;;;;;;;;;;;;;15995:60;-1:-1:-1;;;;;;16073:25:0;;;;;:18;:25;;;;;;11250:13;16073:54;;15911:224::o;43112:103::-;42534:6;;-1:-1:-1;;;;;42534:6:0;38416:10;42681:23;42673:68;;;;-1:-1:-1;;;42673:68:0;;6561:2:1;42673:68:0;;;6543:21:1;;;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;6691:18;;42673:68:0;6359:356:1;42673:68:0;43177:30:::1;43204:1;43177:18;:30::i;:::-;43112:103::o:0;20414:104::-;20470:13;20503:7;20496:14;;;;;:::i;44692:86::-;42534:6;;-1:-1:-1;;;;;42534:6:0;38416:10;42681:23;42673:68;;;;-1:-1:-1;;;42673:68:0;;6561:2:1;42673:68:0;;;6543:21:1;;;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;6691:18;;42673:68:0;6359:356:1;42673:68:0;44747:16:::1;:23:::0;;;::::1;::::0;::::1;::::0;;44692:86::o;45489:441::-;45546:8;;;;;;;45545:9;45537:38;;;;-1:-1:-1;;;45537:38:0;;8270:2:1;45537:38:0;;;8252:21:1;8309:2;8289:18;;;8282:30;8348:18;8328;;;8321:46;8384:18;;45537:38:0;8068:340:1;45537:38:0;44060:2;45588:5;:19;;45580:50;;;;-1:-1:-1;;;45580:50:0;;8615:2:1;45580:50:0;;;8597:21:1;8654:2;8634:18;;;8627:30;8693:21;8673:18;;;8666:49;8732:18;;45580:50:0;8413:343:1;45580:50:0;44150:4;45660:5;45643:14;14746:7;14934:13;-1:-1:-1;;14934:31:0;;14699:285;45643:14;:22;;;;:::i;:::-;:36;;45635:67;;;;-1:-1:-1;;;45635:67:0;;8963:2:1;45635:67:0;;;8945:21:1;9002:2;8982:18;;;8975:30;9041:21;9021:18;;;9014:49;9080:18;;45635:67:0;8761:343:1;45635:67:0;45764:10;16278:7;16306:25;;;:18;:25;;11387:2;16306:25;;;;;45731:5;;16306:49;11250:13;16305:80;45779:1;45750:30;45747:63;;45788:10;;;;:::i;:::-;;;;45747:63;45842:21;44100:12;45842:8;:21;:::i;:::-;45829:9;:34;;45816:74;;;;-1:-1:-1;;;45816:74:0;;9745:2:1;45816:74:0;;;9727:21:1;9784:2;9764:18;;;9757:30;9823:16;9803:18;;;9796:44;9857:18;;45816:74:0;9543:338:1;45816:74:0;45897:28;45907:10;45919:5;45897:9;:28::i;22589:308::-;38416:10;-1:-1:-1;;;;;22688:31:0;;;22684:61;;22728:17;;;;;;;;;;;;;;22684:61;38416:10;22758:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;22758:49:0;;;;;;;;;;;;:60;;;;;;;;;;;;;22834:55;;586:41:1;;;22758:49:0;;38416:10;22834:55;;559:18:1;22834:55:0;;;;;;;22589:308;;:::o;23696:396::-;23863:28;23873:4;23879:2;23883:7;23863:9;:28::i;:::-;-1:-1:-1;;;;;23906:14:0;;;:19;23902:183;;23945:56;23976:4;23982:2;23986:7;23995:5;23945:30;:56::i;:::-;23940:145;;24029:40;;;;;;;;;;;;;;23940:145;23696:396;;;;:::o;46132:75::-;42534:6;;-1:-1:-1;;;;;42534:6:0;38416:10;42681:23;42673:68;;;;-1:-1:-1;;;42673:68:0;;6561:2:1;42673:68:0;;;6543:21:1;;;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;6691:18;;42673:68:0;6359:356:1;42673:68:0;46186:8:::1;:16:::0;;;::::1;;::::0;::::1;::::0;;;::::1;::::0;;;::::1;::::0;;46132:75::o;45209:275::-;45283:13;45319:16;45327:7;45319;:16::i;:::-;45311:76;;;;-1:-1:-1;;;45311:76:0;;10088:2:1;45311:76:0;;;10070:21:1;10127:2;10107:18;;;10100:30;10166:34;10146:18;;;10139:62;10237:17;10217:18;;;10210:45;10272:19;;45311:76:0;9886:411:1;45311:76:0;45431:10;:8;:10::i;:::-;45443:18;:7;:16;:18::i;:::-;45414:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45400:72;;45209:275;;;:::o;43370:201::-;42534:6;;-1:-1:-1;;;;;42534:6:0;38416:10;42681:23;42673:68;;;;-1:-1:-1;;;42673:68:0;;6561:2:1;42673:68:0;;;6543:21:1;;;6580:18;;;6573:30;6639:34;6619:18;;;6612:62;6691:18;;42673:68:0;6359:356:1;42673:68:0;-1:-1:-1;;;;;43459:22:0;::::1;43451:73;;;::::0;-1:-1:-1;;;43451:73:0;;11146:2:1;43451:73:0::1;::::0;::::1;11128:21:1::0;11185:2;11165:18;;;11158:30;11224:34;11204:18;;;11197:62;11295:8;11275:18;;;11268:36;11321:19;;43451:73:0::1;10944:402:1::0;43451:73:0::1;43535:28;43554:8;43535:18;:28::i;:::-;43370:201:::0;:::o;44916:114::-;-1:-1:-1;;;;;16306:25:0;;44975:7;16306:25;;;:18;:25;;11387:2;16306:25;;;;11250:13;16306:49;;16305:80;45002:20;16217:176;24347:273;24404:4;24460:7;44678:1;24441:26;;:66;;;;;24494:13;;24484:7;:23;24441:66;:152;;;;-1:-1:-1;;24545:26:0;;;;:17;:26;;;;;;12020:8;24545:43;:48;;24347:273::o;17549:1129::-;17616:7;17651;;44678:1;17700:23;17696:915;;17753:13;;17746:4;:20;17742:869;;;17791:14;17808:23;;;:17;:23;;;;;;;12020:8;17897:23;;:28;;17893:699;;18416:113;18423:6;18433:1;18423:11;18416:113;;-1:-1:-1;;;18494:6:0;18476:25;;;;:17;:25;;;;;;18416:113;;;18562:6;17549:1129;-1:-1:-1;;;17549:1129:0:o;17893:699::-;17768:843;17742:869;18639:31;;;;;;;;;;;;;;29586:2515;29701:27;29731;29750:7;29731:18;:27::i;:::-;29701:57;;29816:4;-1:-1:-1;;;;;29775:45:0;29791:19;-1:-1:-1;;;;;29775:45:0;;29771:86;;29829:28;;;;;;;;;;;;;;29771:86;29870:22;38416:10;-1:-1:-1;;;;;29896:27:0;;;;:87;;-1:-1:-1;29940:43:0;29957:4;38416:10;22968:164;:::i;29940:43::-;29896:147;;;-1:-1:-1;38416:10:0;30000:20;30012:7;30000:11;:20::i;:::-;-1:-1:-1;;;;;30000:43:0;;29896:147;29870:174;;30062:17;30057:66;;30088:35;;;;;;;;;;;;;;30057:66;-1:-1:-1;;;;;30138:16:0;;30134:52;;30163:23;;;;;;;;;;;;;;30134:52;30315:24;;;;:15;:24;;;;;;;;30308:31;;;;;;-1:-1:-1;;;;;30707:24:0;;;;;:18;:24;;;;;30705:26;;-1:-1:-1;;30705:26:0;;;30776:22;;;;;;;30774:24;;-1:-1:-1;30774:24:0;;;31069:26;;;:17;:26;;;;;12302:8;31157:15;11904:3;31157:41;31115:84;;:128;;31069:174;;;31363:46;;:51;;31359:626;;31467:1;31457:11;;31435:19;31590:30;;;:17;:30;;;;;;:35;;31586:384;;31728:13;;31713:11;:28;31709:242;;31875:30;;;;:17;:30;;;;;:52;;;31709:242;31416:569;31359:626;32032:7;32028:2;-1:-1:-1;;;;;32013:27:0;32022:4;-1:-1:-1;;;;;32013:27:0;;;;;;;;;;;29690:2411;;29586:2515;;;:::o;24704:104::-;24773:27;24783:2;24787:8;24773:27;;;;;;;;;;;;:9;:27::i;43731:191::-;43824:6;;;-1:-1:-1;;;;;43841:17:0;;;;;;;;;;;43874:40;;43824:6;;;43841:17;43824:6;;43874:40;;43805:16;;43874:40;43794:128;43731:191;:::o;35798:716::-;35982:88;;;;;35961:4;;-1:-1:-1;;;;;35982:45:0;;;;;:88;;38416:10;;36049:4;;36055:7;;36064:5;;35982:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35982:88:0;;;;;;;;-1:-1:-1;;35982:88:0;;;;;;;;;;;;:::i;:::-;;;35978:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36265:6;:13;36282:1;36265:18;36261:235;;36311:40;;;;;;;;;;;;;;36261:235;36454:6;36448:13;36439:6;36435:2;36431:15;36424:38;35978:529;36141:64;;36151:54;36141:64;;-1:-1:-1;35978:529:0;35798:716;;;;;;:::o;44506:92::-;44558:13;44585:8;44578:15;;;;;:::i;400:723::-;456:13;677:5;686:1;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;;;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;25181:2236;25304:20;25327:13;-1:-1:-1;;;;;25355:16:0;;25351:48;;25380:19;;;;;;;;;;;;;;25351:48;25414:8;25426:1;25414:13;25410:44;;25436:18;;;;;;;;;;;;;;25410:44;-1:-1:-1;;;;;26003:22:0;;;;;;:18;:22;;;;11387:2;26003:22;;;:70;;26041:31;26029:44;;26003:70;;;26316:31;;;:17;:31;;;;;26409:15;11904:3;26409:41;26367:84;;-1:-1:-1;26487:13:0;;12167:3;26472:56;26367:162;26316:213;;:31;;26610:23;;;;26654:14;:19;26650:635;;26694:313;26725:38;;26750:12;;-1:-1:-1;;;;;26725:38:0;;;26742:1;;26725:38;;26742:1;;26725:38;26791:69;26830:1;26834:2;26838:14;;;;;;26854:5;26791:30;:69::i;:::-;26786:174;;26896:40;;;;;;;;;;;;;;26786:174;27002:3;26987:12;:18;26694:313;;27088:12;27071:13;;:29;27067:43;;27102:8;;;27067:43;26650:635;;;27151:119;27182:40;;27207:14;;;;;-1:-1:-1;;;;;27182:40:0;;;27199:1;;27182:40;;27199:1;;27182:40;27265:3;27250:12;:18;27151:119;;26650:635;-1:-1:-1;27299:13:0;:28;;;27349:60;;27382:2;27386:12;27400:8;27349:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:1;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;-1:-1:-1;;1116:88:1;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:1:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:1;;1448:180;-1:-1:-1;1448:180:1:o;1864:196::-;1932:20;;-1:-1:-1;;;;;1981:54:1;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:1:o;2506:328::-;2583:6;2591;2599;2652:2;2640:9;2631:7;2627:23;2623:32;2620:52;;;2668:1;2665;2658:12;2620:52;2691:29;2710:9;2691:29;:::i;:::-;2681:39;;2739:38;2773:2;2762:9;2758:18;2739:38;:::i;:::-;2729:48;;2824:2;2813:9;2809:18;2796:32;2786:42;;2506:328;;;;;:::o;2839:184::-;-1:-1:-1;;;2888:1:1;2881:88;2988:4;2985:1;2978:15;3012:4;3009:1;3002:15;3028:691;3093:5;3123:18;3164:2;3156:6;3153:14;3150:40;;;3170:18;;:::i;:::-;3304:2;3298:9;3370:2;3358:15;;-1:-1:-1;;3354:24:1;;;3380:2;3350:33;3346:42;3334:55;;;3404:18;;;3424:22;;;3401:46;3398:72;;;3450:18;;:::i;:::-;3490:10;3486:2;3479:22;3519:6;3510:15;;3549:6;3541;3534:22;3589:3;3580:6;3575:3;3571:16;3568:25;3565:45;;;3606:1;3603;3596:12;3565:45;3656:6;3651:3;3644:4;3636:6;3632:17;3619:44;3711:1;3704:4;3695:6;3687;3683:19;3679:30;3672:41;;;;3028:691;;;;;:::o;3724:451::-;3793:6;3846:2;3834:9;3825:7;3821:23;3817:32;3814:52;;;3862:1;3859;3852:12;3814:52;3902:9;3889:23;3935:18;3927:6;3924:30;3921:50;;;3967:1;3964;3957:12;3921:50;3990:22;;4043:4;4035:13;;4031:27;-1:-1:-1;4021:55:1;;4072:1;4069;4062:12;4021:55;4095:74;4161:7;4156:2;4143:16;4138:2;4134;4130:11;4095:74;:::i;4180:186::-;4239:6;4292:2;4280:9;4271:7;4267:23;4263:32;4260:52;;;4308:1;4305;4298:12;4260:52;4331:29;4350:9;4331:29;:::i;4371:160::-;4436:20;;4492:13;;4485:21;4475:32;;4465:60;;4521:1;4518;4511:12;4536:254;4601:6;4609;4662:2;4650:9;4641:7;4637:23;4633:32;4630:52;;;4678:1;4675;4668:12;4630:52;4701:29;4720:9;4701:29;:::i;:::-;4691:39;;4749:35;4780:2;4769:9;4765:18;4749:35;:::i;:::-;4739:45;;4536:254;;;;;:::o;4795:667::-;4890:6;4898;4906;4914;4967:3;4955:9;4946:7;4942:23;4938:33;4935:53;;;4984:1;4981;4974:12;4935:53;5007:29;5026:9;5007:29;:::i;:::-;4997:39;;5055:38;5089:2;5078:9;5074:18;5055:38;:::i;:::-;5045:48;;5140:2;5129:9;5125:18;5112:32;5102:42;;5195:2;5184:9;5180:18;5167:32;5222:18;5214:6;5211:30;5208:50;;;5254:1;5251;5244:12;5208:50;5277:22;;5330:4;5322:13;;5318:27;-1:-1:-1;5308:55:1;;5359:1;5356;5349:12;5308:55;5382:74;5448:7;5443:2;5430:16;5425:2;5421;5417:11;5382:74;:::i;:::-;5372:84;;;4795:667;;;;;;;:::o;5467:180::-;5523:6;5576:2;5564:9;5555:7;5551:23;5547:32;5544:52;;;5592:1;5589;5582:12;5544:52;5615:26;5631:9;5615:26;:::i;5652:260::-;5720:6;5728;5781:2;5769:9;5760:7;5756:23;5752:32;5749:52;;;5797:1;5794;5787:12;5749:52;5820:29;5839:9;5820:29;:::i;:::-;5810:39;;5868:38;5902:2;5891:9;5887:18;5868:38;:::i;5917:437::-;5996:1;5992:12;;;;6039;;;6060:61;;6114:4;6106:6;6102:17;6092:27;;6060:61;6167:2;6159:6;6156:14;6136:18;6133:38;6130:218;;-1:-1:-1;;;6201:1:1;6194:88;6305:4;6302:1;6295:15;6333:4;6330:1;6323:15;6130:218;;5917:437;;;:::o;7388:184::-;-1:-1:-1;;;7437:1:1;7430:88;7537:4;7534:1;7527:15;7561:4;7558:1;7551:15;7577:128;7617:3;7648:1;7644:6;7641:1;7638:13;7635:39;;;7654:18;;:::i;:::-;-1:-1:-1;7690:9:1;;7577:128::o;9109:196::-;9148:3;9176:5;9166:39;;9185:18;;:::i;:::-;-1:-1:-1;;;9221:78:1;;9109:196::o;9310:228::-;9350:7;9476:1;-1:-1:-1;;9404:74:1;9401:1;9398:81;9393:1;9386:9;9379:17;9375:105;9372:131;;;9483:18;;:::i;:::-;-1:-1:-1;9523:9:1;;9310:228::o;10302:637::-;10582:3;10620:6;10614:13;10636:53;10682:6;10677:3;10670:4;10662:6;10658:17;10636:53;:::i;:::-;10752:13;;10711:16;;;;10774:57;10752:13;10711:16;10808:4;10796:17;;10774:57;:::i;:::-;10896:7;10853:20;;10882:22;;;10931:1;10920:13;;10302:637;-1:-1:-1;;;;10302:637:1:o;11351:512::-;11545:4;-1:-1:-1;;;;;11655:2:1;11647:6;11643:15;11632:9;11625:34;11707:2;11699:6;11695:15;11690:2;11679:9;11675:18;11668:43;;11747:6;11742:2;11731:9;11727:18;11720:34;11790:3;11785:2;11774:9;11770:18;11763:31;11811:46;11852:3;11841:9;11837:19;11829:6;11811:46;:::i;:::-;11803:54;11351:512;-1:-1:-1;;;;;;11351:512:1:o;11868:249::-;11937:6;11990:2;11978:9;11969:7;11965:23;11961:32;11958:52;;;12006:1;12003;11996:12;11958:52;12038:9;12032:16;12057:30;12081:5;12057:30;:::i;12122:195::-;12161:3;-1:-1:-1;;12185:5:1;12182:77;12179:103;;12262:18;;:::i;:::-;-1:-1:-1;12309:1:1;12298:13;;12122:195::o;12322:184::-;-1:-1:-1;;;12371:1:1;12364:88;12471:4;12468:1;12461:15;12495:4;12492:1;12485:15;12511:120;12551:1;12577;12567:35;;12582:18;;:::i;:::-;-1:-1:-1;12616:9:1;;12511:120::o;12636:125::-;12676:4;12704:1;12701;12698:8;12695:34;;;12709:18;;:::i;:::-;-1:-1:-1;12746:9:1;;12636:125::o;12766:112::-;12798:1;12824;12814:35;;12829:18;;:::i;:::-;-1:-1:-1;12863:9:1;;12766:112::o;12883:184::-;-1:-1:-1;;;12932:1:1;12925:88;13032:4;13029:1;13022:15;13056:4;13053:1;13046:15
Swarm Source
ipfs://50e03bc0ad1786e8f879210771a367dcd1fc048c6bae00645202b3dcf43b89a4
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.