Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,233 CODETH
Holders
1,873
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CODETHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CodedEth
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-01 */ // SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 /* CODEDETH: READ THE RULES! (EXPERIMENT!!!) */ pragma solidity 0.8.16; /** * @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(); /** * 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); } /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { address public _owner; modifier onlyOwner() { require(_owner==msg.sender, "No!"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // 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 bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID 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` // - [232..255] `extraData` 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 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) public _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); _owner = msg.sender; } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual 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 auxiliary 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 auxiliary 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 virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // 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) 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: [ERC165](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. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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 initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev 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; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // 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 `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns 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)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _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] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @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)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // 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++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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 _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @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 virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); /// @solidity memory-safe-assembly assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F)))) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } } contract CodedEth is ERC721A{ error Penalty(); mapping(address => mapping(uint256 => uint256)) public votes; uint256 public VOTES_THRESH = 3; uint256 public constant MAX_WALLET_MINT = 100; uint256 public constant MAX_FREE_MINT_PER_WALLET = 1; uint256 public constant MAX_SUPPLY = 2233; uint256 public constant COST = 0.002 ether; constructor() ERC721A("CodedEth","CODETH"){} function freeMint() public payable{ uint256 amount = 1; require(totalSupply()+amount <= MAX_SUPPLY-275); require(_numberMinted(msg.sender)+amount <= MAX_FREE_MINT_PER_WALLET); _mint(msg.sender, amount); } function mint(uint256 amount) public payable{ require(totalSupply()+amount <= MAX_SUPPLY); require(_numberMinted(msg.sender)+amount <= MAX_WALLET_MINT); require(COST*amount <= msg.value); _mint(msg.sender, amount); } function daySinceEpoche() public view returns (uint256){ uint256 s = block.timestamp; return s / (60*60*24); } function voteSingle(uint256 tokenId) external { address user = ownerOf(tokenId); votes[user][daySinceEpoche()]++; } function voteMany(uint256[] memory ids) external { for(uint256 i=0; i < ids.length; i++){ uint256 tokenId = ids[i]; address user = ownerOf(tokenId); votes[user][daySinceEpoche()]++; } } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { if(votes[owner][daySinceEpoche()]>=VOTES_THRESH){ return false; } return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { votes[to][daySinceEpoche()] += votes[from][daySinceEpoche()]; super.transferFrom(from, to, tokenId); } // HELPER function substring(string memory str, uint startIndex, uint endIndex) internal view returns (string memory) { bytes memory strBytes = bytes(str); bytes memory result = new bytes(endIndex-startIndex); for(uint i = startIndex; i < endIndex; i++) { result[i-startIndex] = strBytes[i]; } return string(result); } function random(uint256 nonce) public view returns (bytes32){ return keccak256(abi.encodePacked(nonce)); } function getAttributes(uint256 tokenId) public view returns(uint256, uint256, uint256, uint256, uint256){ bytes5 r = bytes5(random(tokenId)); uint256 r_base = uint8(r[0])%8; uint256 r_body = uint8(r[1])%14; uint256 r_aura = uint8(r[2])%14; uint256 r_bodysize = uint8(r[3])%300; uint256 r_aurasize = uint8(r[4])%50; return (r_base, r_body, r_aura, r_bodysize, r_aurasize); } function int2Color(string memory colors, uint256 value) public view returns (string memory){ return substring(colors, value*7, (value+1)*7); } function render(uint256 _tokenId) internal view returns (string memory) { string memory primary = "#705c74#e8e4a4#f0942c#18e4b4#787434#a8e4f4#3a677e#d0cccc"; string memory secondary = "#80643c#6c4428#60544c#b87c04#f4fcc8#c8b49c#f8949c#848c88#0854a4#a00c0c#f8ecec#60844c#ed0454#f4d204"; (uint256 r_base, uint256 r_body, uint256 r_aura, uint256 r_bodysize, uint256 r_aurasize) = getAttributes(_tokenId); string memory base = int2Color(primary, r_base); string memory body = int2Color(secondary, r_body); string memory aura = int2Color(secondary, r_aura); string memory size = _toString(100 + r_bodysize); string memory sizep = _toString(100 + r_bodysize + r_aurasize); return string.concat( '<svg xmlns="http://www.w3.org/2000/svg" id="x" preserveAspectRatio="xMinYMin meet" viewBox="0 0 1000 1000">', '<filter id="blur">', '<feGaussianBlur in="SourceGraphic" stdDeviation="0.5" />', '</filter>', '<rect fill="',base,'" width="1000" height="1000" filter="url(#blur)"/>', '<circle cx="500" cy="500" r="',sizep,'" fill="',aura,'" filter="url(#blur)" />', '<circle cx="500" cy="500" r="',size,'" fill="',body,'" filter="url(#blur)" />', '</svg>', '' ); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require(_exists(_tokenId), "token does not exists"); string memory svg = string(abi.encodePacked(render(_tokenId))); string memory json = Base64.encode( abi.encodePacked( '{"name": "CodedEth #',_toString(_tokenId),'"', ',"description":"CodedEth Experiment, enjoy"', ',"image": "data:image/svg+xml;base64,', Base64.encode(bytes(svg)), '"}' ) ); return string(abi.encodePacked("data:application/json;base64,", json)); } function contractURI() public view returns (string memory) { return 'ipfs://QmQLGBffZvD79jdfP6joN1z9hmDUf7WGxhifE9cLL8UkeP'; } }
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":"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":"Penalty","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_MINT_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":[],"name":"MAX_WALLET_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VOTES_THRESH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_operatorApprovals","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"daySinceEpoche","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getAttributes","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"colors","type":"string"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"int2Color","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"uint256","name":"nonce","type":"uint256"}],"name":"random","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"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":"uint256[]","name":"ids","type":"uint256[]"}],"name":"voteMany","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"voteSingle","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"votes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526003600a553480156200001657600080fd5b5060405180604001604052806008815260200167086dec8cac88ae8d60c31b815250604051806040016040528060068152602001650869e888aa8960d31b81525081600390816200006891906200013c565b5060046200007782826200013c565b5060006001555050600080546001600160a01b0319163317905562000208565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000c257607f821691505b602082108103620000e357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200013757600081815260208120601f850160051c81016020861015620001125750805b601f850160051c820191505b8181101562000133578281556001016200011e565b5050505b505050565b81516001600160401b0381111562000158576200015862000097565b6200017081620001698454620000ad565b84620000e9565b602080601f831160018114620001a857600084156200018f5750858301515b600019600386901b1c1916600185901b17855562000133565b600085815260208120601f198616915b82811015620001d957888601518255948401946001909101908401620001b8565b5085821015620001f85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61201580620002186000396000f3fe6080604052600436106101e35760003560e01c80637fe0d73d11610102578063b2bdfa7b11610095578063c87b56dd11610064578063c87b56dd14610567578063e8a3d48514610587578063e985e9c51461059c578063edc3bc3f146105bc57600080fd5b8063b2bdfa7b146104ec578063b863bd371461050c578063b88d4fde1461052c578063bf8fbbd21461054c57600080fd5b8063a0712d68116100d1578063a0712d6814610484578063a22cb46514610497578063a6eb27e2146104b7578063a8224002146104cc57600080fd5b80637fe0d73d14610402578063887f12ce1461041757806395d89b41146104375780639f2524ee1461044c57600080fd5b806342842e0e1161017a578063665313b711610149578063665313b7146103975780636ae0fcd8146103ac5780636b10f373146103c257806370a08231146103e257600080fd5b806342842e0e146103075780634378a6e3146103275780635b70ea9f1461036f5780636352211e1461037757600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102bc57806332cb6b0c146102dc5780633ccfd60b146102f257600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046115cc565b6105f7565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610649565b6040516102149190611639565b34801561024b57600080fd5b5061025f61025a36600461164c565b6106db565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611681565b61071f565b005b3480156102a557600080fd5b50600254600154035b604051908152602001610214565b3480156102c857600080fd5b506102976102d73660046116ab565b6107bf565b3480156102e857600080fd5b506102ae6108b981565b3480156102fe57600080fd5b50610297610851565b34801561031357600080fd5b506102976103223660046116ab565b6108c9565b34801561033357600080fd5b5061034761034236600461164c565b6108e4565b604080519586526020860194909452928401919091526060830152608082015260a001610214565b610297610979565b34801561038357600080fd5b5061025f61039236600461164c565b6109ef565b3480156103a357600080fd5b506102ae6109fa565b3480156103b857600080fd5b506102ae600a5481565b3480156103ce57600080fd5b506102976103dd36600461172e565b610a10565b3480156103ee57600080fd5b506102ae6103fd3660046117d4565b610aa1565b34801561040e57600080fd5b506102ae606481565b34801561042357600080fd5b50610232610432366004611847565b610af0565b34801561044357600080fd5b50610232610b23565b34801561045857600080fd5b506102ae610467366004611681565b600960209081526000928352604080842090915290825290205481565b61029761049236600461164c565b610b32565b3480156104a357600080fd5b506102976104b23660046118a0565b610ba0565b3480156104c357600080fd5b506102ae600181565b3480156104d857600080fd5b506102976104e736600461164c565b610c0c565b3480156104f857600080fd5b5060005461025f906001600160a01b031681565b34801561051857600080fd5b506102ae61052736600461164c565b610c62565b34801561053857600080fd5b506102976105473660046118dc565b610c94565b34801561055857600080fd5b506102ae66071afd498d000081565b34801561057357600080fd5b5061023261058236600461164c565b610cde565b34801561059357600080fd5b50610232610dc0565b3480156105a857600080fd5b506102086105b7366004611958565b610de0565b3480156105c857600080fd5b506102086105d7366004611958565b600860209081526000928352604080842090915290825290205460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061062857506380ac58cd60e01b6001600160e01b03198316145b806106435750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106589061198b565b80601f01602080910402602001604051908101604052809291908181526020018280546106849061198b565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b60006106e682610e52565b610703576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061072a826109ef565b9050336001600160a01b03821614610763576107468133610de0565b610763576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0383166000908152600960205260408120906107e06109fa565b81526020019081526020016000205460096000846001600160a01b03166001600160a01b03168152602001908152602001600020600061081e6109fa565b8152602001908152602001600020600082825461083b91906119db565b9091555061084c9050838383610e7a565b505050565b6000546001600160a01b031633146108965760405162461bcd60e51b81526020600482015260036024820152624e6f2160e81b60448201526064015b60405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156108c5573d6000803e3d6000fd5b5050565b61084c83838360405180602001604052806000815250610c94565b6000806000806000806108f687610c62565b90506000610907600883831a611a1a565b60ff169050600061091d600e600185901a611a1a565b60ff1690506000610933600e600286901a611a1a565b60ff169050600061094a61012c600387901a611a3c565b61ffff16905060006109616032600488901a611a1a565b949c939b5091995097505060ff909116945092505050565b60016109896101136108b9611a5d565b816109976002546001540390565b6109a191906119db565b11156109ac57600080fd5b3360009081526006602052604090819020546001916109d79184911c67ffffffffffffffff166119db565b11156109e257600080fd5b6109ec3382611012565b50565b600061064382611110565b600042610a0a6201518082611a70565b91505090565b60005b81518110156108c5576000828281518110610a3057610a306119ee565b602002602001015190506000610a45826109ef565b6001600160a01b0381166000908152600960205260408120919250610a686109fa565b81526020019081526020016000206000815480929190610a8790611a84565b919050555050508080610a9990611a84565b915050610a13565b60006001600160a01b038216610aca576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6060610b1c83610b01846007611a9d565b610b0c8560016119db565b610b17906007611a9d565b611177565b9392505050565b6060600480546106589061198b565b6108b981610b436002546001540390565b610b4d91906119db565b1115610b5857600080fd5b336000908152600660205260409081902054606491610b839184911c67ffffffffffffffff166119db565b1115610b8e57600080fd5b346109d78266071afd498d0000611a9d565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610c17826109ef565b6001600160a01b0381166000908152600960205260408120919250610c3a6109fa565b81526020019081526020016000206000815480929190610c5990611a84565b91905055505050565b600081604051602001610c7791815260200190565b604051602081830303815290604052805190602001209050919050565b610c9f8484846107bf565b6001600160a01b0383163b15610cd857610cbb84848484611244565b610cd8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ce982610e52565b610d2d5760405162461bcd60e51b8152602060048201526015602482015274746f6b656e20646f6573206e6f742065786973747360581b604482015260640161088d565b6000610d388361132f565b604051602001610d489190611ad8565b60405160208183030381529060405290506000610d95610d678561141f565b610d7084611463565b604051602001610d81929190611af4565b604051602081830303815290604052611463565b905080604051602001610da89190611bce565b60405160208183030381529060405292505050919050565b6060604051806060016040528060358152602001611fab60359139905090565b600a546001600160a01b038316600090815260096020526040812090919082610e076109fa565b81526020019081526020016000205410610e2357506000610643565b506001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600060015482108015610643575050600090815260056020526040902054600160e01b161590565b6000610e8582611110565b9050836001600160a01b0316816001600160a01b031614610eb85760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610f0557610ee88633610de0565b610f0557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f2c57604051633a954ecd60e21b815260040160405180910390fd5b8015610f3757600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610fc957600184016000818152600560205260408120549003610fc7576001548114610fc75760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60015460008290036110375760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146110e657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016110ae565b508160000361110757604051622e076360e81b815260040160405180910390fd5b60015550505050565b60008160015481101561115e5760008181526005602052604081205490600160e01b8216900361115c575b80600003610b1c57506000190160008181526005602052604090205461113b565b505b604051636f96cda160e11b815260040160405180910390fd5b60608360006111868585611a5d565b67ffffffffffffffff81111561119e5761119e6116e7565b6040519080825280601f01601f1916602001820160405280156111c8576020820181803683370190505b509050845b8481101561123a578281815181106111e7576111e76119ee565b01602001516001600160f81b031916826112018884611a5d565b81518110611211576112116119ee565b60200101906001600160f81b031916908160001a9053508061123281611a84565b9150506111cd565b5095945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611279903390899088908890600401611c13565b6020604051808303816000875af19250505080156112b4575060408051601f3d908101601f191682019092526112b191810190611c50565b60015b611312573d8080156112e2576040519150601f19603f3d011682016040523d82523d6000602084013e6112e7565b606091505b50805160000361130a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606000604051806060016040528060388152602001611f7360389139905060006040518060a0016040528060628152602001611ed1606291399050600080600080600061137c896108e4565b9450945094509450945060006113928887610af0565b905060006113a08887610af0565b905060006113ae8987610af0565b905060006113c56113c08760646119db565b61141f565b905060006113e2866113d88960646119db565b6113c091906119db565b905084818484876040516020016113fd959493929190611c6d565b6040516020818303038152906040529c50505050505050505050505050919050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806114395750819003601f19909101908152919050565b6060815160000361148257505060408051602081019091526000815290565b6000604051806060016040528060408152602001611f3360409139905060006003845160026114b191906119db565b6114bb9190611a70565b6114c6906004611a9d565b67ffffffffffffffff8111156114de576114de6116e7565b6040519080825280601f01601f191660200182016040528015611508576020820181803683370190505b509050600182016020820185865187015b80821015611574576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250611519565b505060038651066001811461159057600281146115a3576115ab565b603d6001830353603d60028303536115ab565b603d60018303535b509195945050505050565b6001600160e01b0319811681146109ec57600080fd5b6000602082840312156115de57600080fd5b8135610b1c816115b6565b60005b838110156116045781810151838201526020016115ec565b50506000910152565b600081518084526116258160208601602086016115e9565b601f01601f19169290920160200192915050565b602081526000610b1c602083018461160d565b60006020828403121561165e57600080fd5b5035919050565b80356001600160a01b038116811461167c57600080fd5b919050565b6000806040838503121561169457600080fd5b61169d83611665565b946020939093013593505050565b6000806000606084860312156116c057600080fd5b6116c984611665565b92506116d760208501611665565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611726576117266116e7565b604052919050565b6000602080838503121561174157600080fd5b823567ffffffffffffffff8082111561175957600080fd5b818501915085601f83011261176d57600080fd5b81358181111561177f5761177f6116e7565b8060051b91506117908483016116fd565b81815291830184019184810190888411156117aa57600080fd5b938501935b838510156117c8578435825293850193908501906117af565b98975050505050505050565b6000602082840312156117e657600080fd5b610b1c82611665565b600067ffffffffffffffff831115611809576118096116e7565b61181c601f8401601f19166020016116fd565b905082815283838301111561183057600080fd5b828260208301376000602084830101529392505050565b6000806040838503121561185a57600080fd5b823567ffffffffffffffff81111561187157600080fd5b8301601f8101851361188257600080fd5b611891858235602084016117ef565b95602094909401359450505050565b600080604083850312156118b357600080fd5b6118bc83611665565b9150602083013580151581146118d157600080fd5b809150509250929050565b600080600080608085870312156118f257600080fd5b6118fb85611665565b935061190960208601611665565b925060408501359150606085013567ffffffffffffffff81111561192c57600080fd5b8501601f8101871361193d57600080fd5b61194c878235602084016117ef565b91505092959194509250565b6000806040838503121561196b57600080fd5b61197483611665565b915061198260208401611665565b90509250929050565b600181811c9082168061199f57607f821691505b6020821081036119bf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610643576106436119c5565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600060ff831680611a2d57611a2d611a04565b8060ff84160691505092915050565b600061ffff80841680611a5157611a51611a04565b92169190910692915050565b81810381811115610643576106436119c5565b600082611a7f57611a7f611a04565b500490565b600060018201611a9657611a966119c5565b5060010190565b6000816000190483118215151615611ab757611ab76119c5565b500290565b60008151611ace8185602086016115e9565b9290920192915050565b60008251611aea8184602087016115e9565b9190910192915050565b737b226e616d65223a2022436f646564457468202360601b81528251600090611b248160148501602088016115e9565b601160f91b6014918401918201527f2c226465736372697074696f6e223a22436f646564457468204578706572696d60158201526a32b73a161032b73537bc9160a91b60358201527f2c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62616040820152641cd94d8d0b60da1b60608201528351611bb38160658401602088016115e9565b61227d60f01b60659290910191820152606701949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611c0681601d8501602087016115e9565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c469083018461160d565b9695505050505050565b600060208284031215611c6257600080fd5b8151610b1c816115b6565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222069643d22782220707265736572766541737065637452617460208201527f696f3d22784d696e594d696e206d656574222076696577426f783d223020302060408201526a189818181018981818111f60a91b6060820152711e3334b63a32b91034b21e9131363ab9111f60711b606b8201527f3c6665476175737369616e426c757220696e3d22536f75726365477261706869607d8201527f632220737464446576696174696f6e3d22302e3522202f3e0000000000000000609d820152600060b58201681e17b334b63a32b91f60b91b81526b1e3932b1ba103334b6361e9160a11b6009820152611dd5611d91601583018a611abc565b7f222077696474683d223130303022206865696768743d2231303030222066696c8152713a32b91e913ab9361411b1363ab91491179f60711b602082015260320190565b7f3c636972636c652063783d22353030222063793d223530302220723d2200000081529050611e07601d820188611abc565b6711103334b6361e9160c11b81529050611e246008820187611abc565b7711103334b63a32b91e913ab9361411b1363ab9149110179f60411b815290507f3c636972636c652063783d22353030222063793d223530302220723d220000006018820152611e776035820186611abc565b6711103334b6361e9160c11b81529050611e946008820185611abc565b7711103334b63a32b91e913ab9361411b1363ab9149110179f60411b8152651e17b9bb339f60d11b6018820152601e019897505050505050505056fe23383036343363233663343432382336303534346323623837633034236634666363382363386234396323663839343963233834386338382330383534613423613030633063236638656365632336303834346323656430343534236634643230344142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2337303563373423653865346134236630393432632331386534623423373837343334236138653466342333613637376523643063636363697066733a2f2f516d514c474266665a764437396a646650366a6f4e317a39686d445566375747786869664539634c4c38556b6550a264697066735822122067ca494f5eeaf16512d1546148e830fe4138c4f895f9a8177046d45ae04372a964736f6c63430008100033
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80637fe0d73d11610102578063b2bdfa7b11610095578063c87b56dd11610064578063c87b56dd14610567578063e8a3d48514610587578063e985e9c51461059c578063edc3bc3f146105bc57600080fd5b8063b2bdfa7b146104ec578063b863bd371461050c578063b88d4fde1461052c578063bf8fbbd21461054c57600080fd5b8063a0712d68116100d1578063a0712d6814610484578063a22cb46514610497578063a6eb27e2146104b7578063a8224002146104cc57600080fd5b80637fe0d73d14610402578063887f12ce1461041757806395d89b41146104375780639f2524ee1461044c57600080fd5b806342842e0e1161017a578063665313b711610149578063665313b7146103975780636ae0fcd8146103ac5780636b10f373146103c257806370a08231146103e257600080fd5b806342842e0e146103075780634378a6e3146103275780635b70ea9f1461036f5780636352211e1461037757600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102bc57806332cb6b0c146102dc5780633ccfd60b146102f257600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b506102086102033660046115cc565b6105f7565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610649565b6040516102149190611639565b34801561024b57600080fd5b5061025f61025a36600461164c565b6106db565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611681565b61071f565b005b3480156102a557600080fd5b50600254600154035b604051908152602001610214565b3480156102c857600080fd5b506102976102d73660046116ab565b6107bf565b3480156102e857600080fd5b506102ae6108b981565b3480156102fe57600080fd5b50610297610851565b34801561031357600080fd5b506102976103223660046116ab565b6108c9565b34801561033357600080fd5b5061034761034236600461164c565b6108e4565b604080519586526020860194909452928401919091526060830152608082015260a001610214565b610297610979565b34801561038357600080fd5b5061025f61039236600461164c565b6109ef565b3480156103a357600080fd5b506102ae6109fa565b3480156103b857600080fd5b506102ae600a5481565b3480156103ce57600080fd5b506102976103dd36600461172e565b610a10565b3480156103ee57600080fd5b506102ae6103fd3660046117d4565b610aa1565b34801561040e57600080fd5b506102ae606481565b34801561042357600080fd5b50610232610432366004611847565b610af0565b34801561044357600080fd5b50610232610b23565b34801561045857600080fd5b506102ae610467366004611681565b600960209081526000928352604080842090915290825290205481565b61029761049236600461164c565b610b32565b3480156104a357600080fd5b506102976104b23660046118a0565b610ba0565b3480156104c357600080fd5b506102ae600181565b3480156104d857600080fd5b506102976104e736600461164c565b610c0c565b3480156104f857600080fd5b5060005461025f906001600160a01b031681565b34801561051857600080fd5b506102ae61052736600461164c565b610c62565b34801561053857600080fd5b506102976105473660046118dc565b610c94565b34801561055857600080fd5b506102ae66071afd498d000081565b34801561057357600080fd5b5061023261058236600461164c565b610cde565b34801561059357600080fd5b50610232610dc0565b3480156105a857600080fd5b506102086105b7366004611958565b610de0565b3480156105c857600080fd5b506102086105d7366004611958565b600860209081526000928352604080842090915290825290205460ff1681565b60006301ffc9a760e01b6001600160e01b03198316148061062857506380ac58cd60e01b6001600160e01b03198316145b806106435750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600380546106589061198b565b80601f01602080910402602001604051908101604052809291908181526020018280546106849061198b565b80156106d15780601f106106a6576101008083540402835291602001916106d1565b820191906000526020600020905b8154815290600101906020018083116106b457829003601f168201915b5050505050905090565b60006106e682610e52565b610703576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b600061072a826109ef565b9050336001600160a01b03821614610763576107468133610de0565b610763576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0383166000908152600960205260408120906107e06109fa565b81526020019081526020016000205460096000846001600160a01b03166001600160a01b03168152602001908152602001600020600061081e6109fa565b8152602001908152602001600020600082825461083b91906119db565b9091555061084c9050838383610e7a565b505050565b6000546001600160a01b031633146108965760405162461bcd60e51b81526020600482015260036024820152624e6f2160e81b60448201526064015b60405180910390fd5b6040514790339082156108fc029083906000818181858888f193505050501580156108c5573d6000803e3d6000fd5b5050565b61084c83838360405180602001604052806000815250610c94565b6000806000806000806108f687610c62565b90506000610907600883831a611a1a565b60ff169050600061091d600e600185901a611a1a565b60ff1690506000610933600e600286901a611a1a565b60ff169050600061094a61012c600387901a611a3c565b61ffff16905060006109616032600488901a611a1a565b949c939b5091995097505060ff909116945092505050565b60016109896101136108b9611a5d565b816109976002546001540390565b6109a191906119db565b11156109ac57600080fd5b3360009081526006602052604090819020546001916109d79184911c67ffffffffffffffff166119db565b11156109e257600080fd5b6109ec3382611012565b50565b600061064382611110565b600042610a0a6201518082611a70565b91505090565b60005b81518110156108c5576000828281518110610a3057610a306119ee565b602002602001015190506000610a45826109ef565b6001600160a01b0381166000908152600960205260408120919250610a686109fa565b81526020019081526020016000206000815480929190610a8790611a84565b919050555050508080610a9990611a84565b915050610a13565b60006001600160a01b038216610aca576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6060610b1c83610b01846007611a9d565b610b0c8560016119db565b610b17906007611a9d565b611177565b9392505050565b6060600480546106589061198b565b6108b981610b436002546001540390565b610b4d91906119db565b1115610b5857600080fd5b336000908152600660205260409081902054606491610b839184911c67ffffffffffffffff166119db565b1115610b8e57600080fd5b346109d78266071afd498d0000611a9d565b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000610c17826109ef565b6001600160a01b0381166000908152600960205260408120919250610c3a6109fa565b81526020019081526020016000206000815480929190610c5990611a84565b91905055505050565b600081604051602001610c7791815260200190565b604051602081830303815290604052805190602001209050919050565b610c9f8484846107bf565b6001600160a01b0383163b15610cd857610cbb84848484611244565b610cd8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610ce982610e52565b610d2d5760405162461bcd60e51b8152602060048201526015602482015274746f6b656e20646f6573206e6f742065786973747360581b604482015260640161088d565b6000610d388361132f565b604051602001610d489190611ad8565b60405160208183030381529060405290506000610d95610d678561141f565b610d7084611463565b604051602001610d81929190611af4565b604051602081830303815290604052611463565b905080604051602001610da89190611bce565b60405160208183030381529060405292505050919050565b6060604051806060016040528060358152602001611fab60359139905090565b600a546001600160a01b038316600090815260096020526040812090919082610e076109fa565b81526020019081526020016000205410610e2357506000610643565b506001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b600060015482108015610643575050600090815260056020526040902054600160e01b161590565b6000610e8582611110565b9050836001600160a01b0316816001600160a01b031614610eb85760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610f0557610ee88633610de0565b610f0557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610f2c57604051633a954ecd60e21b815260040160405180910390fd5b8015610f3757600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040812091909155600160e11b84169003610fc957600184016000818152600560205260408120549003610fc7576001548114610fc75760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b60015460008290036110375760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526006602090815260408083208054680100000000000000018802019055848352600590915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b8181146110e657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016110ae565b508160000361110757604051622e076360e81b815260040160405180910390fd5b60015550505050565b60008160015481101561115e5760008181526005602052604081205490600160e01b8216900361115c575b80600003610b1c57506000190160008181526005602052604090205461113b565b505b604051636f96cda160e11b815260040160405180910390fd5b60608360006111868585611a5d565b67ffffffffffffffff81111561119e5761119e6116e7565b6040519080825280601f01601f1916602001820160405280156111c8576020820181803683370190505b509050845b8481101561123a578281815181106111e7576111e76119ee565b01602001516001600160f81b031916826112018884611a5d565b81518110611211576112116119ee565b60200101906001600160f81b031916908160001a9053508061123281611a84565b9150506111cd565b5095945050505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611279903390899088908890600401611c13565b6020604051808303816000875af19250505080156112b4575060408051601f3d908101601f191682019092526112b191810190611c50565b60015b611312573d8080156112e2576040519150601f19603f3d011682016040523d82523d6000602084013e6112e7565b606091505b50805160000361130a576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b60606000604051806060016040528060388152602001611f7360389139905060006040518060a0016040528060628152602001611ed1606291399050600080600080600061137c896108e4565b9450945094509450945060006113928887610af0565b905060006113a08887610af0565b905060006113ae8987610af0565b905060006113c56113c08760646119db565b61141f565b905060006113e2866113d88960646119db565b6113c091906119db565b905084818484876040516020016113fd959493929190611c6d565b6040516020818303038152906040529c50505050505050505050505050919050565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806114395750819003601f19909101908152919050565b6060815160000361148257505060408051602081019091526000815290565b6000604051806060016040528060408152602001611f3360409139905060006003845160026114b191906119db565b6114bb9190611a70565b6114c6906004611a9d565b67ffffffffffffffff8111156114de576114de6116e7565b6040519080825280601f01601f191660200182016040528015611508576020820181803683370190505b509050600182016020820185865187015b80821015611574576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845350600183019250611519565b505060038651066001811461159057600281146115a3576115ab565b603d6001830353603d60028303536115ab565b603d60018303535b509195945050505050565b6001600160e01b0319811681146109ec57600080fd5b6000602082840312156115de57600080fd5b8135610b1c816115b6565b60005b838110156116045781810151838201526020016115ec565b50506000910152565b600081518084526116258160208601602086016115e9565b601f01601f19169290920160200192915050565b602081526000610b1c602083018461160d565b60006020828403121561165e57600080fd5b5035919050565b80356001600160a01b038116811461167c57600080fd5b919050565b6000806040838503121561169457600080fd5b61169d83611665565b946020939093013593505050565b6000806000606084860312156116c057600080fd5b6116c984611665565b92506116d760208501611665565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611726576117266116e7565b604052919050565b6000602080838503121561174157600080fd5b823567ffffffffffffffff8082111561175957600080fd5b818501915085601f83011261176d57600080fd5b81358181111561177f5761177f6116e7565b8060051b91506117908483016116fd565b81815291830184019184810190888411156117aa57600080fd5b938501935b838510156117c8578435825293850193908501906117af565b98975050505050505050565b6000602082840312156117e657600080fd5b610b1c82611665565b600067ffffffffffffffff831115611809576118096116e7565b61181c601f8401601f19166020016116fd565b905082815283838301111561183057600080fd5b828260208301376000602084830101529392505050565b6000806040838503121561185a57600080fd5b823567ffffffffffffffff81111561187157600080fd5b8301601f8101851361188257600080fd5b611891858235602084016117ef565b95602094909401359450505050565b600080604083850312156118b357600080fd5b6118bc83611665565b9150602083013580151581146118d157600080fd5b809150509250929050565b600080600080608085870312156118f257600080fd5b6118fb85611665565b935061190960208601611665565b925060408501359150606085013567ffffffffffffffff81111561192c57600080fd5b8501601f8101871361193d57600080fd5b61194c878235602084016117ef565b91505092959194509250565b6000806040838503121561196b57600080fd5b61197483611665565b915061198260208401611665565b90509250929050565b600181811c9082168061199f57607f821691505b6020821081036119bf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610643576106436119c5565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601260045260246000fd5b600060ff831680611a2d57611a2d611a04565b8060ff84160691505092915050565b600061ffff80841680611a5157611a51611a04565b92169190910692915050565b81810381811115610643576106436119c5565b600082611a7f57611a7f611a04565b500490565b600060018201611a9657611a966119c5565b5060010190565b6000816000190483118215151615611ab757611ab76119c5565b500290565b60008151611ace8185602086016115e9565b9290920192915050565b60008251611aea8184602087016115e9565b9190910192915050565b737b226e616d65223a2022436f646564457468202360601b81528251600090611b248160148501602088016115e9565b601160f91b6014918401918201527f2c226465736372697074696f6e223a22436f646564457468204578706572696d60158201526a32b73a161032b73537bc9160a91b60358201527f2c22696d616765223a2022646174613a696d6167652f7376672b786d6c3b62616040820152641cd94d8d0b60da1b60608201528351611bb38160658401602088016115e9565b61227d60f01b60659290910191820152606701949350505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251611c0681601d8501602087016115e9565b91909101601d0192915050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c469083018461160d565b9695505050505050565b600060208284031215611c6257600080fd5b8151610b1c816115b6565b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f737667222069643d22782220707265736572766541737065637452617460208201527f696f3d22784d696e594d696e206d656574222076696577426f783d223020302060408201526a189818181018981818111f60a91b6060820152711e3334b63a32b91034b21e9131363ab9111f60711b606b8201527f3c6665476175737369616e426c757220696e3d22536f75726365477261706869607d8201527f632220737464446576696174696f6e3d22302e3522202f3e0000000000000000609d820152600060b58201681e17b334b63a32b91f60b91b81526b1e3932b1ba103334b6361e9160a11b6009820152611dd5611d91601583018a611abc565b7f222077696474683d223130303022206865696768743d2231303030222066696c8152713a32b91e913ab9361411b1363ab91491179f60711b602082015260320190565b7f3c636972636c652063783d22353030222063793d223530302220723d2200000081529050611e07601d820188611abc565b6711103334b6361e9160c11b81529050611e246008820187611abc565b7711103334b63a32b91e913ab9361411b1363ab9149110179f60411b815290507f3c636972636c652063783d22353030222063793d223530302220723d220000006018820152611e776035820186611abc565b6711103334b6361e9160c11b81529050611e946008820185611abc565b7711103334b63a32b91e913ab9361411b1363ab9149110179f60411b8152651e17b9bb339f60d11b6018820152601e019897505050505050505056fe23383036343363233663343432382336303534346323623837633034236634666363382363386234396323663839343963233834386338382330383534613423613030633063236638656365632336303834346323656430343534236634643230344142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f2337303563373423653865346134236630393432632331386534623423373837343334236138653466342333613637376523643063636363697066733a2f2f516d514c474266665a764437396a646650366a6f4e317a39686d445566375747786869664539634c4c38556b6550a264697066735822122067ca494f5eeaf16512d1546148e830fe4138c4f895f9a8177046d45ae04372a964736f6c63430008100033
Deployed Bytecode Sourcemap
54709:5200:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18563:639;;;;;;;;;;-1:-1:-1;18563:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;18563:639:0;;;;;;;;19465:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25948:218::-;;;;;;;;;;-1:-1:-1;25948:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1719:32:1;;;1701:51;;1689:2;1674:18;25948:218:0;1555:203:1;25389:400:0;;;;;;;;;;-1:-1:-1;25389:400:0;;;;;:::i;:::-;;:::i;:::-;;15216:323;;;;;;;;;;-1:-1:-1;15490:12:0;;15474:13;;:28;15216:323;;;2346:25:1;;;2334:2;2319:18;15216:323:0;2200:177:1;56438:250:0;;;;;;;;;;-1:-1:-1;56438:250:0;;;;;:::i;:::-;;:::i;54983:41::-;;;;;;;;;;;;55020:4;54983:41;;9943:145;;;;;;;;;;;;;:::i;32502:185::-;;;;;;;;;;-1:-1:-1;32502:185:0;;;;;:::i;:::-;;:::i;57235:445::-;;;;;;;;;;-1:-1:-1;57235:445:0;;;;;:::i;:::-;;:::i;:::-;;;;2974:25:1;;;3030:2;3015:18;;3008:34;;;;3058:18;;;3051:34;;;;3116:2;3101:18;;3094:34;3159:3;3144:19;;3137:35;2961:3;2946:19;57235:445:0;2715:463:1;55134:245:0;;;:::i;20858:152::-;;;;;;;;;;-1:-1:-1;20858:152:0;;;;;:::i;:::-;;:::i;55652:133::-;;;;;;;;;;;;;:::i;54834:31::-;;;;;;;;;;;;;;;;55939:247;;;;;;;;;;-1:-1:-1;55939:247:0;;;;;:::i;:::-;;:::i;16400:233::-;;;;;;;;;;-1:-1:-1;16400:233:0;;;;;:::i;:::-;;:::i;54872:45::-;;;;;;;;;;;;54914:3;54872:45;;57688:147;;;;;;;;;;-1:-1:-1;57688:147:0;;;;;:::i;:::-;;:::i;19641:104::-;;;;;;;;;;;;;:::i;54765:60::-;;;;;;;;;;-1:-1:-1;54765:60:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;55387:257;;;;;;:::i;:::-;;:::i;26506:234::-;;;;;;;;;;-1:-1:-1;26506:234:0;;;;;:::i;:::-;;:::i;54924:52::-;;;;;;;;;;;;54975:1;54924:52;;55793:138;;;;;;;;;;-1:-1:-1;55793:138:0;;;;;:::i;:::-;;:::i;9821:21::-;;;;;;;;;;-1:-1:-1;9821:21:0;;;;-1:-1:-1;;;;;9821:21:0;;;57107:120;;;;;;;;;;-1:-1:-1;57107:120:0;;;;;:::i;:::-;;:::i;33285:399::-;;;;;;;;;;-1:-1:-1;33285:399:0;;;;;:::i;:::-;;:::i;55031:42::-;;;;;;;;;;;;55062:11;55031:42;;59110:648;;;;;;;;;;-1:-1:-1;59110:648:0;;;;;:::i;:::-;;:::i;59766:140::-;;;;;;;;;;;;;:::i;56194:239::-;;;;;;;;;;-1:-1:-1;56194:239:0;;;;;:::i;:::-;;:::i;13948:70::-;;;;;;;;;;-1:-1:-1;13948:70:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;18563:639;18648:4;-1:-1:-1;;;;;;;;;18972:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19049:25:0;;;18972:102;:179;;;-1:-1:-1;;;;;;;;;;19126:25:0;;;18972:179;18952:199;18563:639;-1:-1:-1;;18563:639:0:o;19465:100::-;19519:13;19552:5;19545:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19465:100;:::o;25948:218::-;26024:7;26049:16;26057:7;26049;:16::i;:::-;26044:64;;26074:34;;-1:-1:-1;;;26074:34:0;;;;;;;;;;;26044:64;-1:-1:-1;26128:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;26128:30:0;;25948:218::o;25389:400::-;25470:13;25486:16;25494:7;25486;:16::i;:::-;25470:32;-1:-1:-1;49446:10:0;-1:-1:-1;;;;;25519:28:0;;;25515:175;;25567:44;25584:5;49446:10;56194:239;:::i;25567:44::-;25562:128;;25639:35;;-1:-1:-1;;;25639:35:0;;;;;;;;;;;25562:128;25702:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;25702:35:0;-1:-1:-1;;;;;25702:35:0;;;;;;;;;25753:28;;25702:24;;25753:28;;;;;;;25459:330;25389:400;;:::o;56438:250::-;-1:-1:-1;;;;;56603:11:0;;;;;;:5;:11;;;;;;56615:16;:14;:16::i;:::-;56603:29;;;;;;;;;;;;56572:5;:9;56578:2;-1:-1:-1;;;;;56572:9:0;-1:-1:-1;;;;;56572:9:0;;;;;;;;;;;;:27;56582:16;:14;:16::i;:::-;56572:27;;;;;;;;;;;;:60;;;;;;;:::i;:::-;;;;-1:-1:-1;56643:37:0;;-1:-1:-1;56662:4:0;56668:2;56672:7;56643:18;:37::i;:::-;56438:250;;;:::o;9943:145::-;9890:6;;-1:-1:-1;;;;;9890:6:0;9898:10;9890:18;9882:34;;;;-1:-1:-1;;;9882:34:0;;7997:2:1;9882:34:0;;;7979:21:1;8036:1;8016:18;;;8009:29;-1:-1:-1;;;8054:18:1;;;8047:33;8097:18;;9882:34:0;;;;;;;;;10043:37:::1;::::0;10011:21:::1;::::0;10051:10:::1;::::0;10043:37;::::1;;;::::0;10011:21;;9993:15:::1;10043:37:::0;9993:15;10043:37;10011:21;10051:10;10043:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9982:106;9943:145::o:0;32502:185::-;32640:39;32657:4;32663:2;32667:7;32640:39;;;;;;;;;;;;:16;:39::i;57235:445::-;57295:7;57304;57313;57322;57331;57350:8;57368:15;57375:7;57368:6;:15::i;:::-;57350:34;-1:-1:-1;57397:14:0;57414:13;57426:1;57420:4;;;57414:13;:::i;:::-;57397:30;;;-1:-1:-1;57438:14:0;57455;57467:2;57463:1;57461:4;;;57455:14;:::i;:::-;57438:31;;;-1:-1:-1;57480:14:0;57497;57509:2;57505:1;57503:4;;;57497:14;:::i;:::-;57480:31;;;-1:-1:-1;57522:18:0;57543:15;57555:3;57551:1;57549:4;;;57543:15;:::i;:::-;57522:36;;;-1:-1:-1;57569:18:0;57590:14;57602:2;57598:1;57596:4;;;57590:14;:::i;:::-;57625:6;;57633;;-1:-1:-1;57641:6:0;;-1:-1:-1;57641:6:0;-1:-1:-1;;57569:35:0;;;;;-1:-1:-1;57235:445:0;-1:-1:-1;;;57235:445:0:o;55134:245::-;55196:1;55240:14;55251:3;55020:4;55240:14;:::i;:::-;55230:6;55216:13;15490:12;;15474:13;;:28;;15216:323;55216:13;:20;;;;:::i;:::-;:38;;55208:47;;;;;;55288:10;16776:7;16804:25;;;:18;:25;;10674:2;16804:25;;;;;54975:1;;55274:32;;55300:6;;16804:50;10536:13;16803:82;55274:32;:::i;:::-;:60;;55266:69;;;;;;55346:25;55352:10;55364:6;55346:5;:25::i;:::-;55168:211;55134:245::o;20858:152::-;20930:7;20973:27;20992:7;20973:18;:27::i;55652:133::-;55699:7;55730:15;55763:14;55768:8;55730:15;55763:14;:::i;:::-;55756:21;;;55652:133;:::o;55939:247::-;56003:9;55999:180;56020:3;:10;56016:1;:14;55999:180;;;56051:15;56069:3;56073:1;56069:6;;;;;;;;:::i;:::-;;;;;;;56051:24;;56090:12;56105:16;56113:7;56105;:16::i;:::-;-1:-1:-1;;;;;56136:11:0;;;;;;:5;:11;;;;;56090:31;;-1:-1:-1;56148:16:0;:14;:16::i;:::-;56136:29;;;;;;;;;;;;:31;;;;;;;;;:::i;:::-;;;;;;56036:143;;56032:3;;;;;:::i;:::-;;;;55999:180;;16400:233;16472:7;-1:-1:-1;;;;;16496:19:0;;16492:60;;16524:28;;-1:-1:-1;;;16524:28:0;;;;;;;;;;;16492:60;-1:-1:-1;;;;;;16570:25:0;;;;;:18;:25;;;;;;10536:13;16570:55;;16400:233::o;57688:147::-;57765:13;57791:39;57801:6;57809:7;:5;57815:1;57809:7;:::i;:::-;57819;:5;57825:1;57819:7;:::i;:::-;57818:11;;57828:1;57818:11;:::i;:::-;57791:9;:39::i;:::-;57784:46;57688:147;-1:-1:-1;;;57688:147:0:o;19641:104::-;19697:13;19730:7;19723:14;;;;;:::i;55387:257::-;55020:4;55464:6;55450:13;15490:12;;15474:13;;:28;;15216:323;55450:13;:20;;;;:::i;:::-;:34;;55442:43;;;;;;55518:10;16776:7;16804:25;;;:18;:25;;10674:2;16804:25;;;;;54914:3;;55504:32;;55530:6;;16804:50;10536:13;16803:82;55504:32;:::i;:::-;:51;;55496:60;;;;;;55590:9;55575:11;55580:6;55062:11;55575;:::i;26506:234::-;49446:10;26601:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26601:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26601:60:0;;;;;;;;;;26677:55;;540:41:1;;;26601:49:0;;49446:10;26677:55;;513:18:1;26677:55:0;;;;;;;26506:234;;:::o;55793:138::-;55850:12;55865:16;55873:7;55865;:16::i;:::-;-1:-1:-1;;;;;55892:11:0;;;;;;:5;:11;;;;;55850:31;;-1:-1:-1;55904:16:0;:14;:16::i;:::-;55892:29;;;;;;;;;;;;:31;;;;;;;;;:::i;:::-;;;;;;55839:92;55793:138;:::o;57107:120::-;57159:7;57212:5;57195:23;;;;;;9436:19:1;;9480:2;9471:12;;9307:182;57195:23:0;;;;;;;;;;;;;57185:34;;;;;;57178:41;;57107:120;;;:::o;33285:399::-;33452:31;33465:4;33471:2;33475:7;33452:12;:31::i;:::-;-1:-1:-1;;;;;33498:14:0;;;:19;33494:183;;33537:56;33568:4;33574:2;33578:7;33587:5;33537:30;:56::i;:::-;33532:145;;33621:40;;-1:-1:-1;;;33621:40:0;;;;;;;;;;;33532:145;33285:399;;;;:::o;59110:648::-;59212:13;59251:17;59259:8;59251:7;:17::i;:::-;59243:51;;;;-1:-1:-1;;;59243:51:0;;9696:2:1;59243:51:0;;;9678:21:1;9735:2;9715:18;;;9708:30;-1:-1:-1;;;9754:18:1;;;9747:51;9815:18;;59243:51:0;9494:345:1;59243:51:0;59307:17;59351:16;59358:8;59351:6;:16::i;:::-;59334:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;59307:62;;59380:18;59401:266;59475:19;59485:8;59475:9;:19::i;:::-;59610:25;59630:3;59610:13;:25::i;:::-;59429:227;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59401:13;:266::i;:::-;59380:287;;59744:4;59694:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;59680:70;;;;59110:648;;;:::o;59766:140::-;59810:13;59836:62;;;;;;;;;;;;;;;;;;;59766:140;:::o;56194:239::-;56343:12;;-1:-1:-1;;;;;56311:12:0;;56291:4;56311:12;;;:5;:12;;;;;56291:4;;56343:12;56291:4;56324:16;:14;:16::i;:::-;56311:30;;;;;;;;;;;;:44;56308:65;;-1:-1:-1;56365:5:0;56358:12;;56308:65;-1:-1:-1;;;;;;56390:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;56194:239::o;27319:282::-;27384:4;27474:13;;27464:7;:23;27421:153;;;;-1:-1:-1;;27525:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27525:44:0;:49;;27319:282::o;29587:2819::-;29723:27;29753;29772:7;29753:18;:27::i;:::-;29723:57;;29838:4;-1:-1:-1;;;;;29797:45:0;29813:19;-1:-1:-1;;;;;29797:45:0;;29793:86;;29851:28;;-1:-1:-1;;;29851:28:0;;;;;;;;;;;29793:86;29893:27;28695:24;;;:15;:24;;;;;28923:26;;49446:10;28320:30;;;-1:-1:-1;;;;;28013:28:0;;28298:20;;;28295:56;30079:180;;30172:43;30189:4;49446:10;56194:239;:::i;30172:43::-;30167:92;;30224:35;;-1:-1:-1;;;30224:35:0;;;;;;;;;;;30167:92;-1:-1:-1;;;;;30276:16:0;;30272:52;;30301:23;;-1:-1:-1;;;30301:23:0;;;;;;;;;;;30272:52;30473:15;30470:160;;;30613:1;30592:19;30585:30;30470:160;-1:-1:-1;;;;;31010:24:0;;;;;;;:18;:24;;;;;;31008:26;;-1:-1:-1;;31008:26:0;;;31079:22;;;;;;;;;31077:24;;-1:-1:-1;31077:24:0;;;24247:11;24222:23;24218:41;24205:63;-1:-1:-1;;;24205:63:0;31372:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;31667:47:0;;:52;;31663:627;;31772:1;31762:11;;31740:19;31895:30;;;:17;:30;;;;;;:35;;31891:384;;32033:13;;32018:11;:28;32014:242;;32180:30;;;;:17;:30;;;;;:52;;;32014:242;31721:569;31663:627;32337:7;32333:2;-1:-1:-1;;;;;32318:27:0;32327:4;-1:-1:-1;;;;;32318:27:0;;;;;;;;;;;29710:2696;;;29587:2819;;;:::o;36946:2720::-;37042:13;;37019:20;37070:13;;;37066:44;;37092:18;;-1:-1:-1;;;37092:18:0;;;;;;;;;;;37066:44;-1:-1:-1;;;;;37598:22:0;;;;;;:18;:22;;;;10674:2;37598:22;;;:71;;37636:32;37624:45;;37598:71;;;37912:31;;;:17;:31;;;;;-1:-1:-1;24678:15:0;;24652:24;24648:46;24247:11;24222:23;24218:41;24215:52;24205:63;;37912:173;;38147:23;;;;37912:31;;37598:22;;38912:25;37598:22;;38765:335;39180:1;39166:12;39162:20;39120:346;39221:3;39212:7;39209:16;39120:346;;39439:7;39429:8;39426:1;39399:25;39396:1;39393;39388:59;39274:1;39261:15;39120:346;;;39124:77;39499:8;39511:1;39499:13;39495:45;;39521:19;;-1:-1:-1;;;39521:19:0;;;;;;;;;;;39495:45;39557:13;:19;-1:-1:-1;56438:250:0;;;:::o;22013:1275::-;22080:7;22115;22217:13;;22210:4;:20;22206:1015;;;22255:14;22272:23;;;:17;:23;;;;;;;-1:-1:-1;;;22361:24:0;;:29;;22357:845;;23026:113;23033:6;23043:1;23033:11;23026:113;;-1:-1:-1;;;23104:6:0;23086:25;;;;:17;:25;;;;;;23026:113;;22357:845;22232:989;22206:1015;23249:31;;-1:-1:-1;;;23249:31:0;;;;;;;;;;;56707:387;56800:13;56857:3;56827:21;56905:19;56914:10;56905:8;:19;:::i;:::-;56895:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56895:30:0;-1:-1:-1;56873:52:0;-1:-1:-1;56950:10:0;56937:116;56966:8;56962:1;:12;56937:116;;;57029:8;57038:1;57029:11;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;57029:11:0;57006:6;57013:12;57015:10;57013:1;:12;:::i;:::-;57006:20;;;;;;;;:::i;:::-;;;;:34;-1:-1:-1;;;;;57006:34:0;;;;;;;;-1:-1:-1;56976:3:0;;;;:::i;:::-;;;;56937:116;;;-1:-1:-1;57078:6:0;56707:387;-1:-1:-1;;;;;56707:387:0:o;35768:716::-;35952:88;;-1:-1:-1;;;35952:88:0;;35931:4;;-1:-1:-1;;;;;35952:45:0;;;;;:88;;49446:10;;36019:4;;36025:7;;36034:5;;35952:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35952:88:0;;;;;;;;-1:-1:-1;;35952:88:0;;;;;;;;;;;;:::i;:::-;;;35948:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36235:6;:13;36252:1;36235:18;36231:235;;36281:40;;-1:-1:-1;;;36281:40:0;;;;;;;;;;;36231:235;36424:6;36418:13;36409:6;36405:2;36401:15;36394:38;35948:529;-1:-1:-1;;;;;;36111:64:0;-1:-1:-1;;;36111:64:0;;-1:-1:-1;35768:716:0;;;;;;:::o;57844:1258::-;57901:13;57921:21;:82;;;;;;;;;;;;;;;;;;;58008:23;:126;;;;;;;;;;;;;;;;;;;58142:14;58158;58174;58190:18;58210;58232:23;58246:8;58232:13;:23::i;:::-;58141:114;;;;;;;;;;58270:18;58291:26;58301:7;58310:6;58291:9;:26::i;:::-;58270:47;;58328:18;58349:28;58359:9;58370:6;58349:9;:28::i;:::-;58328:49;;58388:18;58409:28;58419:9;58430:6;58409:9;:28::i;:::-;58388:49;-1:-1:-1;58442:18:0;58463:27;58473:16;58479:10;58473:3;:16;:::i;:::-;58463:9;:27::i;:::-;58442:48;-1:-1:-1;58495:19:0;58517:40;58546:10;58527:16;58533:10;58527:3;:16;:::i;:::-;:29;;;;:::i;58517:40::-;58495:62;;58833:4;58928:5;58945:4;59014;59030;58577:517;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58570:524;;;;;;;;;;;;;;57844:1258;;;:::o;49566:1745::-;49631:17;50065:4;50058;50052:11;50048:22;50157:1;50151:4;50144:15;50232:4;50229:1;50225:12;50218:19;;;50314:1;50309:3;50302:14;50418:3;50657:5;50639:428;50705:1;50700:3;50696:11;50689:18;;50876:2;50870:4;50866:13;50862:2;50858:22;50853:3;50845:36;50970:2;50960:13;;51027:25;50639:428;51027:25;-1:-1:-1;51097:13:0;;;-1:-1:-1;;51212:14:0;;;51274:19;;;51212:14;49566:1745;-1:-1:-1;49566:1745:0:o;51603:3097::-;51661:13;51898:4;:11;51913:1;51898:16;51894:31;;-1:-1:-1;;51916:9:0;;;;;;;;;-1:-1:-1;51916:9:0;;;51603:3097::o;51894:31::-;51978:19;52000:6;;;;;;;;;;;;;;;;;51978:28;;52417:20;52476:1;52457:4;:11;52471:1;52457:15;;;;:::i;:::-;52456:21;;;;:::i;:::-;52451:27;;:1;:27;:::i;:::-;52440:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52440:39:0;;52417:62;;52659:1;52652:5;52648:13;52763:2;52755:6;52751:15;52874:4;52926;52920:11;52914:4;52910:22;52836:1432;52960:6;52951:7;52948:19;52836:1432;;;53066:1;53057:7;53053:15;53042:26;;53105:7;53099:14;53758:4;53750:5;53746:2;53742:14;53738:25;53728:8;53724:40;53718:47;53707:9;53699:67;53812:1;53801:9;53797:17;53784:30;;53904:4;53896:5;53892:2;53888:14;53884:25;53874:8;53870:40;53864:47;53853:9;53845:67;53958:1;53947:9;53943:17;53930:30;;54049:4;54041:5;54038:1;54034:13;54030:24;54020:8;54016:39;54010:46;53999:9;53991:66;54103:1;54092:9;54088:17;54075:30;;54186:4;54179:5;54175:16;54165:8;54161:31;54155:38;54144:9;54136:58;;54240:1;54229:9;54225:17;54212:30;;52836:1432;;;52840:107;;54430:1;54423:4;54417:11;54413:19;54451:1;54446:123;;;;54588:1;54583:73;;;;54406:250;;54446:123;54499:4;54495:1;54484:9;54480:17;54472:32;54549:4;54545:1;54534:9;54530:17;54522:32;54446:123;;54583:73;54636:4;54632:1;54621:9;54617:17;54609:32;54406:250;-1:-1:-1;54686:6:0;;51603:3097;-1:-1:-1;;;;;51603:3097:0:o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:282::-;900:3;938:5;932:12;965:6;960:3;953:19;981:76;1050:6;1043:4;1038:3;1034:14;1027:4;1020:5;1016:16;981:76;:::i;:::-;1111:2;1090:15;-1:-1:-1;;1086:29:1;1077:39;;;;1118:4;1073:50;;847:282;-1:-1:-1;;847:282:1:o;1134:231::-;1283:2;1272:9;1265:21;1246:4;1303:56;1355:2;1344:9;1340:18;1332:6;1303:56;:::i;1370:180::-;1429:6;1482:2;1470:9;1461:7;1457:23;1453:32;1450:52;;;1498:1;1495;1488:12;1450:52;-1:-1:-1;1521:23:1;;1370:180;-1:-1:-1;1370:180:1:o;1763:173::-;1831:20;;-1:-1:-1;;;;;1880:31:1;;1870:42;;1860:70;;1926:1;1923;1916:12;1860:70;1763:173;;;:::o;1941:254::-;2009:6;2017;2070:2;2058:9;2049:7;2045:23;2041:32;2038:52;;;2086:1;2083;2076:12;2038:52;2109:29;2128:9;2109:29;:::i;:::-;2099:39;2185:2;2170:18;;;;2157:32;;-1:-1:-1;;;1941:254:1:o;2382:328::-;2459:6;2467;2475;2528:2;2516:9;2507:7;2503:23;2499:32;2496:52;;;2544:1;2541;2534:12;2496:52;2567:29;2586:9;2567:29;:::i;:::-;2557:39;;2615:38;2649:2;2638:9;2634:18;2615:38;:::i;:::-;2605:48;;2700:2;2689:9;2685:18;2672:32;2662:42;;2382:328;;;;;:::o;3183:127::-;3244:10;3239:3;3235:20;3232:1;3225:31;3275:4;3272:1;3265:15;3299:4;3296:1;3289:15;3315:275;3386:2;3380:9;3451:2;3432:13;;-1:-1:-1;;3428:27:1;3416:40;;3486:18;3471:34;;3507:22;;;3468:62;3465:88;;;3533:18;;:::i;:::-;3569:2;3562:22;3315:275;;-1:-1:-1;3315:275:1:o;3595:946::-;3679:6;3710:2;3753;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3809:9;3796:23;3838:18;3879:2;3871:6;3868:14;3865:34;;;3895:1;3892;3885:12;3865:34;3933:6;3922:9;3918:22;3908:32;;3978:7;3971:4;3967:2;3963:13;3959:27;3949:55;;4000:1;3997;3990:12;3949:55;4036:2;4023:16;4058:2;4054;4051:10;4048:36;;;4064:18;;:::i;:::-;4110:2;4107:1;4103:10;4093:20;;4133:28;4157:2;4153;4149:11;4133:28;:::i;:::-;4195:15;;;4265:11;;;4261:20;;;4226:12;;;;4293:19;;;4290:39;;;4325:1;4322;4315:12;4290:39;4349:11;;;;4369:142;4385:6;4380:3;4377:15;4369:142;;;4451:17;;4439:30;;4402:12;;;;4489;;;;4369:142;;;4530:5;3595:946;-1:-1:-1;;;;;;;;3595:946:1:o;4546:186::-;4605:6;4658:2;4646:9;4637:7;4633:23;4629:32;4626:52;;;4674:1;4671;4664:12;4626:52;4697:29;4716:9;4697:29;:::i;4737:407::-;4802:5;4836:18;4828:6;4825:30;4822:56;;;4858:18;;:::i;:::-;4896:57;4941:2;4920:15;;-1:-1:-1;;4916:29:1;4947:4;4912:40;4896:57;:::i;:::-;4887:66;;4976:6;4969:5;4962:21;5016:3;5007:6;5002:3;4998:16;4995:25;4992:45;;;5033:1;5030;5023:12;4992:45;5082:6;5077:3;5070:4;5063:5;5059:16;5046:43;5136:1;5129:4;5120:6;5113:5;5109:18;5105:29;5098:40;4737:407;;;;;:::o;5149:523::-;5227:6;5235;5288:2;5276:9;5267:7;5263:23;5259:32;5256:52;;;5304:1;5301;5294:12;5256:52;5344:9;5331:23;5377:18;5369:6;5366:30;5363:50;;;5409:1;5406;5399:12;5363:50;5432:22;;5485:4;5477:13;;5473:27;-1:-1:-1;5463:55:1;;5514:1;5511;5504:12;5463:55;5537:76;5605:7;5600:2;5587:16;5580:4;5576:2;5572:13;5537:76;:::i;:::-;5527:86;5660:4;5645:20;;;;5632:34;;-1:-1:-1;;;;5149:523:1:o;5677:347::-;5742:6;5750;5803:2;5791:9;5782:7;5778:23;5774:32;5771:52;;;5819:1;5816;5809:12;5771:52;5842:29;5861:9;5842:29;:::i;:::-;5832:39;;5921:2;5910:9;5906:18;5893:32;5968:5;5961:13;5954:21;5947:5;5944:32;5934:60;;5990:1;5987;5980:12;5934:60;6013:5;6003:15;;;5677:347;;;;;:::o;6211:667::-;6306:6;6314;6322;6330;6383:3;6371:9;6362:7;6358:23;6354:33;6351:53;;;6400:1;6397;6390:12;6351:53;6423:29;6442:9;6423:29;:::i;:::-;6413:39;;6471:38;6505:2;6494:9;6490:18;6471:38;:::i;:::-;6461:48;;6556:2;6545:9;6541:18;6528:32;6518:42;;6611:2;6600:9;6596:18;6583:32;6638:18;6630:6;6627:30;6624:50;;;6670:1;6667;6660:12;6624:50;6693:22;;6746:4;6738:13;;6734:27;-1:-1:-1;6724:55:1;;6775:1;6772;6765:12;6724:55;6798:74;6864:7;6859:2;6846:16;6841:2;6837;6833:11;6798:74;:::i;:::-;6788:84;;;6211:667;;;;;;;:::o;6883:260::-;6951:6;6959;7012:2;7000:9;6991:7;6987:23;6983:32;6980:52;;;7028:1;7025;7018:12;6980:52;7051:29;7070:9;7051:29;:::i;:::-;7041:39;;7099:38;7133:2;7122:9;7118:18;7099:38;:::i;:::-;7089:48;;6883:260;;;;;:::o;7148:380::-;7227:1;7223:12;;;;7270;;;7291:61;;7345:4;7337:6;7333:17;7323:27;;7291:61;7398:2;7390:6;7387:14;7367:18;7364:38;7361:161;;7444:10;7439:3;7435:20;7432:1;7425:31;7479:4;7476:1;7469:15;7507:4;7504:1;7497:15;7361:161;;7148:380;;;:::o;7533:127::-;7594:10;7589:3;7585:20;7582:1;7575:31;7625:4;7622:1;7615:15;7649:4;7646:1;7639:15;7665:125;7730:9;;;7751:10;;;7748:36;;;7764:18;;:::i;8126:127::-;8187:10;8182:3;8178:20;8175:1;8168:31;8218:4;8215:1;8208:15;8242:4;8239:1;8232:15;8258:127;8319:10;8314:3;8310:20;8307:1;8300:31;8350:4;8347:1;8340:15;8374:4;8371:1;8364:15;8390:157;8420:1;8454:4;8451:1;8447:12;8478:3;8468:37;;8485:18;;:::i;:::-;8537:3;8530:4;8527:1;8523:12;8519:22;8514:27;;;8390:157;;;;:::o;8552:179::-;8583:1;8609:6;8642:2;8639:1;8635:10;8664:3;8654:37;;8671:18;;:::i;:::-;8709:10;;8705:20;;;;;8552:179;-1:-1:-1;;8552:179:1:o;8736:128::-;8803:9;;;8824:11;;;8821:37;;;8838:18;;:::i;8869:120::-;8909:1;8935;8925:35;;8940:18;;:::i;:::-;-1:-1:-1;8974:9:1;;8869:120::o;8994:135::-;9033:3;9054:17;;;9051:43;;9074:18;;:::i;:::-;-1:-1:-1;9121:1:1;9110:13;;8994:135::o;9134:168::-;9174:7;9240:1;9236;9232:6;9228:14;9225:1;9222:21;9217:1;9210:9;9203:17;9199:45;9196:71;;;9247:18;;:::i;:::-;-1:-1:-1;9287:9:1;;9134:168::o;9844:198::-;9886:3;9924:5;9918:12;9939:65;9997:6;9992:3;9985:4;9978:5;9974:16;9939:65;:::i;:::-;10020:16;;;;;9844:198;-1:-1:-1;;9844:198:1:o;10047:289::-;10178:3;10216:6;10210:13;10232:66;10291:6;10286:3;10279:4;10271:6;10267:17;10232:66;:::i;:::-;10314:16;;;;;10047:289;-1:-1:-1;;10047:289:1:o;10341:1495::-;-1:-1:-1;;;11043:64:1;;11130:13;;11025:3;;11152:75;11130:13;11215:2;11206:12;;11199:4;11187:17;;11152:75;:::i;:::-;-1:-1:-1;;;11286:2:1;11246:16;;;11278:11;;;11271:33;11333:66;11328:2;11320:11;;11313:87;-1:-1:-1;;;11424:2:1;11416:11;;11409:55;11493:66;11488:2;11480:11;;11473:87;-1:-1:-1;;;11584:2:1;11576:11;;11569:28;11622:13;;11644:77;11622:13;11706:3;11698:12;;11691:4;11679:17;;11644:77;:::i;:::-;-1:-1:-1;;;11781:3:1;11740:17;;;;11773:12;;;11766:36;11826:3;11818:12;;10341:1495;-1:-1:-1;;;;10341:1495:1:o;11841:461::-;12103:31;12098:3;12091:44;12073:3;12164:6;12158:13;12180:75;12248:6;12243:2;12238:3;12234:12;12227:4;12219:6;12215:17;12180:75;:::i;:::-;12275:16;;;;12293:2;12271:25;;11841:461;-1:-1:-1;;11841:461:1:o;12307:500::-;-1:-1:-1;;;;;12576:15:1;;;12558:34;;12628:15;;12623:2;12608:18;;12601:43;12675:2;12660:18;;12653:34;;;12723:3;12718:2;12703:18;;12696:31;;;12501:4;;12744:57;;12781:19;;12773:6;12744:57;:::i;:::-;12736:65;12307:500;-1:-1:-1;;;;;;12307:500:1:o;12812:249::-;12881:6;12934:2;12922:9;12913:7;12909:23;12905:32;12902:52;;;12950:1;12947;12940:12;12902:52;12982:9;12976:16;13001:30;13025:5;13001:30;:::i;14416:2914::-;16079:66;16067:79;;16176:66;16171:2;16162:12;;16155:88;16273:66;16268:2;16259:12;;16252:88;-1:-1:-1;;;16365:2:1;16356:12;;16349:56;-1:-1:-1;;;16453:3:1;16444:13;;13124:61;13273:66;16519:3;16510:13;;13261:79;13370:66;13356:12;;;13349:88;16049:3;13453:12;;;-1:-1:-1;;;13526:24:1;;-1:-1:-1;;;16619:1:1;16608:13;;13615:49;16644:67;16669:41;16706:2;16699:5;16695:14;16687:6;16669:41;:::i;:::-;13747:66;13735:79;;-1:-1:-1;;;13839:2:1;13830:12;;13823:70;13918:2;13909:12;;13675:252;16644:67;14002:66;13990:79;;16631:80;-1:-1:-1;16778:41:1;16815:2;16808:5;16804:14;16796:6;16778:41;:::i;:::-;-1:-1:-1;;;14138:41:1;;16765:54;-1:-1:-1;16886:40:1;16923:1;16916:5;16912:13;16904:6;16886:40;:::i;:::-;-1:-1:-1;;;14248:79:1;;16873:53;-1:-1:-1;14002:66:1;17021:2;17010:14;;13990:79;17047:41;17084:2;17077:5;17073:14;17065:6;17047:41;:::i;:::-;-1:-1:-1;;;14138:41:1;;17034:54;-1:-1:-1;17155:40:1;17192:1;17185:5;17181:13;17173:6;17155:40;:::i;:::-;-1:-1:-1;;;14248:79:1;;-1:-1:-1;;;17290:2:1;17279:14;;14388:21;17321:2;17310:14;;;-1:-1:-1;;;;;;;;14416:2914:1:o
Swarm Source
ipfs://67ca494f5eeaf16512d1546148e830fe4138c4f895f9a8177046d45ae04372a9
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.