Overview
TokenID
11
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
PONKS
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at apescan.io on 2024-11-03 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.28; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract PONKS is IERC721A { using SafeMath for uint256; address private _owner; function owner() public view returns(address){ return _owner; } mapping(address=>bool) minted; uint256 public constant MAX_SUPPLY = 2002; uint256 public constant MAX_PER_WALLET = 20; uint256 public constant COST = 1.0 ether; string private constant _name = "PONKS"; string private constant _symbol = "PONKS"; string private _baseURI = "QmaovNtDEjcgLqDJu5eUkKqaSCDUTLK4QtGxmvqJUyd3DD"; constructor() { _owner = msg.sender; } function mint(uint256 amount) external payable{ address _caller = _msgSenderERC721A(); require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out"); require(amount*COST <= msg.value, "Value to Low"); _mint(_caller, amount); } // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex = 0; // The number of tokens burned. // uint256 private _burnCounter; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; function setData(string memory _base) external onlyOwner{ _baseURI = _base; } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI; return bytes(baseURI).length != 0 ? string(abi.encodePacked("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : ""; } /** * @dev Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex; } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; //if (_addressToUint256(to) == 0) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ uint256 burned = 0; mapping(address => bool) public isWhale; address[] public whale; function _transfer( address from, address to, uint256 tokenId ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); address approvedAddress = _tokenApprovals[tokenId]; bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || approvedAddress == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); // Clear approvals from the previous owner. if (_addressToUint256(approvedAddress) != 0) { delete _tokenApprovals[tokenId]; } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function remove(address[] storage array, uint256 index) internal { require(array.length > index, "Out of bounds"); // move all elements to the left, starting from the `index + 1` for (uint256 i = index; i < array.length - 1; i++) { array[i] = array[i+1]; } array.pop(); // delete the last item } function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual { } /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } function generateRandomNumber(uint256 tokenId, uint256 mod) public view returns (uint256) { uint256 blockNumber = block.number - 1; // Use the previous block's hash bytes32 blockHash = keccak256(abi.encode(blockNumber, msg.sender, tokenId)); return uint256(blockHash) % mod; } bool public teamMintUsed = false; function teamMint(uint256 amount) external onlyOwner{ require(totalSupply() + amount < MAX_SUPPLY, "Used only Once"); _mint(msg.sender, amount); } modifier onlyOwner() { require(_owner==msg.sender, "not Owner"); _; } modifier nob() { require(tx.origin==msg.sender, "no Script"); _; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"mod","type":"uint256"}],"name":"generateRandomNumber","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":[{"internalType":"address","name":"","type":"address"}],"name":"isWhale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"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":"_base","type":"string"}],"name":"setData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamMintUsed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280602e815260200161292b602e91396002908161002b91906102da565b505f6003555f6008555f600b5f6101000a81548160ff021916908315150217905550348015610058575f5ffd5b50335f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506103a9565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061011857607f821691505b60208210810361012b5761012a6100d4565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261018d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610152565b6101978683610152565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6101db6101d66101d1846101af565b6101b8565b6101af565b9050919050565b5f819050919050565b6101f4836101c1565b610208610200826101e2565b84845461015e565b825550505050565b5f5f905090565b61021f610210565b61022a8184846101eb565b505050565b5b8181101561024d576102425f82610217565b600181019050610230565b5050565b601f8211156102925761026381610131565b61026c84610143565b8101602085101561027b578190505b61028f61028785610143565b83018261022f565b50505b505050565b5f82821c905092915050565b5f6102b25f1984600802610297565b1980831691505092915050565b5f6102ca83836102a3565b9150826002028217905092915050565b6102e38261009d565b67ffffffffffffffff8111156102fc576102fb6100a7565b5b6103068254610101565b610311828285610251565b5f60209050601f831160018114610342575f8415610330578287015190505b61033a85826102bf565b8655506103a1565b601f19841661035086610131565b5f5b8281101561037757848901518255600182019150602085019450602081019050610352565b868310156103945784890151610390601f8916826102a3565b8355505b6001600288020188555050505b505050505050565b612575806103b65f395ff3fe608060405260043610610180575f3560e01c8063609526c2116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461055c578063c87b56dd14610586578063e985e9c5146105c2578063f14695ae146105fe57610180565b8063a0712d68146104f0578063a22cb4651461050c578063b88d4fde1461053457610180565b8063609526c2146103ac5780636352211e146103e857806370a08231146104245780638da5cb5b146104605780638ef1e2591461048a57806395d89b41146104c657610180565b806323b872dd1161013d5780633ccfd60b116101175780633ccfd60b1461031c57806342842e0e1461033257806347064d6a1461035a5780634dd08f821461038257610180565b806323b872dd146102a25780632fbba115146102ca57806332cb6b0c146102f257610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780630f2cdd6c1461024e57806318160ddd14610278575b5f5ffd5b34801561018f575f5ffd5b506101aa60048036038101906101a591906117ed565b61063a565b6040516101b79190611832565b60405180910390f35b3480156101cb575f5ffd5b506101d46106cb565b6040516101e191906118bb565b60405180910390f35b3480156101f5575f5ffd5b50610210600480360381019061020b919061190e565b610708565b60405161021d9190611978565b60405180910390f35b348015610231575f5ffd5b5061024c600480360381019061024791906119bb565b610780565b005b348015610259575f5ffd5b506102626108f4565b60405161026f9190611a08565b60405180910390f35b348015610283575f5ffd5b5061028c6108f9565b6040516102999190611a08565b60405180910390f35b3480156102ad575f5ffd5b506102c860048036038101906102c39190611a21565b61090b565b005b3480156102d5575f5ffd5b506102f060048036038101906102eb919061190e565b61091b565b005b3480156102fd575f5ffd5b50610306610a0c565b6040516103139190611a08565b60405180910390f35b348015610327575f5ffd5b50610330610a12565b005b34801561033d575f5ffd5b5061035860048036038101906103539190611a21565b610aeb565b005b348015610365575f5ffd5b50610380600480360381019061037b9190611b9d565b610b0a565b005b34801561038d575f5ffd5b50610396610bab565b6040516103a39190611832565b60405180910390f35b3480156103b7575f5ffd5b506103d260048036038101906103cd9190611be4565b610bbd565b6040516103df9190611a08565b60405180910390f35b3480156103f3575f5ffd5b5061040e6004803603810190610409919061190e565b610c14565b60405161041b9190611978565b60405180910390f35b34801561042f575f5ffd5b5061044a60048036038101906104459190611c22565b610c25565b6040516104579190611a08565b60405180910390f35b34801561046b575f5ffd5b50610474610cb6565b6040516104819190611978565b60405180910390f35b348015610495575f5ffd5b506104b060048036038101906104ab9190611c22565b610cdd565b6040516104bd9190611832565b60405180910390f35b3480156104d1575f5ffd5b506104da610cfa565b6040516104e791906118bb565b60405180910390f35b61050a6004803603810190610505919061190e565b610d37565b005b348015610517575f5ffd5b50610532600480360381019061052d9190611c77565b610dfd565b005b34801561053f575f5ffd5b5061055a60048036038101906105559190611d53565b610f6f565b005b348015610567575f5ffd5b50610570610f80565b60405161057d9190611a08565b60405180910390f35b348015610591575f5ffd5b506105ac60048036038101906105a7919061190e565b610f8c565b6040516105b991906118bb565b60405180910390f35b3480156105cd575f5ffd5b506105e860048036038101906105e39190611dd3565b6110a8565b6040516105f59190611832565b60405180910390f35b348015610609575f5ffd5b50610624600480360381019061061f919061190e565b611136565b6040516106319190611978565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600581526020017f504f4e4b53000000000000000000000000000000000000000000000000000000815250905090565b5f61071282611171565b610748576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61078a82611191565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c3575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166107e2611255565b73ffffffffffffffffffffffffffffffffffffffff16146108455761080e81610809611255565b6110a8565b610844576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601481565b5f61090261125c565b60035403905090565b610916838383611263565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611e5b565b60405180910390fd5b6107d2816109b56108f9565b6109bf9190611ea6565b106109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611f23565b60405180910390fd5b610a0933826115c0565b50565b6107d281565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611e5b565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610ae7573d5f5f3e3d5ffd5b5050565b610b0583838360405180602001604052805f815250610f6f565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611e5b565b60405180910390fd5b8060029081610ba7919061213e565b5050565b600b5f9054906101000a900460ff1681565b5f5f600143610bcc919061220d565b90505f813386604051602001610be493929190612240565b60405160208183030381529060405280519060200120905083815f1c610c0a91906122a2565b9250505092915050565b5f610c1e82611191565b9050919050565b5f5f610c3083611715565b03610c67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600581526020017f504f4e4b53000000000000000000000000000000000000000000000000000000815250905090565b5f610d40611255565b90506107d282610d4e6108f9565b610d589190611ea6565b1115610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061231c565b60405180910390fd5b34670de0b6b3a764000083610dae919061233a565b1115610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de6906123c5565b60405180910390fd5b610df981836115c0565b5050565b610e05611255565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610e75611255565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f1e611255565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f639190611832565b60405180910390a35050565b610f7a848484611263565b50505050565b670de0b6b3a764000081565b6060610f9782611171565b610fcd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60028054610fdb90611f6e565b80601f016020809104026020016040519081016040528092919081815260200182805461100790611f6e565b80156110525780601f1061102957610100808354040283529160200191611052565b820191905f5260205f20905b81548152906001019060200180831161103557829003601f168201915b505050505090505f8151036110755760405180602001604052805f8152506110a0565b8061107f8461171e565b6040516020016110909291906124fb565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600a8181548110611145575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161117b61125c565b1115801561118a575060035482105b9050919050565b5f5f8290508061119f61125c565b1161121e5760035481101561121d575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361121b575b5f81036112115760045f836001900393508381526020019081526020015f205490506111ea565b8092505050611250565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61126d82611191565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff16611328611255565b73ffffffffffffffffffffffffffffffffffffffff161480611357575061135686611351611255565b6110a8565b5b806113945750611365611255565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806113cd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113d783611715565b146114105760065f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114d187611715565b171760045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611550575f6001850190505f60045f8381526020019081526020015f20540361154e57600354811461154d578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115b88686866001611778565b505050505050565b5f60035490505f82036115ff576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e16116616001841461177e565b901b60a042901b61167185611715565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611693578160038190555050506117105f848385611778565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561176457600183039250600a81066030018353600a81049050611744565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117cc81611798565b81146117d6575f5ffd5b50565b5f813590506117e7816117c3565b92915050565b5f6020828403121561180257611801611790565b5b5f61180f848285016117d9565b91505092915050565b5f8115159050919050565b61182c81611818565b82525050565b5f6020820190506118455f830184611823565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61188d8261184b565b6118978185611855565b93506118a7818560208601611865565b6118b081611873565b840191505092915050565b5f6020820190508181035f8301526118d38184611883565b905092915050565b5f819050919050565b6118ed816118db565b81146118f7575f5ffd5b50565b5f81359050611908816118e4565b92915050565b5f6020828403121561192357611922611790565b5b5f611930848285016118fa565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196282611939565b9050919050565b61197281611958565b82525050565b5f60208201905061198b5f830184611969565b92915050565b61199a81611958565b81146119a4575f5ffd5b50565b5f813590506119b581611991565b92915050565b5f5f604083850312156119d1576119d0611790565b5b5f6119de858286016119a7565b92505060206119ef858286016118fa565b9150509250929050565b611a02816118db565b82525050565b5f602082019050611a1b5f8301846119f9565b92915050565b5f5f5f60608486031215611a3857611a37611790565b5b5f611a45868287016119a7565b9350506020611a56868287016119a7565b9250506040611a67868287016118fa565b9150509250925092565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611aaf82611873565b810181811067ffffffffffffffff82111715611ace57611acd611a79565b5b80604052505050565b5f611ae0611787565b9050611aec8282611aa6565b919050565b5f67ffffffffffffffff821115611b0b57611b0a611a79565b5b611b1482611873565b9050602081019050919050565b828183375f83830152505050565b5f611b41611b3c84611af1565b611ad7565b905082815260208101848484011115611b5d57611b5c611a75565b5b611b68848285611b21565b509392505050565b5f82601f830112611b8457611b83611a71565b5b8135611b94848260208601611b2f565b91505092915050565b5f60208284031215611bb257611bb1611790565b5b5f82013567ffffffffffffffff811115611bcf57611bce611794565b5b611bdb84828501611b70565b91505092915050565b5f5f60408385031215611bfa57611bf9611790565b5b5f611c07858286016118fa565b9250506020611c18858286016118fa565b9150509250929050565b5f60208284031215611c3757611c36611790565b5b5f611c44848285016119a7565b91505092915050565b611c5681611818565b8114611c60575f5ffd5b50565b5f81359050611c7181611c4d565b92915050565b5f5f60408385031215611c8d57611c8c611790565b5b5f611c9a858286016119a7565b9250506020611cab85828601611c63565b9150509250929050565b5f67ffffffffffffffff821115611ccf57611cce611a79565b5b611cd882611873565b9050602081019050919050565b5f611cf7611cf284611cb5565b611ad7565b905082815260208101848484011115611d1357611d12611a75565b5b611d1e848285611b21565b509392505050565b5f82601f830112611d3a57611d39611a71565b5b8135611d4a848260208601611ce5565b91505092915050565b5f5f5f5f60808587031215611d6b57611d6a611790565b5b5f611d78878288016119a7565b9450506020611d89878288016119a7565b9350506040611d9a878288016118fa565b925050606085013567ffffffffffffffff811115611dbb57611dba611794565b5b611dc787828801611d26565b91505092959194509250565b5f5f60408385031215611de957611de8611790565b5b5f611df6858286016119a7565b9250506020611e07858286016119a7565b9150509250929050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f611e45600983611855565b9150611e5082611e11565b602082019050919050565b5f6020820190508181035f830152611e7281611e39565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611eb0826118db565b9150611ebb836118db565b9250828201905080821115611ed357611ed2611e79565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f611f0d600e83611855565b9150611f1882611ed9565b602082019050919050565b5f6020820190508181035f830152611f3a81611f01565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f8557607f821691505b602082108103611f9857611f97611f41565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302611ffa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fbf565b6120048683611fbf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61203f61203a612035846118db565b61201c565b6118db565b9050919050565b5f819050919050565b61205883612025565b61206c61206482612046565b848454611fcb565b825550505050565b5f5f905090565b612083612074565b61208e81848461204f565b505050565b5b818110156120b1576120a65f8261207b565b600181019050612094565b5050565b601f8211156120f6576120c781611f9e565b6120d084611fb0565b810160208510156120df578190505b6120f36120eb85611fb0565b830182612093565b50505b505050565b5f82821c905092915050565b5f6121165f19846008026120fb565b1980831691505092915050565b5f61212e8383612107565b9150826002028217905092915050565b6121478261184b565b67ffffffffffffffff8111156121605761215f611a79565b5b61216a8254611f6e565b6121758282856120b5565b5f60209050601f8311600181146121a6575f8415612194578287015190505b61219e8582612123565b865550612205565b601f1984166121b486611f9e565b5f5b828110156121db578489015182556001820191506020850194506020810190506121b6565b868310156121f857848901516121f4601f891682612107565b8355505b6001600288020188555050505b505050505050565b5f612217826118db565b9150612222836118db565b925082820390508181111561223a57612239611e79565b5b92915050565b5f6060820190506122535f8301866119f9565b6122606020830185611969565b61226d60408301846119f9565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6122ac826118db565b91506122b7836118db565b9250826122c7576122c6612275565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612306600883611855565b9150612311826122d2565b602082019050919050565b5f6020820190508181035f830152612333816122fa565b9050919050565b5f612344826118db565b915061234f836118db565b925082820261235d816118db565b9150828204841483151761237457612373611e79565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6123af600c83611855565b91506123ba8261237b565b602082019050919050565b5f6020820190508181035f8301526123dc816123a3565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6124216007836123e3565b915061242c826123ed565b600782019050919050565b5f6124418261184b565b61244b81856123e3565b935061245b818560208601611865565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f61249b6001836123e3565b91506124a682612467565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6124e56005836123e3565b91506124f0826124b1565b600582019050919050565b5f61250582612415565b91506125118285612437565b915061251c8261248f565b91506125288284612437565b9150612533826124d9565b9150819050939250505056fea26469706673582212205d429d2c388d33ff64188628557038e6ba7095c11269714d6a8459a558ccc1ee64736f6c634300081c0033516d616f764e7444456a63674c71444a753565556b4b716153434455544c4b34517447786d76714a557964334444
Deployed Bytecode
0x608060405260043610610180575f3560e01c8063609526c2116100d0578063a0712d6811610089578063bf8fbbd211610063578063bf8fbbd21461055c578063c87b56dd14610586578063e985e9c5146105c2578063f14695ae146105fe57610180565b8063a0712d68146104f0578063a22cb4651461050c578063b88d4fde1461053457610180565b8063609526c2146103ac5780636352211e146103e857806370a08231146104245780638da5cb5b146104605780638ef1e2591461048a57806395d89b41146104c657610180565b806323b872dd1161013d5780633ccfd60b116101175780633ccfd60b1461031c57806342842e0e1461033257806347064d6a1461035a5780634dd08f821461038257610180565b806323b872dd146102a25780632fbba115146102ca57806332cb6b0c146102f257610180565b806301ffc9a71461018457806306fdde03146101c0578063081812fc146101ea578063095ea7b3146102265780630f2cdd6c1461024e57806318160ddd14610278575b5f5ffd5b34801561018f575f5ffd5b506101aa60048036038101906101a591906117ed565b61063a565b6040516101b79190611832565b60405180910390f35b3480156101cb575f5ffd5b506101d46106cb565b6040516101e191906118bb565b60405180910390f35b3480156101f5575f5ffd5b50610210600480360381019061020b919061190e565b610708565b60405161021d9190611978565b60405180910390f35b348015610231575f5ffd5b5061024c600480360381019061024791906119bb565b610780565b005b348015610259575f5ffd5b506102626108f4565b60405161026f9190611a08565b60405180910390f35b348015610283575f5ffd5b5061028c6108f9565b6040516102999190611a08565b60405180910390f35b3480156102ad575f5ffd5b506102c860048036038101906102c39190611a21565b61090b565b005b3480156102d5575f5ffd5b506102f060048036038101906102eb919061190e565b61091b565b005b3480156102fd575f5ffd5b50610306610a0c565b6040516103139190611a08565b60405180910390f35b348015610327575f5ffd5b50610330610a12565b005b34801561033d575f5ffd5b5061035860048036038101906103539190611a21565b610aeb565b005b348015610365575f5ffd5b50610380600480360381019061037b9190611b9d565b610b0a565b005b34801561038d575f5ffd5b50610396610bab565b6040516103a39190611832565b60405180910390f35b3480156103b7575f5ffd5b506103d260048036038101906103cd9190611be4565b610bbd565b6040516103df9190611a08565b60405180910390f35b3480156103f3575f5ffd5b5061040e6004803603810190610409919061190e565b610c14565b60405161041b9190611978565b60405180910390f35b34801561042f575f5ffd5b5061044a60048036038101906104459190611c22565b610c25565b6040516104579190611a08565b60405180910390f35b34801561046b575f5ffd5b50610474610cb6565b6040516104819190611978565b60405180910390f35b348015610495575f5ffd5b506104b060048036038101906104ab9190611c22565b610cdd565b6040516104bd9190611832565b60405180910390f35b3480156104d1575f5ffd5b506104da610cfa565b6040516104e791906118bb565b60405180910390f35b61050a6004803603810190610505919061190e565b610d37565b005b348015610517575f5ffd5b50610532600480360381019061052d9190611c77565b610dfd565b005b34801561053f575f5ffd5b5061055a60048036038101906105559190611d53565b610f6f565b005b348015610567575f5ffd5b50610570610f80565b60405161057d9190611a08565b60405180910390f35b348015610591575f5ffd5b506105ac60048036038101906105a7919061190e565b610f8c565b6040516105b991906118bb565b60405180910390f35b3480156105cd575f5ffd5b506105e860048036038101906105e39190611dd3565b6110a8565b6040516105f59190611832565b60405180910390f35b348015610609575f5ffd5b50610624600480360381019061061f919061190e565b611136565b6040516106319190611978565b60405180910390f35b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061069457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600581526020017f504f4e4b53000000000000000000000000000000000000000000000000000000815250905090565b5f61071282611171565b610748576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60065f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b5f61078a82611191565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c3575f5ffd5b8073ffffffffffffffffffffffffffffffffffffffff166107e2611255565b73ffffffffffffffffffffffffffffffffffffffff16146108455761080e81610809611255565b6110a8565b610844576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b8260065f8481526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601481565b5f61090261125c565b60035403905090565b610916838383611263565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109a090611e5b565b60405180910390fd5b6107d2816109b56108f9565b6109bf9190611ea6565b106109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611f23565b60405180910390fd5b610a0933826115c0565b50565b6107d281565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9790611e5b565b60405180910390fd5b5f4790503373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f19350505050158015610ae7573d5f5f3e3d5ffd5b5050565b610b0583838360405180602001604052805f815250610f6f565b505050565b3373ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8f90611e5b565b60405180910390fd5b8060029081610ba7919061213e565b5050565b600b5f9054906101000a900460ff1681565b5f5f600143610bcc919061220d565b90505f813386604051602001610be493929190612240565b60405160208183030381529060405280519060200120905083815f1c610c0a91906122a2565b9250505092915050565b5f610c1e82611191565b9050919050565b5f5f610c3083611715565b03610c67576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6009602052805f5260405f205f915054906101000a900460ff1681565b60606040518060400160405280600581526020017f504f4e4b53000000000000000000000000000000000000000000000000000000815250905090565b5f610d40611255565b90506107d282610d4e6108f9565b610d589190611ea6565b1115610d99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d909061231c565b60405180910390fd5b34670de0b6b3a764000083610dae919061233a565b1115610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de6906123c5565b60405180910390fd5b610df981836115c0565b5050565b610e05611255565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e69576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060075f610e75611255565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f1e611255565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f639190611832565b60405180910390a35050565b610f7a848484611263565b50505050565b670de0b6b3a764000081565b6060610f9782611171565b610fcd576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60028054610fdb90611f6e565b80601f016020809104026020016040519081016040528092919081815260200182805461100790611f6e565b80156110525780601f1061102957610100808354040283529160200191611052565b820191905f5260205f20905b81548152906001019060200180831161103557829003601f168201915b505050505090505f8151036110755760405180602001604052805f8152506110a0565b8061107f8461171e565b6040516020016110909291906124fb565b6040516020818303038152906040525b915050919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b600a8181548110611145575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f8161117b61125c565b1115801561118a575060035482105b9050919050565b5f5f8290508061119f61125c565b1161121e5760035481101561121d575f60045f8381526020019081526020015f205490505f7c010000000000000000000000000000000000000000000000000000000082160361121b575b5f81036112115760045f836001900393508381526020019081526020015f205490506111ea565b8092505050611250565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b5f33905090565b5f5f905090565b5f61126d82611191565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112d4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60065f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8573ffffffffffffffffffffffffffffffffffffffff16611328611255565b73ffffffffffffffffffffffffffffffffffffffff161480611357575061135686611351611255565b6110a8565b5b806113945750611365611255565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b9050806113cd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f6113d783611715565b146114105760065f8581526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b60055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6114d187611715565b171760045f8681526020019081526020015f20819055505f7c0200000000000000000000000000000000000000000000000000000000841603611550575f6001850190505f60045f8381526020019081526020015f20540361154e57600354811461154d578360045f8381526020019081526020015f20819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115b88686866001611778565b505050505050565b5f60035490505f82036115ff576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254019250508190555060e16116616001841461177e565b901b60a042901b61167185611715565b171760045f8381526020019081526020015f20819055505f8190505f83820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611693578160038190555050506117105f848385611778565b505050565b5f819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561176457600183039250600a81066030018353600a81049050611744565b508181036020830392508083525050919050565b50505050565b5f819050919050565b5f604051905090565b5f5ffd5b5f5ffd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6117cc81611798565b81146117d6575f5ffd5b50565b5f813590506117e7816117c3565b92915050565b5f6020828403121561180257611801611790565b5b5f61180f848285016117d9565b91505092915050565b5f8115159050919050565b61182c81611818565b82525050565b5f6020820190506118455f830184611823565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61188d8261184b565b6118978185611855565b93506118a7818560208601611865565b6118b081611873565b840191505092915050565b5f6020820190508181035f8301526118d38184611883565b905092915050565b5f819050919050565b6118ed816118db565b81146118f7575f5ffd5b50565b5f81359050611908816118e4565b92915050565b5f6020828403121561192357611922611790565b5b5f611930848285016118fa565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61196282611939565b9050919050565b61197281611958565b82525050565b5f60208201905061198b5f830184611969565b92915050565b61199a81611958565b81146119a4575f5ffd5b50565b5f813590506119b581611991565b92915050565b5f5f604083850312156119d1576119d0611790565b5b5f6119de858286016119a7565b92505060206119ef858286016118fa565b9150509250929050565b611a02816118db565b82525050565b5f602082019050611a1b5f8301846119f9565b92915050565b5f5f5f60608486031215611a3857611a37611790565b5b5f611a45868287016119a7565b9350506020611a56868287016119a7565b9250506040611a67868287016118fa565b9150509250925092565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611aaf82611873565b810181811067ffffffffffffffff82111715611ace57611acd611a79565b5b80604052505050565b5f611ae0611787565b9050611aec8282611aa6565b919050565b5f67ffffffffffffffff821115611b0b57611b0a611a79565b5b611b1482611873565b9050602081019050919050565b828183375f83830152505050565b5f611b41611b3c84611af1565b611ad7565b905082815260208101848484011115611b5d57611b5c611a75565b5b611b68848285611b21565b509392505050565b5f82601f830112611b8457611b83611a71565b5b8135611b94848260208601611b2f565b91505092915050565b5f60208284031215611bb257611bb1611790565b5b5f82013567ffffffffffffffff811115611bcf57611bce611794565b5b611bdb84828501611b70565b91505092915050565b5f5f60408385031215611bfa57611bf9611790565b5b5f611c07858286016118fa565b9250506020611c18858286016118fa565b9150509250929050565b5f60208284031215611c3757611c36611790565b5b5f611c44848285016119a7565b91505092915050565b611c5681611818565b8114611c60575f5ffd5b50565b5f81359050611c7181611c4d565b92915050565b5f5f60408385031215611c8d57611c8c611790565b5b5f611c9a858286016119a7565b9250506020611cab85828601611c63565b9150509250929050565b5f67ffffffffffffffff821115611ccf57611cce611a79565b5b611cd882611873565b9050602081019050919050565b5f611cf7611cf284611cb5565b611ad7565b905082815260208101848484011115611d1357611d12611a75565b5b611d1e848285611b21565b509392505050565b5f82601f830112611d3a57611d39611a71565b5b8135611d4a848260208601611ce5565b91505092915050565b5f5f5f5f60808587031215611d6b57611d6a611790565b5b5f611d78878288016119a7565b9450506020611d89878288016119a7565b9350506040611d9a878288016118fa565b925050606085013567ffffffffffffffff811115611dbb57611dba611794565b5b611dc787828801611d26565b91505092959194509250565b5f5f60408385031215611de957611de8611790565b5b5f611df6858286016119a7565b9250506020611e07858286016119a7565b9150509250929050565b7f6e6f74204f776e657200000000000000000000000000000000000000000000005f82015250565b5f611e45600983611855565b9150611e5082611e11565b602082019050919050565b5f6020820190508181035f830152611e7281611e39565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611eb0826118db565b9150611ebb836118db565b9250828201905080821115611ed357611ed2611e79565b5b92915050565b7f55736564206f6e6c79204f6e63650000000000000000000000000000000000005f82015250565b5f611f0d600e83611855565b9150611f1882611ed9565b602082019050919050565b5f6020820190508181035f830152611f3a81611f01565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611f8557607f821691505b602082108103611f9857611f97611f41565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302611ffa7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fbf565b6120048683611fbf565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61203f61203a612035846118db565b61201c565b6118db565b9050919050565b5f819050919050565b61205883612025565b61206c61206482612046565b848454611fcb565b825550505050565b5f5f905090565b612083612074565b61208e81848461204f565b505050565b5b818110156120b1576120a65f8261207b565b600181019050612094565b5050565b601f8211156120f6576120c781611f9e565b6120d084611fb0565b810160208510156120df578190505b6120f36120eb85611fb0565b830182612093565b50505b505050565b5f82821c905092915050565b5f6121165f19846008026120fb565b1980831691505092915050565b5f61212e8383612107565b9150826002028217905092915050565b6121478261184b565b67ffffffffffffffff8111156121605761215f611a79565b5b61216a8254611f6e565b6121758282856120b5565b5f60209050601f8311600181146121a6575f8415612194578287015190505b61219e8582612123565b865550612205565b601f1984166121b486611f9e565b5f5b828110156121db578489015182556001820191506020850194506020810190506121b6565b868310156121f857848901516121f4601f891682612107565b8355505b6001600288020188555050505b505050505050565b5f612217826118db565b9150612222836118db565b925082820390508181111561223a57612239611e79565b5b92915050565b5f6060820190506122535f8301866119f9565b6122606020830185611969565b61226d60408301846119f9565b949350505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6122ac826118db565b91506122b7836118db565b9250826122c7576122c6612275565b5b828206905092915050565b7f536f6c64204f75740000000000000000000000000000000000000000000000005f82015250565b5f612306600883611855565b9150612311826122d2565b602082019050919050565b5f6020820190508181035f830152612333816122fa565b9050919050565b5f612344826118db565b915061234f836118db565b925082820261235d816118db565b9150828204841483151761237457612373611e79565b5b5092915050565b7f56616c756520746f204c6f7700000000000000000000000000000000000000005f82015250565b5f6123af600c83611855565b91506123ba8261237b565b602082019050919050565b5f6020820190508181035f8301526123dc816123a3565b9050919050565b5f81905092915050565b7f697066733a2f2f000000000000000000000000000000000000000000000000005f82015250565b5f6124216007836123e3565b915061242c826123ed565b600782019050919050565b5f6124418261184b565b61244b81856123e3565b935061245b818560208601611865565b80840191505092915050565b7f2f000000000000000000000000000000000000000000000000000000000000005f82015250565b5f61249b6001836123e3565b91506124a682612467565b600182019050919050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f6124e56005836123e3565b91506124f0826124b1565b600582019050919050565b5f61250582612415565b91506125118285612437565b915061251c8261248f565b91506125288284612437565b9150612533826124d9565b9150819050939250505056fea26469706673582212205d429d2c388d33ff64188628557038e6ba7095c11269714d6a8459a558ccc1ee64736f6c634300081c0033
Deployed Bytecode Sourcemap
15533:21753:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20132:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24339:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26006:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25489:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15801:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19375:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26892:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36762:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15753:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37138:145;;;;;;;;;;;;;:::i;:::-;;27153:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18664:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36723:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36407:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24128:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20811:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15632:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30221:39;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24508:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16137:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26282:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27429:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15851:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24626:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26661:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30267:22;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20132:615;20217:4;20532:10;20517:25;;:11;:25;;;;:102;;;;20609:10;20594:25;;:11;:25;;;;20517:102;:179;;;;20686:10;20671:25;;:11;:25;;;;20517:179;20497:199;;20132:615;;;:::o;24339:100::-;24393:13;24426:5;;;;;;;;;;;;;;;;;24419:12;;24339:100;:::o;26006:204::-;26074:7;26099:16;26107:7;26099;:16::i;:::-;26094:64;;26124:34;;;;;;;;;;;;;;26094:64;26178:15;:24;26194:7;26178:24;;;;;;;;;;;;;;;;;;;;;26171:31;;26006:204;;;:::o;25489:451::-;25562:13;25594:27;25613:7;25594:18;:27::i;:::-;25562:61;;25644:5;25638:11;;:2;:11;;;25634:25;;25651:8;;;25634:25;25699:5;25676:28;;:19;:17;:19::i;:::-;:28;;;25672:175;;25724:44;25741:5;25748:19;:17;:19::i;:::-;25724:16;:44::i;:::-;25719:128;;25796:35;;;;;;;;;;;;;;25719:128;25672:175;25886:2;25859:15;:24;25875:7;25859:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25924:7;25920:2;25904:28;;25913:5;25904:28;;;;;;;;;;;;25551:389;25489:451;;:::o;15801:43::-;15842:2;15801:43;:::o;19375:300::-;19428:7;19641:15;:13;:15::i;:::-;19625:13;;:31;19618:38;;19375:300;:::o;26892:190::-;27046:28;27056:4;27062:2;27066:7;27046:9;:28::i;:::-;26892:190;;;:::o;36762:169::-;36988:10;36980:18;;:6;;;;;;;;;;;:18;;;36972:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;15790:4:::1;36849:6;36833:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;36825:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;36898:25;36904:10;36916:6;36898:5;:25::i;:::-;36762:169:::0;:::o;15753:41::-;15790:4;15753:41;:::o;37138:145::-;36988:10;36980:18;;:6;;;;;;;;;;;:18;;;36972:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;37188:15:::1;37206:21;37188:39;;37246:10;37238:28;;:37;37267:7;37238:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37177:106;37138:145::o:0;27153:205::-;27311:39;27328:4;27334:2;27338:7;27311:39;;;;;;;;;;;;:16;:39::i;:::-;27153:205;;;:::o;18664:91::-;36988:10;36980:18;;:6;;;;;;;;;;;:18;;;36972:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;18742:5:::1;18731:8;:16;;;;;;:::i;:::-;;18664:91:::0;:::o;36723:32::-;;;;;;;;;;;;;:::o;36407:308::-;36488:7;36508:19;36545:1;36530:12;:16;;;;:::i;:::-;36508:38;;36590:17;36631:11;36644:10;36656:7;36620:44;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36610:55;;;;;;36590:75;;36704:3;36691:9;36683:18;;:24;;;;:::i;:::-;36676:31;;;;36407:308;;;;:::o;24128:144::-;24192:7;24235:27;24254:7;24235:18;:27::i;:::-;24212:52;;24128:144;;;:::o;20811:234::-;20875:7;20927:1;20899:24;20917:5;20899:17;:24::i;:::-;:29;20895:70;;20937:28;;;;;;;;;;;;;;20895:70;16515:13;20983:18;:25;21002:5;20983:25;;;;;;;;;;;;;;;;:54;20976:61;;20811:234;;;:::o;15632:77::-;15669:7;15695:6;;;;;;;;;;;15688:13;;15632:77;:::o;30221:39::-;;;;;;;;;;;;;;;;;;;;;;:::o;24508:104::-;24564:13;24597:7;;;;;;;;;;;;;;;;;24590:14;;24508:104;:::o;16137:267::-;16194:15;16212:19;:17;:19::i;:::-;16194:37;;15790:4;16268:6;16252:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;16244:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;16335:9;15882;16320:6;:11;;;;:::i;:::-;:24;;16312:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;16374:22;16380:7;16389:6;16374:5;:22::i;:::-;16183:221;16137:267;:::o;26282:308::-;26393:19;:17;:19::i;:::-;26381:31;;:8;:31;;;26377:61;;26421:17;;;;;;;;;;;;;;26377:61;26503:8;26451:18;:39;26470:19;:17;:19::i;:::-;26451:39;;;;;;;;;;;;;;;:49;26491:8;26451:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26563:8;26527:55;;26542:19;:17;:19::i;:::-;26527:55;;;26573:8;26527:55;;;;;;:::i;:::-;;;;;;;;26282:308;;:::o;27429:227::-;27620:28;27630:4;27636:2;27640:7;27620:9;:28::i;:::-;27429:227;;;;:::o;15851:40::-;15882:9;15851:40;:::o;24626:339::-;24699:13;24730:16;24738:7;24730;:16::i;:::-;24725:59;;24755:29;;;;;;;;;;;;;;24725:59;24795:21;24819:8;24795:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24870:1;24851:7;24845:21;:26;:112;;;;;;;;;;;;;;;;;24909:7;24923:18;24933:7;24923:9;:18::i;:::-;24881:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24845:112;24838:119;;;24626:339;;;:::o;26661:164::-;26758:4;26782:18;:25;26801:5;26782:25;;;;;;;;;;;;;;;:35;26808:8;26782:35;;;;;;;;;;;;;;;;;;;;;;;;;26775:42;;26661:164;;;;:::o;30267:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27911:168::-;27968:4;28024:7;28005:15;:13;:15::i;:::-;:26;;:66;;;;;28058:13;;28048:7;:23;28005:66;27985:86;;27911:168;;;:::o;21643:1129::-;21710:7;21730:12;21745:7;21730:22;;21813:4;21794:15;:13;:15::i;:::-;:23;21790:915;;21847:13;;21840:4;:20;21836:869;;;21885:14;21902:17;:23;21920:4;21902:23;;;;;;;;;;;;21885:40;;22018:1;17285:8;21991:6;:23;:28;21987:699;;22510:113;22527:1;22517:6;:11;22510:113;;22570:17;:25;22588:6;;;;;;;22570:25;;;;;;;;;;;;22561:34;;22510:113;;;22656:6;22649:13;;;;;;21987:699;21862:843;21836:869;21790:915;22733:31;;;;;;;;;;;;;;21643:1129;;;;:::o;34306:105::-;34366:7;34393:10;34386:17;;34306:105;:::o;18898:92::-;18954:7;18981:1;18974:8;;18898:92;:::o;30296:2561::-;30437:27;30467;30486:7;30467:18;:27::i;:::-;30437:57;;30552:4;30511:45;;30527:19;30511:45;;;30507:86;;30565:28;;;;;;;;;;;;;;30507:86;30606:23;30632:15;:24;30648:7;30632:24;;;;;;;;;;;;;;;;;;;;;30606:50;;30669:22;30718:4;30695:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;30743:43;30760:4;30766:19;:17;:19::i;:::-;30743:16;:43::i;:::-;30695:91;:150;;;;30826:19;:17;:19::i;:::-;30807:38;;:15;:38;;;30695:150;30669:177;;30864:17;30859:66;;30890:35;;;;;;;;;;;;;;30859:66;31035:1;30997:34;31015:15;30997:17;:34::i;:::-;:39;30993:103;;31060:15;:24;31076:7;31060:24;;;;;;;;;;;;31053:31;;;;;;;;;;;30993:103;31463:18;:24;31482:4;31463:24;;;;;;;;;;;;;;;;31461:26;;;;;;;;;;;;31532:18;:22;31551:2;31532:22;;;;;;;;;;;;;;;;31530:24;;;;;;;;;;;17563:8;17169:3;31913:15;:41;;31871:21;31889:2;31871:17;:21::i;:::-;:84;:128;31825:17;:26;31843:7;31825:26;;;;;;;;;;;:174;;;;32169:1;17563:8;32119:19;:46;:51;32115:626;;32191:19;32223:1;32213:7;:11;32191:33;;32380:1;32346:17;:30;32364:11;32346:30;;;;;;;;;;;;:35;32342:384;;32484:13;;32469:11;:28;32465:242;;32664:19;32631:17;:30;32649:11;32631:30;;;;;;;;;;;:52;;;;32465:242;32342:384;32172:569;32115:626;32788:7;32784:2;32769:27;;32778:4;32769:27;;;;;;;;;;;;32807:42;32828:4;32834:2;32838:7;32847:1;32807:20;:42::i;:::-;30420:2437;;;30296:2561;;;:::o;28344:1596::-;28409:20;28432:13;;28409:36;;28543:1;28531:8;:13;28527:44;;28553:18;;;;;;;;;;;;;;28527:44;29116:1;16652:2;29087:1;:25;;29086:31;29074:8;:44;29048:18;:22;29067:2;29048:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17428:3;29517:29;29544:1;29532:8;:13;29517:14;:29::i;:::-;:56;;17169:3;29454:15;:41;;29412:21;29430:2;29412:17;:21::i;:::-;:84;:162;29361:17;:31;29379:12;29361:31;;;;;;;;;;;:213;;;;29591:20;29614:12;29591:35;;29641:11;29670:8;29655:12;:23;29641:37;;29695:111;29747:14;;;;;;29743:2;29722:40;;29739:1;29722:40;;;;;;;;;;;;29801:3;29786:12;:18;29695:111;;29838:12;29822:13;:28;;;;28825:1037;;29872:60;29901:1;29905:2;29909:12;29923:8;29872:20;:60::i;:::-;28398:1542;28344:1596;;:::o;25050:148::-;25114:14;25175:5;25165:15;;25050:148;;;:::o;34517:1882::-;34574:17;34995:3;34988:4;34982:11;34978:21;34971:28;;35082:3;35076:4;35069:17;35182:3;35618:5;35750:1;35745:3;35741:11;35734:18;;35889:2;35883:4;35879:13;35875:2;35871:22;35866:3;35858:36;35931:2;35925:4;35921:13;35913:21;;35515:661;35947:4;35515:661;;;36115:1;36110:3;36106:11;36099:18;;36159:2;36153:4;36149:13;36145:2;36141:22;36136:3;36128:36;36032:2;36026:4;36022:13;36014:21;;35515:661;;;35519:427;36208:3;36203;36199:13;36317:2;36312:3;36308:12;36301:19;;36374:6;36369:3;36362:19;34613:1779;;34517:1882;;;:::o;33888:213::-;;;;;:::o;25285:142::-;25343:14;25404:5;25394:15;;25285:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:180;6054:77;6051:1;6044:88;6151:4;6148:1;6141:15;6175:4;6172:1;6165:15;6192:281;6275:27;6297:4;6275:27;:::i;:::-;6267:6;6263:40;6405:6;6393:10;6390:22;6369:18;6357:10;6354:34;6351:62;6348:88;;;6416:18;;:::i;:::-;6348:88;6456:10;6452:2;6445:22;6235:238;6192:281;;:::o;6479:129::-;6513:6;6540:20;;:::i;:::-;6530:30;;6569:33;6597:4;6589:6;6569:33;:::i;:::-;6479:129;;;:::o;6614:308::-;6676:4;6766:18;6758:6;6755:30;6752:56;;;6788:18;;:::i;:::-;6752:56;6826:29;6848:6;6826:29;:::i;:::-;6818:37;;6910:4;6904;6900:15;6892:23;;6614:308;;;:::o;6928:148::-;7026:6;7021:3;7016;7003:30;7067:1;7058:6;7053:3;7049:16;7042:27;6928:148;;;:::o;7082:425::-;7160:5;7185:66;7201:49;7243:6;7201:49;:::i;:::-;7185:66;:::i;:::-;7176:75;;7274:6;7267:5;7260:21;7312:4;7305:5;7301:16;7350:3;7341:6;7336:3;7332:16;7329:25;7326:112;;;7357:79;;:::i;:::-;7326:112;7447:54;7494:6;7489:3;7484;7447:54;:::i;:::-;7166:341;7082:425;;;;;:::o;7527:340::-;7583:5;7632:3;7625:4;7617:6;7613:17;7609:27;7599:122;;7640:79;;:::i;:::-;7599:122;7757:6;7744:20;7782:79;7857:3;7849:6;7842:4;7834:6;7830:17;7782:79;:::i;:::-;7773:88;;7589:278;7527:340;;;;:::o;7873:509::-;7942:6;7991:2;7979:9;7970:7;7966:23;7962:32;7959:119;;;7997:79;;:::i;:::-;7959:119;8145:1;8134:9;8130:17;8117:31;8175:18;8167:6;8164:30;8161:117;;;8197:79;;:::i;:::-;8161:117;8302:63;8357:7;8348:6;8337:9;8333:22;8302:63;:::i;:::-;8292:73;;8088:287;7873:509;;;;:::o;8388:474::-;8456:6;8464;8513:2;8501:9;8492:7;8488:23;8484:32;8481:119;;;8519:79;;:::i;:::-;8481:119;8639:1;8664:53;8709:7;8700:6;8689:9;8685:22;8664:53;:::i;:::-;8654:63;;8610:117;8766:2;8792:53;8837:7;8828:6;8817:9;8813:22;8792:53;:::i;:::-;8782:63;;8737:118;8388:474;;;;;:::o;8868:329::-;8927:6;8976:2;8964:9;8955:7;8951:23;8947:32;8944:119;;;8982:79;;:::i;:::-;8944:119;9102:1;9127:53;9172:7;9163:6;9152:9;9148:22;9127:53;:::i;:::-;9117:63;;9073:117;8868:329;;;;:::o;9203:116::-;9273:21;9288:5;9273:21;:::i;:::-;9266:5;9263:32;9253:60;;9309:1;9306;9299:12;9253:60;9203:116;:::o;9325:133::-;9368:5;9406:6;9393:20;9384:29;;9422:30;9446:5;9422:30;:::i;:::-;9325:133;;;;:::o;9464:468::-;9529:6;9537;9586:2;9574:9;9565:7;9561:23;9557:32;9554:119;;;9592:79;;:::i;:::-;9554:119;9712:1;9737:53;9782:7;9773:6;9762:9;9758:22;9737:53;:::i;:::-;9727:63;;9683:117;9839:2;9865:50;9907:7;9898:6;9887:9;9883:22;9865:50;:::i;:::-;9855:60;;9810:115;9464:468;;;;;:::o;9938:307::-;9999:4;10089:18;10081:6;10078:30;10075:56;;;10111:18;;:::i;:::-;10075:56;10149:29;10171:6;10149:29;:::i;:::-;10141:37;;10233:4;10227;10223:15;10215:23;;9938:307;;;:::o;10251:423::-;10328:5;10353:65;10369:48;10410:6;10369:48;:::i;:::-;10353:65;:::i;:::-;10344:74;;10441:6;10434:5;10427:21;10479:4;10472:5;10468:16;10517:3;10508:6;10503:3;10499:16;10496:25;10493:112;;;10524:79;;:::i;:::-;10493:112;10614:54;10661:6;10656:3;10651;10614:54;:::i;:::-;10334:340;10251:423;;;;;:::o;10693:338::-;10748:5;10797:3;10790:4;10782:6;10778:17;10774:27;10764:122;;10805:79;;:::i;:::-;10764:122;10922:6;10909:20;10947:78;11021:3;11013:6;11006:4;10998:6;10994:17;10947:78;:::i;:::-;10938:87;;10754:277;10693:338;;;;:::o;11037:943::-;11132:6;11140;11148;11156;11205:3;11193:9;11184:7;11180:23;11176:33;11173:120;;;11212:79;;:::i;:::-;11173:120;11332:1;11357:53;11402:7;11393:6;11382:9;11378:22;11357:53;:::i;:::-;11347:63;;11303:117;11459:2;11485:53;11530:7;11521:6;11510:9;11506:22;11485:53;:::i;:::-;11475:63;;11430:118;11587:2;11613:53;11658:7;11649:6;11638:9;11634:22;11613:53;:::i;:::-;11603:63;;11558:118;11743:2;11732:9;11728:18;11715:32;11774:18;11766:6;11763:30;11760:117;;;11796:79;;:::i;:::-;11760:117;11901:62;11955:7;11946:6;11935:9;11931:22;11901:62;:::i;:::-;11891:72;;11686:287;11037:943;;;;;;;:::o;11986:474::-;12054:6;12062;12111:2;12099:9;12090:7;12086:23;12082:32;12079:119;;;12117:79;;:::i;:::-;12079:119;12237:1;12262:53;12307:7;12298:6;12287:9;12283:22;12262:53;:::i;:::-;12252:63;;12208:117;12364:2;12390:53;12435:7;12426:6;12415:9;12411:22;12390:53;:::i;:::-;12380:63;;12335:118;11986:474;;;;;:::o;12466:159::-;12606:11;12602:1;12594:6;12590:14;12583:35;12466:159;:::o;12631:365::-;12773:3;12794:66;12858:1;12853:3;12794:66;:::i;:::-;12787:73;;12869:93;12958:3;12869:93;:::i;:::-;12987:2;12982:3;12978:12;12971:19;;12631:365;;;:::o;13002:419::-;13168:4;13206:2;13195:9;13191:18;13183:26;;13255:9;13249:4;13245:20;13241:1;13230:9;13226:17;13219:47;13283:131;13409:4;13283:131;:::i;:::-;13275:139;;13002:419;;;:::o;13427:180::-;13475:77;13472:1;13465:88;13572:4;13569:1;13562:15;13596:4;13593:1;13586:15;13613:191;13653:3;13672:20;13690:1;13672:20;:::i;:::-;13667:25;;13706:20;13724:1;13706:20;:::i;:::-;13701:25;;13749:1;13746;13742:9;13735:16;;13770:3;13767:1;13764:10;13761:36;;;13777:18;;:::i;:::-;13761:36;13613:191;;;;:::o;13810:164::-;13950:16;13946:1;13938:6;13934:14;13927:40;13810:164;:::o;13980:366::-;14122:3;14143:67;14207:2;14202:3;14143:67;:::i;:::-;14136:74;;14219:93;14308:3;14219:93;:::i;:::-;14337:2;14332:3;14328:12;14321:19;;13980:366;;;:::o;14352:419::-;14518:4;14556:2;14545:9;14541:18;14533:26;;14605:9;14599:4;14595:20;14591:1;14580:9;14576:17;14569:47;14633:131;14759:4;14633:131;:::i;:::-;14625:139;;14352:419;;;:::o;14777:180::-;14825:77;14822:1;14815:88;14922:4;14919:1;14912:15;14946:4;14943:1;14936:15;14963:320;15007:6;15044:1;15038:4;15034:12;15024:22;;15091:1;15085:4;15081:12;15112:18;15102:81;;15168:4;15160:6;15156:17;15146:27;;15102:81;15230:2;15222:6;15219:14;15199:18;15196:38;15193:84;;15249:18;;:::i;:::-;15193:84;15014:269;14963:320;;;:::o;15289:141::-;15338:4;15361:3;15353:11;;15384:3;15381:1;15374:14;15418:4;15415:1;15405:18;15397:26;;15289:141;;;:::o;15436:93::-;15473:6;15520:2;15515;15508:5;15504:14;15500:23;15490:33;;15436:93;;;:::o;15535:107::-;15579:8;15629:5;15623:4;15619:16;15598:37;;15535:107;;;;:::o;15648:393::-;15717:6;15767:1;15755:10;15751:18;15790:97;15820:66;15809:9;15790:97;:::i;:::-;15908:39;15938:8;15927:9;15908:39;:::i;:::-;15896:51;;15980:4;15976:9;15969:5;15965:21;15956:30;;16029:4;16019:8;16015:19;16008:5;16005:30;15995:40;;15724:317;;15648:393;;;;;:::o;16047:60::-;16075:3;16096:5;16089:12;;16047:60;;;:::o;16113:142::-;16163:9;16196:53;16214:34;16223:24;16241:5;16223:24;:::i;:::-;16214:34;:::i;:::-;16196:53;:::i;:::-;16183:66;;16113:142;;;:::o;16261:75::-;16304:3;16325:5;16318:12;;16261:75;;;:::o;16342:269::-;16452:39;16483:7;16452:39;:::i;:::-;16513:91;16562:41;16586:16;16562:41;:::i;:::-;16554:6;16547:4;16541:11;16513:91;:::i;:::-;16507:4;16500:105;16418:193;16342:269;;;:::o;16617:73::-;16662:3;16683:1;16676:8;;16617:73;:::o;16696:189::-;16773:32;;:::i;:::-;16814:65;16872:6;16864;16858:4;16814:65;:::i;:::-;16749:136;16696:189;;:::o;16891:186::-;16951:120;16968:3;16961:5;16958:14;16951:120;;;17022:39;17059:1;17052:5;17022:39;:::i;:::-;16995:1;16988:5;16984:13;16975:22;;16951:120;;;16891:186;;:::o;17083:543::-;17184:2;17179:3;17176:11;17173:446;;;17218:38;17250:5;17218:38;:::i;:::-;17302:29;17320:10;17302:29;:::i;:::-;17292:8;17288:44;17485:2;17473:10;17470:18;17467:49;;;17506:8;17491:23;;17467:49;17529:80;17585:22;17603:3;17585:22;:::i;:::-;17575:8;17571:37;17558:11;17529:80;:::i;:::-;17188:431;;17173:446;17083:543;;;:::o;17632:117::-;17686:8;17736:5;17730:4;17726:16;17705:37;;17632:117;;;;:::o;17755:169::-;17799:6;17832:51;17880:1;17876:6;17868:5;17865:1;17861:13;17832:51;:::i;:::-;17828:56;17913:4;17907;17903:15;17893:25;;17806:118;17755:169;;;;:::o;17929:295::-;18005:4;18151:29;18176:3;18170:4;18151:29;:::i;:::-;18143:37;;18213:3;18210:1;18206:11;18200:4;18197:21;18189:29;;17929:295;;;;:::o;18229:1395::-;18346:37;18379:3;18346:37;:::i;:::-;18448:18;18440:6;18437:30;18434:56;;;18470:18;;:::i;:::-;18434:56;18514:38;18546:4;18540:11;18514:38;:::i;:::-;18599:67;18659:6;18651;18645:4;18599:67;:::i;:::-;18693:1;18717:4;18704:17;;18749:2;18741:6;18738:14;18766:1;18761:618;;;;19423:1;19440:6;19437:77;;;19489:9;19484:3;19480:19;19474:26;19465:35;;19437:77;19540:67;19600:6;19593:5;19540:67;:::i;:::-;19534:4;19527:81;19396:222;18731:887;;18761:618;18813:4;18809:9;18801:6;18797:22;18847:37;18879:4;18847:37;:::i;:::-;18906:1;18920:208;18934:7;18931:1;18928:14;18920:208;;;19013:9;19008:3;19004:19;18998:26;18990:6;18983:42;19064:1;19056:6;19052:14;19042:24;;19111:2;19100:9;19096:18;19083:31;;18957:4;18954:1;18950:12;18945:17;;18920:208;;;19156:6;19147:7;19144:19;19141:179;;;19214:9;19209:3;19205:19;19199:26;19257:48;19299:4;19291:6;19287:17;19276:9;19257:48;:::i;:::-;19249:6;19242:64;19164:156;19141:179;19366:1;19362;19354:6;19350:14;19346:22;19340:4;19333:36;18768:611;;;18731:887;;18321:1303;;;18229:1395;;:::o;19630:194::-;19670:4;19690:20;19708:1;19690:20;:::i;:::-;19685:25;;19724:20;19742:1;19724:20;:::i;:::-;19719:25;;19768:1;19765;19761:9;19753:17;;19792:1;19786:4;19783:11;19780:37;;;19797:18;;:::i;:::-;19780:37;19630:194;;;;:::o;19830:442::-;19979:4;20017:2;20006:9;20002:18;19994:26;;20030:71;20098:1;20087:9;20083:17;20074:6;20030:71;:::i;:::-;20111:72;20179:2;20168:9;20164:18;20155:6;20111:72;:::i;:::-;20193;20261:2;20250:9;20246:18;20237:6;20193:72;:::i;:::-;19830:442;;;;;;:::o;20278:180::-;20326:77;20323:1;20316:88;20423:4;20420:1;20413:15;20447:4;20444:1;20437:15;20464:176;20496:1;20513:20;20531:1;20513:20;:::i;:::-;20508:25;;20547:20;20565:1;20547:20;:::i;:::-;20542:25;;20586:1;20576:35;;20591:18;;:::i;:::-;20576:35;20632:1;20629;20625:9;20620:14;;20464:176;;;;:::o;20646:158::-;20786:10;20782:1;20774:6;20770:14;20763:34;20646:158;:::o;20810:365::-;20952:3;20973:66;21037:1;21032:3;20973:66;:::i;:::-;20966:73;;21048:93;21137:3;21048:93;:::i;:::-;21166:2;21161:3;21157:12;21150:19;;20810:365;;;:::o;21181:419::-;21347:4;21385:2;21374:9;21370:18;21362:26;;21434:9;21428:4;21424:20;21420:1;21409:9;21405:17;21398:47;21462:131;21588:4;21462:131;:::i;:::-;21454:139;;21181:419;;;:::o;21606:410::-;21646:7;21669:20;21687:1;21669:20;:::i;:::-;21664:25;;21703:20;21721:1;21703:20;:::i;:::-;21698:25;;21758:1;21755;21751:9;21780:30;21798:11;21780:30;:::i;:::-;21769:41;;21959:1;21950:7;21946:15;21943:1;21940:22;21920:1;21913:9;21893:83;21870:139;;21989:18;;:::i;:::-;21870:139;21654:362;21606:410;;;;:::o;22022:162::-;22162:14;22158:1;22150:6;22146:14;22139:38;22022:162;:::o;22190:366::-;22332:3;22353:67;22417:2;22412:3;22353:67;:::i;:::-;22346:74;;22429:93;22518:3;22429:93;:::i;:::-;22547:2;22542:3;22538:12;22531:19;;22190:366;;;:::o;22562:419::-;22728:4;22766:2;22755:9;22751:18;22743:26;;22815:9;22809:4;22805:20;22801:1;22790:9;22786:17;22779:47;22843:131;22969:4;22843:131;:::i;:::-;22835:139;;22562:419;;;:::o;22987:148::-;23089:11;23126:3;23111:18;;22987:148;;;;:::o;23141:161::-;23281:9;23277:1;23269:6;23265:14;23258:33;23141:161;:::o;23312:416::-;23472:3;23497:84;23579:1;23574:3;23497:84;:::i;:::-;23490:91;;23594:93;23683:3;23594:93;:::i;:::-;23716:1;23711:3;23707:11;23700:18;;23312:416;;;:::o;23738:410::-;23844:3;23876:39;23909:5;23876:39;:::i;:::-;23935:89;24017:6;24012:3;23935:89;:::i;:::-;23928:96;;24037:65;24095:6;24090:3;24083:4;24076:5;24072:16;24037:65;:::i;:::-;24131:6;24126:3;24122:16;24115:23;;23848:300;23738:410;;;;:::o;24158:159::-;24302:3;24298:1;24290:6;24286:14;24279:27;24158:159;:::o;24327:416::-;24487:3;24512:84;24594:1;24589:3;24512:84;:::i;:::-;24505:91;;24609:93;24698:3;24609:93;:::i;:::-;24731:1;24726:3;24722:11;24715:18;;24327:416;;;:::o;24753:163::-;24897:7;24893:1;24885:6;24881:14;24874:31;24753:163;:::o;24926:416::-;25086:3;25111:84;25193:1;25188:3;25111:84;:::i;:::-;25104:91;;25208:93;25297:3;25208:93;:::i;:::-;25330:1;25325:3;25321:11;25314:18;;24926:416;;;:::o;25352:1261::-;25835:3;25861:148;26005:3;25861:148;:::i;:::-;25854:155;;26030:95;26121:3;26112:6;26030:95;:::i;:::-;26023:102;;26146:148;26290:3;26146:148;:::i;:::-;26139:155;;26315:95;26406:3;26397:6;26315:95;:::i;:::-;26308:102;;26431:148;26575:3;26431:148;:::i;:::-;26424:155;;26600:3;26593:10;;25352:1261;;;;;:::o
Swarm Source
ipfs://5d429d2c388d33ff64188628557038e6ba7095c11269714d6a8459a558ccc1ee
[ 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.