ERC-721
Overview
Max Total Supply
52 DORA
Holders
51
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 DORALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DogeRage
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-04 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.17; /** * @dev Interface of ERC721A. */ 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(); /** * 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(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @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() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 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`, * 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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } contract DogeRage is IERC721A { address private immutable _owner; modifier onlyOwner() { require(_owner==msg.sender); _; } uint256 public constant MAX_SUPPLY = 360; uint256 public constant MAX_FREE_PER_WALLET = 1; uint256 public constant COST = 0.002 ether; string private constant _name = "DogeRage"; string private constant _symbol = "DORA"; string private _contractURI = ""; string private _baseURI = ""; constructor() { _owner = msg.sender; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut"); require(amount*COST <= msg.value, "Value to Low"); _mint(_caller, amount); } function freeMint() external{ address _caller = _msgSenderERC721A(); uint256 amount = MAX_FREE_PER_WALLET; require(totalSupply() + amount <= MAX_SUPPLY - 66, "Freemint SoldOut"); require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "AccLimit"); _mint(_caller, amount); } // 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 = 0; // The number of tokens burned. // uint256 private _burnCounter; // 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; function setData(string memory _contract, string memory _base) external onlyOwner{ _contractURI = _contract; _baseURI = _base; } /** * @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 - _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 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 (_addressToUint256(owner) == 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 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; } 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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } function contractURI() public view returns (string memory) { return string(abi.encodePacked("ipfs://", _contractURI)); } /** * @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(); 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); } /** * @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; } /** * @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 (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // 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); } 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 (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // 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(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { 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 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) } } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contract","type":"string"},{"internalType":"string","name":"_base","type":"string"}],"name":"setData","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052600060a0818152620000179082620000f9565b50604080516020810190915260008152600190620000369082620000f9565b5060006002553480156200004957600080fd5b5033608052620001c5565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200007f57607f821691505b602082108103620000a057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620000f457600081815260208120601f850160051c81016020861015620000cf5750805b601f850160051c820191505b81811015620000f057828155600101620000db565b5050505b505050565b81516001600160401b0381111562000115576200011562000054565b6200012d816200012684546200006a565b84620000a6565b602080601f8311600181146200016557600084156200014c5750858301515b600019600386901b1c1916600185901b178555620000f0565b600085815260208120601f198616915b82811015620001965788860151825594840194600190910190840162000175565b5085821015620001b55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805161133b620001e86000396000818161056f015261072c015261133b6000f3fe6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610357578063b88d4fde14610377578063bf8fbbd214610397578063c87b56dd146103b2578063e8a3d485146103d2578063e985e9c5146103e757600080fd5b806370a08231146102c25780638ca3c553146102e257806395d89b411461030257806398710d1e1461032f578063a0712d681461034457600080fd5b806323b872dd116100fd57806323b872dd1461022257806332cb6b0c146102425780633ccfd60b1461025857806342842e0e1461026d5780635b70ea9f1461028d5780636352211e146102a257600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc146101a9578063095ea7b3146101e157806318160ddd14610203575b600080fd5b34801561014657600080fd5b5061015a610155366004610d50565b610407565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50604080518082019091526008815267446f67655261676560c01b60208201525b6040516101669190610d9e565b3480156101b557600080fd5b506101c96101c4366004610dd1565b610459565b6040516001600160a01b039091168152602001610166565b3480156101ed57600080fd5b506102016101fc366004610e06565b61049f565b005b34801561020f57600080fd5b506002545b604051908152602001610166565b34801561022e57600080fd5b5061020161023d366004610e30565b61055d565b34801561024e57600080fd5b5061021461016881565b34801561026457600080fd5b5061020161056d565b34801561027957600080fd5b50610201610288366004610e30565b6105d5565b34801561029957600080fd5b506102016105f0565b3480156102ae57600080fd5b506101c96102bd366004610dd1565b6106d6565b3480156102ce57600080fd5b506102146102dd366004610e6c565b6106e1565b3480156102ee57600080fd5b506102016102fd366004610f33565b61072a565b34801561030e57600080fd5b50604080518082019091526004815263444f524160e01b602082015261019c565b34801561033b57600080fd5b50610214600181565b610201610352366004610dd1565b610778565b34801561036357600080fd5b50610201610372366004610f97565b610821565b34801561038357600080fd5b50610201610392366004610fd3565b6108b6565b3480156103a357600080fd5b5061021466071afd498d000081565b3480156103be57600080fd5b5061019c6103cd366004610dd1565b6108c7565b3480156103de57600080fd5b5061019c6109d0565b3480156103f357600080fd5b5061015a61040236600461104f565b6109f8565b60006301ffc9a760e01b6001600160e01b03198316148061043857506380ac58cd60e01b6001600160e01b03198316145b806104535750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610466826002541190565b610483576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104aa82610a26565b9050806001600160a01b0316836001600160a01b0316036104ca57600080fd5b336001600160a01b03821614610501576104e481336109f8565b610501576040516367d9dca160e11b815260040160405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610568838383610a8d565b505050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146105a257600080fd5b6040514790339082156108fc029083906000818181858888f193505050501580156105d1573d6000803e3d6000fd5b5050565b610568838383604051806020016040528060008152506108b6565b3360016106006042610168611098565b8161060a60025490565b61061491906110ab565b111561065a5760405162461bcd60e51b815260206004820152601060248201526f119c99595b5a5b9d0814dbdb1913dd5d60821b60448201526064015b60405180910390fd5b6001610689836001600160a01b03166000908152600460205260409081902054901c67ffffffffffffffff1690565b61069390836110ab565b11156106cc5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610651565b6105d18282610c26565b600061045382610a26565b600081600003610704576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316331461075f57600080fd5b600061076b838261113e565b506001610568828261113e565b336101688261078660025490565b61079091906110ab565b11156107c85760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610651565b346107da66071afd498d0000846111fe565b11156108175760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610651565b6105d18183610c26565b336001600160a01b0383160361084a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108c1848484610a8d565b50505050565b60606108d4826002541190565b6108f157604051630a14c4b560e41b815260040160405180910390fd5b600060018054610900906110be565b80601f016020809104026020016040519081016040528092919081815260200182805461092c906110be565b80156109795780601f1061094e57610100808354040283529160200191610979565b820191906000526020600020905b81548152906001019060200180831161095c57829003601f168201915b50505050509050805160000361099e57604051806020016040528060008152506109c9565b806109a884610d01565b6040516020016109b9929190611215565b6040516020818303038152906040525b9392505050565b606060006040516020016109e49190611276565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600081600254811015610a745760008181526003602052604081205490600160e01b82169003610a72575b806000036109c9575060001901600081815260036020526040902054610a51565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610a9882610a26565b9050836001600160a01b0316816001600160a01b031614610acb5760405162a1148160e81b815260040160405180910390fd5b6000828152600560205260408120546001600160a01b0390811691908616331480610afb5750610afb86336109f8565b80610b0e57506001600160a01b03821633145b905080610b2e57604051632ce44b5f60e11b815260040160405180910390fd5b8115610b5157600084815260056020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600460209081526040808320805460001901905592881682528282208054600101905586825260039052908120600160e11b4260a01b8817811790915584169003610bdc57600184016000818152600360205260408120549003610bda576002548114610bda5760008181526003602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60025482600003610c4957604051622e076360e81b815260040160405180910390fd5b81600003610c6a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526004602090815260408083208054680100000000000000018702019055838352600390915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610cb55750600255505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610d3e57600183039250600a81066030018353600a9004610d20565b50819003601f19909101908152919050565b600060208284031215610d6257600080fd5b81356001600160e01b0319811681146109c957600080fd5b60005b83811015610d95578181015183820152602001610d7d565b50506000910152565b6020815260008251806020840152610dbd816040850160208701610d7a565b601f01601f19169190910160400192915050565b600060208284031215610de357600080fd5b5035919050565b80356001600160a01b0381168114610e0157600080fd5b919050565b60008060408385031215610e1957600080fd5b610e2283610dea565b946020939093013593505050565b600080600060608486031215610e4557600080fd5b610e4e84610dea565b9250610e5c60208501610dea565b9150604084013590509250925092565b600060208284031215610e7e57600080fd5b6109c982610dea565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610eb857610eb8610e87565b604051601f8501601f19908116603f01168101908282118183101715610ee057610ee0610e87565b81604052809350858152868686011115610ef957600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112610f2457600080fd5b6109c983833560208501610e9d565b60008060408385031215610f4657600080fd5b823567ffffffffffffffff80821115610f5e57600080fd5b610f6a86838701610f13565b93506020850135915080821115610f8057600080fd5b50610f8d85828601610f13565b9150509250929050565b60008060408385031215610faa57600080fd5b610fb383610dea565b915060208301358015158114610fc857600080fd5b809150509250929050565b60008060008060808587031215610fe957600080fd5b610ff285610dea565b935061100060208601610dea565b925060408501359150606085013567ffffffffffffffff81111561102357600080fd5b8501601f8101871361103457600080fd5b61104387823560208401610e9d565b91505092959194509250565b6000806040838503121561106257600080fd5b61106b83610dea565b915061107960208401610dea565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561045357610453611082565b8082018082111561045357610453611082565b600181811c908216806110d257607f821691505b6020821081036110f257634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561056857600081815260208120601f850160051c8101602086101561111f5750805b601f850160051c820191505b81811015610c1e5782815560010161112b565b815167ffffffffffffffff81111561115857611158610e87565b61116c8161116684546110be565b846110f8565b602080601f8311600181146111a157600084156111895750858301515b600019600386901b1c1916600185901b178555610c1e565b600085815260208120601f198616915b828110156111d0578886015182559484019460019091019084016111b1565b50858210156111ee5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761045357610453611082565b66697066733a2f2f60c81b815260008351611237816007850160208801610d7a565b602f60f81b6007918401918201528351611258816008840160208801610d7a565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b81526000600760008454611294816110be565b600182811680156112ac57600181146112c5576112f8565b60ff1984168887015282151583028801860194506112f8565b8860005260208060002060005b858110156112ed5781548b82018a01529084019082016112d2565b505050858389010194505b509297965050505050505056fea2646970667358221220ef3d52a4e8abaa12cfea56c2c70f17ae02c7dfc416820eb62f68d1665b40c10964736f6c63430008110033
Deployed Bytecode
0x6080604052600436106101355760003560e01c806370a08231116100ab578063a22cb4651161006f578063a22cb46514610357578063b88d4fde14610377578063bf8fbbd214610397578063c87b56dd146103b2578063e8a3d485146103d2578063e985e9c5146103e757600080fd5b806370a08231146102c25780638ca3c553146102e257806395d89b411461030257806398710d1e1461032f578063a0712d681461034457600080fd5b806323b872dd116100fd57806323b872dd1461022257806332cb6b0c146102425780633ccfd60b1461025857806342842e0e1461026d5780635b70ea9f1461028d5780636352211e146102a257600080fd5b806301ffc9a71461013a57806306fdde031461016f578063081812fc146101a9578063095ea7b3146101e157806318160ddd14610203575b600080fd5b34801561014657600080fd5b5061015a610155366004610d50565b610407565b60405190151581526020015b60405180910390f35b34801561017b57600080fd5b50604080518082019091526008815267446f67655261676560c01b60208201525b6040516101669190610d9e565b3480156101b557600080fd5b506101c96101c4366004610dd1565b610459565b6040516001600160a01b039091168152602001610166565b3480156101ed57600080fd5b506102016101fc366004610e06565b61049f565b005b34801561020f57600080fd5b506002545b604051908152602001610166565b34801561022e57600080fd5b5061020161023d366004610e30565b61055d565b34801561024e57600080fd5b5061021461016881565b34801561026457600080fd5b5061020161056d565b34801561027957600080fd5b50610201610288366004610e30565b6105d5565b34801561029957600080fd5b506102016105f0565b3480156102ae57600080fd5b506101c96102bd366004610dd1565b6106d6565b3480156102ce57600080fd5b506102146102dd366004610e6c565b6106e1565b3480156102ee57600080fd5b506102016102fd366004610f33565b61072a565b34801561030e57600080fd5b50604080518082019091526004815263444f524160e01b602082015261019c565b34801561033b57600080fd5b50610214600181565b610201610352366004610dd1565b610778565b34801561036357600080fd5b50610201610372366004610f97565b610821565b34801561038357600080fd5b50610201610392366004610fd3565b6108b6565b3480156103a357600080fd5b5061021466071afd498d000081565b3480156103be57600080fd5b5061019c6103cd366004610dd1565b6108c7565b3480156103de57600080fd5b5061019c6109d0565b3480156103f357600080fd5b5061015a61040236600461104f565b6109f8565b60006301ffc9a760e01b6001600160e01b03198316148061043857506380ac58cd60e01b6001600160e01b03198316145b806104535750635b5e139f60e01b6001600160e01b03198316145b92915050565b6000610466826002541190565b610483576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006104aa82610a26565b9050806001600160a01b0316836001600160a01b0316036104ca57600080fd5b336001600160a01b03821614610501576104e481336109f8565b610501576040516367d9dca160e11b815260040160405180910390fd5b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610568838383610a8d565b505050565b7f000000000000000000000000fe91a19f44ccfbc8d0d7c740cc9de535cc23814a6001600160a01b031633146105a257600080fd5b6040514790339082156108fc029083906000818181858888f193505050501580156105d1573d6000803e3d6000fd5b5050565b610568838383604051806020016040528060008152506108b6565b3360016106006042610168611098565b8161060a60025490565b61061491906110ab565b111561065a5760405162461bcd60e51b815260206004820152601060248201526f119c99595b5a5b9d0814dbdb1913dd5d60821b60448201526064015b60405180910390fd5b6001610689836001600160a01b03166000908152600460205260409081902054901c67ffffffffffffffff1690565b61069390836110ab565b11156106cc5760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b6044820152606401610651565b6105d18282610c26565b600061045382610a26565b600081600003610704576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526004602052604090205467ffffffffffffffff1690565b7f000000000000000000000000fe91a19f44ccfbc8d0d7c740cc9de535cc23814a6001600160a01b0316331461075f57600080fd5b600061076b838261113e565b506001610568828261113e565b336101688261078660025490565b61079091906110ab565b11156107c85760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b6044820152606401610651565b346107da66071afd498d0000846111fe565b11156108175760405162461bcd60e51b815260206004820152600c60248201526b56616c756520746f204c6f7760a01b6044820152606401610651565b6105d18183610c26565b336001600160a01b0383160361084a5760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6108c1848484610a8d565b50505050565b60606108d4826002541190565b6108f157604051630a14c4b560e41b815260040160405180910390fd5b600060018054610900906110be565b80601f016020809104026020016040519081016040528092919081815260200182805461092c906110be565b80156109795780601f1061094e57610100808354040283529160200191610979565b820191906000526020600020905b81548152906001019060200180831161095c57829003601f168201915b50505050509050805160000361099e57604051806020016040528060008152506109c9565b806109a884610d01565b6040516020016109b9929190611215565b6040516020818303038152906040525b9392505050565b606060006040516020016109e49190611276565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600081600254811015610a745760008181526003602052604081205490600160e01b82169003610a72575b806000036109c9575060001901600081815260036020526040902054610a51565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610a9882610a26565b9050836001600160a01b0316816001600160a01b031614610acb5760405162a1148160e81b815260040160405180910390fd5b6000828152600560205260408120546001600160a01b0390811691908616331480610afb5750610afb86336109f8565b80610b0e57506001600160a01b03821633145b905080610b2e57604051632ce44b5f60e11b815260040160405180910390fd5b8115610b5157600084815260056020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600460209081526040808320805460001901905592881682528282208054600101905586825260039052908120600160e11b4260a01b8817811790915584169003610bdc57600184016000818152600360205260408120549003610bda576002548114610bda5760008181526003602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60025482600003610c4957604051622e076360e81b815260040160405180910390fd5b81600003610c6a5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526004602090815260408083208054680100000000000000018702019055838352600390915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610cb55750600255505050565b604080516080810191829052607f0190826030600a8206018353600a90045b8015610d3e57600183039250600a81066030018353600a9004610d20565b50819003601f19909101908152919050565b600060208284031215610d6257600080fd5b81356001600160e01b0319811681146109c957600080fd5b60005b83811015610d95578181015183820152602001610d7d565b50506000910152565b6020815260008251806020840152610dbd816040850160208701610d7a565b601f01601f19169190910160400192915050565b600060208284031215610de357600080fd5b5035919050565b80356001600160a01b0381168114610e0157600080fd5b919050565b60008060408385031215610e1957600080fd5b610e2283610dea565b946020939093013593505050565b600080600060608486031215610e4557600080fd5b610e4e84610dea565b9250610e5c60208501610dea565b9150604084013590509250925092565b600060208284031215610e7e57600080fd5b6109c982610dea565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115610eb857610eb8610e87565b604051601f8501601f19908116603f01168101908282118183101715610ee057610ee0610e87565b81604052809350858152868686011115610ef957600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112610f2457600080fd5b6109c983833560208501610e9d565b60008060408385031215610f4657600080fd5b823567ffffffffffffffff80821115610f5e57600080fd5b610f6a86838701610f13565b93506020850135915080821115610f8057600080fd5b50610f8d85828601610f13565b9150509250929050565b60008060408385031215610faa57600080fd5b610fb383610dea565b915060208301358015158114610fc857600080fd5b809150509250929050565b60008060008060808587031215610fe957600080fd5b610ff285610dea565b935061100060208601610dea565b925060408501359150606085013567ffffffffffffffff81111561102357600080fd5b8501601f8101871361103457600080fd5b61104387823560208401610e9d565b91505092959194509250565b6000806040838503121561106257600080fd5b61106b83610dea565b915061107960208401610dea565b90509250929050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561045357610453611082565b8082018082111561045357610453611082565b600181811c908216806110d257607f821691505b6020821081036110f257634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561056857600081815260208120601f850160051c8101602086101561111f5750805b601f850160051c820191505b81811015610c1e5782815560010161112b565b815167ffffffffffffffff81111561115857611158610e87565b61116c8161116684546110be565b846110f8565b602080601f8311600181146111a157600084156111895750858301515b600019600386901b1c1916600185901b178555610c1e565b600085815260208120601f198616915b828110156111d0578886015182559484019460019091019084016111b1565b50858210156111ee5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808202811582820484141761045357610453611082565b66697066733a2f2f60c81b815260008351611237816007850160208801610d7a565b602f60f81b6007918401918201528351611258816008840160208801610d7a565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b81526000600760008454611294816110be565b600182811680156112ac57600181146112c5576112f8565b60ff1984168887015282151583028801860194506112f8565b8860005260208060002060005b858110156112ed5781548b82018a01529084019082016112d2565b505050858389010194505b509297965050505050505056fea2646970667358221220ef3d52a4e8abaa12cfea56c2c70f17ae02c7dfc416820eb62f68d1665b40c10964736f6c63430008110033
Deployed Bytecode Sourcemap
9020:24207:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13969:615;;;;;;;;;;-1:-1:-1;13969:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;13969:615:0;;;;;;;;18722:100;;;;;;;;;;-1:-1:-1;18809:5:0;;;;;;;;;;;;-1:-1:-1;;;18809:5:0;;;;18722:100;;;;;;;:::i;20531:204::-;;;;;;;;;;-1:-1:-1;20531:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;20531:204:0;1338:203:1;20014:451:0;;;;;;;;;;-1:-1:-1;20014:451:0;;;;;:::i;:::-;;:::i;:::-;;13212:300;;;;;;;;;;-1:-1:-1;13462:13:0;;13212:300;;;2129:25:1;;;2117:2;2102:18;13212:300:0;1983:177:1;21417:190:0;;;;;;;;;;-1:-1:-1;21417:190:0;;;;;:::i;:::-;;:::i;9186:40::-;;;;;;;;;;;;9223:3;9186:40;;33079:145;;;;;;;;;;;;;:::i;21678:205::-;;;;;;;;;;-1:-1:-1;21678:205:0;;;;;:::i;:::-;;:::i;9846:335::-;;;;;;;;;;;;;:::i;18511:144::-;;;;;;;;;;-1:-1:-1;18511:144:0;;;;;:::i;:::-;;:::i;14648:234::-;;;;;;;;;;-1:-1:-1;14648:234:0;;;;;:::i;:::-;;:::i;12441:151::-;;;;;;;;;;-1:-1:-1;12441:151:0;;;;;:::i;:::-;;:::i;18891:104::-;;;;;;;;;;-1:-1:-1;18980:7:0;;;;;;;;;;;;-1:-1:-1;;;18980:7:0;;;;18891:104;;9233:47;;;;;;;;;;;;9279:1;9233:47;;9572:266;;;;;;:::i;:::-;;:::i;20807:308::-;;;;;;;;;;-1:-1:-1;20807:308:0;;;;;:::i;:::-;;:::i;21954:227::-;;;;;;;;;;-1:-1:-1;21954:227:0;;;;;:::i;:::-;;:::i;9287:42::-;;;;;;;;;;;;9318:11;9287:42;;19009:339;;;;;;;;;;-1:-1:-1;19009:339:0;;;;;:::i;:::-;;:::i;19356:134::-;;;;;;;;;;;;;:::i;21186:164::-;;;;;;;;;;-1:-1:-1;21186:164:0;;;;;:::i;:::-;;:::i;13969:615::-;14054:4;-1:-1:-1;;;;;;;;;14354:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;14431:25:0;;;14354:102;:179;;;-1:-1:-1;;;;;;;;;;14508:25:0;;;14354:179;14334:199;13969:615;-1:-1:-1;;13969:615:0:o;20531:204::-;20599:7;20624:16;20632:7;22583:13;;-1:-1:-1;22573:23:0;22436:168;20624:16;20619:64;;20649:34;;-1:-1:-1;;;20649:34:0;;;;;;;;;;;20619:64;-1:-1:-1;20703:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20703:24:0;;20531:204::o;20014:451::-;20087:13;20119:27;20138:7;20119:18;:27::i;:::-;20087:61;;20169:5;-1:-1:-1;;;;;20163:11:0;:2;-1:-1:-1;;;;;20163:11:0;;20159:25;;20176:8;;;20159:25;31065:10;-1:-1:-1;;;;;20201:28:0;;;20197:175;;20249:44;20266:5;31065:10;21186:164;:::i;20249:44::-;20244:128;;20321:35;;-1:-1:-1;;;20321:35:0;;;;;;;;;;;20244:128;20384:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20384:29:0;-1:-1:-1;;;;;20384:29:0;;;;;;;;;20429:28;;20384:24;;20429:28;;;;;;;20076:389;20014:451;;:::o;21417:190::-;21571:28;21581:4;21587:2;21591:7;21571:9;:28::i;:::-;21417:190;;;:::o;33079:145::-;9138:6;-1:-1:-1;;;;;9138:18:0;9146:10;9138:18;9130:27;;;;;;33179:37:::1;::::0;33147:21:::1;::::0;33187:10:::1;::::0;33179:37;::::1;;;::::0;33147:21;;33129:15:::1;33179:37:::0;33129:15;33179:37;33147:21;33187:10;33179:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;33118:106;33079:145::o:0;21678:205::-;21836:39;21853:4;21859:2;21863:7;21836:39;;;;;;;;;;;;:16;:39::i;9846:335::-;31065:10;9279:1;10016:15;10029:2;9223:3;10016:15;:::i;:::-;10006:6;9990:13;13462;;;13212:300;9990:13;:22;;;;:::i;:::-;:41;;9982:70;;;;-1:-1:-1;;;9982:70:0;;6119:2:1;9982:70:0;;;6101:21:1;6158:2;6138:18;;;6131:30;-1:-1:-1;;;6177:18:1;;;6170:46;6233:18;;9982:70:0;;;;;;;;;9279:1;10080:22;10094:7;-1:-1:-1;;;;;15053:25:0;15025:7;15053:25;;;:18;:25;;10429:2;15053:25;;;;;:49;;10292:13;15052:80;;14964:176;10080:22;10071:31;;:6;:31;:::i;:::-;:54;;10063:75;;;;-1:-1:-1;;;10063:75:0;;6464:2:1;10063:75:0;;;6446:21:1;6503:1;6483:18;;;6476:29;-1:-1:-1;;;6521:18:1;;;6514:38;6569:18;;10063:75:0;6262:331:1;10063:75:0;10151:22;10157:7;10166:6;10151:5;:22::i;18511:144::-;18575:7;18618:27;18637:7;18618:18;:27::i;14648:234::-;14712:7;14754:5;14764:1;14736:29;14732:70;;14774:28;;-1:-1:-1;;;14774:28:0;;;;;;;;;;;14732:70;-1:-1:-1;;;;;;14820:25:0;;;;;:18;:25;;;;;;10292:13;14820:54;;14648:234::o;12441:151::-;9138:6;-1:-1:-1;;;;;9138:18:0;9146:10;9138:18;9130:27;;;;;;12533:12:::1;:24;12548:9:::0;12533:12;:24:::1;:::i;:::-;-1:-1:-1::0;12568:8:0::1;:16;12579:5:::0;12568:8;:16:::1;:::i;9572:266::-:0;31065:10;9223:3;9703:6;9687:13;13462;;;13212:300;9687:13;:22;;;;:::i;:::-;:36;;9679:56;;;;-1:-1:-1;;;9679:56:0;;9389:2:1;9679:56:0;;;9371:21:1;9428:1;9408:18;;;9401:29;-1:-1:-1;;;9446:18:1;;;9439:37;9493:18;;9679:56:0;9187:330:1;9679:56:0;9769:9;9754:11;9318;9754:6;:11;:::i;:::-;:24;;9746:49;;;;-1:-1:-1;;;9746:49:0;;9897:2:1;9746:49:0;;;9879:21:1;9936:2;9916:18;;;9909:30;-1:-1:-1;;;9955:18:1;;;9948:42;10007:18;;9746:49:0;9695:336:1;9746:49:0;9808:22;9814:7;9823:6;9808:5;:22::i;20807:308::-;31065:10;-1:-1:-1;;;;;20906:31:0;;;20902:61;;20946:17;;-1:-1:-1;;;20946:17:0;;;;;;;;;;;20902:61;31065:10;20976:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20976:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20976:60:0;;;;;;;;;;21052:55;;445:41:1;;;20976:49:0;;31065:10;21052:55;;418:18:1;21052:55:0;;;;;;;20807:308;;:::o;21954:227::-;22145:28;22155:4;22161:2;22165:7;22145:9;:28::i;:::-;21954:227;;;;:::o;19009:339::-;19082:13;19113:16;19121:7;22583:13;;-1:-1:-1;22573:23:0;22436:168;19113:16;19108:59;;19138:29;;-1:-1:-1;;;19138:29:0;;;;;;;;;;;19108:59;19178:21;19202:8;19178:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19234:7;19228:21;19253:1;19228:26;:112;;;;;;;;;;;;;;;;;19292:7;19306:18;19316:7;19306:9;:18::i;:::-;19264:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;19228:112;19221:119;19009:339;-1:-1:-1;;;19009:339:0:o;19356:134::-;19400:13;19468:12;19440:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;19426:56;;19356:134;:::o;21186:164::-;-1:-1:-1;;;;;21307:25:0;;;21283:4;21307:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;21186:164::o;16026:1129::-;16093:7;16128;16230:13;;16223:4;:20;16219:869;;;16268:14;16285:23;;;:17;:23;;;;;;;-1:-1:-1;;;16374:23:0;;:28;;16370:699;;16893:113;16900:6;16910:1;16900:11;16893:113;;-1:-1:-1;;;16971:6:0;16953:25;;;;:17;:25;;;;;;16893:113;;16370:699;16245:843;16219:869;17116:31;;-1:-1:-1;;;17116:31:0;;;;;;;;;;;27304:2636;27441:27;27471;27490:7;27471:18;:27::i;:::-;27441:57;;27556:4;-1:-1:-1;;;;;27515:45:0;27531:19;-1:-1:-1;;;;;27515:45:0;;27511:86;;27569:28;;-1:-1:-1;;;27569:28:0;;;;;;;;;;;27511:86;27610:23;27636:24;;;:15;:24;;;;;;-1:-1:-1;;;;;27636:24:0;;;;27610:23;27699:27;;31065:10;27699:27;;:91;;-1:-1:-1;27747:43:0;27764:4;31065:10;21186:164;:::i;27747:43::-;27699:150;;;-1:-1:-1;;;;;;27811:38:0;;31065:10;27811:38;27699:150;27673:177;;27868:17;27863:66;;27894:35;;-1:-1:-1;;;27894:35:0;;;;;;;;;;;27863:66;28098:15;28080:39;28076:103;;28143:24;;;;:15;:24;;;;;28136:31;;-1:-1:-1;;;;;;28136:31:0;;;28076:103;-1:-1:-1;;;;;28546:24:0;;;;;;;:18;:24;;;;;;;;28544:26;;-1:-1:-1;;28544:26:0;;;28615:22;;;;;;;;28613:24;;-1:-1:-1;28613:24:0;;;28908:26;;;:17;:26;;;;;-1:-1:-1;;;28996:15:0;10946:3;28996:41;28954:84;;:128;;28908:174;;;29202:46;;:51;;29198:626;;29306:1;29296:11;;29274:19;29429:30;;;:17;:30;;;;;;:35;;29425:384;;29567:13;;29552:11;:28;29548:242;;29714:30;;;;:17;:30;;;;;:52;;;29548:242;29255:569;29198:626;29871:7;29867:2;-1:-1:-1;;;;;29852:27:0;29861:4;-1:-1:-1;;;;;29852:27:0;;;;;;;;;;;29890:42;27428:2512;;;27304:2636;;;:::o;25456:1594::-;25544:13;;25590:2;25597:1;25572:26;25568:58;;25607:19;;-1:-1:-1;;;25607:19:0;;;;;;;;;;;25568:58;25641:8;25653:1;25641:13;25637:44;;25663:18;;-1:-1:-1;;;25663:18:0;;;;;;;;;;;25637:44;-1:-1:-1;;;;;26158:22:0;;;;;;:18;:22;;;;10429:2;26158:22;;;:70;;26196:31;26184:44;;26158:70;;;26471:31;;;:17;:31;;;;;26564:15;10946:3;26564:41;26522:84;;-1:-1:-1;26642:13:0;;11205:3;26627:56;26522:162;26471:213;;:31;26765:23;;;26805:111;26832:40;;26857:14;;;;;-1:-1:-1;;;;;26832:40:0;;;26849:1;;26832:40;;26849:1;;26832:40;26911:3;26896:12;:18;26805:111;;-1:-1:-1;26932:13:0;:28;21417:190;;;:::o;31189:1882::-;31660:4;31654:11;;31667:3;31650:21;;31741:17;;;;32413:11;;;32290:5;32547:2;32561;32551:13;;32543:22;32413:11;32530:36;32603:2;32593:13;;32187:661;32619:4;32187:661;;;32787:1;32782:3;32778:11;32771:18;;32831:2;32825:4;32821:13;32817:2;32813:22;32808:3;32800:36;32704:2;32694:13;;32187:661;;;-1:-1:-1;32871:13:0;;;-1:-1:-1;;32980:12:0;;;33034:19;;;32980:12;31189:1882;-1:-1:-1;31189:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:328::-;2242:6;2250;2258;2311:2;2299:9;2290:7;2286:23;2282:32;2279:52;;;2327:1;2324;2317:12;2279:52;2350:29;2369:9;2350:29;:::i;:::-;2340:39;;2398:38;2432:2;2421:9;2417:18;2398:38;:::i;:::-;2388:48;;2483:2;2472:9;2468:18;2455:32;2445:42;;2165:328;;;;;:::o;2498:186::-;2557:6;2610:2;2598:9;2589:7;2585:23;2581:32;2578:52;;;2626:1;2623;2616:12;2578:52;2649:29;2668:9;2649:29;:::i;2689:127::-;2750:10;2745:3;2741:20;2738:1;2731:31;2781:4;2778:1;2771:15;2805:4;2802:1;2795:15;2821:632;2886:5;2916:18;2957:2;2949:6;2946:14;2943:40;;;2963:18;;:::i;:::-;3038:2;3032:9;3006:2;3092:15;;-1:-1:-1;;3088:24:1;;;3114:2;3084:33;3080:42;3068:55;;;3138:18;;;3158:22;;;3135:46;3132:72;;;3184:18;;:::i;:::-;3224:10;3220:2;3213:22;3253:6;3244:15;;3283:6;3275;3268:22;3323:3;3314:6;3309:3;3305:16;3302:25;3299:45;;;3340:1;3337;3330:12;3299:45;3390:6;3385:3;3378:4;3370:6;3366:17;3353:44;3445:1;3438:4;3429:6;3421;3417:19;3413:30;3406:41;;;;2821:632;;;;;:::o;3458:222::-;3501:5;3554:3;3547:4;3539:6;3535:17;3531:27;3521:55;;3572:1;3569;3562:12;3521:55;3594:80;3670:3;3661:6;3648:20;3641:4;3633:6;3629:17;3594:80;:::i;3685:543::-;3773:6;3781;3834:2;3822:9;3813:7;3809:23;3805:32;3802:52;;;3850:1;3847;3840:12;3802:52;3890:9;3877:23;3919:18;3960:2;3952:6;3949:14;3946:34;;;3976:1;3973;3966:12;3946:34;3999:50;4041:7;4032:6;4021:9;4017:22;3999:50;:::i;:::-;3989:60;;4102:2;4091:9;4087:18;4074:32;4058:48;;4131:2;4121:8;4118:16;4115:36;;;4147:1;4144;4137:12;4115:36;;4170:52;4214:7;4203:8;4192:9;4188:24;4170:52;:::i;:::-;4160:62;;;3685:543;;;;;:::o;4233:347::-;4298:6;4306;4359:2;4347:9;4338:7;4334:23;4330:32;4327:52;;;4375:1;4372;4365:12;4327:52;4398:29;4417:9;4398:29;:::i;:::-;4388:39;;4477:2;4466:9;4462:18;4449:32;4524:5;4517:13;4510:21;4503:5;4500:32;4490:60;;4546:1;4543;4536:12;4490:60;4569:5;4559:15;;;4233:347;;;;;:::o;4585:667::-;4680:6;4688;4696;4704;4757:3;4745:9;4736:7;4732:23;4728:33;4725:53;;;4774:1;4771;4764:12;4725:53;4797:29;4816:9;4797:29;:::i;:::-;4787:39;;4845:38;4879:2;4868:9;4864:18;4845:38;:::i;:::-;4835:48;;4930:2;4919:9;4915:18;4902:32;4892:42;;4985:2;4974:9;4970:18;4957:32;5012:18;5004:6;5001:30;4998:50;;;5044:1;5041;5034:12;4998:50;5067:22;;5120:4;5112:13;;5108:27;-1:-1:-1;5098:55:1;;5149:1;5146;5139:12;5098:55;5172:74;5238:7;5233:2;5220:16;5215:2;5211;5207:11;5172:74;:::i;:::-;5162:84;;;4585:667;;;;;;;:::o;5257:260::-;5325:6;5333;5386:2;5374:9;5365:7;5361:23;5357:32;5354:52;;;5402:1;5399;5392:12;5354:52;5425:29;5444:9;5425:29;:::i;:::-;5415:39;;5473:38;5507:2;5496:9;5492:18;5473:38;:::i;:::-;5463:48;;5257:260;;;;;:::o;5522:127::-;5583:10;5578:3;5574:20;5571:1;5564:31;5614:4;5611:1;5604:15;5638:4;5635:1;5628:15;5654:128;5721:9;;;5742:11;;;5739:37;;;5756:18;;:::i;5787:125::-;5852:9;;;5873:10;;;5870:36;;;5886:18;;:::i;6598:380::-;6677:1;6673:12;;;;6720;;;6741:61;;6795:4;6787:6;6783:17;6773:27;;6741:61;6848:2;6840:6;6837:14;6817:18;6814:38;6811:161;;6894:10;6889:3;6885:20;6882:1;6875:31;6929:4;6926:1;6919:15;6957:4;6954:1;6947:15;6811:161;;6598:380;;;:::o;7109:545::-;7211:2;7206:3;7203:11;7200:448;;;7247:1;7272:5;7268:2;7261:17;7317:4;7313:2;7303:19;7387:2;7375:10;7371:19;7368:1;7364:27;7358:4;7354:38;7423:4;7411:10;7408:20;7405:47;;;-1:-1:-1;7446:4:1;7405:47;7501:2;7496:3;7492:12;7489:1;7485:20;7479:4;7475:31;7465:41;;7556:82;7574:2;7567:5;7564:13;7556:82;;;7619:17;;;7600:1;7589:13;7556:82;;7830:1352;7956:3;7950:10;7983:18;7975:6;7972:30;7969:56;;;8005:18;;:::i;:::-;8034:97;8124:6;8084:38;8116:4;8110:11;8084:38;:::i;:::-;8078:4;8034:97;:::i;:::-;8186:4;;8250:2;8239:14;;8267:1;8262:663;;;;8969:1;8986:6;8983:89;;;-1:-1:-1;9038:19:1;;;9032:26;8983:89;-1:-1:-1;;7787:1:1;7783:11;;;7779:24;7775:29;7765:40;7811:1;7807:11;;;7762:57;9085:81;;8232:944;;8262:663;7056:1;7049:14;;;7093:4;7080:18;;-1:-1:-1;;8298:20:1;;;8416:236;8430:7;8427:1;8424:14;8416:236;;;8519:19;;;8513:26;8498:42;;8611:27;;;;8579:1;8567:14;;;;8446:19;;8416:236;;;8420:3;8680:6;8671:7;8668:19;8665:201;;;8741:19;;;8735:26;-1:-1:-1;;8824:1:1;8820:14;;;8836:3;8816:24;8812:37;8808:42;8793:58;8778:74;;8665:201;-1:-1:-1;;;;;8912:1:1;8896:14;;;8892:22;8879:36;;-1:-1:-1;7830:1352:1:o;9522:168::-;9595:9;;;9626;;9643:15;;;9637:22;;9623:37;9613:71;;9664:18;;:::i;10036:935::-;-1:-1:-1;;;10543:3:1;10536:22;10518:3;10587:6;10581:13;10603:74;10670:6;10666:1;10661:3;10657:11;10650:4;10642:6;10638:17;10603:74;:::i;:::-;-1:-1:-1;;;10736:1:1;10696:16;;;10728:10;;;10721:23;10769:13;;10791:75;10769:13;10853:1;10845:10;;10838:4;10826:17;;10791:75;:::i;:::-;-1:-1:-1;;;10926:1:1;10885:17;;;;10918:10;;;10911:27;10962:2;10954:11;;10036:935;-1:-1:-1;;;;10036:935:1:o;10976:1030::-;-1:-1:-1;;;11230:3:1;11223:22;11205:3;11264:1;11285;11318:6;11312:13;11348:36;11374:9;11348:36;:::i;:::-;11403:1;11420:18;;;11447:151;;;;11612:1;11607:374;;;;11413:568;;11447:151;-1:-1:-1;;11489:24:1;;11475:12;;;11468:46;11566:14;;11559:22;11547:35;;11538:45;;11534:54;;;-1:-1:-1;11447:151:1;;11607:374;11638:6;11635:1;11628:17;11668:4;11713:2;11710:1;11700:16;11738:1;11752:174;11766:6;11763:1;11760:13;11752:174;;;11853:14;;11835:11;;;11831:20;;11824:44;11896:16;;;;11781:10;;11752:174;;;11756:3;;;11968:2;11959:6;11954:3;11950:16;11946:25;11939:32;;11413:568;-1:-1:-1;11997:3:1;;10976:1030;-1:-1:-1;;;;;;;10976:1030:1:o
Swarm Source
ipfs://ef3d52a4e8abaa12cfea56c2c70f17ae02c7dfc416820eb62f68d1665b40c109
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.