ERC-721
Overview
Max Total Supply
3,009 BIGBRAIN
Holders
2,398
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BIGBRAINLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Brain
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-08 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // IERC721 // ============================== /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================== // IERC721Metadata // ============================== /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================== // IERC2309 // ============================== /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`, * as defined in the ERC2309 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with `_mintERC2309`. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309` // is required to cause an overflow, which is unrealistic. uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * 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; ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA); } /** * 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 Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, BITMASK_ADDRESS) // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`. result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); 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-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 { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. * This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. * This includes minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: Brain.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract Brain is ERC721A, Ownable { uint256 constant EXTRA_MINT_PRICE = 0.0069 ether; uint256 constant MAX_SUPPLY_PLUS_ONE = 10001; uint256 constant MAX_PER_TRANSACTION_PLUS_ONE = 4; using Strings for uint256; string tokenBaseUri = "ipfs://QmeizPvgosgNb49fYR1z56mAbvuMeAZhoyrmc6XZDR4VZ6/"; string public baseExtension = ".json"; bool public paused = true; mapping(address => uint256) private _freeMintedCount; constructor() ERC721A("bigbrain.wtf", "BIGBRAIN") {} function mint(uint256 _quantity) external payable { require(!paused, "Minting paused"); uint256 _totalSupply = totalSupply(); require(_totalSupply + _quantity < MAX_SUPPLY_PLUS_ONE, "Exceeds supply"); require(_quantity < MAX_PER_TRANSACTION_PLUS_ONE, "Exceeds max per tx"); uint256 payForCount = _quantity; uint256 freeMintCount = _freeMintedCount[msg.sender]; if (freeMintCount < 1) { if (_quantity > 1) { payForCount = _quantity - 1; } else { payForCount = 0; } _freeMintedCount[msg.sender] = 1; } require(msg.value >= payForCount * EXTRA_MINT_PRICE, "ETH sent not correct"); _mint(msg.sender, _quantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } function freeMintedCount(address owner) external view returns (uint256) { return _freeMintedCount[owner]; } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return tokenBaseUri; } function setBaseURI(string calldata _newBaseUri) external onlyOwner { tokenBaseUri = _newBaseUri; } function flipSale() external onlyOwner { paused = !paused; } function collectReserves() external onlyOwner { require(totalSupply() == 0, "Reserves already taken"); _mint(msg.sender, 100); } function withdraw() external onlyOwner { require( payable(owner()).send(address(this).balance), "Withdraw unsuccessful" ); } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"freeMintedCount","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":"uint256","name":"_quantity","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060600160405280603681526020016200313760369139600990805190602001906200003592919062000260565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200008392919062000260565b506001600b60006101000a81548160ff021916908315150217905550348015620000ac57600080fd5b506040518060400160405280600c81526020017f626967627261696e2e77746600000000000000000000000000000000000000008152506040518060400160405280600881526020017f424947425241494e00000000000000000000000000000000000000000000000081525081600290805190602001906200013192919062000260565b5080600390805190602001906200014a92919062000260565b506200015b6200018960201b60201c565b600081905550505062000183620001776200019260201b60201c565b6200019a60201b60201c565b62000375565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200026e9062000310565b90600052602060002090601f016020900481019282620002925760008555620002de565b82601f10620002ad57805160ff1916838001178555620002de565b82800160010185558215620002de579182015b82811115620002dd578251825591602001919060010190620002c0565b5b509050620002ed9190620002f1565b5090565b5b808211156200030c576000816000905550600101620002f2565b5090565b600060028204905060018216806200032957607f821691505b6020821081141562000340576200033f62000346565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612db280620003856000396000f3fe6080604052600436106101665760003560e01c806370a08231116100d1578063a0712d681161008a578063c668286211610064578063c6682862146104e1578063c87b56dd1461050c578063e985e9c514610549578063f2fde38b1461058657610166565b8063a0712d6814610473578063a22cb4651461048f578063b88d4fde146104b857610166565b806370a0823114610375578063715018a6146103b25780637ba5e621146103c95780638da5cb5b146103e057806395d89b411461040b578063981332351461043657610166565b806323b872dd1161012357806323b872dd1461027b5780633ccfd60b146102a457806342842e0e146102bb57806355f804b3146102e45780635c975abb1461030d5780636352211e1461033857610166565b806301ffc9a71461016b578063029877b6146101a857806306fdde03146101bf578063081812fc146101ea578063095ea7b31461022757806318160ddd14610250575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612185565b6105af565b60405161019f919061257b565b60405180910390f35b3480156101b457600080fd5b506101bd610641565b005b3480156101cb57600080fd5b506101d46106a0565b6040516101e19190612596565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c919061222c565b610732565b60405161021e9190612514565b60405180910390f35b34801561023357600080fd5b5061024e60048036038101906102499190612145565b6107ae565b005b34801561025c57600080fd5b506102656108ef565b60405161027291906126d8565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061202f565b610906565b005b3480156102b057600080fd5b506102b9610c2b565b005b3480156102c757600080fd5b506102e260048036038101906102dd919061202f565b610cb0565b005b3480156102f057600080fd5b5061030b600480360381019061030691906121df565b610cd0565b005b34801561031957600080fd5b50610322610cee565b60405161032f919061257b565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a919061222c565b610d01565b60405161036c9190612514565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190611fc2565b610d13565b6040516103a991906126d8565b60405180910390f35b3480156103be57600080fd5b506103c7610dcc565b005b3480156103d557600080fd5b506103de610de0565b005b3480156103ec57600080fd5b506103f5610e14565b6040516104029190612514565b60405180910390f35b34801561041757600080fd5b50610420610e3e565b60405161042d9190612596565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611fc2565b610ed0565b60405161046a91906126d8565b60405180910390f35b61048d6004803603810190610488919061222c565b610f19565b005b34801561049b57600080fd5b506104b660048036038101906104b19190612105565b611126565b005b3480156104c457600080fd5b506104df60048036038101906104da9190612082565b61129e565b005b3480156104ed57600080fd5b506104f6611311565b6040516105039190612596565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e919061222c565b61139f565b6040516105409190612596565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190611fef565b611449565b60405161057d919061257b565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190611fc2565b6114dd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610649611561565b60006106536108ef565b14610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90612698565b60405180910390fd5b61069e3360646115df565b565b6060600280546106af9061296c565b80601f01602080910402602001604051908101604052809291908181526020018280546106db9061296c565b80156107285780601f106106fd57610100808354040283529160200191610728565b820191906000526020600020905b81548152906001019060200180831161070b57829003601f168201915b5050505050905090565b600061073d826117b3565b610773576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b982610d01565b90508073ffffffffffffffffffffffffffffffffffffffff166107da611812565b73ffffffffffffffffffffffffffffffffffffffff161461083d5761080681610801611812565b611449565b61083c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108f961181a565b6001546000540303905090565b600061091182611823565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610978576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610984846118f1565b9150915061099a8187610995611812565b611913565b6109e6576109af866109aa611812565b611449565b6109e5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a4d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a5a8686866001611957565b8015610a6557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b3385610b0f88888761195d565b7c020000000000000000000000000000000000000000000000000000000017611985565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bbb576000600185019050600060046000838152602001908152602001600020541415610bb9576000548114610bb8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c2386868660016119b0565b505050505050565b610c33611561565b610c3b610e14565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906126b8565b60405180910390fd5b565b610ccb8383836040518060200160405280600081525061129e565b505050565b610cd8611561565b818160099190610ce9929190611df0565b505050565b600b60009054906101000a900460ff1681565b6000610d0c82611823565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610dd4611561565b610dde60006119b6565b565b610de8611561565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e4d9061296c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e799061296c565b8015610ec65780601f10610e9b57610100808354040283529160200191610ec6565b820191906000526020600020905b815481529060010190602001808311610ea957829003601f168201915b5050505050905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b60009054906101000a900460ff1615610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f60906125f8565b60405180910390fd5b6000610f736108ef565b90506127118282610f8491906127a1565b10610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb906125b8565b60405180910390fd5b60048210611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90612638565b60405180910390fd5b60008290506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156110c15760018411156110765760018461106f9190612882565b915061107b565b600091505b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6618838370f34000826110d49190612828565b341015611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d906125d8565b60405180910390fd5b61112033856115df565b50505050565b61112e611812565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611193576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111a0611812565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661124d611812565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611292919061257b565b60405180910390a35050565b6112a9848484610906565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461130b576112d484848484611a7c565b61130a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461131e9061296c565b80601f016020809104026020016040519081016040528092919081815260200182805461134a9061296c565b80156113975780601f1061136c57610100808354040283529160200191611397565b820191906000526020600020905b81548152906001019060200180831161137a57829003601f168201915b505050505081565b60606113aa826117b3565b6113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090612678565b60405180910390fd5b60006113f3611bdc565b905060008151116114135760405180602001604052806000815250611441565b8061141d84611c6e565b600a604051602001611431939291906124e3565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114e5611561565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612618565b60405180910390fd5b61155e816119b6565b50565b611569611dcf565b73ffffffffffffffffffffffffffffffffffffffff16611587610e14565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490612658565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561164c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611687576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116946000848385611957565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061170b836116fc600086600061195d565b61170585611dd7565b17611985565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061172f578060008190555050506117ae60008483856119b0565b505050565b6000816117be61181a565b111580156117cd575060005482105b801561180b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061183261181a565b116118ba576000548110156118b95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118b7575b60008114156118ad576004600083600190039350838152602001908152602001600020549050611882565b80925050506118ec565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611974868684611de7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611aa2611812565b8786866040518563ffffffff1660e01b8152600401611ac4949392919061252f565b602060405180830381600087803b158015611ade57600080fd5b505af1925050508015611b0f57506040513d601f19601f82011682018060405250810190611b0c91906121b2565b60015b611b89573d8060008114611b3f576040519150601f19603f3d011682016040523d82523d6000602084013e611b44565b606091505b50600081511415611b81576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611beb9061296c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c179061296c565b8015611c645780601f10611c3957610100808354040283529160200191611c64565b820191906000526020600020905b815481529060010190602001808311611c4757829003601f168201915b5050505050905090565b60606000821415611cb6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dca565b600082905060005b60008214611ce8578080611cd1906129cf565b915050600a82611ce191906127f7565b9150611cbe565b60008167ffffffffffffffff811115611d0457611d03612b05565b5b6040519080825280601f01601f191660200182016040528015611d365781602001600182028036833780820191505090505b5090505b60008514611dc357600182611d4f9190612882565b9150600a85611d5e9190612a18565b6030611d6a91906127a1565b60f81b818381518110611d8057611d7f612ad6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dbc91906127f7565b9450611d3a565b8093505050505b919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611dfc9061296c565b90600052602060002090601f016020900481019282611e1e5760008555611e65565b82601f10611e3757803560ff1916838001178555611e65565b82800160010185558215611e65579182015b82811115611e64578235825591602001919060010190611e49565b5b509050611e729190611e76565b5090565b5b80821115611e8f576000816000905550600101611e77565b5090565b6000611ea6611ea184612718565b6126f3565b905082815260208101848484011115611ec257611ec1612b43565b5b611ecd84828561292a565b509392505050565b600081359050611ee481612d20565b92915050565b600081359050611ef981612d37565b92915050565b600081359050611f0e81612d4e565b92915050565b600081519050611f2381612d4e565b92915050565b600082601f830112611f3e57611f3d612b39565b5b8135611f4e848260208601611e93565b91505092915050565b60008083601f840112611f6d57611f6c612b39565b5b8235905067ffffffffffffffff811115611f8a57611f89612b34565b5b602083019150836001820283011115611fa657611fa5612b3e565b5b9250929050565b600081359050611fbc81612d65565b92915050565b600060208284031215611fd857611fd7612b4d565b5b6000611fe684828501611ed5565b91505092915050565b6000806040838503121561200657612005612b4d565b5b600061201485828601611ed5565b925050602061202585828601611ed5565b9150509250929050565b60008060006060848603121561204857612047612b4d565b5b600061205686828701611ed5565b935050602061206786828701611ed5565b925050604061207886828701611fad565b9150509250925092565b6000806000806080858703121561209c5761209b612b4d565b5b60006120aa87828801611ed5565b94505060206120bb87828801611ed5565b93505060406120cc87828801611fad565b925050606085013567ffffffffffffffff8111156120ed576120ec612b48565b5b6120f987828801611f29565b91505092959194509250565b6000806040838503121561211c5761211b612b4d565b5b600061212a85828601611ed5565b925050602061213b85828601611eea565b9150509250929050565b6000806040838503121561215c5761215b612b4d565b5b600061216a85828601611ed5565b925050602061217b85828601611fad565b9150509250929050565b60006020828403121561219b5761219a612b4d565b5b60006121a984828501611eff565b91505092915050565b6000602082840312156121c8576121c7612b4d565b5b60006121d684828501611f14565b91505092915050565b600080602083850312156121f6576121f5612b4d565b5b600083013567ffffffffffffffff81111561221457612213612b48565b5b61222085828601611f57565b92509250509250929050565b60006020828403121561224257612241612b4d565b5b600061225084828501611fad565b91505092915050565b612262816128b6565b82525050565b612271816128c8565b82525050565b60006122828261275e565b61228c8185612774565b935061229c818560208601612939565b6122a581612b52565b840191505092915050565b60006122bb82612769565b6122c58185612785565b93506122d5818560208601612939565b6122de81612b52565b840191505092915050565b60006122f482612769565b6122fe8185612796565b935061230e818560208601612939565b80840191505092915050565b600081546123278161296c565b6123318186612796565b9450600182166000811461234c576001811461235d57612390565b60ff19831686528186019350612390565b61236685612749565b60005b8381101561238857815481890152600182019150602081019050612369565b838801955050505b50505092915050565b60006123a6600e83612785565b91506123b182612b63565b602082019050919050565b60006123c9601483612785565b91506123d482612b8c565b602082019050919050565b60006123ec600e83612785565b91506123f782612bb5565b602082019050919050565b600061240f602683612785565b915061241a82612bde565b604082019050919050565b6000612432601283612785565b915061243d82612c2d565b602082019050919050565b6000612455602083612785565b915061246082612c56565b602082019050919050565b6000612478602f83612785565b915061248382612c7f565b604082019050919050565b600061249b601683612785565b91506124a682612cce565b602082019050919050565b60006124be601583612785565b91506124c982612cf7565b602082019050919050565b6124dd81612920565b82525050565b60006124ef82866122e9565b91506124fb82856122e9565b9150612507828461231a565b9150819050949350505050565b60006020820190506125296000830184612259565b92915050565b60006080820190506125446000830187612259565b6125516020830186612259565b61255e60408301856124d4565b81810360608301526125708184612277565b905095945050505050565b60006020820190506125906000830184612268565b92915050565b600060208201905081810360008301526125b081846122b0565b905092915050565b600060208201905081810360008301526125d181612399565b9050919050565b600060208201905081810360008301526125f1816123bc565b9050919050565b60006020820190508181036000830152612611816123df565b9050919050565b6000602082019050818103600083015261263181612402565b9050919050565b6000602082019050818103600083015261265181612425565b9050919050565b6000602082019050818103600083015261267181612448565b9050919050565b600060208201905081810360008301526126918161246b565b9050919050565b600060208201905081810360008301526126b18161248e565b9050919050565b600060208201905081810360008301526126d1816124b1565b9050919050565b60006020820190506126ed60008301846124d4565b92915050565b60006126fd61270e565b9050612709828261299e565b919050565b6000604051905090565b600067ffffffffffffffff82111561273357612732612b05565b5b61273c82612b52565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127ac82612920565b91506127b783612920565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127ec576127eb612a49565b5b828201905092915050565b600061280282612920565b915061280d83612920565b92508261281d5761281c612a78565b5b828204905092915050565b600061283382612920565b915061283e83612920565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561287757612876612a49565b5b828202905092915050565b600061288d82612920565b915061289883612920565b9250828210156128ab576128aa612a49565b5b828203905092915050565b60006128c182612900565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561295757808201518184015260208101905061293c565b83811115612966576000848401525b50505050565b6000600282049050600182168061298457607f821691505b6020821081141561299857612997612aa7565b5b50919050565b6129a782612b52565b810181811067ffffffffffffffff821117156129c6576129c5612b05565b5b80604052505050565b60006129da82612920565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a0d57612a0c612a49565b5b600182019050919050565b6000612a2382612920565b9150612a2e83612920565b925082612a3e57612a3d612a78565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4554482073656e74206e6f7420636f7272656374000000000000000000000000600082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f526573657276657320616c72656164792074616b656e00000000000000000000600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b612d29816128b6565b8114612d3457600080fd5b50565b612d40816128c8565b8114612d4b57600080fd5b50565b612d57816128d4565b8114612d6257600080fd5b50565b612d6e81612920565b8114612d7957600080fd5b5056fea264697066735822122065d3fa1fa1752eea13481d5a372441f6287bf8c8f5cc51d95faf7b5526ab84a164736f6c63430008070033697066733a2f2f516d65697a5076676f73674e623439665952317a35366d416276754d65415a686f79726d6336585a445234565a362f
Deployed Bytecode
0x6080604052600436106101665760003560e01c806370a08231116100d1578063a0712d681161008a578063c668286211610064578063c6682862146104e1578063c87b56dd1461050c578063e985e9c514610549578063f2fde38b1461058657610166565b8063a0712d6814610473578063a22cb4651461048f578063b88d4fde146104b857610166565b806370a0823114610375578063715018a6146103b25780637ba5e621146103c95780638da5cb5b146103e057806395d89b411461040b578063981332351461043657610166565b806323b872dd1161012357806323b872dd1461027b5780633ccfd60b146102a457806342842e0e146102bb57806355f804b3146102e45780635c975abb1461030d5780636352211e1461033857610166565b806301ffc9a71461016b578063029877b6146101a857806306fdde03146101bf578063081812fc146101ea578063095ea7b31461022757806318160ddd14610250575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612185565b6105af565b60405161019f919061257b565b60405180910390f35b3480156101b457600080fd5b506101bd610641565b005b3480156101cb57600080fd5b506101d46106a0565b6040516101e19190612596565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c919061222c565b610732565b60405161021e9190612514565b60405180910390f35b34801561023357600080fd5b5061024e60048036038101906102499190612145565b6107ae565b005b34801561025c57600080fd5b506102656108ef565b60405161027291906126d8565b60405180910390f35b34801561028757600080fd5b506102a2600480360381019061029d919061202f565b610906565b005b3480156102b057600080fd5b506102b9610c2b565b005b3480156102c757600080fd5b506102e260048036038101906102dd919061202f565b610cb0565b005b3480156102f057600080fd5b5061030b600480360381019061030691906121df565b610cd0565b005b34801561031957600080fd5b50610322610cee565b60405161032f919061257b565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a919061222c565b610d01565b60405161036c9190612514565b60405180910390f35b34801561038157600080fd5b5061039c60048036038101906103979190611fc2565b610d13565b6040516103a991906126d8565b60405180910390f35b3480156103be57600080fd5b506103c7610dcc565b005b3480156103d557600080fd5b506103de610de0565b005b3480156103ec57600080fd5b506103f5610e14565b6040516104029190612514565b60405180910390f35b34801561041757600080fd5b50610420610e3e565b60405161042d9190612596565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190611fc2565b610ed0565b60405161046a91906126d8565b60405180910390f35b61048d6004803603810190610488919061222c565b610f19565b005b34801561049b57600080fd5b506104b660048036038101906104b19190612105565b611126565b005b3480156104c457600080fd5b506104df60048036038101906104da9190612082565b61129e565b005b3480156104ed57600080fd5b506104f6611311565b6040516105039190612596565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e919061222c565b61139f565b6040516105409190612596565b60405180910390f35b34801561055557600080fd5b50610570600480360381019061056b9190611fef565b611449565b60405161057d919061257b565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190611fc2565b6114dd565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061060a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061063a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610649611561565b60006106536108ef565b14610693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068a90612698565b60405180910390fd5b61069e3360646115df565b565b6060600280546106af9061296c565b80601f01602080910402602001604051908101604052809291908181526020018280546106db9061296c565b80156107285780601f106106fd57610100808354040283529160200191610728565b820191906000526020600020905b81548152906001019060200180831161070b57829003601f168201915b5050505050905090565b600061073d826117b3565b610773576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107b982610d01565b90508073ffffffffffffffffffffffffffffffffffffffff166107da611812565b73ffffffffffffffffffffffffffffffffffffffff161461083d5761080681610801611812565b611449565b61083c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006108f961181a565b6001546000540303905090565b600061091182611823565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610978576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610984846118f1565b9150915061099a8187610995611812565b611913565b6109e6576109af866109aa611812565b611449565b6109e5576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a4d576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a5a8686866001611957565b8015610a6557600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610b3385610b0f88888761195d565b7c020000000000000000000000000000000000000000000000000000000017611985565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610bbb576000600185019050600060046000838152602001908152602001600020541415610bb9576000548114610bb8578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610c2386868660016119b0565b505050505050565b610c33611561565b610c3b610e14565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906126b8565b60405180910390fd5b565b610ccb8383836040518060200160405280600081525061129e565b505050565b610cd8611561565b818160099190610ce9929190611df0565b505050565b600b60009054906101000a900460ff1681565b6000610d0c82611823565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d7b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610dd4611561565b610dde60006119b6565b565b610de8611561565b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e4d9061296c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e799061296c565b8015610ec65780601f10610e9b57610100808354040283529160200191610ec6565b820191906000526020600020905b815481529060010190602001808311610ea957829003601f168201915b5050505050905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600b60009054906101000a900460ff1615610f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f60906125f8565b60405180910390fd5b6000610f736108ef565b90506127118282610f8491906127a1565b10610fc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbb906125b8565b60405180910390fd5b60048210611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe90612638565b60405180910390fd5b60008290506000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060018110156110c15760018411156110765760018461106f9190612882565b915061107b565b600091505b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b6618838370f34000826110d49190612828565b341015611116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110d906125d8565b60405180910390fd5b61112033856115df565b50505050565b61112e611812565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611193576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111a0611812565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661124d611812565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611292919061257b565b60405180910390a35050565b6112a9848484610906565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461130b576112d484848484611a7c565b61130a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600a805461131e9061296c565b80601f016020809104026020016040519081016040528092919081815260200182805461134a9061296c565b80156113975780601f1061136c57610100808354040283529160200191611397565b820191906000526020600020905b81548152906001019060200180831161137a57829003601f168201915b505050505081565b60606113aa826117b3565b6113e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e090612678565b60405180910390fd5b60006113f3611bdc565b905060008151116114135760405180602001604052806000815250611441565b8061141d84611c6e565b600a604051602001611431939291906124e3565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6114e5611561565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90612618565b60405180910390fd5b61155e816119b6565b50565b611569611dcf565b73ffffffffffffffffffffffffffffffffffffffff16611587610e14565b73ffffffffffffffffffffffffffffffffffffffff16146115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490612658565b60405180910390fd5b565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561164c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611687576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116946000848385611957565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061170b836116fc600086600061195d565b61170585611dd7565b17611985565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061172f578060008190555050506117ae60008483856119b0565b505050565b6000816117be61181a565b111580156117cd575060005482105b801561180b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061183261181a565b116118ba576000548110156118b95760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156118b7575b60008114156118ad576004600083600190039350838152602001908152602001600020549050611882565b80925050506118ec565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611974868684611de7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611aa2611812565b8786866040518563ffffffff1660e01b8152600401611ac4949392919061252f565b602060405180830381600087803b158015611ade57600080fd5b505af1925050508015611b0f57506040513d601f19601f82011682018060405250810190611b0c91906121b2565b60015b611b89573d8060008114611b3f576040519150601f19603f3d011682016040523d82523d6000602084013e611b44565b606091505b50600081511415611b81576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611beb9061296c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c179061296c565b8015611c645780601f10611c3957610100808354040283529160200191611c64565b820191906000526020600020905b815481529060010190602001808311611c4757829003601f168201915b5050505050905090565b60606000821415611cb6576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611dca565b600082905060005b60008214611ce8578080611cd1906129cf565b915050600a82611ce191906127f7565b9150611cbe565b60008167ffffffffffffffff811115611d0457611d03612b05565b5b6040519080825280601f01601f191660200182016040528015611d365781602001600182028036833780820191505090505b5090505b60008514611dc357600182611d4f9190612882565b9150600a85611d5e9190612a18565b6030611d6a91906127a1565b60f81b818381518110611d8057611d7f612ad6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611dbc91906127f7565b9450611d3a565b8093505050505b919050565b600033905090565b60006001821460e11b9050919050565b60009392505050565b828054611dfc9061296c565b90600052602060002090601f016020900481019282611e1e5760008555611e65565b82601f10611e3757803560ff1916838001178555611e65565b82800160010185558215611e65579182015b82811115611e64578235825591602001919060010190611e49565b5b509050611e729190611e76565b5090565b5b80821115611e8f576000816000905550600101611e77565b5090565b6000611ea6611ea184612718565b6126f3565b905082815260208101848484011115611ec257611ec1612b43565b5b611ecd84828561292a565b509392505050565b600081359050611ee481612d20565b92915050565b600081359050611ef981612d37565b92915050565b600081359050611f0e81612d4e565b92915050565b600081519050611f2381612d4e565b92915050565b600082601f830112611f3e57611f3d612b39565b5b8135611f4e848260208601611e93565b91505092915050565b60008083601f840112611f6d57611f6c612b39565b5b8235905067ffffffffffffffff811115611f8a57611f89612b34565b5b602083019150836001820283011115611fa657611fa5612b3e565b5b9250929050565b600081359050611fbc81612d65565b92915050565b600060208284031215611fd857611fd7612b4d565b5b6000611fe684828501611ed5565b91505092915050565b6000806040838503121561200657612005612b4d565b5b600061201485828601611ed5565b925050602061202585828601611ed5565b9150509250929050565b60008060006060848603121561204857612047612b4d565b5b600061205686828701611ed5565b935050602061206786828701611ed5565b925050604061207886828701611fad565b9150509250925092565b6000806000806080858703121561209c5761209b612b4d565b5b60006120aa87828801611ed5565b94505060206120bb87828801611ed5565b93505060406120cc87828801611fad565b925050606085013567ffffffffffffffff8111156120ed576120ec612b48565b5b6120f987828801611f29565b91505092959194509250565b6000806040838503121561211c5761211b612b4d565b5b600061212a85828601611ed5565b925050602061213b85828601611eea565b9150509250929050565b6000806040838503121561215c5761215b612b4d565b5b600061216a85828601611ed5565b925050602061217b85828601611fad565b9150509250929050565b60006020828403121561219b5761219a612b4d565b5b60006121a984828501611eff565b91505092915050565b6000602082840312156121c8576121c7612b4d565b5b60006121d684828501611f14565b91505092915050565b600080602083850312156121f6576121f5612b4d565b5b600083013567ffffffffffffffff81111561221457612213612b48565b5b61222085828601611f57565b92509250509250929050565b60006020828403121561224257612241612b4d565b5b600061225084828501611fad565b91505092915050565b612262816128b6565b82525050565b612271816128c8565b82525050565b60006122828261275e565b61228c8185612774565b935061229c818560208601612939565b6122a581612b52565b840191505092915050565b60006122bb82612769565b6122c58185612785565b93506122d5818560208601612939565b6122de81612b52565b840191505092915050565b60006122f482612769565b6122fe8185612796565b935061230e818560208601612939565b80840191505092915050565b600081546123278161296c565b6123318186612796565b9450600182166000811461234c576001811461235d57612390565b60ff19831686528186019350612390565b61236685612749565b60005b8381101561238857815481890152600182019150602081019050612369565b838801955050505b50505092915050565b60006123a6600e83612785565b91506123b182612b63565b602082019050919050565b60006123c9601483612785565b91506123d482612b8c565b602082019050919050565b60006123ec600e83612785565b91506123f782612bb5565b602082019050919050565b600061240f602683612785565b915061241a82612bde565b604082019050919050565b6000612432601283612785565b915061243d82612c2d565b602082019050919050565b6000612455602083612785565b915061246082612c56565b602082019050919050565b6000612478602f83612785565b915061248382612c7f565b604082019050919050565b600061249b601683612785565b91506124a682612cce565b602082019050919050565b60006124be601583612785565b91506124c982612cf7565b602082019050919050565b6124dd81612920565b82525050565b60006124ef82866122e9565b91506124fb82856122e9565b9150612507828461231a565b9150819050949350505050565b60006020820190506125296000830184612259565b92915050565b60006080820190506125446000830187612259565b6125516020830186612259565b61255e60408301856124d4565b81810360608301526125708184612277565b905095945050505050565b60006020820190506125906000830184612268565b92915050565b600060208201905081810360008301526125b081846122b0565b905092915050565b600060208201905081810360008301526125d181612399565b9050919050565b600060208201905081810360008301526125f1816123bc565b9050919050565b60006020820190508181036000830152612611816123df565b9050919050565b6000602082019050818103600083015261263181612402565b9050919050565b6000602082019050818103600083015261265181612425565b9050919050565b6000602082019050818103600083015261267181612448565b9050919050565b600060208201905081810360008301526126918161246b565b9050919050565b600060208201905081810360008301526126b18161248e565b9050919050565b600060208201905081810360008301526126d1816124b1565b9050919050565b60006020820190506126ed60008301846124d4565b92915050565b60006126fd61270e565b9050612709828261299e565b919050565b6000604051905090565b600067ffffffffffffffff82111561273357612732612b05565b5b61273c82612b52565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006127ac82612920565b91506127b783612920565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156127ec576127eb612a49565b5b828201905092915050565b600061280282612920565b915061280d83612920565b92508261281d5761281c612a78565b5b828204905092915050565b600061283382612920565b915061283e83612920565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561287757612876612a49565b5b828202905092915050565b600061288d82612920565b915061289883612920565b9250828210156128ab576128aa612a49565b5b828203905092915050565b60006128c182612900565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561295757808201518184015260208101905061293c565b83811115612966576000848401525b50505050565b6000600282049050600182168061298457607f821691505b6020821081141561299857612997612aa7565b5b50919050565b6129a782612b52565b810181811067ffffffffffffffff821117156129c6576129c5612b05565b5b80604052505050565b60006129da82612920565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612a0d57612a0c612a49565b5b600182019050919050565b6000612a2382612920565b9150612a2e83612920565b925082612a3e57612a3d612a78565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4578636565647320737570706c79000000000000000000000000000000000000600082015250565b7f4554482073656e74206e6f7420636f7272656374000000000000000000000000600082015250565b7f4d696e74696e6720706175736564000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d6178207065722074780000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f526573657276657320616c72656164792074616b656e00000000000000000000600082015250565b7f576974686472617720756e7375636365737366756c0000000000000000000000600082015250565b612d29816128b6565b8114612d3457600080fd5b50565b612d40816128c8565b8114612d4b57600080fd5b50565b612d57816128d4565b8114612d6257600080fd5b50565b612d6e81612920565b8114612d7957600080fd5b5056fea264697066735822122065d3fa1fa1752eea13481d5a372441f6287bf8c8f5cc51d95faf7b5526ab84a164736f6c63430008070033
Deployed Bytecode Sourcemap
50903:2551:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20682:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53151:143;;;;;;;;;;;;;:::i;:::-;;26329:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28275:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27823:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19736:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37540:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53300:151;;;;;;;;;;;;;:::i;:::-;;29165:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52964:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51260:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26118:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21361:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;53077:68;;;;;;;;;;;;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26498:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52645:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51409:722;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28551:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29421:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51216:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52137:502;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28930:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20682:615;20767:4;21082:10;21067:25;;:11;:25;;;;:102;;;;21159:10;21144:25;;:11;:25;;;;21067:102;:179;;;;21236:10;21221:25;;:11;:25;;;;21067:179;21047:199;;20682:615;;;:::o;53151:143::-;4511:13;:11;:13::i;:::-;53229:1:::1;53212:13;:11;:13::i;:::-;:18;53204:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;53266:22;53272:10;53284:3;53266:5;:22::i;:::-;53151:143::o:0;26329:100::-;26383:13;26416:5;26409:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26329:100;:::o;28275:204::-;28343:7;28368:16;28376:7;28368;:16::i;:::-;28363:64;;28393:34;;;;;;;;;;;;;;28363:64;28447:15;:24;28463:7;28447:24;;;;;;;;;;;;;;;;;;;;;28440:31;;28275:204;;;:::o;27823:386::-;27896:13;27912:16;27920:7;27912;:16::i;:::-;27896:32;;27968:5;27945:28;;:19;:17;:19::i;:::-;:28;;;27941:175;;27993:44;28010:5;28017:19;:17;:19::i;:::-;27993:16;:44::i;:::-;27988:128;;28065:35;;;;;;;;;;;;;;27988:128;27941:175;28155:2;28128:15;:24;28144:7;28128:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;28193:7;28189:2;28173:28;;28182:5;28173:28;;;;;;;;;;;;27885:324;27823:386;;:::o;19736:315::-;19789:7;20017:15;:13;:15::i;:::-;20002:12;;19986:13;;:28;:46;19979:53;;19736:315;:::o;37540:2800::-;37674:27;37704;37723:7;37704:18;:27::i;:::-;37674:57;;37789:4;37748:45;;37764:19;37748:45;;;37744:86;;37802:28;;;;;;;;;;;;;;37744:86;37844:27;37873:23;37900:28;37920:7;37900:19;:28::i;:::-;37843:85;;;;38028:62;38047:15;38064:4;38070:19;:17;:19::i;:::-;38028:18;:62::i;:::-;38023:174;;38110:43;38127:4;38133:19;:17;:19::i;:::-;38110:16;:43::i;:::-;38105:92;;38162:35;;;;;;;;;;;;;;38105:92;38023:174;38228:1;38214:16;;:2;:16;;;38210:52;;;38239:23;;;;;;;;;;;;;;38210:52;38275:43;38297:4;38303:2;38307:7;38316:1;38275:21;:43::i;:::-;38411:15;38408:160;;;38551:1;38530:19;38523:30;38408:160;38946:18;:24;38965:4;38946:24;;;;;;;;;;;;;;;;38944:26;;;;;;;;;;;;39015:18;:22;39034:2;39015:22;;;;;;;;;;;;;;;;39013:24;;;;;;;;;;;39337:145;39374:2;39422:45;39437:4;39443:2;39447:19;39422:14;:45::i;:::-;16964:8;39395:72;39337:18;:145::i;:::-;39308:17;:26;39326:7;39308:26;;;;;;;;;;;:174;;;;39652:1;16964:8;39602:19;:46;:51;39598:626;;;39674:19;39706:1;39696:7;:11;39674:33;;39863:1;39829:17;:30;39847:11;39829:30;;;;;;;;;;;;:35;39825:384;;;39967:13;;39952:11;:28;39948:242;;40147:19;40114:17;:30;40132:11;40114:30;;;;;;;;;;;:52;;;;39948:242;39825:384;39655:569;39598:626;40271:7;40267:2;40252:27;;40261:4;40252:27;;;;;;;;;;;;40290:42;40311:4;40317:2;40321:7;40330:1;40290:20;:42::i;:::-;37663:2677;;;37540:2800;;;:::o;53300:151::-;4511:13;:11;:13::i;:::-;53370:7:::1;:5;:7::i;:::-;53362:21;;:44;53384:21;53362:44;;;;;;;;;;;;;;;;;;;;;;;53346:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;53300:151::o:0;29165:185::-;29303:39;29320:4;29326:2;29330:7;29303:39;;;;;;;;;;;;:16;:39::i;:::-;29165:185;;;:::o;52964:107::-;4511:13;:11;:13::i;:::-;53054:11:::1;;53039:12;:26;;;;;;;:::i;:::-;;52964:107:::0;;:::o;51260:25::-;;;;;;;;;;;;;:::o;26118:144::-;26182:7;26225:27;26244:7;26225:18;:27::i;:::-;26202:52;;26118:144;;;:::o;21361:224::-;21425:7;21466:1;21449:19;;:5;:19;;;21445:60;;;21477:28;;;;;;;;;;;;;;21445:60;15916:13;21523:18;:25;21542:5;21523:25;;;;;;;;;;;;;;;;:54;21516:61;;21361:224;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;53077:68::-;4511:13;:11;:13::i;:::-;53133:6:::1;;;;;;;;;;;53132:7;53123:6;;:16;;;;;;;;;;;;;;;;;;53077:68::o:0;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;26498:104::-;26554:13;26587:7;26580:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26498:104;:::o;52645:115::-;52708:7;52731:16;:23;52748:5;52731:23;;;;;;;;;;;;;;;;52724:30;;52645:115;;;:::o;51409:722::-;51475:6;;;;;;;;;;;51474:7;51466:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;51509:20;51532:13;:11;:13::i;:::-;51509:36;;51035:5;51577:9;51562:12;:24;;;;:::i;:::-;:46;51554:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51093:1;51642:9;:40;51634:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;51714:19;51736:9;51714:31;;51752:21;51776:16;:28;51793:10;51776:28;;;;;;;;;;;;;;;;51752:52;;51833:1;51817:13;:17;51813:191;;;51861:1;51849:9;:13;51845:109;;;51901:1;51889:9;:13;;;;:::i;:::-;51875:27;;51845:109;;;51943:1;51929:15;;51845:109;51995:1;51964:16;:28;51981:10;51964:28;;;;;;;;;;;;;;;:32;;;;51813:191;50979:12;52033:11;:30;;;;:::i;:::-;52020:9;:43;;52012:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52097:28;52103:10;52115:9;52097:5;:28::i;:::-;51459:672;;;51409:722;:::o;28551:308::-;28662:19;:17;:19::i;:::-;28650:31;;:8;:31;;;28646:61;;;28690:17;;;;;;;;;;;;;;28646:61;28772:8;28720:18;:39;28739:19;:17;:19::i;:::-;28720:39;;;;;;;;;;;;;;;:49;28760:8;28720:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;28832:8;28796:55;;28811:19;:17;:19::i;:::-;28796:55;;;28842:8;28796:55;;;;;;:::i;:::-;;;;;;;;28551:308;;:::o;29421:399::-;29588:31;29601:4;29607:2;29611:7;29588:12;:31::i;:::-;29652:1;29634:2;:14;;;:19;29630:183;;29673:56;29704:4;29710:2;29714:7;29723:5;29673:30;:56::i;:::-;29668:145;;29757:40;;;;;;;;;;;;;;29668:145;29630:183;29421:399;;;;:::o;51216:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52137:502::-;52255:13;52308:16;52316:7;52308;:16::i;:::-;52286:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;52410:28;52441:10;:8;:10::i;:::-;52410:41;;52513:1;52488:14;52482:28;:32;:149;;;;;;;;;;;;;;;;;52558:14;52574:18;:7;:16;:18::i;:::-;52594:13;52541:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;52482:149;52462:169;;;52137:502;;;:::o;28930:164::-;29027:4;29051:18;:25;29070:5;29051:25;;;;;;;;;;;;;;;:35;29077:8;29051:35;;;;;;;;;;;;;;;;;;;;;;;;;29044:42;;28930:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;31906:1529::-;31971:20;31994:13;;31971:36;;32036:1;32022:16;;:2;:16;;;32018:48;;;32047:19;;;;;;;;;;;;;;32018:48;32093:1;32081:8;:13;32077:44;;;32103:18;;;;;;;;;;;;;;32077:44;32134:61;32164:1;32168:2;32172:12;32186:8;32134:21;:61::i;:::-;32677:1;16053:2;32648:1;:25;;32647:31;32635:8;:44;32609:18;:22;32628:2;32609:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;32956:139;32993:2;33047:33;33070:1;33074:2;33078:1;33047:14;:33::i;:::-;33014:30;33035:8;33014:20;:30::i;:::-;:66;32956:18;:139::i;:::-;32922:17;:31;32940:12;32922:31;;;;;;;;;;;:173;;;;33112:15;33130:12;33112:30;;33157:11;33186:8;33171:12;:23;33157:37;;33209:101;33261:9;;;;;;33257:2;33236:35;;33253:1;33236:35;;;;;;;;;;;;33305:3;33295:7;:13;33209:101;;33342:3;33326:13;:19;;;;32383:974;;33367:60;33396:1;33400:2;33404:12;33418:8;33367:20;:60::i;:::-;31960:1475;31906:1529;;:::o;30075:273::-;30132:4;30188:7;30169:15;:13;:15::i;:::-;:26;;:66;;;;;30222:13;;30212:7;:23;30169:66;:152;;;;;30320:1;16686:8;30273:17;:26;30291:7;30273:26;;;;;;;;;;;;:43;:48;30169:152;30149:172;;30075:273;;;:::o;48636:105::-;48696:7;48723:10;48716:17;;48636:105;:::o;52766:87::-;52823:7;52846:1;52839:8;;52766:87;:::o;23035:1129::-;23102:7;23122:12;23137:7;23122:22;;23205:4;23186:15;:13;:15::i;:::-;:23;23182:915;;23239:13;;23232:4;:20;23228:869;;;23277:14;23294:17;:23;23312:4;23294:23;;;;;;;;;;;;23277:40;;23410:1;16686:8;23383:6;:23;:28;23379:699;;;23902:113;23919:1;23909:6;:11;23902:113;;;23962:17;:25;23980:6;;;;;;;23962:25;;;;;;;;;;;;23953:34;;23902:113;;;24048:6;24041:13;;;;;;23379:699;23254:843;23228:869;23182:915;24125:31;;;;;;;;;;;;;;23035:1129;;;;:::o;35876:652::-;35971:27;36000:23;36041:53;36097:15;36041:71;;36283:7;36277:4;36270:21;36318:22;36312:4;36305:36;36394:4;36388;36378:21;36355:44;;36490:19;36484:26;36465:45;;36221:300;35876:652;;;:::o;36641:645::-;36783:11;36945:15;36939:4;36935:26;36927:34;;37104:15;37093:9;37089:31;37076:44;;37251:15;37240:9;37237:30;37230:4;37219:9;37216:19;37213:55;37203:65;;36641:645;;;;;:::o;47469:159::-;;;;;:::o;45781:309::-;45916:7;45936:16;17087:3;45962:19;:40;;45936:67;;17087:3;46029:31;46040:4;46046:2;46050:9;46029:10;:31::i;:::-;46021:40;;:61;;46014:68;;;45781:309;;;;;:::o;25609:447::-;25689:14;25857:15;25850:5;25846:27;25837:36;;26031:5;26017:11;25993:22;25989:40;25986:51;25979:5;25976:62;25966:72;;25609:447;;;;:::o;48287:158::-;;;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;44291:716::-;44454:4;44500:2;44475:45;;;44521:19;:17;:19::i;:::-;44542:4;44548:7;44557:5;44475:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44471:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44775:1;44758:6;:13;:18;44754:235;;;44804:40;;;;;;;;;;;;;;44754:235;44947:6;44941:13;44932:6;44928:2;44924:15;44917:38;44471:529;44644:54;;;44634:64;;;:6;:64;;;;44627:71;;;44291:716;;;;;;:::o;52859:99::-;52911:13;52940:12;52933:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52859:99;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;27439:322::-;27509:14;27740:1;27730:8;27727:15;27702:23;27698:45;27688:55;;27439:322;;;:::o;46666:147::-;46803:6;46666:147;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8355:845::-;8458:3;8495:5;8489:12;8524:36;8550:9;8524:36;:::i;:::-;8576:89;8658:6;8653:3;8576:89;:::i;:::-;8569:96;;8696:1;8685:9;8681:17;8712:1;8707:137;;;;8858:1;8853:341;;;;8674:520;;8707:137;8791:4;8787:9;8776;8772:25;8767:3;8760:38;8827:6;8822:3;8818:16;8811:23;;8707:137;;8853:341;8920:38;8952:5;8920:38;:::i;:::-;8980:1;8994:154;9008:6;9005:1;9002:13;8994:154;;;9082:7;9076:14;9072:1;9067:3;9063:11;9056:35;9132:1;9123:7;9119:15;9108:26;;9030:4;9027:1;9023:12;9018:17;;8994:154;;;9177:6;9172:3;9168:16;9161:23;;8860:334;;8674:520;;8462:738;;8355:845;;;;:::o;9206:366::-;9348:3;9369:67;9433:2;9428:3;9369:67;:::i;:::-;9362:74;;9445:93;9534:3;9445:93;:::i;:::-;9563:2;9558:3;9554:12;9547:19;;9206:366;;;:::o;9578:::-;9720:3;9741:67;9805:2;9800:3;9741:67;:::i;:::-;9734:74;;9817:93;9906:3;9817:93;:::i;:::-;9935:2;9930:3;9926:12;9919:19;;9578:366;;;:::o;9950:::-;10092:3;10113:67;10177:2;10172:3;10113:67;:::i;:::-;10106:74;;10189:93;10278:3;10189:93;:::i;:::-;10307:2;10302:3;10298:12;10291:19;;9950:366;;;:::o;10322:::-;10464:3;10485:67;10549:2;10544:3;10485:67;:::i;:::-;10478:74;;10561:93;10650:3;10561:93;:::i;:::-;10679:2;10674:3;10670:12;10663:19;;10322:366;;;:::o;10694:::-;10836:3;10857:67;10921:2;10916:3;10857:67;:::i;:::-;10850:74;;10933:93;11022:3;10933:93;:::i;:::-;11051:2;11046:3;11042:12;11035:19;;10694:366;;;:::o;11066:::-;11208:3;11229:67;11293:2;11288:3;11229:67;:::i;:::-;11222:74;;11305:93;11394:3;11305:93;:::i;:::-;11423:2;11418:3;11414:12;11407:19;;11066:366;;;:::o;11438:::-;11580:3;11601:67;11665:2;11660:3;11601:67;:::i;:::-;11594:74;;11677:93;11766:3;11677:93;:::i;:::-;11795:2;11790:3;11786:12;11779:19;;11438:366;;;:::o;11810:::-;11952:3;11973:67;12037:2;12032:3;11973:67;:::i;:::-;11966:74;;12049:93;12138:3;12049:93;:::i;:::-;12167:2;12162:3;12158:12;12151:19;;11810:366;;;:::o;12182:::-;12324:3;12345:67;12409:2;12404:3;12345:67;:::i;:::-;12338:74;;12421:93;12510:3;12421:93;:::i;:::-;12539:2;12534:3;12530:12;12523:19;;12182:366;;;:::o;12554:118::-;12641:24;12659:5;12641:24;:::i;:::-;12636:3;12629:37;12554:118;;:::o;12678:589::-;12903:3;12925:95;13016:3;13007:6;12925:95;:::i;:::-;12918:102;;13037:95;13128:3;13119:6;13037:95;:::i;:::-;13030:102;;13149:92;13237:3;13228:6;13149:92;:::i;:::-;13142:99;;13258:3;13251:10;;12678:589;;;;;;:::o;13273:222::-;13366:4;13404:2;13393:9;13389:18;13381:26;;13417:71;13485:1;13474:9;13470:17;13461:6;13417:71;:::i;:::-;13273:222;;;;:::o;13501:640::-;13696:4;13734:3;13723:9;13719:19;13711:27;;13748:71;13816:1;13805:9;13801:17;13792:6;13748:71;:::i;:::-;13829:72;13897:2;13886:9;13882:18;13873:6;13829:72;:::i;:::-;13911;13979:2;13968:9;13964:18;13955:6;13911:72;:::i;:::-;14030:9;14024:4;14020:20;14015:2;14004:9;14000:18;13993:48;14058:76;14129:4;14120:6;14058:76;:::i;:::-;14050:84;;13501:640;;;;;;;:::o;14147:210::-;14234:4;14272:2;14261:9;14257:18;14249:26;;14285:65;14347:1;14336:9;14332:17;14323:6;14285:65;:::i;:::-;14147:210;;;;:::o;14363:313::-;14476:4;14514:2;14503:9;14499:18;14491:26;;14563:9;14557:4;14553:20;14549:1;14538:9;14534:17;14527:47;14591:78;14664:4;14655:6;14591:78;:::i;:::-;14583:86;;14363:313;;;;:::o;14682:419::-;14848:4;14886:2;14875:9;14871:18;14863:26;;14935:9;14929:4;14925:20;14921:1;14910:9;14906:17;14899:47;14963:131;15089:4;14963:131;:::i;:::-;14955:139;;14682:419;;;:::o;15107:::-;15273:4;15311:2;15300:9;15296:18;15288:26;;15360:9;15354:4;15350:20;15346:1;15335:9;15331:17;15324:47;15388:131;15514:4;15388:131;:::i;:::-;15380:139;;15107:419;;;:::o;15532:::-;15698:4;15736:2;15725:9;15721:18;15713:26;;15785:9;15779:4;15775:20;15771:1;15760:9;15756:17;15749:47;15813:131;15939:4;15813:131;:::i;:::-;15805:139;;15532:419;;;:::o;15957:::-;16123:4;16161:2;16150:9;16146:18;16138:26;;16210:9;16204:4;16200:20;16196:1;16185:9;16181:17;16174:47;16238:131;16364:4;16238:131;:::i;:::-;16230:139;;15957:419;;;:::o;16382:::-;16548:4;16586:2;16575:9;16571:18;16563:26;;16635:9;16629:4;16625:20;16621:1;16610:9;16606:17;16599:47;16663:131;16789:4;16663:131;:::i;:::-;16655:139;;16382:419;;;:::o;16807:::-;16973:4;17011:2;17000:9;16996:18;16988:26;;17060:9;17054:4;17050:20;17046:1;17035:9;17031:17;17024:47;17088:131;17214:4;17088:131;:::i;:::-;17080:139;;16807:419;;;:::o;17232:::-;17398:4;17436:2;17425:9;17421:18;17413:26;;17485:9;17479:4;17475:20;17471:1;17460:9;17456:17;17449:47;17513:131;17639:4;17513:131;:::i;:::-;17505:139;;17232:419;;;:::o;17657:::-;17823:4;17861:2;17850:9;17846:18;17838:26;;17910:9;17904:4;17900:20;17896:1;17885:9;17881:17;17874:47;17938:131;18064:4;17938:131;:::i;:::-;17930:139;;17657:419;;;:::o;18082:::-;18248:4;18286:2;18275:9;18271:18;18263:26;;18335:9;18329:4;18325:20;18321:1;18310:9;18306:17;18299:47;18363:131;18489:4;18363:131;:::i;:::-;18355:139;;18082:419;;;:::o;18507:222::-;18600:4;18638:2;18627:9;18623:18;18615:26;;18651:71;18719:1;18708:9;18704:17;18695:6;18651:71;:::i;:::-;18507:222;;;;:::o;18735:129::-;18769:6;18796:20;;:::i;:::-;18786:30;;18825:33;18853:4;18845:6;18825:33;:::i;:::-;18735:129;;;:::o;18870:75::-;18903:6;18936:2;18930:9;18920:19;;18870:75;:::o;18951:307::-;19012:4;19102:18;19094:6;19091:30;19088:56;;;19124:18;;:::i;:::-;19088:56;19162:29;19184:6;19162:29;:::i;:::-;19154:37;;19246:4;19240;19236:15;19228:23;;18951:307;;;:::o;19264:141::-;19313:4;19336:3;19328:11;;19359:3;19356:1;19349:14;19393:4;19390:1;19380:18;19372:26;;19264:141;;;:::o;19411:98::-;19462:6;19496:5;19490:12;19480:22;;19411:98;;;:::o;19515:99::-;19567:6;19601:5;19595:12;19585:22;;19515:99;;;:::o;19620:168::-;19703:11;19737:6;19732:3;19725:19;19777:4;19772:3;19768:14;19753:29;;19620:168;;;;:::o;19794:169::-;19878:11;19912:6;19907:3;19900:19;19952:4;19947:3;19943:14;19928:29;;19794:169;;;;:::o;19969:148::-;20071:11;20108:3;20093:18;;19969:148;;;;:::o;20123:305::-;20163:3;20182:20;20200:1;20182:20;:::i;:::-;20177:25;;20216:20;20234:1;20216:20;:::i;:::-;20211:25;;20370:1;20302:66;20298:74;20295:1;20292:81;20289:107;;;20376:18;;:::i;:::-;20289:107;20420:1;20417;20413:9;20406:16;;20123:305;;;;:::o;20434:185::-;20474:1;20491:20;20509:1;20491:20;:::i;:::-;20486:25;;20525:20;20543:1;20525:20;:::i;:::-;20520:25;;20564:1;20554:35;;20569:18;;:::i;:::-;20554:35;20611:1;20608;20604:9;20599:14;;20434:185;;;;:::o;20625:348::-;20665:7;20688:20;20706:1;20688:20;:::i;:::-;20683:25;;20722:20;20740:1;20722:20;:::i;:::-;20717:25;;20910:1;20842:66;20838:74;20835:1;20832:81;20827:1;20820:9;20813:17;20809:105;20806:131;;;20917:18;;:::i;:::-;20806:131;20965:1;20962;20958:9;20947:20;;20625:348;;;;:::o;20979:191::-;21019:4;21039:20;21057:1;21039:20;:::i;:::-;21034:25;;21073:20;21091:1;21073:20;:::i;:::-;21068:25;;21112:1;21109;21106:8;21103:34;;;21117:18;;:::i;:::-;21103:34;21162:1;21159;21155:9;21147:17;;20979:191;;;;:::o;21176:96::-;21213:7;21242:24;21260:5;21242:24;:::i;:::-;21231:35;;21176:96;;;:::o;21278:90::-;21312:7;21355:5;21348:13;21341:21;21330:32;;21278:90;;;:::o;21374:149::-;21410:7;21450:66;21443:5;21439:78;21428:89;;21374:149;;;:::o;21529:126::-;21566:7;21606:42;21599:5;21595:54;21584:65;;21529:126;;;:::o;21661:77::-;21698:7;21727:5;21716:16;;21661:77;;;:::o;21744:154::-;21828:6;21823:3;21818;21805:30;21890:1;21881:6;21876:3;21872:16;21865:27;21744:154;;;:::o;21904:307::-;21972:1;21982:113;21996:6;21993:1;21990:13;21982:113;;;22081:1;22076:3;22072:11;22066:18;22062:1;22057:3;22053:11;22046:39;22018:2;22015:1;22011:10;22006:15;;21982:113;;;22113:6;22110:1;22107:13;22104:101;;;22193:1;22184:6;22179:3;22175:16;22168:27;22104:101;21953:258;21904:307;;;:::o;22217:320::-;22261:6;22298:1;22292:4;22288:12;22278:22;;22345:1;22339:4;22335:12;22366:18;22356:81;;22422:4;22414:6;22410:17;22400:27;;22356:81;22484:2;22476:6;22473:14;22453:18;22450:38;22447:84;;;22503:18;;:::i;:::-;22447:84;22268:269;22217:320;;;:::o;22543:281::-;22626:27;22648:4;22626:27;:::i;:::-;22618:6;22614:40;22756:6;22744:10;22741:22;22720:18;22708:10;22705:34;22702:62;22699:88;;;22767:18;;:::i;:::-;22699:88;22807:10;22803:2;22796:22;22586:238;22543:281;;:::o;22830:233::-;22869:3;22892:24;22910:5;22892:24;:::i;:::-;22883:33;;22938:66;22931:5;22928:77;22925:103;;;23008:18;;:::i;:::-;22925:103;23055:1;23048:5;23044:13;23037:20;;22830:233;;;:::o;23069:176::-;23101:1;23118:20;23136:1;23118:20;:::i;:::-;23113:25;;23152:20;23170:1;23152:20;:::i;:::-;23147:25;;23191:1;23181:35;;23196:18;;:::i;:::-;23181:35;23237:1;23234;23230:9;23225:14;;23069:176;;;;:::o;23251:180::-;23299:77;23296:1;23289:88;23396:4;23393:1;23386:15;23420:4;23417:1;23410:15;23437:180;23485:77;23482:1;23475:88;23582:4;23579:1;23572:15;23606:4;23603:1;23596:15;23623:180;23671:77;23668:1;23661:88;23768:4;23765:1;23758:15;23792:4;23789:1;23782:15;23809:180;23857:77;23854:1;23847:88;23954:4;23951:1;23944:15;23978:4;23975:1;23968:15;23995:180;24043:77;24040:1;24033:88;24140:4;24137:1;24130:15;24164:4;24161:1;24154:15;24181:117;24290:1;24287;24280:12;24304:117;24413:1;24410;24403:12;24427:117;24536:1;24533;24526:12;24550:117;24659:1;24656;24649:12;24673:117;24782:1;24779;24772:12;24796:117;24905:1;24902;24895:12;24919:102;24960:6;25011:2;25007:7;25002:2;24995:5;24991:14;24987:28;24977:38;;24919:102;;;:::o;25027:164::-;25167:16;25163:1;25155:6;25151:14;25144:40;25027:164;:::o;25197:170::-;25337:22;25333:1;25325:6;25321:14;25314:46;25197:170;:::o;25373:164::-;25513:16;25509:1;25501:6;25497:14;25490:40;25373:164;:::o;25543:225::-;25683:34;25679:1;25671:6;25667:14;25660:58;25752:8;25747:2;25739:6;25735:15;25728:33;25543:225;:::o;25774:168::-;25914:20;25910:1;25902:6;25898:14;25891:44;25774:168;:::o;25948:182::-;26088:34;26084:1;26076:6;26072:14;26065:58;25948:182;:::o;26136:234::-;26276:34;26272:1;26264:6;26260:14;26253:58;26345:17;26340:2;26332:6;26328:15;26321:42;26136:234;:::o;26376:172::-;26516:24;26512:1;26504:6;26500:14;26493:48;26376:172;:::o;26554:171::-;26694:23;26690:1;26682:6;26678:14;26671:47;26554:171;:::o;26731:122::-;26804:24;26822:5;26804:24;:::i;:::-;26797:5;26794:35;26784:63;;26843:1;26840;26833:12;26784:63;26731:122;:::o;26859:116::-;26929:21;26944:5;26929:21;:::i;:::-;26922:5;26919:32;26909:60;;26965:1;26962;26955:12;26909:60;26859:116;:::o;26981:120::-;27053:23;27070:5;27053:23;:::i;:::-;27046:5;27043:34;27033:62;;27091:1;27088;27081:12;27033:62;26981:120;:::o;27107:122::-;27180:24;27198:5;27180:24;:::i;:::-;27173:5;27170:35;27160:63;;27219:1;27216;27209:12;27160:63;27107:122;:::o
Swarm Source
ipfs://65d3fa1fa1752eea13481d5a372441f6287bf8c8f5cc51d95faf7b5526ab84a1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.