ERC-721
Overview
Max Total Supply
833 CHAI
Holders
96
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 CHAILoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Chaimpers
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-03 */ // SPDX-License-Identifier: MIT // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: chaimpers.sol pragma solidity >=0.8.13 <0.9.0; contract Chaimpers is ERC721A, Ownable, ReentrancyGuard { uint256 public mintPrice = 0.005 ether; uint256 public maxSupply = 3000; uint256 public freeSupply = 800; uint256 public maxGet = 10; string public metadataURI; bool public isSaleOn = false; mapping(address => uint256) public amountMintedPerWallet; constructor() ERC721A("Chaimpers", "CHAI") {} modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } modifier userCanMint(address _user, uint256 _amount) { require(isSaleOn, "Sale is paused or not alive."); require(totalSupply() + _amount < maxSupply + 1, "Max supply exceeded"); require(amountMintedPerWallet[_user] + _amount < maxGet + 1, "Max wallet allocation exceeded"); _; } function airdrop(uint256 _amount, address _to) public onlyOwner { require(totalSupply() + _amount < maxSupply + 1, "Max supply exceeded"); _safeMint(_to, _amount); } function mint(uint256 _amount) public payable nonReentrant callerIsUser userCanMint(msg.sender, _amount) { uint256 index = totalSupply(); uint256 freeAmount = index < freeSupply ? (freeSupply - index < _amount ? freeSupply - index : _amount) : 0; require(msg.value >= mintPrice * (_amount - freeAmount), "Not enough ETH is sent."); amountMintedPerWallet[msg.sender] += _amount; _safeMint(msg.sender, _amount); } function toggleSaleStatus() external onlyOwner { isSaleOn = !isSaleOn; } function setMetadataURI(string memory _metadataURI) external onlyOwner { metadataURI = _metadataURI; } function _withdraw(uint256 amount, address to) private { (bool success,) = payable(to).call{value: amount}(""); require(success); } function withdrawPercentage(uint256 percent, address to) external onlyOwner nonReentrant { uint256 _balance = address(this).balance; require(_balance > 0, "Insufficient balance."); _withdraw(_balance * percent / 100, to); } function withdraw() external onlyOwner nonReentrant { uint256 _balance = address(this).balance; require(_balance > 0, "Insufficient balance."); _withdraw(_balance * 33 / 100, 0xd0Ed7eF3FcBFA34706bD6f6fE0dc00E7A081c8dB); _withdraw(_balance * 34 / 100, 0xA81d53541652305563661B4B4Fa7833672498704); _withdraw(_balance * 33 / 100, 0x44017D08c8883CAf3E14B9Ee6131A256c74C2554); } function _baseURI() internal view virtual override returns (string memory) { return metadataURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"amountMintedPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"metadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataURI","type":"string"}],"name":"setMetadataURI","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":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526611c37937e08000600a908155610bb8600b55610320600c55600d55600f805460ff191690553480156200003757600080fd5b506040805180820182526009815268436861696d7065727360b81b6020808301918252835180850190945260048452634348414960e01b90840152815191929162000085916002916200010a565b5080516200009b9060039060208401906200010a565b50506000805550620000ad33620000b8565b6001600955620001ec565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011890620001b0565b90600052602060002090601f0160209004810192826200013c576000855562000187565b82601f106200015757805160ff191683800117855562000187565b8280016001018555821562000187579182015b82811115620001875782518255916020019190600101906200016a565b506200019592915062000199565b5090565b5b808211156200019557600081556001016200019a565b600181811c90821680620001c557607f821691505b602082108103620001e657634e487b7160e01b600052602260045260246000fd5b50919050565b611c1480620001fc6000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146104e9578063d5abeb0114610509578063e985e9c51461051f578063f2fde38b1461056857600080fd5b8063a0712d6814610476578063a22cb46514610489578063b88d4fde146104a9578063bc63f02e146104c957600080fd5b80637758699a116100d15780637758699a14610413578063779e170d146104295780638da5cb5b1461044357806395d89b411461046157600080fd5b806370a08231146103be578063715018a6146103de578063750521f5146103f357600080fd5b806323b872dd1161016f578063453481c01161013e578063453481c01461033b5780636352211e146103685780636817c76c146103885780636a3d3f171461039e57600080fd5b806323b872dd146102d057806324a6ab0c146102f05780633ccfd60b1461030657806342842e0e1461031b57600080fd5b806306fdde03116101ab57806306fdde0314610240578063081812fc14610255578063095ea7b31461028d57806318160ddd146102ad57600080fd5b806301ffc9a7146101d257806303ee438c14610207578063049c5c4914610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611708565b610588565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105da565b6040516101fe919061177d565b34801561023557600080fd5b5061023e610668565b005b34801561024c57600080fd5b5061021c6106af565b34801561026157600080fd5b50610275610270366004611790565b610741565b6040516001600160a01b0390911681526020016101fe565b34801561029957600080fd5b5061023e6102a83660046117c5565b610785565b3480156102b957600080fd5b50600154600054035b6040519081526020016101fe565b3480156102dc57600080fd5b5061023e6102eb3660046117ef565b610857565b3480156102fc57600080fd5b506102c2600c5481565b34801561031257600080fd5b5061023e610867565b34801561032757600080fd5b5061023e6103363660046117ef565b6109a2565b34801561034757600080fd5b506102c261035636600461182b565b60106020526000908152604090205481565b34801561037457600080fd5b50610275610383366004611790565b6109bd565b34801561039457600080fd5b506102c2600a5481565b3480156103aa57600080fd5b5061023e6103b9366004611846565b6109c8565b3480156103ca57600080fd5b506102c26103d936600461182b565b610a88565b3480156103ea57600080fd5b5061023e610ad7565b3480156103ff57600080fd5b5061023e61040e3660046118fe565b610b0d565b34801561041f57600080fd5b506102c2600d5481565b34801561043557600080fd5b50600f546101f29060ff1681565b34801561044f57600080fd5b506008546001600160a01b0316610275565b34801561046d57600080fd5b5061021c610b4e565b61023e610484366004611790565b610b5d565b34801561049557600080fd5b5061023e6104a4366004611947565b610dff565b3480156104b557600080fd5b5061023e6104c4366004611983565b610e94565b3480156104d557600080fd5b5061023e6104e4366004611846565b610ede565b3480156104f557600080fd5b5061021c610504366004611790565b610f7b565b34801561051557600080fd5b506102c2600b5481565b34801561052b57600080fd5b506101f261053a3660046119ff565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057457600080fd5b5061023e61058336600461182b565b610fff565b60006301ffc9a760e01b6001600160e01b0319831614806105b957506380ac58cd60e01b6001600160e01b03198316145b806105d45750635b5e139f60e01b6001600160e01b03198316145b92915050565b600e80546105e790611a29565b80601f016020809104026020016040519081016040528092919081815260200182805461061390611a29565b80156106605780601f1061063557610100808354040283529160200191610660565b820191906000526020600020905b81548152906001019060200180831161064357829003601f168201915b505050505081565b6008546001600160a01b0316331461069b5760405162461bcd60e51b815260040161069290611a63565b60405180910390fd5b600f805460ff19811660ff90911615179055565b6060600280546106be90611a29565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90611a29565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261109a565b610769576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610790826110c1565b9050806001600160a01b0316836001600160a01b0316036107c45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107fb576107de813361053a565b6107fb576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610862838383611128565b505050565b6008546001600160a01b031633146108915760405162461bcd60e51b815260040161069290611a63565b6002600954036108b35760405162461bcd60e51b815260040161069290611a98565b600260095547806108fe5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b6044820152606401610692565b610932606461090e836021611ae5565b6109189190611b04565b73d0ed7ef3fcbfa34706bd6f6fe0dc00e7a081c8db6112cf565b6109666064610942836022611ae5565b61094c9190611b04565b73a81d53541652305563661b4b4fa78336724987046112cf565b61099a6064610976836021611ae5565b6109809190611b04565b7344017d08c8883caf3e14b9ee6131a256c74c25546112cf565b506001600955565b61086283838360405180602001604052806000815250610e94565b60006105d4826110c1565b6008546001600160a01b031633146109f25760405162461bcd60e51b815260040161069290611a63565b600260095403610a145760405162461bcd60e51b815260040161069290611a98565b60026009554780610a5f5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b6044820152606401610692565b610a7e6064610a6e8584611ae5565b610a789190611b04565b836112cf565b5050600160095550565b60006001600160a01b038216610ab1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b015760405162461bcd60e51b815260040161069290611a63565b610b0b600061132f565b565b6008546001600160a01b03163314610b375760405162461bcd60e51b815260040161069290611a63565b8051610b4a90600e906020840190611659565b5050565b6060600380546106be90611a29565b600260095403610b7f5760405162461bcd60e51b815260040161069290611a98565b6002600955323314610bd35760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610692565b600f543390829060ff16610c295760405162461bcd60e51b815260206004820152601c60248201527f53616c6520697320706175736564206f72206e6f7420616c6976652e000000006044820152606401610692565b600b54610c37906001611b26565b81610c456001546000540390565b610c4f9190611b26565b10610c925760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610692565b600d54610ca0906001611b26565b6001600160a01b038316600090815260106020526040902054610cc4908390611b26565b10610d115760405162461bcd60e51b815260206004820152601e60248201527f4d61782077616c6c657420616c6c6f636174696f6e20657863656564656400006044820152606401610692565b6000610d206001546000540390565b90506000600c548210610d34576000610d5c565b8482600c54610d439190611b3e565b10610d4e5784610d5c565b81600c54610d5c9190611b3e565b9050610d688186611b3e565b600a54610d759190611ae5565b341015610dc45760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768204554482069732073656e742e0000000000000000006044820152606401610692565b3360009081526010602052604081208054879290610de3908490611b26565b90915550610df390503386611381565b50506001600955505050565b336001600160a01b03831603610e285760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e9f848484611128565b6001600160a01b0383163b15610ed857610ebb8484848461139b565b610ed8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f085760405162461bcd60e51b815260040161069290611a63565b600b54610f16906001611b26565b82610f246001546000540390565b610f2e9190611b26565b10610f715760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610692565b610b4a8183611381565b6060610f868261109a565b610fa357604051630a14c4b560e41b815260040160405180910390fd5b6000610fad611487565b90508051600003610fcd5760405180602001604052806000815250610ff8565b80610fd784611496565b604051602001610fe8929190611b55565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110295760405162461bcd60e51b815260040161069290611a63565b6001600160a01b03811661108e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610692565b6110978161132f565b50565b60008054821080156105d4575050600090815260046020526040902054600160e01b161590565b60008160005481101561110f5760008181526004602052604081205490600160e01b8216900361110d575b80600003610ff85750600019016000818152600460205260409020546110ec565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611133826110c1565b9050836001600160a01b0316816001600160a01b0316146111665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111845750611184853361053a565b8061119f57503361119484610741565b6001600160a01b0316145b9050806111bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111e657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611287576001830160008181526004602052604081205490036112855760005481146112855760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000816001600160a01b03168360405160006040518083038185875af1925050503d806000811461131c576040519150601f19603f3d011682016040523d82523d6000602084013e611321565b606091505b505090508061086257600080fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b4a8282604051806020016040528060008152506114e5565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113d0903390899088908890600401611b84565b6020604051808303816000875af192505050801561140b575060408051601f3d908101601f1916820190925261140891810190611bc1565b60015b611469573d808015611439576040519150601f19603f3d011682016040523d82523d6000602084013e61143e565b606091505b508051600003611461576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546106be90611a29565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d357600183039250600a81066030018353600a90046114b5565b50819003601f19909101908152919050565b6000546001600160a01b03841661150e57604051622e076360e81b815260040160405180910390fd5b8260000361152f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611604575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115cd600087848060010195508761139b565b6115ea576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115825782600054146115ff57600080fd5b611649565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611605575b506000908155610ed89085838684565b82805461166590611a29565b90600052602060002090601f01602090048101928261168757600085556116cd565b82601f106116a057805160ff19168380011785556116cd565b828001600101855582156116cd579182015b828111156116cd5782518255916020019190600101906116b2565b506116d99291506116dd565b5090565b5b808211156116d957600081556001016116de565b6001600160e01b03198116811461109757600080fd5b60006020828403121561171a57600080fd5b8135610ff8816116f2565b60005b83811015611740578181015183820152602001611728565b83811115610ed85750506000910152565b60008151808452611769816020860160208601611725565b601f01601f19169290920160200192915050565b602081526000610ff86020830184611751565b6000602082840312156117a257600080fd5b5035919050565b80356001600160a01b03811681146117c057600080fd5b919050565b600080604083850312156117d857600080fd5b6117e1836117a9565b946020939093013593505050565b60008060006060848603121561180457600080fd5b61180d846117a9565b925061181b602085016117a9565b9150604084013590509250925092565b60006020828403121561183d57600080fd5b610ff8826117a9565b6000806040838503121561185957600080fd5b82359150611869602084016117a9565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118a3576118a3611872565b604051601f8501601f19908116603f011681019082821181831017156118cb576118cb611872565b816040528093508581528686860111156118e457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561191057600080fd5b813567ffffffffffffffff81111561192757600080fd5b8201601f8101841361193857600080fd5b61147f84823560208401611888565b6000806040838503121561195a57600080fd5b611963836117a9565b91506020830135801515811461197857600080fd5b809150509250929050565b6000806000806080858703121561199957600080fd5b6119a2856117a9565b93506119b0602086016117a9565b925060408501359150606085013567ffffffffffffffff8111156119d357600080fd5b8501601f810187136119e457600080fd5b6119f387823560208401611888565b91505092959194509250565b60008060408385031215611a1257600080fd5b611a1b836117a9565b9150611869602084016117a9565b600181811c90821680611a3d57607f821691505b602082108103611a5d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611aff57611aff611acf565b500290565b600082611b2157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611b3957611b39611acf565b500190565b600082821015611b5057611b50611acf565b500390565b60008351611b67818460208801611725565b835190830190611b7b818360208801611725565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bb790830184611751565b9695505050505050565b600060208284031215611bd357600080fd5b8151610ff8816116f256fea26469706673582212207cbc341585c4d6766e35feee7ba44d05bd4ab9e51d7a604c88de0a41e9d7412b64736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146104e9578063d5abeb0114610509578063e985e9c51461051f578063f2fde38b1461056857600080fd5b8063a0712d6814610476578063a22cb46514610489578063b88d4fde146104a9578063bc63f02e146104c957600080fd5b80637758699a116100d15780637758699a14610413578063779e170d146104295780638da5cb5b1461044357806395d89b411461046157600080fd5b806370a08231146103be578063715018a6146103de578063750521f5146103f357600080fd5b806323b872dd1161016f578063453481c01161013e578063453481c01461033b5780636352211e146103685780636817c76c146103885780636a3d3f171461039e57600080fd5b806323b872dd146102d057806324a6ab0c146102f05780633ccfd60b1461030657806342842e0e1461031b57600080fd5b806306fdde03116101ab57806306fdde0314610240578063081812fc14610255578063095ea7b31461028d57806318160ddd146102ad57600080fd5b806301ffc9a7146101d257806303ee438c14610207578063049c5c4914610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611708565b610588565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105da565b6040516101fe919061177d565b34801561023557600080fd5b5061023e610668565b005b34801561024c57600080fd5b5061021c6106af565b34801561026157600080fd5b50610275610270366004611790565b610741565b6040516001600160a01b0390911681526020016101fe565b34801561029957600080fd5b5061023e6102a83660046117c5565b610785565b3480156102b957600080fd5b50600154600054035b6040519081526020016101fe565b3480156102dc57600080fd5b5061023e6102eb3660046117ef565b610857565b3480156102fc57600080fd5b506102c2600c5481565b34801561031257600080fd5b5061023e610867565b34801561032757600080fd5b5061023e6103363660046117ef565b6109a2565b34801561034757600080fd5b506102c261035636600461182b565b60106020526000908152604090205481565b34801561037457600080fd5b50610275610383366004611790565b6109bd565b34801561039457600080fd5b506102c2600a5481565b3480156103aa57600080fd5b5061023e6103b9366004611846565b6109c8565b3480156103ca57600080fd5b506102c26103d936600461182b565b610a88565b3480156103ea57600080fd5b5061023e610ad7565b3480156103ff57600080fd5b5061023e61040e3660046118fe565b610b0d565b34801561041f57600080fd5b506102c2600d5481565b34801561043557600080fd5b50600f546101f29060ff1681565b34801561044f57600080fd5b506008546001600160a01b0316610275565b34801561046d57600080fd5b5061021c610b4e565b61023e610484366004611790565b610b5d565b34801561049557600080fd5b5061023e6104a4366004611947565b610dff565b3480156104b557600080fd5b5061023e6104c4366004611983565b610e94565b3480156104d557600080fd5b5061023e6104e4366004611846565b610ede565b3480156104f557600080fd5b5061021c610504366004611790565b610f7b565b34801561051557600080fd5b506102c2600b5481565b34801561052b57600080fd5b506101f261053a3660046119ff565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057457600080fd5b5061023e61058336600461182b565b610fff565b60006301ffc9a760e01b6001600160e01b0319831614806105b957506380ac58cd60e01b6001600160e01b03198316145b806105d45750635b5e139f60e01b6001600160e01b03198316145b92915050565b600e80546105e790611a29565b80601f016020809104026020016040519081016040528092919081815260200182805461061390611a29565b80156106605780601f1061063557610100808354040283529160200191610660565b820191906000526020600020905b81548152906001019060200180831161064357829003601f168201915b505050505081565b6008546001600160a01b0316331461069b5760405162461bcd60e51b815260040161069290611a63565b60405180910390fd5b600f805460ff19811660ff90911615179055565b6060600280546106be90611a29565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90611a29565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261109a565b610769576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610790826110c1565b9050806001600160a01b0316836001600160a01b0316036107c45760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107fb576107de813361053a565b6107fb576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610862838383611128565b505050565b6008546001600160a01b031633146108915760405162461bcd60e51b815260040161069290611a63565b6002600954036108b35760405162461bcd60e51b815260040161069290611a98565b600260095547806108fe5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b6044820152606401610692565b610932606461090e836021611ae5565b6109189190611b04565b73d0ed7ef3fcbfa34706bd6f6fe0dc00e7a081c8db6112cf565b6109666064610942836022611ae5565b61094c9190611b04565b73a81d53541652305563661b4b4fa78336724987046112cf565b61099a6064610976836021611ae5565b6109809190611b04565b7344017d08c8883caf3e14b9ee6131a256c74c25546112cf565b506001600955565b61086283838360405180602001604052806000815250610e94565b60006105d4826110c1565b6008546001600160a01b031633146109f25760405162461bcd60e51b815260040161069290611a63565b600260095403610a145760405162461bcd60e51b815260040161069290611a98565b60026009554780610a5f5760405162461bcd60e51b815260206004820152601560248201527424b739bab33334b1b4b2b73a103130b630b731b29760591b6044820152606401610692565b610a7e6064610a6e8584611ae5565b610a789190611b04565b836112cf565b5050600160095550565b60006001600160a01b038216610ab1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b015760405162461bcd60e51b815260040161069290611a63565b610b0b600061132f565b565b6008546001600160a01b03163314610b375760405162461bcd60e51b815260040161069290611a63565b8051610b4a90600e906020840190611659565b5050565b6060600380546106be90611a29565b600260095403610b7f5760405162461bcd60e51b815260040161069290611a98565b6002600955323314610bd35760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610692565b600f543390829060ff16610c295760405162461bcd60e51b815260206004820152601c60248201527f53616c6520697320706175736564206f72206e6f7420616c6976652e000000006044820152606401610692565b600b54610c37906001611b26565b81610c456001546000540390565b610c4f9190611b26565b10610c925760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610692565b600d54610ca0906001611b26565b6001600160a01b038316600090815260106020526040902054610cc4908390611b26565b10610d115760405162461bcd60e51b815260206004820152601e60248201527f4d61782077616c6c657420616c6c6f636174696f6e20657863656564656400006044820152606401610692565b6000610d206001546000540390565b90506000600c548210610d34576000610d5c565b8482600c54610d439190611b3e565b10610d4e5784610d5c565b81600c54610d5c9190611b3e565b9050610d688186611b3e565b600a54610d759190611ae5565b341015610dc45760405162461bcd60e51b815260206004820152601760248201527f4e6f7420656e6f756768204554482069732073656e742e0000000000000000006044820152606401610692565b3360009081526010602052604081208054879290610de3908490611b26565b90915550610df390503386611381565b50506001600955505050565b336001600160a01b03831603610e285760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e9f848484611128565b6001600160a01b0383163b15610ed857610ebb8484848461139b565b610ed8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610f085760405162461bcd60e51b815260040161069290611a63565b600b54610f16906001611b26565b82610f246001546000540390565b610f2e9190611b26565b10610f715760405162461bcd60e51b815260206004820152601360248201527213585e081cdd5c1c1b1e48195e18d959591959606a1b6044820152606401610692565b610b4a8183611381565b6060610f868261109a565b610fa357604051630a14c4b560e41b815260040160405180910390fd5b6000610fad611487565b90508051600003610fcd5760405180602001604052806000815250610ff8565b80610fd784611496565b604051602001610fe8929190611b55565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146110295760405162461bcd60e51b815260040161069290611a63565b6001600160a01b03811661108e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610692565b6110978161132f565b50565b60008054821080156105d4575050600090815260046020526040902054600160e01b161590565b60008160005481101561110f5760008181526004602052604081205490600160e01b8216900361110d575b80600003610ff85750600019016000818152600460205260409020546110ec565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611133826110c1565b9050836001600160a01b0316816001600160a01b0316146111665760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111845750611184853361053a565b8061119f57503361119484610741565b6001600160a01b0316145b9050806111bf57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166111e657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b8717811790915583169003611287576001830160008181526004602052604081205490036112855760005481146112855760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000816001600160a01b03168360405160006040518083038185875af1925050503d806000811461131c576040519150601f19603f3d011682016040523d82523d6000602084013e611321565b606091505b505090508061086257600080fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b4a8282604051806020016040528060008152506114e5565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906113d0903390899088908890600401611b84565b6020604051808303816000875af192505050801561140b575060408051601f3d908101601f1916820190925261140891810190611bc1565b60015b611469573d808015611439576040519150601f19603f3d011682016040523d82523d6000602084013e61143e565b606091505b508051600003611461576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e80546106be90611a29565b604080516080810191829052607f0190826030600a8206018353600a90045b80156114d357600183039250600a81066030018353600a90046114b5565b50819003601f19909101908152919050565b6000546001600160a01b03841661150e57604051622e076360e81b815260040160405180910390fd5b8260000361152f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611604575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46115cd600087848060010195508761139b565b6115ea576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115825782600054146115ff57600080fd5b611649565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611605575b506000908155610ed89085838684565b82805461166590611a29565b90600052602060002090601f01602090048101928261168757600085556116cd565b82601f106116a057805160ff19168380011785556116cd565b828001600101855582156116cd579182015b828111156116cd5782518255916020019190600101906116b2565b506116d99291506116dd565b5090565b5b808211156116d957600081556001016116de565b6001600160e01b03198116811461109757600080fd5b60006020828403121561171a57600080fd5b8135610ff8816116f2565b60005b83811015611740578181015183820152602001611728565b83811115610ed85750506000910152565b60008151808452611769816020860160208601611725565b601f01601f19169290920160200192915050565b602081526000610ff86020830184611751565b6000602082840312156117a257600080fd5b5035919050565b80356001600160a01b03811681146117c057600080fd5b919050565b600080604083850312156117d857600080fd5b6117e1836117a9565b946020939093013593505050565b60008060006060848603121561180457600080fd5b61180d846117a9565b925061181b602085016117a9565b9150604084013590509250925092565b60006020828403121561183d57600080fd5b610ff8826117a9565b6000806040838503121561185957600080fd5b82359150611869602084016117a9565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118a3576118a3611872565b604051601f8501601f19908116603f011681019082821181831017156118cb576118cb611872565b816040528093508581528686860111156118e457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561191057600080fd5b813567ffffffffffffffff81111561192757600080fd5b8201601f8101841361193857600080fd5b61147f84823560208401611888565b6000806040838503121561195a57600080fd5b611963836117a9565b91506020830135801515811461197857600080fd5b809150509250929050565b6000806000806080858703121561199957600080fd5b6119a2856117a9565b93506119b0602086016117a9565b925060408501359150606085013567ffffffffffffffff8111156119d357600080fd5b8501601f810187136119e457600080fd5b6119f387823560208401611888565b91505092959194509250565b60008060408385031215611a1257600080fd5b611a1b836117a9565b9150611869602084016117a9565b600181811c90821680611a3d57607f821691505b602082108103611a5d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611aff57611aff611acf565b500290565b600082611b2157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611b3957611b39611acf565b500190565b600082821015611b5057611b50611acf565b500390565b60008351611b67818460208801611725565b835190830190611b7b818360208801611725565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bb790830184611751565b9695505050505050565b600060208284031215611bd357600080fd5b8151610ff8816116f256fea26469706673582212207cbc341585c4d6766e35feee7ba44d05bd4ab9e51d7a604c88de0a41e9d7412b64736f6c634300080d0033
Deployed Bytecode Sourcemap
44628:2720:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13110:615;;;;;;;;;;-1:-1:-1;13110:615:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;13110:615:0;;;;;;;;44849:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;46161:86::-;;;;;;;;;;;;;:::i;:::-;;18123:100;;;;;;;;;;;;;:::i;20191:204::-;;;;;;;;;;-1:-1:-1;20191:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;20191:204:0;1528:203:1;19651:474:0;;;;;;;;;;-1:-1:-1;19651:474:0;;;;;:::i;:::-;;:::i;12164:315::-;;;;;;;;;;-1:-1:-1;12430:12:0;;12217:7;12414:13;:28;12164:315;;;2319:25:1;;;2307:2;2292:18;12164:315:0;2173:177:1;21077:170:0;;;;;;;;;;-1:-1:-1;21077:170:0;;;;;:::i;:::-;;:::i;44776:31::-;;;;;;;;;;;;;;;;46804:421;;;;;;;;;;;;;:::i;21318:185::-;;;;;;;;;;-1:-1:-1;21318:185:0;;;;;:::i;:::-;;:::i;44918:56::-;;;;;;;;;;-1:-1:-1;44918:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;17912:144;;;;;;;;;;-1:-1:-1;17912:144:0;;;;;:::i;:::-;;:::i;44693:38::-;;;;;;;;;;;;;;;;46541:255;;;;;;;;;;-1:-1:-1;46541:255:0;;;;;:::i;:::-;;:::i;13789:224::-;;;;;;;;;;-1:-1:-1;13789:224:0;;;;;:::i;:::-;;:::i;40990:103::-;;;;;;;;;;;;;:::i;46255:116::-;;;;;;;;;;-1:-1:-1;46255:116:0;;;;;:::i;:::-;;:::i;44814:26::-;;;;;;;;;;;;;;;;44881:28;;;;;;;;;;-1:-1:-1;44881:28:0;;;;;;;;40339:87;;;;;;;;;;-1:-1:-1;40412:6:0;;-1:-1:-1;;;;;40412:6:0;40339:87;;18292:104;;;;;;;;;;;;;:::i;45690:463::-;;;;;;:::i;:::-;;:::i;20467:308::-;;;;;;;;;;-1:-1:-1;20467:308:0;;;;;:::i;:::-;;:::i;21574:396::-;;;;;;;;;;-1:-1:-1;21574:396:0;;;;;:::i;:::-;;:::i;45494:188::-;;;;;;;;;;-1:-1:-1;45494:188:0;;;;;:::i;:::-;;:::i;18467:318::-;;;;;;;;;;-1:-1:-1;18467:318:0;;;;;:::i;:::-;;:::i;44738:31::-;;;;;;;;;;;;;;;;20846:164;;;;;;;;;;-1:-1:-1;20846:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;20967:25:0;;;20943:4;20967:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20846:164;41248:201;;;;;;;;;;-1:-1:-1;41248:201:0;;;;;:::i;:::-;;:::i;13110:615::-;13195:4;-1:-1:-1;;;;;;;;;13495:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;13572:25:0;;;13495:102;:179;;;-1:-1:-1;;;;;;;;;;13649:25:0;;;13495:179;13475:199;13110:615;-1:-1:-1;;13110:615:0:o;44849:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46161:86::-;40412:6;;-1:-1:-1;;;;;40412:6:0;39143:10;40559:23;40551:68;;;;-1:-1:-1;;;40551:68:0;;;;;;;:::i;:::-;;;;;;;;;46231:8:::1;::::0;;-1:-1:-1;;46219:20:0;::::1;46231:8;::::0;;::::1;46230:9;46219:20;::::0;;46161:86::o;18123:100::-;18177:13;18210:5;18203:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18123:100;:::o;20191:204::-;20259:7;20284:16;20292:7;20284;:16::i;:::-;20279:64;;20309:34;;-1:-1:-1;;;20309:34:0;;;;;;;;;;;20279:64;-1:-1:-1;20363:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20363:24:0;;20191:204::o;19651:474::-;19724:13;19756:27;19775:7;19756:18;:27::i;:::-;19724:61;;19806:5;-1:-1:-1;;;;;19800:11:0;:2;-1:-1:-1;;;;;19800:11:0;;19796:48;;19820:24;;-1:-1:-1;;;19820:24:0;;;;;;;;;;;19796:48;39143:10;-1:-1:-1;;;;;19861:28:0;;;19857:175;;19909:44;19926:5;39143:10;20846:164;:::i;19909:44::-;19904:128;;19981:35;;-1:-1:-1;;;19981:35:0;;;;;;;;;;;19904:128;20044:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;20044:29:0;-1:-1:-1;;;;;20044:29:0;;;;;;;;;20089:28;;20044:24;;20089:28;;;;;;;19713:412;19651:474;;:::o;21077:170::-;21211:28;21221:4;21227:2;21231:7;21211:9;:28::i;:::-;21077:170;;;:::o;46804:421::-;40412:6;;-1:-1:-1;;;;;40412:6:0;39143:10;40559:23;40551:68;;;;-1:-1:-1;;;40551:68:0;;;;;;;:::i;:::-;43619:1:::1;44217:7;;:19:::0;44209:63:::1;;;;-1:-1:-1::0;;;44209:63:0::1;;;;;;;:::i;:::-;43619:1;44350:7;:18:::0;46886:21:::2;46926:12:::0;46918:46:::2;;;::::0;-1:-1:-1;;;46918:46:0;;6960:2:1;46918:46:0::2;::::0;::::2;6942:21:1::0;6999:2;6979:18;;;6972:30;-1:-1:-1;;;7018:18:1;;;7011:51;7079:18;;46918:46:0::2;6758:345:1::0;46918:46:0::2;46975:74;47001:3;46985:13;:8:::0;46996:2:::2;46985:13;:::i;:::-;:19;;;;:::i;:::-;47006:42;46975:9;:74::i;:::-;47060;47086:3;47070:13;:8:::0;47081:2:::2;47070:13;:::i;:::-;:19;;;;:::i;:::-;47091:42;47060:9;:74::i;:::-;47145;47171:3;47155:13;:8:::0;47166:2:::2;47155:13;:::i;:::-;:19;;;;:::i;:::-;47176:42;47145:9;:74::i;:::-;-1:-1:-1::0;43575:1:0::1;44529:7;:22:::0;46804:421::o;21318:185::-;21456:39;21473:4;21479:2;21483:7;21456:39;;;;;;;;;;;;:16;:39::i;17912:144::-;17976:7;18019:27;18038:7;18019:18;:27::i;46541:255::-;40412:6;;-1:-1:-1;;;;;40412:6:0;39143:10;40559:23;40551:68;;;;-1:-1:-1;;;40551:68:0;;;;;;;:::i;:::-;43619:1:::1;44217:7;;:19:::0;44209:63:::1;;;;-1:-1:-1::0;;;44209:63:0::1;;;;;;;:::i;:::-;43619:1;44350:7;:18:::0;46660:21:::2;46700:12:::0;46692:46:::2;;;::::0;-1:-1:-1;;;46692:46:0;;6960:2:1;46692:46:0::2;::::0;::::2;6942:21:1::0;6999:2;6979:18;;;6972:30;-1:-1:-1;;;7018:18:1;;;7011:51;7079:18;;46692:46:0::2;6758:345:1::0;46692:46:0::2;46749:39;46780:3;46759:18;46770:7:::0;46759:8;:18:::2;:::i;:::-;:24;;;;:::i;:::-;46785:2;46749:9;:39::i;:::-;-1:-1:-1::0;;43575:1:0::1;44529:7;:22:::0;-1:-1:-1;46541:255:0:o;13789:224::-;13853:7;-1:-1:-1;;;;;13877:19:0;;13873:60;;13905:28;;-1:-1:-1;;;13905:28:0;;;;;;;;;;;13873:60;-1:-1:-1;;;;;;13951:25:0;;;;;:18;:25;;;;;;9128:13;13951:54;;13789:224::o;40990:103::-;40412:6;;-1:-1:-1;;;;;40412:6:0;39143:10;40559:23;40551:68;;;;-1:-1:-1;;;40551:68:0;;;;;;;:::i;:::-;41055:30:::1;41082:1;41055:18;:30::i;:::-;40990:103::o:0;46255:116::-;40412:6;;-1:-1:-1;;;;;40412:6:0;39143:10;40559:23;40551:68;;;;-1:-1:-1;;;40551:68:0;;;;;;;:::i;:::-;46337:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46255:116:::0;:::o;18292:104::-;18348:13;18381:7;18374:14;;;;;:::i;45690:463::-;43619:1;44217:7;;:19;44209:63;;;;-1:-1:-1;;;44209:63:0;;;;;;;:::i;:::-;43619:1;44350:7;:18;45080:9:::1;45093:10;45080:23;45072:66;;;::::0;-1:-1:-1;;;45072:66:0;;7837:2:1;45072:66:0::1;::::0;::::1;7819:21:1::0;7876:2;7856:18;;;7849:30;7915:32;7895:18;;;7888:60;7965:18;;45072:66:0::1;7635:354:1::0;45072:66:0::1;45238:8:::2;::::0;45774:10:::2;::::0;45786:7;;45238:8:::2;;45230:49;;;::::0;-1:-1:-1;;;45230:49:0;;8196:2:1;45230:49:0::2;::::0;::::2;8178:21:1::0;8235:2;8215:18;;;8208:30;8274;8254:18;;;8247:58;8322:18;;45230:49:0::2;7994:352:1::0;45230:49:0::2;45324:9;::::0;:13:::2;::::0;45336:1:::2;45324:13;:::i;:::-;45314:7;45298:13;12430:12:::0;;12217:7;12414:13;:28;;12164:315;45298:13:::2;:23;;;;:::i;:::-;:39;45290:71;;;::::0;-1:-1:-1;;;45290:71:0;;8686:2:1;45290:71:0::2;::::0;::::2;8668:21:1::0;8725:2;8705:18;;;8698:30;-1:-1:-1;;;8744:18:1;;;8737:49;8803:18;;45290:71:0::2;8484:343:1::0;45290:71:0::2;45421:6;::::0;:10:::2;::::0;45430:1:::2;45421:10;:::i;:::-;-1:-1:-1::0;;;;;45380:28:0;::::2;;::::0;;;:21:::2;:28;::::0;;;;;:38:::2;::::0;45411:7;;45380:38:::2;:::i;:::-;:51;45372:94;;;::::0;-1:-1:-1;;;45372:94:0;;9034:2:1;45372:94:0::2;::::0;::::2;9016:21:1::0;9073:2;9053:18;;;9046:30;9112:32;9092:18;;;9085:60;9162:18;;45372:94:0::2;8832:354:1::0;45372:94:0::2;45806:13:::3;45822;12430:12:::0;;12217:7;12414:13;:28;;12164:315;45822:13:::3;45806:29;;45846:18;45875:10;;45867:5;:18;:86;;45952:1;45867:86;;;45910:7;45902:5;45889:10;;:18;;;;:::i;:::-;:28;:59;;45941:7;45889:59;;;45933:5;45920:10;;:18;;;;:::i;:::-;45846:107:::0;-1:-1:-1;46000:20:0::3;45846:107:::0;46000:7;:20:::3;:::i;:::-;45987:9;;:34;;;;:::i;:::-;45974:9;:47;;45966:83;;;::::0;-1:-1:-1;;;45966:83:0;;9523:2:1;45966:83:0::3;::::0;::::3;9505:21:1::0;9562:2;9542:18;;;9535:30;9601:25;9581:18;;;9574:53;9644:18;;45966:83:0::3;9321:347:1::0;45966:83:0::3;46082:10;46060:33;::::0;;;:21:::3;:33;::::0;;;;:44;;46097:7;;46060:33;:44:::3;::::0;46097:7;;46060:44:::3;:::i;:::-;::::0;;;-1:-1:-1;46115:30:0::3;::::0;-1:-1:-1;46125:10:0::3;46137:7:::0;46115:9:::3;:30::i;:::-;-1:-1:-1::0;;43575:1:0;44529:7;:22;-1:-1:-1;;;45690:463:0:o;20467:308::-;39143:10;-1:-1:-1;;;;;20566:31:0;;;20562:61;;20606:17;;-1:-1:-1;;;20606:17:0;;;;;;;;;;;20562:61;39143:10;20636:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;20636:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;20636:60:0;;;;;;;;;;20712:55;;540:41:1;;;20636:49:0;;39143:10;20712:55;;513:18:1;20712:55:0;;;;;;;20467:308;;:::o;21574:396::-;21741:28;21751:4;21757:2;21761:7;21741:9;:28::i;:::-;-1:-1:-1;;;;;21784:14:0;;;:19;21780:183;;21823:56;21854:4;21860:2;21864:7;21873:5;21823:30;:56::i;:::-;21818:145;;21907:40;;-1:-1:-1;;;21907:40:0;;;;;;;;;;;21818:145;21574:396;;;;:::o;45494:188::-;40412:6;;-1:-1:-1;;;;;40412:6:0;39143:10;40559:23;40551:68;;;;-1:-1:-1;;;40551:68:0;;;;;;;:::i;:::-;45603:9:::1;::::0;:13:::1;::::0;45615:1:::1;45603:13;:::i;:::-;45593:7;45577:13;12430:12:::0;;12217:7;12414:13;:28;;12164:315;45577:13:::1;:23;;;;:::i;:::-;:39;45569:71;;;::::0;-1:-1:-1;;;45569:71:0;;8686:2:1;45569:71:0::1;::::0;::::1;8668:21:1::0;8725:2;8705:18;;;8698:30;-1:-1:-1;;;8744:18:1;;;8737:49;8803:18;;45569:71:0::1;8484:343:1::0;45569:71:0::1;45651:23;45661:3;45666:7;45651:9;:23::i;18467:318::-:0;18540:13;18571:16;18579:7;18571;:16::i;:::-;18566:59;;18596:29;;-1:-1:-1;;;18596:29:0;;;;;;;;;;;18566:59;18638:21;18662:10;:8;:10::i;:::-;18638:34;;18696:7;18690:21;18715:1;18690:26;:87;;;;;;;;;;;;;;;;;18743:7;18752:18;18762:7;18752:9;:18::i;:::-;18726:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;18690:87;18683:94;18467:318;-1:-1:-1;;;18467:318:0:o;41248:201::-;40412:6;;-1:-1:-1;;;;;40412:6:0;39143:10;40559:23;40551:68;;;;-1:-1:-1;;;40551:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41337:22:0;::::1;41329:73;;;::::0;-1:-1:-1;;;41329:73:0;;10350:2:1;41329:73:0::1;::::0;::::1;10332:21:1::0;10389:2;10369:18;;;10362:30;10428:34;10408:18;;;10401:62;-1:-1:-1;;;10479:18:1;;;10472:36;10525:19;;41329:73:0::1;10148:402:1::0;41329:73:0::1;41413:28;41432:8;41413:18;:28::i;:::-;41248:201:::0;:::o;22225:273::-;22282:4;22372:13;;22362:7;:23;22319:152;;;;-1:-1:-1;;22423:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;22423:43:0;:48;;22225:273::o;15427:1129::-;15494:7;15529;15631:13;;15624:4;:20;15620:869;;;15669:14;15686:23;;;:17;:23;;;;;;;-1:-1:-1;;;15775:23:0;;:28;;15771:699;;16294:113;16301:6;16311:1;16301:11;16294:113;;-1:-1:-1;;;16372:6:0;16354:25;;;;:17;:25;;;;;;16294:113;;15771:699;15646:843;15620:869;16517:31;;-1:-1:-1;;;16517:31:0;;;;;;;;;;;27464:2515;27579:27;27609;27628:7;27609:18;:27::i;:::-;27579:57;;27694:4;-1:-1:-1;;;;;27653:45:0;27669:19;-1:-1:-1;;;;;27653:45:0;;27649:86;;27707:28;;-1:-1:-1;;;27707:28:0;;;;;;;;;;;27649:86;27748:22;39143:10;-1:-1:-1;;;;;27774:27:0;;;;:87;;-1:-1:-1;27818:43:0;27835:4;39143:10;20846:164;:::i;27818:43::-;27774:147;;;-1:-1:-1;39143:10:0;27878:20;27890:7;27878:11;:20::i;:::-;-1:-1:-1;;;;;27878:43:0;;27774:147;27748:174;;27940:17;27935:66;;27966:35;;-1:-1:-1;;;27966:35:0;;;;;;;;;;;27935:66;-1:-1:-1;;;;;28016:16:0;;28012:52;;28041:23;;-1:-1:-1;;;28041:23:0;;;;;;;;;;;28012:52;28193:24;;;;:15;:24;;;;;;;;28186:31;;-1:-1:-1;;;;;;28186:31:0;;;-1:-1:-1;;;;;28585:24:0;;;;;:18;:24;;;;;28583:26;;-1:-1:-1;;28583:26:0;;;28654:22;;;;;;;28652:24;;-1:-1:-1;28652:24:0;;;28947:26;;;:17;:26;;;;;-1:-1:-1;;;29035:15:0;9782:3;29035:41;28993:84;;:128;;28947:174;;;29241:46;;:51;;29237:626;;29345:1;29335:11;;29313:19;29468:30;;;:17;:30;;;;;;:35;;29464:384;;29606:13;;29591:11;:28;29587:242;;29753:30;;;;:17;:30;;;;;:52;;;29587:242;29294:569;29237:626;29910:7;29906:2;-1:-1:-1;;;;;29891:27:0;29900:4;-1:-1:-1;;;;;29891:27:0;;;;;;;;;;;27568:2411;;27464:2515;;;:::o;46379:154::-;46446:12;46471:2;-1:-1:-1;;;;;46463:16:0;46487:6;46463:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46445:53;;;46517:7;46509:16;;;;;41609:191;41702:6;;;-1:-1:-1;;;;;41719:17:0;;;-1:-1:-1;;;;;;41719:17:0;;;;;;;41752:40;;41702:6;;;41719:17;41702:6;;41752:40;;41683:16;;41752:40;41672:128;41609:191;:::o;22582:104::-;22651:27;22661:2;22665:8;22651:27;;;;;;;;;;;;:9;:27::i;33676:716::-;33860:88;;-1:-1:-1;;;33860:88:0;;33839:4;;-1:-1:-1;;;;;33860:45:0;;;;;:88;;39143:10;;33927:4;;33933:7;;33942:5;;33860:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33860:88:0;;;;;;;;-1:-1:-1;;33860:88:0;;;;;;;;;;;;:::i;:::-;;;33856:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34143:6;:13;34160:1;34143:18;34139:235;;34189:40;;-1:-1:-1;;;34189:40:0;;;;;;;;;;;34139:235;34332:6;34326:13;34317:6;34313:2;34309:15;34302:38;33856:529;-1:-1:-1;;;;;;34019:64:0;-1:-1:-1;;;34019:64:0;;-1:-1:-1;33856:529:0;33676:716;;;;;;:::o;47233:112::-;47293:13;47326:11;47319:18;;;;;:::i;36418:1959::-;36889:4;36883:11;;36896:3;36879:21;;36974:17;;;;37671:11;;;37550:5;37803:2;37817;37807:13;;37799:22;37671:11;37786:36;37858:2;37848:13;;37441:682;37877:4;37441:682;;;38052:1;38047:3;38043:11;38036:18;;38103:2;38097:4;38093:13;38089:2;38085:22;38080:3;38072:36;37973:2;37963:13;;37441:682;;;-1:-1:-1;38165:13:0;;;-1:-1:-1;;38280:12:0;;;38340:19;;;38280:12;36418:1959;-1:-1:-1;36418:1959:0:o;23059:2236::-;23182:20;23205:13;-1:-1:-1;;;;;23233:16:0;;23229:48;;23258:19;;-1:-1:-1;;;23258:19:0;;;;;;;;;;;23229:48;23292:8;23304:1;23292:13;23288:44;;23314:18;;-1:-1:-1;;;23314:18:0;;;;;;;;;;;23288:44;-1:-1:-1;;;;;23881:22:0;;;;;;:18;:22;;;;9265:2;23881:22;;;:70;;23919:31;23907:44;;23881:70;;;24194:31;;;:17;:31;;;;;24287:15;9782:3;24287:41;24245:84;;-1:-1:-1;24365:13:0;;10045:3;24350:56;24245:162;24194:213;;:31;;24488:23;;;;24532:14;:19;24528:635;;24572:313;24603:38;;24628:12;;-1:-1:-1;;;;;24603:38:0;;;24620:1;;24603:38;;24620:1;;24603:38;24669:69;24708:1;24712:2;24716:14;;;;;;24732:5;24669:30;:69::i;:::-;24664:174;;24774:40;;-1:-1:-1;;;24774:40:0;;;;;;;;;;;24664:174;24880:3;24865:12;:18;24572:313;;24966:12;24949:13;;:29;24945:43;;24980:8;;;24945:43;24528:635;;;25029:119;25060:40;;25085:14;;;;;-1:-1:-1;;;;;25060:40:0;;;25077:1;;25060:40;;25077:1;;25060:40;25143:3;25128:12;:18;25029:119;;24528:635;-1:-1:-1;25177:13:0;:28;;;25227:60;;25260:2;25264:12;25278:8;25227:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:254::-;2947:6;2955;3008:2;2996:9;2987:7;2983:23;2979:32;2976:52;;;3024:1;3021;3014:12;2976:52;3060:9;3047:23;3037:33;;3089:38;3123:2;3112:9;3108:18;3089:38;:::i;:::-;3079:48;;2879:254;;;;;:::o;3138:127::-;3199:10;3194:3;3190:20;3187:1;3180:31;3230:4;3227:1;3220:15;3254:4;3251:1;3244:15;3270:632;3335:5;3365:18;3406:2;3398:6;3395:14;3392:40;;;3412:18;;:::i;:::-;3487:2;3481:9;3455:2;3541:15;;-1:-1:-1;;3537:24:1;;;3563:2;3533:33;3529:42;3517:55;;;3587:18;;;3607:22;;;3584:46;3581:72;;;3633:18;;:::i;:::-;3673:10;3669:2;3662:22;3702:6;3693:15;;3732:6;3724;3717:22;3772:3;3763:6;3758:3;3754:16;3751:25;3748:45;;;3789:1;3786;3779:12;3748:45;3839:6;3834:3;3827:4;3819:6;3815:17;3802:44;3894:1;3887:4;3878:6;3870;3866:19;3862:30;3855:41;;;;3270:632;;;;;:::o;3907:451::-;3976:6;4029:2;4017:9;4008:7;4004:23;4000:32;3997:52;;;4045:1;4042;4035:12;3997:52;4085:9;4072:23;4118:18;4110:6;4107:30;4104:50;;;4150:1;4147;4140:12;4104:50;4173:22;;4226:4;4218:13;;4214:27;-1:-1:-1;4204:55:1;;4255:1;4252;4245:12;4204:55;4278:74;4344:7;4339:2;4326:16;4321:2;4317;4313:11;4278:74;:::i;4363:347::-;4428:6;4436;4489:2;4477:9;4468:7;4464:23;4460:32;4457:52;;;4505:1;4502;4495:12;4457:52;4528:29;4547:9;4528:29;:::i;:::-;4518:39;;4607:2;4596:9;4592:18;4579:32;4654:5;4647:13;4640:21;4633:5;4630:32;4620:60;;4676:1;4673;4666:12;4620:60;4699:5;4689:15;;;4363:347;;;;;:::o;4715:667::-;4810:6;4818;4826;4834;4887:3;4875:9;4866:7;4862:23;4858:33;4855:53;;;4904:1;4901;4894:12;4855:53;4927:29;4946:9;4927:29;:::i;:::-;4917:39;;4975:38;5009:2;4998:9;4994:18;4975:38;:::i;:::-;4965:48;;5060:2;5049:9;5045:18;5032:32;5022:42;;5115:2;5104:9;5100:18;5087:32;5142:18;5134:6;5131:30;5128:50;;;5174:1;5171;5164:12;5128:50;5197:22;;5250:4;5242:13;;5238:27;-1:-1:-1;5228:55:1;;5279:1;5276;5269:12;5228:55;5302:74;5368:7;5363:2;5350:16;5345:2;5341;5337:11;5302:74;:::i;:::-;5292:84;;;4715:667;;;;;;;:::o;5387:260::-;5455:6;5463;5516:2;5504:9;5495:7;5491:23;5487:32;5484:52;;;5532:1;5529;5522:12;5484:52;5555:29;5574:9;5555:29;:::i;:::-;5545:39;;5603:38;5637:2;5626:9;5622:18;5603:38;:::i;5652:380::-;5731:1;5727:12;;;;5774;;;5795:61;;5849:4;5841:6;5837:17;5827:27;;5795:61;5902:2;5894:6;5891:14;5871:18;5868:38;5865:161;;5948:10;5943:3;5939:20;5936:1;5929:31;5983:4;5980:1;5973:15;6011:4;6008:1;6001:15;5865:161;;5652:380;;;:::o;6037:356::-;6239:2;6221:21;;;6258:18;;;6251:30;6317:34;6312:2;6297:18;;6290:62;6384:2;6369:18;;6037:356::o;6398:355::-;6600:2;6582:21;;;6639:2;6619:18;;;6612:30;6678:33;6673:2;6658:18;;6651:61;6744:2;6729:18;;6398:355::o;7108:127::-;7169:10;7164:3;7160:20;7157:1;7150:31;7200:4;7197:1;7190:15;7224:4;7221:1;7214:15;7240:168;7280:7;7346:1;7342;7338:6;7334:14;7331:1;7328:21;7323:1;7316:9;7309:17;7305:45;7302:71;;;7353:18;;:::i;:::-;-1:-1:-1;7393:9:1;;7240:168::o;7413:217::-;7453:1;7479;7469:132;;7523:10;7518:3;7514:20;7511:1;7504:31;7558:4;7555:1;7548:15;7586:4;7583:1;7576:15;7469:132;-1:-1:-1;7615:9:1;;7413:217::o;8351:128::-;8391:3;8422:1;8418:6;8415:1;8412:13;8409:39;;;8428:18;;:::i;:::-;-1:-1:-1;8464:9:1;;8351:128::o;9191:125::-;9231:4;9259:1;9256;9253:8;9250:34;;;9264:18;;:::i;:::-;-1:-1:-1;9301:9:1;;9191:125::o;9673:470::-;9852:3;9890:6;9884:13;9906:53;9952:6;9947:3;9940:4;9932:6;9928:17;9906:53;:::i;:::-;10022:13;;9981:16;;;;10044:57;10022:13;9981:16;10078:4;10066:17;;10044:57;:::i;:::-;10117:20;;9673:470;-1:-1:-1;;;;9673:470:1:o;10765:489::-;-1:-1:-1;;;;;11034:15:1;;;11016:34;;11086:15;;11081:2;11066:18;;11059:43;11133:2;11118:18;;11111:34;;;11181:3;11176:2;11161:18;;11154:31;;;10959:4;;11202:46;;11228:19;;11220:6;11202:46;:::i;:::-;11194:54;10765:489;-1:-1:-1;;;;;;10765:489:1:o;11259:249::-;11328:6;11381:2;11369:9;11360:7;11356:23;11352:32;11349:52;;;11397:1;11394;11387:12;11349:52;11429:9;11423:16;11448:30;11472:5;11448:30;:::i
Swarm Source
ipfs://7cbc341585c4d6766e35feee7ba44d05bd4ab9e51d7a604c88de0a41e9d7412b
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.