Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,212 GB
Holders
879
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GlassBear
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-25 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @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 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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface 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); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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 Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. 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; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * 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) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // 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. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @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 == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_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 && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } 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 Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } contract GlassBear is ERC721A, Ownable { using Strings for uint256; uint256 public constant FREE_SUPPLY = 1212; Stage public stage = Stage.Start; string public baseURI; string internal baseExtension = ".json"; uint256 freeSupply; enum Stage { Pause, Start } event StageChanged(Stage from, Stage to); constructor() ERC721A("Glass Bear", "GB") {} function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "not exist"); string memory currentBaseURI = _baseURI(); return ( bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "" ); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setStage(Stage _stage) external onlyOwner { require(stage != _stage, "invalid stage."); Stage prevStage = stage; stage = _stage; emit StageChanged(prevStage, stage); } function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } function freeMint() external payable { require(stage == Stage.Start, "mint is pause."); require(freeSupply < FREE_SUPPLY, "free mint complete."); freeSupply += 1; _safeMint(msg.sender, 1); } function setBaseExtension(string memory _extension) external onlyOwner { baseExtension = _extension; } function withdrawAll() external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No money"); (bool success, ) = payable(msg.sender).call{value: balance}(""); require(success, "Transfer failed"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum GlassBear.Stage","name":"from","type":"uint8"},{"indexed":false,"internalType":"enum GlassBear.Stage","name":"to","type":"uint8"}],"name":"StageChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_extension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum GlassBear.Stage","name":"_stage","type":"uint8"}],"name":"setStage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stage","outputs":[{"internalType":"enum GlassBear.Stage","name":"","type":"uint8"}],"stateMutability":"view","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":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6008805460ff60a01b1916600160a01b17905560c06040526005608081905264173539b7b760d91b60a09081526200003b91600a919062000120565b503480156200004957600080fd5b506040518060400160405280600a81526020016923b630b9b9902132b0b960b11b8152506040518060400160405280600281526020016123a160f11b8152508160029080519060200190620000a092919062000120565b508051620000b690600390602084019062000120565b50506000805550620000c833620000ce565b62000203565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012e90620001c6565b90600052602060002090601f0160209004810192826200015257600085556200019d565b82601f106200016d57805160ff19168380011785556200019d565b828001600101855582156200019d579182015b828111156200019d57825182559160200191906001019062000180565b50620001ab929150620001af565b5090565b5b80821115620001ab5760008155600101620001b0565b600181811c90821680620001db57607f821691505b60208210811415620001fd57634e487b7160e01b600052602260045260246000fd5b50919050565b611f5480620002136000396000f3fe6080604052600436106101965760003560e01c8063715018a6116100e1578063b88d4fde1161008a578063ce3cd99711610064578063ce3cd9971461042d578063da3ef23f1461044d578063e985e9c51461046d578063f2fde38b146104b657600080fd5b8063b88d4fde146103bf578063c040e6b8146103df578063c87b56dd1461040d57600080fd5b806395d89b41116100bb57806395d89b41146103745780639858cf1914610389578063a22cb4651461039f57600080fd5b8063715018a61461032c578063853828b6146103415780638da5cb5b1461035657600080fd5b806342842e0e116101435780636352211e1161011d5780636352211e146102d75780636c0360eb146102f757806370a082311461030c57600080fd5b806342842e0e1461028f57806355f804b3146102af5780635b70ea9f146102cf57600080fd5b8063095ea7b311610174578063095ea7b31461022a57806318160ddd1461024c57806323b872dd1461026f57600080fd5b806301ffc9a71461019b57806306fdde03146101d0578063081812fc146101f2575b600080fd5b3480156101a757600080fd5b506101bb6101b6366004611b7a565b6104d6565b60405190151581526020015b60405180910390f35b3480156101dc57600080fd5b506101e5610573565b6040516101c79190611dae565b3480156101fe57600080fd5b5061021261020d366004611c1e565b610605565b6040516001600160a01b0390911681526020016101c7565b34801561023657600080fd5b5061024a610245366004611b50565b610662565b005b34801561025857600080fd5b50600154600054035b6040519081526020016101c7565b34801561027b57600080fd5b5061024a61028a366004611a5c565b61073f565b34801561029b57600080fd5b5061024a6102aa366004611a5c565b61074a565b3480156102bb57600080fd5b5061024a6102ca366004611bd5565b610765565b61024a6107db565b3480156102e357600080fd5b506102126102f2366004611c1e565b6108c1565b34801561030357600080fd5b506101e56108d3565b34801561031857600080fd5b50610261610327366004611a0e565b610961565b34801561033857600080fd5b5061024a6109c9565b34801561034d57600080fd5b5061024a610a2d565b34801561036257600080fd5b506008546001600160a01b0316610212565b34801561038057600080fd5b506101e5610b6d565b34801561039557600080fd5b506102616104bc81565b3480156103ab57600080fd5b5061024a6103ba366004611b14565b610b7c565b3480156103cb57600080fd5b5061024a6103da366004611a98565b610c2b565b3480156103eb57600080fd5b5060085461040090600160a01b900460ff1681565b6040516101c79190611d85565b34801561041957600080fd5b506101e5610428366004611c1e565b610c7c565b34801561043957600080fd5b5061024a610448366004611bb4565b610d32565b34801561045957600080fd5b5061024a610468366004611bd5565b610ea4565b34801561047957600080fd5b506101bb610488366004611a29565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104c257600080fd5b5061024a6104d1366004611a0e565b610f11565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061053957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061056d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461058290611e30565b80601f01602080910402602001604051908101604052809291908181526020018280546105ae90611e30565b80156105fb5780601f106105d0576101008083540402835291602001916105fb565b820191906000526020600020905b8154815290600101906020018083116105de57829003601f168201915b5050505050905090565b600061061082610ff3565b610646576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061066d826108c1565b9050806001600160a01b0316836001600160a01b031614156106bb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906106f857506001600160a01b038116600090815260076020908152604080832033845290915290205460ff16155b1561072f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61073a83838361101e565b505050565b61073a838383611087565b61073a83838360405180602001604052806000815250610c2b565b6008546001600160a01b031633146107c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516107d79060099060208401906118e3565b5050565b6001600854600160a01b900460ff1660018111156107fb576107fb611ec6565b146108485760405162461bcd60e51b815260206004820152600e60248201527f6d696e742069732070617573652e00000000000000000000000000000000000060448201526064016107bb565b6104bc600b541061089b5760405162461bcd60e51b815260206004820152601360248201527f66726565206d696e7420636f6d706c6574652e0000000000000000000000000060448201526064016107bb565b6001600b60008282546108ae9190611dc1565b909155506108bf90503360016112e1565b565b60006108cc826112fb565b5192915050565b600980546108e090611e30565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90611e30565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b505050505081565b60006001600160a01b0382166109a3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b6108bf6000611430565b6008546001600160a01b03163314610a875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b4780610ad55760405162461bcd60e51b815260206004820152600860248201527f4e6f206d6f6e657900000000000000000000000000000000000000000000000060448201526064016107bb565b604051600090339083908381818185875af1925050503d8060008114610b17576040519150601f19603f3d011682016040523d82523d6000602084013e610b1c565b606091505b50509050806107d75760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c6564000000000000000000000000000000000060448201526064016107bb565b60606003805461058290611e30565b6001600160a01b038216331415610bbf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c36848484611087565b6001600160a01b0383163b15158015610c585750610c568484848461148f565b155b15610c76576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c8782610ff3565b610cd35760405162461bcd60e51b815260206004820152600960248201527f6e6f74206578697374000000000000000000000000000000000000000000000060448201526064016107bb565b6000610cdd611587565b90506000815111610cfd5760405180602001604052806000815250610d2b565b80610d0784611596565b600a604051602001610d1b93929190611c85565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b806001811115610d9e57610d9e611ec6565b600854600160a01b900460ff166001811115610dbc57610dbc611ec6565b1415610e0a5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c69642073746167652e00000000000000000000000000000000000060448201526064016107bb565b60088054600160a01b80820460ff1692849290917fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff90911690836001811115610e5557610e55611ec6565b02179055506008546040517f0f63b8bffe147a0fe1362da0e6e3ae0fcffce5497482f4d438715fe53890acf191610e98918491600160a01b900460ff1690611d93565b60405180910390a15050565b6008546001600160a01b03163314610efe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b80516107d790600a9060208401906118e3565b6008546001600160a01b03163314610f6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b6001600160a01b038116610fe75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107bb565b610ff081611430565b50565b600080548210801561056d575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611092826112fb565b9050836001600160a01b031681600001516001600160a01b0316146110e3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061111f57506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b8061113a57503361112f84610605565b6001600160a01b0316145b905080611173576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166111b3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111bf6000848761101e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611295576000548214611295578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6107d78282604051806020016040528060008152506116c8565b6040805160608101825260008082526020820181905291810191909152816000548110156113fe57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113fc5780516001600160a01b031615611392579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113f7579392505050565b611392565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114c4903390899088908890600401611d49565b602060405180830381600087803b1580156114de57600080fd5b505af192505050801561150e575060408051601f3d908101601f1916820190925261150b91810190611b97565b60015b611569573d80801561153c576040519150601f19603f3d011682016040523d82523d6000602084013e611541565b606091505b508051611561576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461058290611e30565b6060816115d657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561160057806115ea81611e6b565b91506115f99050600a83611dd9565b91506115da565b60008167ffffffffffffffff81111561161b5761161b611ef2565b6040519080825280601f01601f191660200182016040528015611645576020820181803683370190505b5090505b841561157f5761165a600183611ded565b9150611667600a86611e86565b611672906030611dc1565b60f81b81838151811061168757611687611edc565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506116c1600a86611dd9565b9450611649565b61073a83838360016000546001600160a01b038516611713576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8361174a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561180b57506001600160a01b0387163b15155b15611894575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461185c600088848060010195508861148f565b611879576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561181157826000541461188f57600080fd5b6118da565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611895575b506000556112da565b8280546118ef90611e30565b90600052602060002090601f0160209004810192826119115760008555611957565b82601f1061192a57805160ff1916838001178555611957565b82800160010185558215611957579182015b8281111561195757825182559160200191906001019061193c565b50611963929150611967565b5090565b5b808211156119635760008155600101611968565b600067ffffffffffffffff8084111561199757611997611ef2565b604051601f8501601f19908116603f011681019082821181831017156119bf576119bf611ef2565b816040528093508581528686860111156119d857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a0957600080fd5b919050565b600060208284031215611a2057600080fd5b610d2b826119f2565b60008060408385031215611a3c57600080fd5b611a45836119f2565b9150611a53602084016119f2565b90509250929050565b600080600060608486031215611a7157600080fd5b611a7a846119f2565b9250611a88602085016119f2565b9150604084013590509250925092565b60008060008060808587031215611aae57600080fd5b611ab7856119f2565b9350611ac5602086016119f2565b925060408501359150606085013567ffffffffffffffff811115611ae857600080fd5b8501601f81018713611af957600080fd5b611b088782356020840161197c565b91505092959194509250565b60008060408385031215611b2757600080fd5b611b30836119f2565b915060208301358015158114611b4557600080fd5b809150509250929050565b60008060408385031215611b6357600080fd5b611b6c836119f2565b946020939093013593505050565b600060208284031215611b8c57600080fd5b8135610d2b81611f08565b600060208284031215611ba957600080fd5b8151610d2b81611f08565b600060208284031215611bc657600080fd5b813560028110610d2b57600080fd5b600060208284031215611be757600080fd5b813567ffffffffffffffff811115611bfe57600080fd5b8201601f81018413611c0f57600080fd5b61157f8482356020840161197c565b600060208284031215611c3057600080fd5b5035919050565b60008151808452611c4f816020860160208601611e04565b601f01601f19169290920160200192915050565b60028110611c8157634e487b7160e01b600052602160045260246000fd5b9052565b600084516020611c988285838a01611e04565b855191840191611cab8184848a01611e04565b8554920191600090600181811c9080831680611cc857607f831692505b858310811415611ce657634e487b7160e01b85526022600452602485fd5b808015611cfa5760018114611d0b57611d38565b60ff19851688528388019550611d38565b60008b81526020902060005b85811015611d305781548a820152908401908801611d17565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611d7b6080830184611c37565b9695505050505050565b6020810161056d8284611c63565b60408101611da18285611c63565b610d2b6020830184611c63565b602081526000610d2b6020830184611c37565b60008219821115611dd457611dd4611e9a565b500190565b600082611de857611de8611eb0565b500490565b600082821015611dff57611dff611e9a565b500390565b60005b83811015611e1f578181015183820152602001611e07565b83811115610c765750506000910152565b600181811c90821680611e4457607f821691505b60208210811415611e6557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e7f57611e7f611e9a565b5060010190565b600082611e9557611e95611eb0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff057600080fdfea26469706673582212209f9353ac66d46c3a30a7b7f065a542d335bb9f6bc1d270d62806c03d7d4f551f64736f6c63430008070033
Deployed Bytecode
0x6080604052600436106101965760003560e01c8063715018a6116100e1578063b88d4fde1161008a578063ce3cd99711610064578063ce3cd9971461042d578063da3ef23f1461044d578063e985e9c51461046d578063f2fde38b146104b657600080fd5b8063b88d4fde146103bf578063c040e6b8146103df578063c87b56dd1461040d57600080fd5b806395d89b41116100bb57806395d89b41146103745780639858cf1914610389578063a22cb4651461039f57600080fd5b8063715018a61461032c578063853828b6146103415780638da5cb5b1461035657600080fd5b806342842e0e116101435780636352211e1161011d5780636352211e146102d75780636c0360eb146102f757806370a082311461030c57600080fd5b806342842e0e1461028f57806355f804b3146102af5780635b70ea9f146102cf57600080fd5b8063095ea7b311610174578063095ea7b31461022a57806318160ddd1461024c57806323b872dd1461026f57600080fd5b806301ffc9a71461019b57806306fdde03146101d0578063081812fc146101f2575b600080fd5b3480156101a757600080fd5b506101bb6101b6366004611b7a565b6104d6565b60405190151581526020015b60405180910390f35b3480156101dc57600080fd5b506101e5610573565b6040516101c79190611dae565b3480156101fe57600080fd5b5061021261020d366004611c1e565b610605565b6040516001600160a01b0390911681526020016101c7565b34801561023657600080fd5b5061024a610245366004611b50565b610662565b005b34801561025857600080fd5b50600154600054035b6040519081526020016101c7565b34801561027b57600080fd5b5061024a61028a366004611a5c565b61073f565b34801561029b57600080fd5b5061024a6102aa366004611a5c565b61074a565b3480156102bb57600080fd5b5061024a6102ca366004611bd5565b610765565b61024a6107db565b3480156102e357600080fd5b506102126102f2366004611c1e565b6108c1565b34801561030357600080fd5b506101e56108d3565b34801561031857600080fd5b50610261610327366004611a0e565b610961565b34801561033857600080fd5b5061024a6109c9565b34801561034d57600080fd5b5061024a610a2d565b34801561036257600080fd5b506008546001600160a01b0316610212565b34801561038057600080fd5b506101e5610b6d565b34801561039557600080fd5b506102616104bc81565b3480156103ab57600080fd5b5061024a6103ba366004611b14565b610b7c565b3480156103cb57600080fd5b5061024a6103da366004611a98565b610c2b565b3480156103eb57600080fd5b5060085461040090600160a01b900460ff1681565b6040516101c79190611d85565b34801561041957600080fd5b506101e5610428366004611c1e565b610c7c565b34801561043957600080fd5b5061024a610448366004611bb4565b610d32565b34801561045957600080fd5b5061024a610468366004611bd5565b610ea4565b34801561047957600080fd5b506101bb610488366004611a29565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104c257600080fd5b5061024a6104d1366004611a0e565b610f11565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061053957506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061056d57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606002805461058290611e30565b80601f01602080910402602001604051908101604052809291908181526020018280546105ae90611e30565b80156105fb5780601f106105d0576101008083540402835291602001916105fb565b820191906000526020600020905b8154815290600101906020018083116105de57829003601f168201915b5050505050905090565b600061061082610ff3565b610646576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061066d826108c1565b9050806001600160a01b0316836001600160a01b031614156106bb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b038216148015906106f857506001600160a01b038116600090815260076020908152604080832033845290915290205460ff16155b1561072f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61073a83838361101e565b505050565b61073a838383611087565b61073a83838360405180602001604052806000815250610c2b565b6008546001600160a01b031633146107c45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516107d79060099060208401906118e3565b5050565b6001600854600160a01b900460ff1660018111156107fb576107fb611ec6565b146108485760405162461bcd60e51b815260206004820152600e60248201527f6d696e742069732070617573652e00000000000000000000000000000000000060448201526064016107bb565b6104bc600b541061089b5760405162461bcd60e51b815260206004820152601360248201527f66726565206d696e7420636f6d706c6574652e0000000000000000000000000060448201526064016107bb565b6001600b60008282546108ae9190611dc1565b909155506108bf90503360016112e1565b565b60006108cc826112fb565b5192915050565b600980546108e090611e30565b80601f016020809104026020016040519081016040528092919081815260200182805461090c90611e30565b80156109595780601f1061092e57610100808354040283529160200191610959565b820191906000526020600020905b81548152906001019060200180831161093c57829003601f168201915b505050505081565b60006001600160a01b0382166109a3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b6108bf6000611430565b6008546001600160a01b03163314610a875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b4780610ad55760405162461bcd60e51b815260206004820152600860248201527f4e6f206d6f6e657900000000000000000000000000000000000000000000000060448201526064016107bb565b604051600090339083908381818185875af1925050503d8060008114610b17576040519150601f19603f3d011682016040523d82523d6000602084013e610b1c565b606091505b50509050806107d75760405162461bcd60e51b815260206004820152600f60248201527f5472616e73666572206661696c6564000000000000000000000000000000000060448201526064016107bb565b60606003805461058290611e30565b6001600160a01b038216331415610bbf576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c36848484611087565b6001600160a01b0383163b15158015610c585750610c568484848461148f565b155b15610c76576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c8782610ff3565b610cd35760405162461bcd60e51b815260206004820152600960248201527f6e6f74206578697374000000000000000000000000000000000000000000000060448201526064016107bb565b6000610cdd611587565b90506000815111610cfd5760405180602001604052806000815250610d2b565b80610d0784611596565b600a604051602001610d1b93929190611c85565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610d8c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b806001811115610d9e57610d9e611ec6565b600854600160a01b900460ff166001811115610dbc57610dbc611ec6565b1415610e0a5760405162461bcd60e51b815260206004820152600e60248201527f696e76616c69642073746167652e00000000000000000000000000000000000060448201526064016107bb565b60088054600160a01b80820460ff1692849290917fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff90911690836001811115610e5557610e55611ec6565b02179055506008546040517f0f63b8bffe147a0fe1362da0e6e3ae0fcffce5497482f4d438715fe53890acf191610e98918491600160a01b900460ff1690611d93565b60405180910390a15050565b6008546001600160a01b03163314610efe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b80516107d790600a9060208401906118e3565b6008546001600160a01b03163314610f6b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107bb565b6001600160a01b038116610fe75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107bb565b610ff081611430565b50565b600080548210801561056d575050600090815260046020526040902054600160e01b900460ff161590565b600082815260066020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611092826112fb565b9050836001600160a01b031681600001516001600160a01b0316146110e3576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061111f57506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b8061113a57503361112f84610605565b6001600160a01b0316145b905080611173576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166111b3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111bf6000848761101e565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611295576000548214611295578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6107d78282604051806020016040528060008152506116c8565b6040805160608101825260008082526020820181905291810191909152816000548110156113fe57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906113fc5780516001600160a01b031615611392579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156113f7579392505050565b611392565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600880546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906114c4903390899088908890600401611d49565b602060405180830381600087803b1580156114de57600080fd5b505af192505050801561150e575060408051601f3d908101601f1916820190925261150b91810190611b97565b60015b611569573d80801561153c576040519150601f19603f3d011682016040523d82523d6000602084013e611541565b606091505b508051611561576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b60606009805461058290611e30565b6060816115d657505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b811561160057806115ea81611e6b565b91506115f99050600a83611dd9565b91506115da565b60008167ffffffffffffffff81111561161b5761161b611ef2565b6040519080825280601f01601f191660200182016040528015611645576020820181803683370190505b5090505b841561157f5761165a600183611ded565b9150611667600a86611e86565b611672906030611dc1565b60f81b81838151811061168757611687611edc565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506116c1600a86611dd9565b9450611649565b61073a83838360016000546001600160a01b038516611713576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8361174a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080547fffffffffffffffffffffffffffffffff00000000000000000000000000000000811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561180b57506001600160a01b0387163b15155b15611894575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461185c600088848060010195508861148f565b611879576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561181157826000541461188f57600080fd5b6118da565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611895575b506000556112da565b8280546118ef90611e30565b90600052602060002090601f0160209004810192826119115760008555611957565b82601f1061192a57805160ff1916838001178555611957565b82800160010185558215611957579182015b8281111561195757825182559160200191906001019061193c565b50611963929150611967565b5090565b5b808211156119635760008155600101611968565b600067ffffffffffffffff8084111561199757611997611ef2565b604051601f8501601f19908116603f011681019082821181831017156119bf576119bf611ef2565b816040528093508581528686860111156119d857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a0957600080fd5b919050565b600060208284031215611a2057600080fd5b610d2b826119f2565b60008060408385031215611a3c57600080fd5b611a45836119f2565b9150611a53602084016119f2565b90509250929050565b600080600060608486031215611a7157600080fd5b611a7a846119f2565b9250611a88602085016119f2565b9150604084013590509250925092565b60008060008060808587031215611aae57600080fd5b611ab7856119f2565b9350611ac5602086016119f2565b925060408501359150606085013567ffffffffffffffff811115611ae857600080fd5b8501601f81018713611af957600080fd5b611b088782356020840161197c565b91505092959194509250565b60008060408385031215611b2757600080fd5b611b30836119f2565b915060208301358015158114611b4557600080fd5b809150509250929050565b60008060408385031215611b6357600080fd5b611b6c836119f2565b946020939093013593505050565b600060208284031215611b8c57600080fd5b8135610d2b81611f08565b600060208284031215611ba957600080fd5b8151610d2b81611f08565b600060208284031215611bc657600080fd5b813560028110610d2b57600080fd5b600060208284031215611be757600080fd5b813567ffffffffffffffff811115611bfe57600080fd5b8201601f81018413611c0f57600080fd5b61157f8482356020840161197c565b600060208284031215611c3057600080fd5b5035919050565b60008151808452611c4f816020860160208601611e04565b601f01601f19169290920160200192915050565b60028110611c8157634e487b7160e01b600052602160045260246000fd5b9052565b600084516020611c988285838a01611e04565b855191840191611cab8184848a01611e04565b8554920191600090600181811c9080831680611cc857607f831692505b858310811415611ce657634e487b7160e01b85526022600452602485fd5b808015611cfa5760018114611d0b57611d38565b60ff19851688528388019550611d38565b60008b81526020902060005b85811015611d305781548a820152908401908801611d17565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152611d7b6080830184611c37565b9695505050505050565b6020810161056d8284611c63565b60408101611da18285611c63565b610d2b6020830184611c63565b602081526000610d2b6020830184611c37565b60008219821115611dd457611dd4611e9a565b500190565b600082611de857611de8611eb0565b500490565b600082821015611dff57611dff611e9a565b500390565b60005b83811015611e1f578181015183820152602001611e07565b83811115610c765750506000910152565b600181811c90821680611e4457607f821691505b60208210811415611e6557634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611e7f57611e7f611e9a565b5060010190565b600082611e9557611e95611eb0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ff057600080fdfea26469706673582212209f9353ac66d46c3a30a7b7f065a542d335bb9f6bc1d270d62806c03d7d4f551f64736f6c63430008070033
Deployed Bytecode Sourcemap
45880:1908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28129:305;;;;;;;;;;-1:-1:-1;28129:305:0;;;;;:::i;:::-;;:::i;:::-;;;7605:14:1;;7598:22;7580:41;;7568:2;7553:18;28129:305:0;;;;;;;;31242:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32745:204::-;;;;;;;;;;-1:-1:-1;32745:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6857:55:1;;;6839:74;;6827:2;6812:18;32745:204:0;6693:226:1;32308:371:0;;;;;;;;;;-1:-1:-1;32308:371:0;;;;;:::i;:::-;;:::i;:::-;;27378:303;;;;;;;;;;-1:-1:-1;27632:12:0;;27422:7;27616:13;:28;27378:303;;;11325:25:1;;;11313:2;11298:18;27378:303:0;11179:177:1;33610:170:0;;;;;;;;;;-1:-1:-1;33610:170:0;;;;;:::i;:::-;;:::i;33851:185::-;;;;;;;;;;-1:-1:-1;33851:185:0;;;;;:::i;:::-;;:::i;47045:106::-;;;;;;;;;;-1:-1:-1;47045:106:0;;;;;:::i;:::-;;:::i;47159:231::-;;;:::i;31050:125::-;;;;;;;;;;-1:-1:-1;31050:125:0;;;;;:::i;:::-;;:::i;46046:21::-;;;;;;;;;;;;;:::i;28498:206::-;;;;;;;;;;-1:-1:-1;28498:206:0;;;;;:::i;:::-;;:::i;4373:103::-;;;;;;;;;;;;;:::i;47522:263::-;;;;;;;;;;;;;:::i;3722:87::-;;;;;;;;;;-1:-1:-1;3795:6:0;;-1:-1:-1;;;;;3795:6:0;3722:87;;31411:104;;;;;;;;;;;;;:::i;45958:42::-;;;;;;;;;;;;45996:4;45958:42;;33021:287;;;;;;;;;;-1:-1:-1;33021:287:0;;;;;:::i;:::-;;:::i;34107:369::-;;;;;;;;;;-1:-1:-1;34107:369:0;;;;;:::i;:::-;;:::i;46007:32::-;;;;;;;;;;-1:-1:-1;46007:32:0;;;;-1:-1:-1;;;46007:32:0;;;;;;;;;;;;;:::i;46304:390::-;;;;;;;;;;-1:-1:-1;46304:390:0;;;;;:::i;:::-;;:::i;46818:217::-;;;;;;;;;;-1:-1:-1;46818:217:0;;;;;:::i;:::-;;:::i;47398:116::-;;;;;;;;;;-1:-1:-1;47398:116:0;;;;;:::i;:::-;;:::i;33379:164::-;;;;;;;;;;-1:-1:-1;33379:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33500:25:0;;;33476:4;33500:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33379:164;4631:201;;;;;;;;;;-1:-1:-1;4631:201:0;;;;;:::i;:::-;;:::i;28129:305::-;28231:4;-1:-1:-1;;;;;;28268:40:0;;28283:25;28268:40;;:105;;-1:-1:-1;;;;;;;28325:48:0;;28340:33;28325:48;28268:105;:158;;;-1:-1:-1;23916:25:0;-1:-1:-1;;;;;;23901:40:0;;;28390:36;28248:178;28129:305;-1:-1:-1;;28129:305:0:o;31242:100::-;31296:13;31329:5;31322:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31242:100;:::o;32745:204::-;32813:7;32838:16;32846:7;32838;:16::i;:::-;32833:64;;32863:34;;;;;;;;;;;;;;32833:64;-1:-1:-1;32917:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32917:24:0;;32745:204::o;32308:371::-;32381:13;32397:24;32413:7;32397:15;:24::i;:::-;32381:40;;32442:5;-1:-1:-1;;;;;32436:11:0;:2;-1:-1:-1;;;;;32436:11:0;;32432:48;;;32456:24;;;;;;;;;;;;;;32432:48;2667:10;-1:-1:-1;;;;;32497:21:0;;;;;;:63;;-1:-1:-1;;;;;;33500:25:0;;33476:4;33500:25;;;:18;:25;;;;;;;;2667:10;33500:35;;;;;;;;;;32522:38;32497:63;32493:138;;;32584:35;;;;;;;;;;;;;;32493:138;32643:28;32652:2;32656:7;32665:5;32643:8;:28::i;:::-;32370:309;32308:371;;:::o;33610:170::-;33744:28;33754:4;33760:2;33764:7;33744:9;:28::i;33851:185::-;33989:39;34006:4;34012:2;34016:7;33989:39;;;;;;;;;;;;:16;:39::i;47045:106::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;10677:2:1;3934:68:0;;;10659:21:1;;;10696:18;;;10689:30;10755:34;10735:18;;;10728:62;10807:18;;3934:68:0;;;;;;;;;47122:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47045:106:::0;:::o;47159:231::-;47224:11;47215:5;;-1:-1:-1;;;47215:5:0;;;;:20;;;;;;;;:::i;:::-;;47207:47;;;;-1:-1:-1;;;47207:47:0;;11038:2:1;47207:47:0;;;11020:21:1;11077:2;11057:18;;;11050:30;11116:16;11096:18;;;11089:44;11150:18;;47207:47:0;10836:338:1;47207:47:0;45996:4;47273:10;;:24;47265:56;;;;-1:-1:-1;;;47265:56:0;;9313:2:1;47265:56:0;;;9295:21:1;9352:2;9332:18;;;9325:30;9391:21;9371:18;;;9364:49;9430:18;;47265:56:0;9111:343:1;47265:56:0;47346:1;47332:10;;:15;;;;;;;:::i;:::-;;;;-1:-1:-1;47358:24:0;;-1:-1:-1;47368:10:0;47380:1;47358:9;:24::i;:::-;47159:231::o;31050:125::-;31114:7;31141:21;31154:7;31141:12;:21::i;:::-;:26;;31050:125;-1:-1:-1;;31050:125:0:o;46046:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28498:206::-;28562:7;-1:-1:-1;;;;;28586:19:0;;28582:60;;28614:28;;;;;;;;;;;;;;28582:60;-1:-1:-1;;;;;;28668:19:0;;;;;:12;:19;;;;;:27;;;;28498:206::o;4373:103::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;10677:2:1;3934:68:0;;;10659:21:1;;;10696:18;;;10689:30;10755:34;10735:18;;;10728:62;10807:18;;3934:68:0;10475:356:1;3934:68:0;4438:30:::1;4465:1;4438:18;:30::i;47522:263::-:0;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;10677:2:1;3934:68:0;;;10659:21:1;;;10696:18;;;10689:30;10755:34;10735:18;;;10728:62;10807:18;;3934:68:0;10475:356:1;3934:68:0;47593:21:::1;47633:11:::0;47625:32:::1;;;::::0;-1:-1:-1;;;47625:32:0;;9661:2:1;47625:32:0::1;::::0;::::1;9643:21:1::0;9700:1;9680:18;;;9673:29;9738:10;9718:18;;;9711:38;9766:18;;47625:32:0::1;9459:331:1::0;47625:32:0::1;47687:44;::::0;47669:12:::1;::::0;47695:10:::1;::::0;47719:7;;47669:12;47687:44;47669:12;47687:44;47719:7;47695:10;47687:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47668:63;;;47750:7;47742:35;;;::::0;-1:-1:-1;;;47742:35:0;;8969:2:1;47742:35:0::1;::::0;::::1;8951:21:1::0;9008:2;8988:18;;;8981:30;9047:17;9027:18;;;9020:45;9082:18;;47742:35:0::1;8767:339:1::0;31411:104:0;31467:13;31500:7;31493:14;;;;;:::i;33021:287::-;-1:-1:-1;;;;;33120:24:0;;2667:10;33120:24;33116:54;;;33153:17;;;;;;;;;;;;;;33116:54;2667:10;33183:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;33183:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;33183:53:0;;;;;;;;;;33252:48;;7580:41:1;;;33183:42:0;;2667:10;33252:48;;7553:18:1;33252:48:0;;;;;;;33021:287;;:::o;34107:369::-;34274:28;34284:4;34290:2;34294:7;34274:9;:28::i;:::-;-1:-1:-1;;;;;34317:13:0;;16115:19;:23;;34317:76;;;;;34337:56;34368:4;34374:2;34378:7;34387:5;34337:30;:56::i;:::-;34336:57;34317:76;34313:156;;;34417:40;;-1:-1:-1;;;34417:40:0;;;;;;;;;;;34313:156;34107:369;;;;:::o;46304:390::-;46377:13;46411:16;46419:7;46411;:16::i;:::-;46403:38;;;;-1:-1:-1;;;46403:38:0;;9997:2:1;46403:38:0;;;9979:21:1;10036:1;10016:18;;;10009:29;10074:11;10054:18;;;10047:39;10103:18;;46403:38:0;9795:332:1;46403:38:0;46452:28;46483:10;:8;:10::i;:::-;46452:41;;46557:1;46532:14;46526:28;:32;:149;;;;;;;;;;;;;;;;;46602:14;46618:18;:7;:16;:18::i;:::-;46638:13;46585:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46526:149;46504:182;46304:390;-1:-1:-1;;;46304:390:0:o;46818:217::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;10677:2:1;3934:68:0;;;10659:21:1;;;10696:18;;;10689:30;10755:34;10735:18;;;10728:62;10807:18;;3934:68:0;10475:356:1;3934:68:0;46897:6:::1;46888:15;;;;;;;;:::i;:::-;:5;::::0;-1:-1:-1;;;46888:5:0;::::1;;;:15;::::0;::::1;;;;;;:::i;:::-;;;46880:42;;;::::0;-1:-1:-1;;;46880:42:0;;10334:2:1;46880:42:0::1;::::0;::::1;10316:21:1::0;10373:2;10353:18;;;10346:30;10412:16;10392:18;;;10385:44;10446:18;;46880:42:0::1;10132:338:1::0;46880:42:0::1;46951:5;::::0;;-1:-1:-1;;;46951:5:0;;::::1;;;::::0;46975:6;;46951:5;;46967:14;;;::::1;::::0;46975:6;46967:14:::1;::::0;::::1;;;;;;:::i;:::-;;;::::0;;-1:-1:-1;47021:5:0::1;::::0;46997:30:::1;::::0;::::1;::::0;::::1;::::0;47010:9;;-1:-1:-1;;;47021:5:0;::::1;;;::::0;46997:30:::1;:::i;:::-;;;;;;;;46869:166;46818:217:::0;:::o;47398:116::-;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;10677:2:1;3934:68:0;;;10659:21:1;;;10696:18;;;10689:30;10755:34;10735:18;;;10728:62;10807:18;;3934:68:0;10475:356:1;3934:68:0;47480:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;4631:201::-:0;3795:6;;-1:-1:-1;;;;;3795:6:0;2667:10;3942:23;3934:68;;;;-1:-1:-1;;;3934:68:0;;10677:2:1;3934:68:0;;;10659:21:1;;;10696:18;;;10689:30;10755:34;10735:18;;;10728:62;10807:18;;3934:68:0;10475:356:1;3934:68:0;-1:-1:-1;;;;;4720:22:0;::::1;4712:73;;;::::0;-1:-1:-1;;;4712:73:0;;8562:2:1;4712:73:0::1;::::0;::::1;8544:21:1::0;8601:2;8581:18;;;8574:30;8640:34;8620:18;;;8613:62;8711:8;8691:18;;;8684:36;8737:19;;4712:73:0::1;8360:402:1::0;4712:73:0::1;4796:28;4815:8;4796:18;:28::i;:::-;4631:201:::0;:::o;34731:174::-;34788:4;34852:13;;34842:7;:23;34812:85;;;;-1:-1:-1;;34870:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;34870:27:0;;;;34869:28;;34731:174::o;42888:196::-;43003:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;43003:29:0;-1:-1:-1;;;;;43003:29:0;;;;;;;;;43048:28;;43003:24;;43048:28;;;;;;;42888:196;;;:::o;37831:2130::-;37946:35;37984:21;37997:7;37984:12;:21::i;:::-;37946:59;;38044:4;-1:-1:-1;;;;;38022:26:0;:13;:18;;;-1:-1:-1;;;;;38022:26:0;;38018:67;;38057:28;;;;;;;;;;;;;;38018:67;38098:22;2667:10;-1:-1:-1;;;;;38124:20:0;;;;:73;;-1:-1:-1;;;;;;33500:25:0;;33476:4;33500:25;;;:18;:25;;;;;;;;2667:10;33500:35;;;;;;;;;;38161:36;38124:126;;;-1:-1:-1;2667:10:0;38214:20;38226:7;38214:11;:20::i;:::-;-1:-1:-1;;;;;38214:36:0;;38124:126;38098:153;;38269:17;38264:66;;38295:35;;;;;;;;;;;;;;38264:66;-1:-1:-1;;;;;38345:16:0;;38341:52;;38370:23;;;;;;;;;;;;;;38341:52;38514:35;38531:1;38535:7;38544:4;38514:8;:35::i;:::-;-1:-1:-1;;;;;38845:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;38845:31:0;;;;;;;-1:-1:-1;;38845:31:0;;;;;;;38891:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38891:29:0;;;;;;;;;;;38971:20;;;:11;:20;;;;;;39006:18;;-1:-1:-1;;;;;;39039:49:0;;;;-1:-1:-1;;;39072:15:0;39039:49;;;;;;;;;;39362:11;;39422:24;;;;;39465:13;;38971:20;;39422:24;;39465:13;39461:384;;39675:13;;39660:11;:28;39656:174;;39713:20;;39782:28;;;;39756:54;;-1:-1:-1;;;39756:54:0;-1:-1:-1;;;;;;39756:54:0;;;-1:-1:-1;;;;;39713:20:0;;39756:54;;;;39656:174;38820:1036;;;39892:7;39888:2;-1:-1:-1;;;;;39873:27:0;39882:4;-1:-1:-1;;;;;39873:27:0;;;;;;;;;;;39911:42;37935:2026;;37831:2130;;;:::o;34913:104::-;34982:27;34992:2;34996:8;34982:27;;;;;;;;;;;;:9;:27::i;29879:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;29990:7:0;30073:13;;30066:4;:20;30035:886;;;30107:31;30141:17;;;:11;:17;;;;;;;;;30107:51;;;;;;;;;-1:-1:-1;;;;;30107:51:0;;;;-1:-1:-1;;;30107:51:0;;;;;;;;;;;-1:-1:-1;;;30107:51:0;;;;;;;;;;;;;;30177:729;;30227:14;;-1:-1:-1;;;;;30227:28:0;;30223:101;;30291:9;29879:1109;-1:-1:-1;;;29879:1109:0:o;30223:101::-;-1:-1:-1;;;30666:6:0;30711:17;;;;:11;:17;;;;;;;;;30699:29;;;;;;;;;-1:-1:-1;;;;;30699:29:0;;;;;-1:-1:-1;;;30699:29:0;;;;;;;;;;;-1:-1:-1;;;30699:29:0;;;;;;;;;;;;;30759:28;30755:109;;30827:9;29879:1109;-1:-1:-1;;;29879:1109:0:o;30755:109::-;30626:261;;;30088:833;30035:886;30949:31;;;;;;;;;;;;;;4992:191;5085:6;;;-1:-1:-1;;;;;5102:17:0;;;-1:-1:-1;;5102:17:0;;;;;;;5135:40;;5085:6;;;5102:17;5085:6;;5135:40;;5066:16;;5135:40;5055:128;4992:191;:::o;43576:667::-;43760:72;;-1:-1:-1;;;43760:72:0;;43739:4;;-1:-1:-1;;;;;43760:36:0;;;;;:72;;2667:10;;43811:4;;43817:7;;43826:5;;43760:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43760:72:0;;;;;;;;-1:-1:-1;;43760:72:0;;;;;;;;;;;;:::i;:::-;;;43756:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43994:13:0;;43990:235;;44040:40;;-1:-1:-1;;;44040:40:0;;;;;;;;;;;43990:235;44183:6;44177:13;44168:6;44164:2;44160:15;44153:38;43756:480;-1:-1:-1;;;;;;43879:55:0;-1:-1:-1;;;43879:55:0;;-1:-1:-1;43756:480:0;43576:667;;;;;;:::o;46702:108::-;46762:13;46795:7;46788:14;;;;;:::i;286:723::-;342:13;563:10;559:53;;-1:-1:-1;;590:10:0;;;;;;;;;;;;;;;;;;286:723::o;559:53::-;637:5;622:12;678:78;685:9;;678:78;;711:8;;;;:::i;:::-;;-1:-1:-1;734:10:0;;-1:-1:-1;742:2:0;734:10;;:::i;:::-;;;678:78;;;766:19;798:6;788:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;788:17:0;;766:39;;816:154;823:10;;816:154;;850:11;860:1;850:11;;:::i;:::-;;-1:-1:-1;919:10:0;927:2;919:5;:10;:::i;:::-;906:24;;:2;:24;:::i;:::-;893:39;;876:6;883;876:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;947:11:0;956:2;947:11;;:::i;:::-;;;816:154;;35380:163;35503:32;35509:2;35513:8;35523:5;35530:4;35941:20;35964:13;-1:-1:-1;;;;;35992:16:0;;35988:48;;36017:19;;;;;;;;;;;;;;35988:48;36051:13;36047:44;;36073:18;;;;;;;;;;;;;;36047:44;-1:-1:-1;;;;;36442:16:0;;;;;;:12;:16;;;;;;;;:44;;36501:49;;;36442:44;;;;;;;;36501:49;;;;-1:-1:-1;;36442:44:0;;;;;;36501:49;;;;;;;;;;;;;;;;36567:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;36617:66:0;;;;-1:-1:-1;;;36667:15:0;36617:66;;;;;;;;;;36567:25;36764:23;;;36808:4;:23;;;;-1:-1:-1;;;;;;36816:13:0;;16115:19;:23;;36816:15;36804:641;;;36852:314;36883:38;;36908:12;;-1:-1:-1;;;;;36883:38:0;;;36900:1;;36883:38;;36900:1;;36883:38;36949:69;36988:1;36992:2;36996:14;;;;;;37012:5;36949:30;:69::i;:::-;36944:174;;37054:40;;-1:-1:-1;;;37054:40:0;;;;;;;;;;;36944:174;37161:3;37145:12;:19;;36852:314;;37247:12;37230:13;;:29;37226:43;;37261:8;;;37226:43;36804:641;;;37310:120;37341:40;;37366:14;;;;;-1:-1:-1;;;;;37341:40:0;;;37358:1;;37341:40;;37358:1;;37341:40;37425:3;37409:12;:19;;37310:120;;36804:641;-1:-1:-1;37459:13:0;:28;37509:60;34107:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:186::-;910:6;963:2;951:9;942:7;938:23;934:32;931:52;;;979:1;976;969:12;931:52;1002:29;1021:9;1002:29;:::i;1042:260::-;1110:6;1118;1171:2;1159:9;1150:7;1146:23;1142:32;1139:52;;;1187:1;1184;1177:12;1139:52;1210:29;1229:9;1210:29;:::i;:::-;1200:39;;1258:38;1292:2;1281:9;1277:18;1258:38;:::i;:::-;1248:48;;1042:260;;;;;:::o;1307:328::-;1384:6;1392;1400;1453:2;1441:9;1432:7;1428:23;1424:32;1421:52;;;1469:1;1466;1459:12;1421:52;1492:29;1511:9;1492:29;:::i;:::-;1482:39;;1540:38;1574:2;1563:9;1559:18;1540:38;:::i;:::-;1530:48;;1625:2;1614:9;1610:18;1597:32;1587:42;;1307:328;;;;;:::o;1640:666::-;1735:6;1743;1751;1759;1812:3;1800:9;1791:7;1787:23;1783:33;1780:53;;;1829:1;1826;1819:12;1780:53;1852:29;1871:9;1852:29;:::i;:::-;1842:39;;1900:38;1934:2;1923:9;1919:18;1900:38;:::i;:::-;1890:48;;1985:2;1974:9;1970:18;1957:32;1947:42;;2040:2;2029:9;2025:18;2012:32;2067:18;2059:6;2056:30;2053:50;;;2099:1;2096;2089:12;2053:50;2122:22;;2175:4;2167:13;;2163:27;-1:-1:-1;2153:55:1;;2204:1;2201;2194:12;2153:55;2227:73;2292:7;2287:2;2274:16;2269:2;2265;2261:11;2227:73;:::i;:::-;2217:83;;;1640:666;;;;;;;:::o;2311:347::-;2376:6;2384;2437:2;2425:9;2416:7;2412:23;2408:32;2405:52;;;2453:1;2450;2443:12;2405:52;2476:29;2495:9;2476:29;:::i;:::-;2466:39;;2555:2;2544:9;2540:18;2527:32;2602:5;2595:13;2588:21;2581:5;2578:32;2568:60;;2624:1;2621;2614:12;2568:60;2647:5;2637:15;;;2311:347;;;;;:::o;2663:254::-;2731:6;2739;2792:2;2780:9;2771:7;2767:23;2763:32;2760:52;;;2808:1;2805;2798:12;2760:52;2831:29;2850:9;2831:29;:::i;:::-;2821:39;2907:2;2892:18;;;;2879:32;;-1:-1:-1;;;2663:254:1:o;2922:245::-;2980:6;3033:2;3021:9;3012:7;3008:23;3004:32;3001:52;;;3049:1;3046;3039:12;3001:52;3088:9;3075:23;3107:30;3131:5;3107:30;:::i;3172:249::-;3241:6;3294:2;3282:9;3273:7;3269:23;3265:32;3262:52;;;3310:1;3307;3300:12;3262:52;3342:9;3336:16;3361:30;3385:5;3361:30;:::i;3426:266::-;3495:6;3548:2;3536:9;3527:7;3523:23;3519:32;3516:52;;;3564:1;3561;3554:12;3516:52;3603:9;3590:23;3642:1;3635:5;3632:12;3622:40;;3658:1;3655;3648:12;3697:450;3766:6;3819:2;3807:9;3798:7;3794:23;3790:32;3787:52;;;3835:1;3832;3825:12;3787:52;3875:9;3862:23;3908:18;3900:6;3897:30;3894:50;;;3940:1;3937;3930:12;3894:50;3963:22;;4016:4;4008:13;;4004:27;-1:-1:-1;3994:55:1;;4045:1;4042;4035:12;3994:55;4068:73;4133:7;4128:2;4115:16;4110:2;4106;4102:11;4068:73;:::i;4152:180::-;4211:6;4264:2;4252:9;4243:7;4239:23;4235:32;4232:52;;;4280:1;4277;4270:12;4232:52;-1:-1:-1;4303:23:1;;4152:180;-1:-1:-1;4152:180:1:o;4337:257::-;4378:3;4416:5;4410:12;4443:6;4438:3;4431:19;4459:63;4515:6;4508:4;4503:3;4499:14;4492:4;4485:5;4481:16;4459:63;:::i;:::-;4576:2;4555:15;-1:-1:-1;;4551:29:1;4542:39;;;;4583:4;4538:50;;4337:257;-1:-1:-1;;4337:257:1:o;4599:290::-;4676:1;4669:5;4666:12;4656:200;;-1:-1:-1;;;4709:1:1;4702:88;4813:4;4810:1;4803:15;4841:4;4838:1;4831:15;4656:200;4865:18;;4599:290::o;4894:1584::-;5118:3;5156:6;5150:13;5182:4;5195:51;5239:6;5234:3;5229:2;5221:6;5217:15;5195:51;:::i;:::-;5309:13;;5268:16;;;;5331:55;5309:13;5268:16;5353:15;;;5331:55;:::i;:::-;5475:13;;5408:20;;;5448:1;;5535;5557:18;;;;5610;;;;5637:93;;5715:4;5705:8;5701:19;5689:31;;5637:93;5778:2;5768:8;5765:16;5745:18;5742:40;5739:224;;;-1:-1:-1;;;5812:3:1;5805:90;5918:4;5915:1;5908:15;5948:4;5943:3;5936:17;5739:224;5979:18;6006:110;;;;6130:1;6125:328;;;;5972:481;;6006:110;-1:-1:-1;;6041:24:1;;6027:39;;6086:20;;;;-1:-1:-1;6006:110:1;;6125:328;11434:1;11427:14;;;11471:4;11458:18;;6220:1;6234:169;6248:8;6245:1;6242:15;6234:169;;;6330:14;;6315:13;;;6308:37;6373:16;;;;6265:10;;6234:169;;;6238:3;;6434:8;6427:5;6423:20;6416:27;;5972:481;-1:-1:-1;6469:3:1;;4894:1584;-1:-1:-1;;;;;;;;;;;4894:1584:1:o;6924:511::-;7118:4;-1:-1:-1;;;;;7228:2:1;7220:6;7216:15;7205:9;7198:34;7280:2;7272:6;7268:15;7263:2;7252:9;7248:18;7241:43;;7320:6;7315:2;7304:9;7300:18;7293:34;7363:3;7358:2;7347:9;7343:18;7336:31;7384:45;7424:3;7413:9;7409:19;7401:6;7384:45;:::i;:::-;7376:53;6924:511;-1:-1:-1;;;;;;6924:511:1:o;7632:200::-;7774:2;7759:18;;7786:40;7763:9;7808:6;7786:40;:::i;7837:294::-;8015:2;8000:18;;8027:40;8004:9;8049:6;8027:40;:::i;:::-;8076:49;8121:2;8110:9;8106:18;8098:6;8076:49;:::i;8136:219::-;8285:2;8274:9;8267:21;8248:4;8305:44;8345:2;8334:9;8330:18;8322:6;8305:44;:::i;11487:128::-;11527:3;11558:1;11554:6;11551:1;11548:13;11545:39;;;11564:18;;:::i;:::-;-1:-1:-1;11600:9:1;;11487:128::o;11620:120::-;11660:1;11686;11676:35;;11691:18;;:::i;:::-;-1:-1:-1;11725:9:1;;11620:120::o;11745:125::-;11785:4;11813:1;11810;11807:8;11804:34;;;11818:18;;:::i;:::-;-1:-1:-1;11855:9:1;;11745:125::o;11875:258::-;11947:1;11957:113;11971:6;11968:1;11965:13;11957:113;;;12047:11;;;12041:18;12028:11;;;12021:39;11993:2;11986:10;11957:113;;;12088:6;12085:1;12082:13;12079:48;;;-1:-1:-1;;12123:1:1;12105:16;;12098:27;11875:258::o;12138:437::-;12217:1;12213:12;;;;12260;;;12281:61;;12335:4;12327:6;12323:17;12313:27;;12281:61;12388:2;12380:6;12377:14;12357:18;12354:38;12351:218;;;-1:-1:-1;;;12422:1:1;12415:88;12526:4;12523:1;12516:15;12554:4;12551:1;12544:15;12351:218;;12138:437;;;:::o;12580:135::-;12619:3;-1:-1:-1;;12640:17:1;;12637:43;;;12660:18;;:::i;:::-;-1:-1:-1;12707:1:1;12696:13;;12580:135::o;12720:112::-;12752:1;12778;12768:35;;12783:18;;:::i;:::-;-1:-1:-1;12817:9:1;;12720:112::o;12837:184::-;-1:-1:-1;;;12886:1:1;12879:88;12986:4;12983:1;12976:15;13010:4;13007:1;13000:15;13026:184;-1:-1:-1;;;13075:1:1;13068:88;13175:4;13172:1;13165:15;13199:4;13196:1;13189:15;13215:184;-1:-1:-1;;;13264:1:1;13257:88;13364:4;13361:1;13354:15;13388:4;13385:1;13378:15;13404:184;-1:-1:-1;;;13453:1:1;13446:88;13553:4;13550:1;13543:15;13577:4;13574:1;13567:15;13593:184;-1:-1:-1;;;13642:1:1;13635:88;13742:4;13739:1;13732:15;13766:4;13763:1;13756:15;13782:177;-1:-1:-1;;;;;;13860:5:1;13856:78;13849:5;13846:89;13836:117;;13949:1;13946;13939:12
Swarm Source
ipfs://9f9353ac66d46c3a30a7b7f065a542d335bb9f6bc1d270d62806c03d7d4f551f
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.