ERC-721
Overview
Max Total Supply
3,179 NELK
Holders
26
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
160 NELKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FullSend
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-19 */ /** _________ __ __ _____ _____ _____ _____ __ _ ______ (_ _____) ) ) ( ( (_ _) (_ _) / ____\ / ___/ / \ / ) (_ __ \ ) (___ ( ( ) ) | | | | ( (___ ( (__ / /\ \ / / ) ) \ \ ( ___) ) ) ( ( | | | | \___ \ ) __) ) ) ) ) ) ) ( ( ) ) ) ( ( ( ) ) | | __ | | __ ) ) ( ( ( ( ( ( ( ( ) ) ) ) ( ) ) \__/ ( __| |___) ) __| |___) ) ___/ / \ \___ / / \ \/ / / /__/ / \_/ \______/ \________/ \________/ /____/ \____\ (_/ \__/ (______/ ______ __ __ ________ __ __ _____ (_ _ \ ) \ / ( (___ ___) ( \ / ) / ___/ ) (_) ) \ \ / / ) ) \ (__) / ( (__ \ _/ \ \/ / ( ( ) __ ( ) __) / _ \ \ / ) ) ( ( ) ) ( ( _) (_) ) )( ( ( ) )( ( \ \___ (______/ /__\ /__\ /_/ \_\ \____\ __ _ _____ _____ __ ___ ______ ____ __ __ _____ / \ / ) / ___/ (_ _) () ) / __) (_ _ \ / __ \ ) \ / ( / ____\ / /\ \ / / ( (__ | | ( (_/ / ) (_) ) / / \ \ \ \ / / ( (___ ) ) ) ) ) ) ) __) | | () ( \ _/ ( () () ) \ \/ / \___ \ ( ( ( ( ( ( ( ( | | __ () /\ \ / _ \ ( () () ) \ / ) ) / / \ \/ / \ \___ __| |___) ) ( ( \ \ _) (_) ) \ \__/ / )( ___/ / (_/ \__/ \____\ \________/ ()_) \_\ (______/ \____/ /__\ /____/ MINT @ THEFULLSENDNFT.COM MINT PRICE: 0.08 ETH LIMIT: 10 per transaction DISCORD: discord.gg/FullSendNFT OPENSEA: opensea.io/collection/full-send-metacard-nft CREDIT TO: @AzukiZen for gas optimizations */ // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/interfaces/IERC20.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) 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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/interfaces/IERC165.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; // File: @openzeppelin/contracts/interfaces/IERC2981.sol // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @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; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: contracts/ERC721A.sol pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 1; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @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) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); 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); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @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 tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } 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); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a 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 _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { 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("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * 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`. */ 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. * * 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` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } //SPDX-License-Identifier: MIT //Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721) pragma solidity ^0.8.0; contract FullSend is ERC721A, IERC2981, Ownable, ReentrancyGuard { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private tokenCounter; string private baseURI = "ipfs://Qme9ke9JUmW3RXGQ7aeVuk9bHjDreKp4dsDPZ9gaobHZRV"; address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bool private isOpenSeaProxyActive = true; uint256 public constant MAX_MINTS_PER_TX = 10; uint256 public maxSupply = 10000; uint256 public constant PUBLIC_SALE_PRICE = 0.08 ether; bool public isPublicSaleActive = true; // ============ ACCESS CONTROL/SANITY MODIFIERS ============ modifier publicSaleActive() { require(isPublicSaleActive, "Public sale is not open"); _; } modifier maxMintsPerTX(uint256 numberOfTokens) { require( numberOfTokens <= MAX_MINTS_PER_TX, "Max mints per transaction exceeded" ); _; } modifier canMintNFTs(uint256 numberOfTokens) { require( totalSupply() + numberOfTokens <= maxSupply, "Not enough mints remaining to mint" ); _; } modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) { require( (price * numberOfTokens) == msg.value, "Incorrect ETH value sent" ); _; } constructor( ) ERC721A("Full Send", "NELK", 100, maxSupply) { } // ============ PUBLIC FUNCTIONS FOR MINTING ============ function mint(uint256 numberOfTokens) external payable nonReentrant isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens) publicSaleActive canMintNFTs(numberOfTokens) { _safeMint(address(0), numberOfTokens); } // ============ PUBLIC READ-ONLY FUNCTIONS ============ function getBaseURI() external view returns (string memory) { return baseURI; } // ============ OWNER-ONLY ADMIN FUNCTIONS ============ function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } // function to disable gasless listings for security in case // opensea ever shuts down or is compromised function setIsOpenSeaProxyActive(bool _isOpenSeaProxyActive) external onlyOwner { isOpenSeaProxyActive = _isOpenSeaProxyActive; } function setIsPublicSaleActive(bool _isPublicSaleActive) external onlyOwner { isPublicSaleActive = _isPublicSaleActive; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function reserveMint(address to, uint256 numberOfTokens) public onlyOwner { _safeMint(to, numberOfTokens); } function withdrawTokens(IERC20 token) public onlyOwner { uint256 balance = token.balanceOf(address(this)); token.transfer(msg.sender, balance); } // ============ SUPPORTING FUNCTIONS ============ function nextTokenId() private returns (uint256) { tokenCounter.increment(); return tokenCounter.current(); } // ============ FUNCTION OVERRIDES ============ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) public view override returns (bool) { // Get a reference to OpenSea's proxy registry contract by instantiating // the contract using the already existing address. ProxyRegistry proxyRegistry = ProxyRegistry( openSeaProxyRegistryAddress ); if ( isOpenSeaProxyActive && address(proxyRegistry.proxies(owner)) == operator ) { return true; } return super.isApprovedForAll(owner, operator); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Nonexistent token"); return string(abi.encodePacked(baseURI, "/", (tokenId+1).toString(), ".json")); } /** * @dev See {IERC165-royaltyInfo}. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view override returns (address receiver, uint256 royaltyAmount) { require(_exists(tokenId), "Nonexistent token"); return (address(this), SafeMath.div(SafeMath.mul(salePrice, 5), 100)); } } // These contract definitions are used to create a reference to the OpenSea // ProxyRegistry contract by using the registry's address (see isApprovedForAll). contract OwnableDelegateProxy { } contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isOpenSeaProxyActive","type":"bool"}],"name":"setIsOpenSeaProxyActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60016000908155600755610120604052603560c08181529062002bbc60e03980516200003491600b91602090910190620001cb565b50600c805460ff60a01b196001600160a01b031990911673a5409ec958c83c3f309868babaca7c86dcb077c11716600160a01b179055612710600d55600e805460ff191660011790553480156200008a57600080fd5b5060405180604001604052806009815260200168119d5b1b0814d95b9960ba1b815250604051806040016040528060048152602001634e454c4b60e01b8152506064600d5460008111620000fb5760405162461bcd60e51b8152600401620000f290620002b8565b60405180910390fd5b600082116200011e5760405162461bcd60e51b8152600401620000f29062000271565b835162000133906001906020870190620001cb565b50825162000149906002906020860190620001cb565b5060a091909152608052506200016a90506200016462000175565b62000179565b600160095562000343565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d99062000306565b90600052602060002090601f016020900481019282620001fd576000855562000248565b82601f106200021857805160ff191683800117855562000248565b8280016001018555821562000248579182015b82811115620002485782518255916020019190600101906200022b565b50620002569291506200025a565b5090565b5b808211156200025657600081556001016200025b565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200031b57607f821691505b602082108114156200033d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161284862000374600039600081816114a6015281816114d0015261189c0152600050506128486000f3fe6080604052600436106101ee5760003560e01c80636352211e1161010d578063b0ea1802116100a0578063d5abeb011161006f578063d5abeb0114610545578063d7224ba01461055a578063e43082f71461056f578063e985e9c51461058f578063f2fde38b146105af576101ee565b8063b0ea1802146104d0578063b88d4fde146104f0578063c6a91b4214610510578063c87b56dd14610525576101ee565b80638da5cb5b116100dc5780638da5cb5b1461047357806395d89b4114610488578063a0712d681461049d578063a22cb465146104b0576101ee565b80636352211e1461040957806370a0823114610429578063714c539814610449578063715018a61461045e576101ee565b806328cad13d1161018557806342842e0e1161015457806342842e0e1461038957806349df728c146103a95780634f6ccce7146103c957806355f804b3146103e9576101ee565b806328cad13d146103065780632a55205a146103265780632f745c59146103545780633ccfd60b14610374576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806318160ddd146102bc5780631e84c413146102d157806323b872dd146102e6576101ee565b806301ffc9a7146101f357806306fdde031461022957806307e89ec01461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611d81565b6105cf565b6040516102209190611ff2565b60405180910390f35b34801561023557600080fd5b5061023e6105fc565b6040516102209190611ffd565b34801561025757600080fd5b5061026061068e565b6040516102209190612620565b34801561027957600080fd5b5061028d610288366004611e1b565b61069a565b6040516102209190611f88565b3480156102a657600080fd5b506102ba6102b5366004611d1e565b6106e6565b005b3480156102c857600080fd5b5061026061077f565b3480156102dd57600080fd5b50610213610785565b3480156102f257600080fd5b506102ba610301366004611c34565b61078e565b34801561031257600080fd5b506102ba610321366004611d49565b610799565b34801561033257600080fd5b50610346610341366004611e4b565b6107eb565b604051610220929190611fd9565b34801561036057600080fd5b5061026061036f366004611d1e565b610834565b34801561038057600080fd5b506102ba610930565b34801561039557600080fd5b506102ba6103a4366004611c34565b6109a2565b3480156103b557600080fd5b506102ba6103c4366004611be0565b6109bd565b3480156103d557600080fd5b506102606103e4366004611e1b565b610afe565b3480156103f557600080fd5b506102ba610404366004611dd5565b610b2a565b34801561041557600080fd5b5061028d610424366004611e1b565b610b7c565b34801561043557600080fd5b50610260610444366004611be0565b610b8e565b34801561045557600080fd5b5061023e610bdb565b34801561046a57600080fd5b506102ba610bea565b34801561047f57600080fd5b5061028d610c35565b34801561049457600080fd5b5061023e610c44565b6102ba6104ab366004611e1b565b610c53565b3480156104bc57600080fd5b506102ba6104cb366004611cf1565b610d1a565b3480156104dc57600080fd5b506102ba6104eb366004611d1e565b610de8565b3480156104fc57600080fd5b506102ba61050b366004611c74565b610e31565b34801561051c57600080fd5b50610260610e6a565b34801561053157600080fd5b5061023e610540366004611e1b565b610e6f565b34801561055157600080fd5b50610260610ed2565b34801561056657600080fd5b50610260610ed8565b34801561057b57600080fd5b506102ba61058a366004611d49565b610ede565b34801561059b57600080fd5b506102136105aa366004611bfc565b610f3b565b3480156105bb57600080fd5b506102ba6105ca366004611be0565b61100f565b60006001600160e01b0319821663152a902d60e11b14806105f457506105f482611080565b90505b919050565b60606001805461060b9061272d565b80601f01602080910402602001604051908101604052809291908181526020018280546106379061272d565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b67011c37937e08000081565b60006106a5826110db565b6106ca5760405162461bcd60e51b81526004016106c190612591565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106f182610b7c565b9050806001600160a01b0316836001600160a01b031614156107255760405162461bcd60e51b81526004016106c190612383565b806001600160a01b03166107376110e2565b6001600160a01b031614806107535750610753816105aa6110e2565b61076f5760405162461bcd60e51b81526004016106c1906121d7565b61077a8383836110e6565b505050565b60005490565b600e5460ff1681565b61077a838383611142565b6107a16110e2565b6001600160a01b03166107b2610c35565b6001600160a01b0316146107d85760405162461bcd60e51b81526004016106c1906122c5565b600e805460ff1916911515919091179055565b6000806107f7846110db565b6108135760405162461bcd60e51b81526004016106c1906121ac565b30610829610822856005611456565b6064611469565b915091509250929050565b600061083f83610b8e565b821061085d5760405162461bcd60e51b81526004016106c190612010565b600061086761077f565b905060008060005b83811015610911576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108c257805192505b876001600160a01b0316836001600160a01b031614156108fe57868414156108f05750935061092a92505050565b836108fa81612768565b9450505b508061090981612768565b91505061086f565b5060405162461bcd60e51b81526004016106c190612486565b92915050565b6109386110e2565b6001600160a01b0316610949610c35565b6001600160a01b03161461096f5760405162461bcd60e51b81526004016106c1906122c5565b6040514790339082156108fc029083906000818181858888f1935050505015801561099e573d6000803e3d6000fd5b5050565b61077a83838360405180602001604052806000815250610e31565b6109c56110e2565b6001600160a01b03166109d6610c35565b6001600160a01b0316146109fc5760405162461bcd60e51b81526004016106c1906122c5565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610a2b903090600401611f88565b60206040518083038186803b158015610a4357600080fd5b505afa158015610a57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7b9190611e33565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610aac9033908590600401611fd9565b602060405180830381600087803b158015610ac657600080fd5b505af1158015610ada573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077a9190611d65565b6000610b0861077f565b8210610b265760405162461bcd60e51b81526004016106c1906120e2565b5090565b610b326110e2565b6001600160a01b0316610b43610c35565b6001600160a01b031614610b695760405162461bcd60e51b81526004016106c1906122c5565b805161099e90600b906020840190611ac4565b6000610b8782611475565b5192915050565b60006001600160a01b038216610bb65760405162461bcd60e51b81526004016106c190612234565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461060b9061272d565b610bf26110e2565b6001600160a01b0316610c03610c35565b6001600160a01b031614610c295760405162461bcd60e51b81526004016106c1906122c5565b610c336000611588565b565b6008546001600160a01b031690565b60606002805461060b9061272d565b60026009541415610c765760405162461bcd60e51b81526004016106c1906124d4565b600260095567011c37937e0800008134610c90828461268c565b14610cad5760405162461bcd60e51b81526004016106c19061244f565b600e5460ff16610ccf5760405162461bcd60e51b81526004016106c19061255a565b82600d5481610cdc61077f565b610ce69190612660565b1115610d045760405162461bcd60e51b81526004016106c190612125565b610d0f6000856115da565b505060016009555050565b610d226110e2565b6001600160a01b0316826001600160a01b03161415610d535760405162461bcd60e51b81526004016106c1906122fa565b8060066000610d606110e2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610da46110e2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ddc9190611ff2565b60405180910390a35050565b610df06110e2565b6001600160a01b0316610e01610c35565b6001600160a01b031614610e275760405162461bcd60e51b81526004016106c1906122c5565b61099e82826115da565b610e3c848484611142565b610e48848484846115f4565b610e645760405162461bcd60e51b81526004016106c1906123c5565b50505050565b600a81565b6060610e7a826110db565b610e965760405162461bcd60e51b81526004016106c1906121ac565b600b610eab610ea6846001612660565b61170f565b604051602001610ebc929190611ed2565b6040516020818303038152906040529050919050565b600d5481565b60075481565b610ee66110e2565b6001600160a01b0316610ef7610c35565b6001600160a01b031614610f1d5760405162461bcd60e51b81526004016106c1906122c5565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff168015610fee5750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b8152600401610f939190611f88565b60206040518083038186803b158015610fab57600080fd5b505afa158015610fbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe39190611db9565b6001600160a01b0316145b15610ffd57600191505061092a565b611007848461182a565b949350505050565b6110176110e2565b6001600160a01b0316611028610c35565b6001600160a01b03161461104e5760405162461bcd60e51b81526004016106c1906122c5565b6001600160a01b0381166110745760405162461bcd60e51b81526004016106c190612052565b61107d81611588565b50565b60006001600160e01b031982166380ac58cd60e01b14806110b157506001600160e01b03198216635b5e139f60e01b145b806110cc57506001600160e01b0319821663780e9d6360e01b145b806105f457506105f482611858565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061114d82611475565b9050600081600001516001600160a01b03166111676110e2565b6001600160a01b0316148061119c575061117f6110e2565b6001600160a01b03166111918461069a565b6001600160a01b0316145b806111b0575081516111b0906105aa6110e2565b9050806111cf5760405162461bcd60e51b81526004016106c190612331565b846001600160a01b031682600001516001600160a01b0316146112045760405162461bcd60e51b81526004016106c19061227f565b6001600160a01b03841661122a5760405162461bcd60e51b81526004016106c190612167565b6112378585856001610e64565b61124760008484600001516110e6565b6001600160a01b03851660009081526004602052604081208054600192906112799084906001600160801b03166126ab565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926112c591859116612635565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561135b846001612660565b6000818152600360205260409020549091506001600160a01b031661140057611383816110db565b156114005760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461144e8686866001610e64565b505050505050565b6000611462828461268c565b9392505050565b60006114628284612678565b61147d611b44565b611486826110db565b6114a25760405162461bcd60e51b81526004016106c190612098565b60007f00000000000000000000000000000000000000000000000000000000000000008310611503576114f57f0000000000000000000000000000000000000000000000000000000000000000846126d3565b611500906001612660565b90505b825b81811061156f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561155c5792506105f7915050565b508061156781612716565b915050611505565b5060405162461bcd60e51b81526004016106c19061250b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61099e828260405180602001604052806000815250611871565b6000611608846001600160a01b0316611abe565b1561170457836001600160a01b031663150b7a026116246110e2565b8786866040518563ffffffff1660e01b81526004016116469493929190611f9c565b602060405180830381600087803b15801561166057600080fd5b505af1925050508015611690575060408051601f3d908101601f1916820190925261168d91810190611d9d565b60015b6116ea573d8080156116be576040519150601f19603f3d011682016040523d82523d6000602084013e6116c3565b606091505b5080516116e25760405162461bcd60e51b81526004016106c1906123c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611007565b506001949350505050565b60608161173457506040805180820190915260018152600360fc1b60208201526105f7565b8160005b811561175e578061174881612768565b91506117579050600a83612678565b9150611738565b60008167ffffffffffffffff81111561178757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117b1576020820181803683370190505b5090505b8415611007576117c66001836126d3565b91506117d3600a86612783565b6117de906030612660565b60f81b81838151811061180157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611823600a86612678565b94506117b5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b60005461187d816110db565b1561189a5760405162461bcd60e51b81526004016106c190612418565b7f00000000000000000000000000000000000000000000000000000000000000008311156118da5760405162461bcd60e51b81526004016106c1906125de565b6118e76000858386610e64565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611943908790612635565b6001600160801b031681526020018583602001516119619190612635565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611aac5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a7060008884886115f4565b611a8c5760405162461bcd60e51b81526004016106c1906123c5565b81611a9681612768565b9250508080611aa490612768565b915050611a23565b50600081815561144e90878588610e64565b3b151590565b828054611ad09061272d565b90600052602060002090601f016020900481019282611af25760008555611b38565b82601f10611b0b57805160ff1916838001178555611b38565b82800160010185558215611b38579182015b82811115611b38578251825591602001919060010190611b1d565b50610b26929150611b5b565b604080518082019091526000808252602082015290565b5b80821115610b265760008155600101611b5c565b600067ffffffffffffffff80841115611b8b57611b8b6127c3565b604051601f8501601f191681016020018281118282101715611baf57611baf6127c3565b604052848152915081838501861015611bc757600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611bf1578081fd5b8135611462816127d9565b60008060408385031215611c0e578081fd5b8235611c19816127d9565b91506020830135611c29816127d9565b809150509250929050565b600080600060608486031215611c48578081fd5b8335611c53816127d9565b92506020840135611c63816127d9565b929592945050506040919091013590565b60008060008060808587031215611c89578081fd5b8435611c94816127d9565b93506020850135611ca4816127d9565b925060408501359150606085013567ffffffffffffffff811115611cc6578182fd5b8501601f81018713611cd6578182fd5b611ce587823560208401611b70565b91505092959194509250565b60008060408385031215611d03578182fd5b8235611d0e816127d9565b91506020830135611c29816127ee565b60008060408385031215611d30578182fd5b8235611d3b816127d9565b946020939093013593505050565b600060208284031215611d5a578081fd5b8135611462816127ee565b600060208284031215611d76578081fd5b8151611462816127ee565b600060208284031215611d92578081fd5b8135611462816127fc565b600060208284031215611dae578081fd5b8151611462816127fc565b600060208284031215611dca578081fd5b8151611462816127d9565b600060208284031215611de6578081fd5b813567ffffffffffffffff811115611dfc578182fd5b8201601f81018413611e0c578182fd5b61100784823560208401611b70565b600060208284031215611e2c578081fd5b5035919050565b600060208284031215611e44578081fd5b5051919050565b60008060408385031215611e5d578182fd5b50508035926020909101359150565b60008151808452611e848160208601602086016126ea565b601f01601f19169290920160200192915050565b60008151611eaa8185602086016126ea565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b8254600090819060028104600180831680611eee57607f831692505b6020808410821415611f0e57634e487b7160e01b87526022600452602487fd5b818015611f225760018114611f3357611f5f565b60ff19861689528489019650611f5f565b611f3c8b612629565b885b86811015611f575781548b820152908501908301611f3e565b505084890196505b505050505050611f7f611f7a611f7483611ec5565b86611e98565b611eb4565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fcf90830184611e6c565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526114626020830184611e6c565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b0380831681851680830382111561265757612657612797565b01949350505050565b6000821982111561267357612673612797565b500190565b600082612687576126876127ad565b500490565b60008160001904831182151516156126a6576126a6612797565b500290565b60006001600160801b03838116908316818110156126cb576126cb612797565b039392505050565b6000828210156126e5576126e5612797565b500390565b60005b838110156127055781810151838201526020016126ed565b83811115610e645750506000910152565b60008161272557612725612797565b506000190190565b60028104600182168061274157607f821691505b6020821081141561276257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561277c5761277c612797565b5060010190565b600082612792576127926127ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461107d57600080fd5b801515811461107d57600080fd5b6001600160e01b03198116811461107d57600080fdfea2646970667358221220e0ba21e0305607e29bf68c718666cc1e6e693b7a5c15c3ed72e3d7551032d62064736f6c63430008000033697066733a2f2f516d65396b65394a556d57335258475137616556756b3962486a4472654b7034647344505a3967616f62485a5256
Deployed Bytecode
0x6080604052600436106101ee5760003560e01c80636352211e1161010d578063b0ea1802116100a0578063d5abeb011161006f578063d5abeb0114610545578063d7224ba01461055a578063e43082f71461056f578063e985e9c51461058f578063f2fde38b146105af576101ee565b8063b0ea1802146104d0578063b88d4fde146104f0578063c6a91b4214610510578063c87b56dd14610525576101ee565b80638da5cb5b116100dc5780638da5cb5b1461047357806395d89b4114610488578063a0712d681461049d578063a22cb465146104b0576101ee565b80636352211e1461040957806370a0823114610429578063714c539814610449578063715018a61461045e576101ee565b806328cad13d1161018557806342842e0e1161015457806342842e0e1461038957806349df728c146103a95780634f6ccce7146103c957806355f804b3146103e9576101ee565b806328cad13d146103065780632a55205a146103265780632f745c59146103545780633ccfd60b14610374576101ee565b8063095ea7b3116101c1578063095ea7b31461029a57806318160ddd146102bc5780631e84c413146102d157806323b872dd146102e6576101ee565b806301ffc9a7146101f357806306fdde031461022957806307e89ec01461024b578063081812fc1461026d575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611d81565b6105cf565b6040516102209190611ff2565b60405180910390f35b34801561023557600080fd5b5061023e6105fc565b6040516102209190611ffd565b34801561025757600080fd5b5061026061068e565b6040516102209190612620565b34801561027957600080fd5b5061028d610288366004611e1b565b61069a565b6040516102209190611f88565b3480156102a657600080fd5b506102ba6102b5366004611d1e565b6106e6565b005b3480156102c857600080fd5b5061026061077f565b3480156102dd57600080fd5b50610213610785565b3480156102f257600080fd5b506102ba610301366004611c34565b61078e565b34801561031257600080fd5b506102ba610321366004611d49565b610799565b34801561033257600080fd5b50610346610341366004611e4b565b6107eb565b604051610220929190611fd9565b34801561036057600080fd5b5061026061036f366004611d1e565b610834565b34801561038057600080fd5b506102ba610930565b34801561039557600080fd5b506102ba6103a4366004611c34565b6109a2565b3480156103b557600080fd5b506102ba6103c4366004611be0565b6109bd565b3480156103d557600080fd5b506102606103e4366004611e1b565b610afe565b3480156103f557600080fd5b506102ba610404366004611dd5565b610b2a565b34801561041557600080fd5b5061028d610424366004611e1b565b610b7c565b34801561043557600080fd5b50610260610444366004611be0565b610b8e565b34801561045557600080fd5b5061023e610bdb565b34801561046a57600080fd5b506102ba610bea565b34801561047f57600080fd5b5061028d610c35565b34801561049457600080fd5b5061023e610c44565b6102ba6104ab366004611e1b565b610c53565b3480156104bc57600080fd5b506102ba6104cb366004611cf1565b610d1a565b3480156104dc57600080fd5b506102ba6104eb366004611d1e565b610de8565b3480156104fc57600080fd5b506102ba61050b366004611c74565b610e31565b34801561051c57600080fd5b50610260610e6a565b34801561053157600080fd5b5061023e610540366004611e1b565b610e6f565b34801561055157600080fd5b50610260610ed2565b34801561056657600080fd5b50610260610ed8565b34801561057b57600080fd5b506102ba61058a366004611d49565b610ede565b34801561059b57600080fd5b506102136105aa366004611bfc565b610f3b565b3480156105bb57600080fd5b506102ba6105ca366004611be0565b61100f565b60006001600160e01b0319821663152a902d60e11b14806105f457506105f482611080565b90505b919050565b60606001805461060b9061272d565b80601f01602080910402602001604051908101604052809291908181526020018280546106379061272d565b80156106845780601f1061065957610100808354040283529160200191610684565b820191906000526020600020905b81548152906001019060200180831161066757829003601f168201915b5050505050905090565b67011c37937e08000081565b60006106a5826110db565b6106ca5760405162461bcd60e51b81526004016106c190612591565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106f182610b7c565b9050806001600160a01b0316836001600160a01b031614156107255760405162461bcd60e51b81526004016106c190612383565b806001600160a01b03166107376110e2565b6001600160a01b031614806107535750610753816105aa6110e2565b61076f5760405162461bcd60e51b81526004016106c1906121d7565b61077a8383836110e6565b505050565b60005490565b600e5460ff1681565b61077a838383611142565b6107a16110e2565b6001600160a01b03166107b2610c35565b6001600160a01b0316146107d85760405162461bcd60e51b81526004016106c1906122c5565b600e805460ff1916911515919091179055565b6000806107f7846110db565b6108135760405162461bcd60e51b81526004016106c1906121ac565b30610829610822856005611456565b6064611469565b915091509250929050565b600061083f83610b8e565b821061085d5760405162461bcd60e51b81526004016106c190612010565b600061086761077f565b905060008060005b83811015610911576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156108c257805192505b876001600160a01b0316836001600160a01b031614156108fe57868414156108f05750935061092a92505050565b836108fa81612768565b9450505b508061090981612768565b91505061086f565b5060405162461bcd60e51b81526004016106c190612486565b92915050565b6109386110e2565b6001600160a01b0316610949610c35565b6001600160a01b03161461096f5760405162461bcd60e51b81526004016106c1906122c5565b6040514790339082156108fc029083906000818181858888f1935050505015801561099e573d6000803e3d6000fd5b5050565b61077a83838360405180602001604052806000815250610e31565b6109c56110e2565b6001600160a01b03166109d6610c35565b6001600160a01b0316146109fc5760405162461bcd60e51b81526004016106c1906122c5565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190610a2b903090600401611f88565b60206040518083038186803b158015610a4357600080fd5b505afa158015610a57573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7b9190611e33565b60405163a9059cbb60e01b81529091506001600160a01b0383169063a9059cbb90610aac9033908590600401611fd9565b602060405180830381600087803b158015610ac657600080fd5b505af1158015610ada573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077a9190611d65565b6000610b0861077f565b8210610b265760405162461bcd60e51b81526004016106c1906120e2565b5090565b610b326110e2565b6001600160a01b0316610b43610c35565b6001600160a01b031614610b695760405162461bcd60e51b81526004016106c1906122c5565b805161099e90600b906020840190611ac4565b6000610b8782611475565b5192915050565b60006001600160a01b038216610bb65760405162461bcd60e51b81526004016106c190612234565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600b805461060b9061272d565b610bf26110e2565b6001600160a01b0316610c03610c35565b6001600160a01b031614610c295760405162461bcd60e51b81526004016106c1906122c5565b610c336000611588565b565b6008546001600160a01b031690565b60606002805461060b9061272d565b60026009541415610c765760405162461bcd60e51b81526004016106c1906124d4565b600260095567011c37937e0800008134610c90828461268c565b14610cad5760405162461bcd60e51b81526004016106c19061244f565b600e5460ff16610ccf5760405162461bcd60e51b81526004016106c19061255a565b82600d5481610cdc61077f565b610ce69190612660565b1115610d045760405162461bcd60e51b81526004016106c190612125565b610d0f6000856115da565b505060016009555050565b610d226110e2565b6001600160a01b0316826001600160a01b03161415610d535760405162461bcd60e51b81526004016106c1906122fa565b8060066000610d606110e2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610da46110e2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ddc9190611ff2565b60405180910390a35050565b610df06110e2565b6001600160a01b0316610e01610c35565b6001600160a01b031614610e275760405162461bcd60e51b81526004016106c1906122c5565b61099e82826115da565b610e3c848484611142565b610e48848484846115f4565b610e645760405162461bcd60e51b81526004016106c1906123c5565b50505050565b600a81565b6060610e7a826110db565b610e965760405162461bcd60e51b81526004016106c1906121ac565b600b610eab610ea6846001612660565b61170f565b604051602001610ebc929190611ed2565b6040516020818303038152906040529050919050565b600d5481565b60075481565b610ee66110e2565b6001600160a01b0316610ef7610c35565b6001600160a01b031614610f1d5760405162461bcd60e51b81526004016106c1906122c5565b600c8054911515600160a01b0260ff60a01b19909216919091179055565b600c546000906001600160a01b03811690600160a01b900460ff168015610fee5750826001600160a01b0316816001600160a01b031663c4552791866040518263ffffffff1660e01b8152600401610f939190611f88565b60206040518083038186803b158015610fab57600080fd5b505afa158015610fbf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe39190611db9565b6001600160a01b0316145b15610ffd57600191505061092a565b611007848461182a565b949350505050565b6110176110e2565b6001600160a01b0316611028610c35565b6001600160a01b03161461104e5760405162461bcd60e51b81526004016106c1906122c5565b6001600160a01b0381166110745760405162461bcd60e51b81526004016106c190612052565b61107d81611588565b50565b60006001600160e01b031982166380ac58cd60e01b14806110b157506001600160e01b03198216635b5e139f60e01b145b806110cc57506001600160e01b0319821663780e9d6360e01b145b806105f457506105f482611858565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061114d82611475565b9050600081600001516001600160a01b03166111676110e2565b6001600160a01b0316148061119c575061117f6110e2565b6001600160a01b03166111918461069a565b6001600160a01b0316145b806111b0575081516111b0906105aa6110e2565b9050806111cf5760405162461bcd60e51b81526004016106c190612331565b846001600160a01b031682600001516001600160a01b0316146112045760405162461bcd60e51b81526004016106c19061227f565b6001600160a01b03841661122a5760405162461bcd60e51b81526004016106c190612167565b6112378585856001610e64565b61124760008484600001516110e6565b6001600160a01b03851660009081526004602052604081208054600192906112799084906001600160801b03166126ab565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926112c591859116612635565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561135b846001612660565b6000818152600360205260409020549091506001600160a01b031661140057611383816110db565b156114005760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461144e8686866001610e64565b505050505050565b6000611462828461268c565b9392505050565b60006114628284612678565b61147d611b44565b611486826110db565b6114a25760405162461bcd60e51b81526004016106c190612098565b60007f00000000000000000000000000000000000000000000000000000000000000648310611503576114f57f0000000000000000000000000000000000000000000000000000000000000064846126d3565b611500906001612660565b90505b825b81811061156f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561155c5792506105f7915050565b508061156781612716565b915050611505565b5060405162461bcd60e51b81526004016106c19061250b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61099e828260405180602001604052806000815250611871565b6000611608846001600160a01b0316611abe565b1561170457836001600160a01b031663150b7a026116246110e2565b8786866040518563ffffffff1660e01b81526004016116469493929190611f9c565b602060405180830381600087803b15801561166057600080fd5b505af1925050508015611690575060408051601f3d908101601f1916820190925261168d91810190611d9d565b60015b6116ea573d8080156116be576040519150601f19603f3d011682016040523d82523d6000602084013e6116c3565b606091505b5080516116e25760405162461bcd60e51b81526004016106c1906123c5565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611007565b506001949350505050565b60608161173457506040805180820190915260018152600360fc1b60208201526105f7565b8160005b811561175e578061174881612768565b91506117579050600a83612678565b9150611738565b60008167ffffffffffffffff81111561178757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156117b1576020820181803683370190505b5090505b8415611007576117c66001836126d3565b91506117d3600a86612783565b6117de906030612660565b60f81b81838151811061180157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611823600a86612678565b94506117b5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b60005461187d816110db565b1561189a5760405162461bcd60e51b81526004016106c190612418565b7f00000000000000000000000000000000000000000000000000000000000000648311156118da5760405162461bcd60e51b81526004016106c1906125de565b6118e76000858386610e64565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611943908790612635565b6001600160801b031681526020018583602001516119619190612635565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611aac5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611a7060008884886115f4565b611a8c5760405162461bcd60e51b81526004016106c1906123c5565b81611a9681612768565b9250508080611aa490612768565b915050611a23565b50600081815561144e90878588610e64565b3b151590565b828054611ad09061272d565b90600052602060002090601f016020900481019282611af25760008555611b38565b82601f10611b0b57805160ff1916838001178555611b38565b82800160010185558215611b38579182015b82811115611b38578251825591602001919060010190611b1d565b50610b26929150611b5b565b604080518082019091526000808252602082015290565b5b80821115610b265760008155600101611b5c565b600067ffffffffffffffff80841115611b8b57611b8b6127c3565b604051601f8501601f191681016020018281118282101715611baf57611baf6127c3565b604052848152915081838501861015611bc757600080fd5b8484602083013760006020868301015250509392505050565b600060208284031215611bf1578081fd5b8135611462816127d9565b60008060408385031215611c0e578081fd5b8235611c19816127d9565b91506020830135611c29816127d9565b809150509250929050565b600080600060608486031215611c48578081fd5b8335611c53816127d9565b92506020840135611c63816127d9565b929592945050506040919091013590565b60008060008060808587031215611c89578081fd5b8435611c94816127d9565b93506020850135611ca4816127d9565b925060408501359150606085013567ffffffffffffffff811115611cc6578182fd5b8501601f81018713611cd6578182fd5b611ce587823560208401611b70565b91505092959194509250565b60008060408385031215611d03578182fd5b8235611d0e816127d9565b91506020830135611c29816127ee565b60008060408385031215611d30578182fd5b8235611d3b816127d9565b946020939093013593505050565b600060208284031215611d5a578081fd5b8135611462816127ee565b600060208284031215611d76578081fd5b8151611462816127ee565b600060208284031215611d92578081fd5b8135611462816127fc565b600060208284031215611dae578081fd5b8151611462816127fc565b600060208284031215611dca578081fd5b8151611462816127d9565b600060208284031215611de6578081fd5b813567ffffffffffffffff811115611dfc578182fd5b8201601f81018413611e0c578182fd5b61100784823560208401611b70565b600060208284031215611e2c578081fd5b5035919050565b600060208284031215611e44578081fd5b5051919050565b60008060408385031215611e5d578182fd5b50508035926020909101359150565b60008151808452611e848160208601602086016126ea565b601f01601f19169290920160200192915050565b60008151611eaa8185602086016126ea565b9290920192915050565b64173539b7b760d91b815260050190565b602f60f81b815260010190565b8254600090819060028104600180831680611eee57607f831692505b6020808410821415611f0e57634e487b7160e01b87526022600452602487fd5b818015611f225760018114611f3357611f5f565b60ff19861689528489019650611f5f565b611f3c8b612629565b885b86811015611f575781548b820152908501908301611f3e565b505084890196505b505050505050611f7f611f7a611f7483611ec5565b86611e98565b611eb4565b95945050505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611fcf90830184611e6c565b9695505050505050565b6001600160a01b03929092168252602082015260400190565b901515815260200190565b6000602082526114626020830184611e6c565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526022908201527f4e6f7420656e6f756768206d696e74732072656d61696e696e6720746f206d696040820152611b9d60f21b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252601190820152702737b732bc34b9ba32b73a103a37b5b2b760791b604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526018908201527f496e636f7272656374204554482076616c75652073656e740000000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b60208082526017908201527f5075626c69632073616c65206973206e6f74206f70656e000000000000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b90815260200190565b60009081526020902090565b60006001600160801b0380831681851680830382111561265757612657612797565b01949350505050565b6000821982111561267357612673612797565b500190565b600082612687576126876127ad565b500490565b60008160001904831182151516156126a6576126a6612797565b500290565b60006001600160801b03838116908316818110156126cb576126cb612797565b039392505050565b6000828210156126e5576126e5612797565b500390565b60005b838110156127055781810151838201526020016126ed565b83811115610e645750506000910152565b60008161272557612725612797565b506000190190565b60028104600182168061274157607f821691505b6020821081141561276257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561277c5761277c612797565b5060010190565b600082612792576127926127ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461107d57600080fd5b801515811461107d57600080fd5b6001600160e01b03198116811461107d57600080fdfea2646970667358221220e0ba21e0305607e29bf68c718666cc1e6e693b7a5c15c3ed72e3d7551032d62064736f6c63430008000033
Deployed Bytecode Sourcemap
57222:5230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60641:292;;;;;;;;;;-1:-1:-1;60641:292:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46528:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;57740:54::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48053:204::-;;;;;;;;;;-1:-1:-1;48053:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47616:379::-;;;;;;;;;;-1:-1:-1;47616:379:0;;;;;:::i;:::-;;:::i;:::-;;43363:94;;;;;;;;;;;;;:::i;57801:37::-;;;;;;;;;;;;;:::i;48903:142::-;;;;;;;;;;-1:-1:-1;48903:142:0;;;;;:::i;:::-;;:::i;59762:158::-;;;;;;;;;;-1:-1:-1;59762:158:0;;;;;:::i;:::-;;:::i;62131:318::-;;;;;;;;;;-1:-1:-1;62131:318:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;43994:744::-;;;;;;;;;;-1:-1:-1;43994:744:0;;;;;:::i;:::-;;:::i;59928:143::-;;;;;;;;;;;;;:::i;49108:157::-;;;;;;;;;;-1:-1:-1;49108:157:0;;;;;:::i;:::-;;:::i;60209:168::-;;;;;;;;;;-1:-1:-1;60209:168:0;;;;;:::i;:::-;;:::i;43526:177::-;;;;;;;;;;-1:-1:-1;43526:177:0;;;;;:::i;:::-;;:::i;59364:100::-;;;;;;;;;;-1:-1:-1;59364:100:0;;;;;:::i;:::-;;:::i;46351:118::-;;;;;;;;;;-1:-1:-1;46351:118:0;;;;;:::i;:::-;;:::i;45228:211::-;;;;;;;;;;-1:-1:-1;45228:211:0;;;;;:::i;:::-;;:::i;59200:93::-;;;;;;;;;;;;;:::i;21386:103::-;;;;;;;;;;;;;:::i;20735:87::-;;;;;;;;;;;;;:::i;46683:98::-;;;;;;;;;;;;;:::i;58845:282::-;;;;;;:::i;:::-;;:::i;48321:274::-;;;;;;;;;;-1:-1:-1;48321:274:0;;;;;:::i;:::-;;:::i;60079:122::-;;;;;;;;;;-1:-1:-1;60079:122:0;;;;;:::i;:::-;;:::i;49328:311::-;;;;;;;;;;-1:-1:-1;49328:311:0;;;;;:::i;:::-;;:::i;57647:45::-;;;;;;;;;;;;;:::i;61758:307::-;;;;;;;;;;-1:-1:-1;61758:307:0;;;;;:::i;:::-;;:::i;57699:32::-;;;;;;;;;;;;;:::i;53674:43::-;;;;;;;;;;;;;:::i;59588:166::-;;;;;;;;;;-1:-1:-1;59588:166:0;;;;;:::i;:::-;;:::i;61070:617::-;;;;;;;;;;-1:-1:-1;61070:617:0;;;;;:::i;:::-;;:::i;21644:201::-;;;;;;;;;;-1:-1:-1;21644:201:0;;;;;:::i;:::-;;:::i;60641:292::-;60789:4;-1:-1:-1;;;;;;60831:41:0;;-1:-1:-1;;;60831:41:0;;:94;;;60889:36;60913:11;60889:23;:36::i;:::-;60811:114;;60641:292;;;;:::o;46528:94::-;46582:13;46611:5;46604:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46528:94;:::o;57740:54::-;57784:10;57740:54;:::o;48053:204::-;48121:7;48145:16;48153:7;48145;:16::i;:::-;48137:74;;;;-1:-1:-1;;;48137:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;48227:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48227:24:0;;48053:204::o;47616:379::-;47685:13;47701:24;47717:7;47701:15;:24::i;:::-;47685:40;;47746:5;-1:-1:-1;;;;;47740:11:0;:2;-1:-1:-1;;;;;47740:11:0;;;47732:58;;;;-1:-1:-1;;;47732:58:0;;;;;;;:::i;:::-;47831:5;-1:-1:-1;;;;;47815:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;47815:21:0;;:62;;;;47840:37;47857:5;47864:12;:10;:12::i;47840:37::-;47799:153;;;;-1:-1:-1;;;47799:153:0;;;;;;;:::i;:::-;47961:28;47970:2;47974:7;47983:5;47961:8;:28::i;:::-;47616:379;;;:::o;43363:94::-;43416:7;43439:12;43363:94;:::o;57801:37::-;;;;;;:::o;48903:142::-;49011:28;49021:4;49027:2;49031:7;49011:9;:28::i;59762:158::-;20966:12;:10;:12::i;:::-;-1:-1:-1;;;;;20955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20955:23:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;:::i;:::-;59872:18:::1;:40:::0;;-1:-1:-1;;59872:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;59762:158::o;62131:318::-;62256:16;62274:21;62321:16;62329:7;62321;:16::i;:::-;62313:46;;;;-1:-1:-1;;;62313:46:0;;;;;;;:::i;:::-;62388:4;62395:45;62408:26;62421:9;62432:1;62408:12;:26::i;:::-;62436:3;62395:12;:45::i;:::-;62372:69;;;;62131:318;;;;;:::o;43994:744::-;44103:7;44138:16;44148:5;44138:9;:16::i;:::-;44130:5;:24;44122:71;;;;-1:-1:-1;;;44122:71:0;;;;;;;:::i;:::-;44200:22;44225:13;:11;:13::i;:::-;44200:38;;44245:19;44275:25;44325:9;44320:350;44344:14;44340:1;:18;44320:350;;;44374:31;44408:14;;;:11;:14;;;;;;;;;44374:48;;;;;;;;;-1:-1:-1;;;;;44374:48:0;;;;;-1:-1:-1;;;44374:48:0;;;;;;;;;;;;44435:28;44431:89;;44496:14;;;-1:-1:-1;44431:89:0;44553:5;-1:-1:-1;;;;;44532:26:0;:17;-1:-1:-1;;;;;44532:26:0;;44528:135;;;44590:5;44575:11;:20;44571:59;;;-1:-1:-1;44617:1:0;-1:-1:-1;44610:8:0;;-1:-1:-1;;;44610:8:0;44571:59;44640:13;;;;:::i;:::-;;;;44528:135;-1:-1:-1;44360:3:0;;;;:::i;:::-;;;;44320:350;;;;44676:56;;-1:-1:-1;;;44676:56:0;;;;;;;:::i;43994:744::-;;;;;:::o;59928:143::-;20966:12;:10;:12::i;:::-;-1:-1:-1;;;;;20955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20955:23:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;:::i;:::-;60026:37:::1;::::0;59994:21:::1;::::0;60034:10:::1;::::0;60026:37;::::1;;;::::0;59994:21;;59976:15:::1;60026:37:::0;59976:15;60026:37;59994:21;60034:10;60026:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;21026:1;59928:143::o:0;49108:157::-;49220:39;49237:4;49243:2;49247:7;49220:39;;;;;;;;;;;;:16;:39::i;60209:168::-;20966:12;:10;:12::i;:::-;-1:-1:-1;;;;;20955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20955:23:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;:::i;:::-;60293:30:::1;::::0;-1:-1:-1;;;60293:30:0;;60275:15:::1;::::0;-1:-1:-1;;;;;60293:15:0;::::1;::::0;::::1;::::0;:30:::1;::::0;60317:4:::1;::::0;60293:30:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;60334:35;::::0;-1:-1:-1;;;60334:35:0;;60275:48;;-1:-1:-1;;;;;;60334:14:0;::::1;::::0;::::1;::::0;:35:::1;::::0;60349:10:::1;::::0;60275:48;;60334:35:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;43526:177::-:0;43593:7;43625:13;:11;:13::i;:::-;43617:5;:21;43609:69;;;;-1:-1:-1;;;43609:69:0;;;;;;;:::i;:::-;-1:-1:-1;43692:5:0;43526:177::o;59364:100::-;20966:12;:10;:12::i;:::-;-1:-1:-1;;;;;20955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20955:23:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;:::i;:::-;59438:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;46351:118::-:0;46415:7;46438:20;46450:7;46438:11;:20::i;:::-;:25;;46351:118;-1:-1:-1;;46351:118:0:o;45228:211::-;45292:7;-1:-1:-1;;;;;45316:19:0;;45308:75;;;;-1:-1:-1;;;45308:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;45405:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;45405:27:0;;45228:211::o;59200:93::-;59245:13;59278:7;59271:14;;;;;:::i;21386:103::-;20966:12;:10;:12::i;:::-;-1:-1:-1;;;;;20955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20955:23:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;:::i;:::-;21451:30:::1;21478:1;21451:18;:30::i;:::-;21386:103::o:0;20735:87::-;20808:6;;-1:-1:-1;;;;;20808:6:0;20735:87;:::o;46683:98::-;46739:13;46768:7;46761:14;;;;;:::i;58845:282::-;12664:1;13262:7;;:19;;13254:63;;;;-1:-1:-1;;;13254:63:0;;;;;;;:::i;:::-;12664:1;13395:7;:18;57784:10:::1;58985:14:::0;58608:9:::1;58581:22;58985:14:::0;57784:10;58581:22:::1;:::i;:::-;58580:37;58558:111;;;;-1:-1:-1::0;;;58558:111:0::1;;;;;;;:::i;:::-;57968:18:::2;::::0;::::2;;57960:54;;;;-1:-1:-1::0;;;57960:54:0::2;;;;;;;:::i;:::-;59048:14:::3;58379:9;;58344:14;58328:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:60;;58306:144;;;;-1:-1:-1::0;;;58306:144:0::3;;;;;;;:::i;:::-;59082:37:::4;59100:1;59104:14;59082:9;:37::i;:::-;-1:-1:-1::0;;12620:1:0;13574:7;:22;-1:-1:-1;;58845:282:0:o;48321:274::-;48424:12;:10;:12::i;:::-;-1:-1:-1;;;;;48412:24:0;:8;-1:-1:-1;;;;;48412:24:0;;;48404:63;;;;-1:-1:-1;;;48404:63:0;;;;;;;:::i;:::-;48521:8;48476:18;:32;48495:12;:10;:12::i;:::-;-1:-1:-1;;;;;48476:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;48476:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;48476:53:0;;;;;;;;;;;48556:12;:10;:12::i;:::-;-1:-1:-1;;;;;48541:48:0;;48580:8;48541:48;;;;;;:::i;:::-;;;;;;;;48321:274;;:::o;60079:122::-;20966:12;:10;:12::i;:::-;-1:-1:-1;;;;;20955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20955:23:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;:::i;:::-;60164:29:::1;60174:2;60178:14;60164:9;:29::i;49328:311::-:0;49465:28;49475:4;49481:2;49485:7;49465:9;:28::i;:::-;49516:48;49539:4;49545:2;49549:7;49558:5;49516:22;:48::i;:::-;49500:133;;;;-1:-1:-1;;;49500:133:0;;;;;;;:::i;:::-;49328:311;;;;:::o;57647:45::-;57690:2;57647:45;:::o;61758:307::-;61876:13;61915:16;61923:7;61915;:16::i;:::-;61907:46;;;;-1:-1:-1;;;61907:46:0;;;;;;;:::i;:::-;62010:7;62024:22;62025:9;:7;62033:1;62025:9;:::i;:::-;62024:20;:22::i;:::-;61993:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61966:91;;61758:307;;;:::o;57699:32::-;;;;:::o;53674:43::-;;;;:::o;59588:166::-;20966:12;:10;:12::i;:::-;-1:-1:-1;;;;;20955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20955:23:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;:::i;:::-;59702:20:::1;:44:::0;;;::::1;;-1:-1:-1::0;;;59702:44:0::1;-1:-1:-1::0;;;;59702:44:0;;::::1;::::0;;;::::1;::::0;;59588:166::o;61070:617::-;61418:27;;61195:4;;-1:-1:-1;;;;;61418:27:0;;;-1:-1:-1;;;61485:20:0;;;;:86;;;;;61563:8;-1:-1:-1;;;;;61522:49:0;61530:13;-1:-1:-1;;;;;61530:21:0;;61552:5;61530:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;61522:49:0;;61485:86;61467:154;;;61605:4;61598:11;;;;;61467:154;61640:39;61663:5;61670:8;61640:22;:39::i;:::-;61633:46;61070:617;-1:-1:-1;;;;61070:617:0:o;21644:201::-;20966:12;:10;:12::i;:::-;-1:-1:-1;;;;;20955:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;20955:23:0;;20947:68;;;;-1:-1:-1;;;20947:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;21733:22:0;::::1;21725:73;;;;-1:-1:-1::0;;;21725:73:0::1;;;;;;;:::i;:::-;21809:28;21828:8;21809:18;:28::i;:::-;21644:201:::0;:::o;44802:370::-;44929:4;-1:-1:-1;;;;;;44959:40:0;;-1:-1:-1;;;44959:40:0;;:99;;-1:-1:-1;;;;;;;45010:48:0;;-1:-1:-1;;;45010:48:0;44959:99;:160;;;-1:-1:-1;;;;;;;45069:50:0;;-1:-1:-1;;;45069:50:0;44959:160;:207;;;;45130:36;45154:11;45130:23;:36::i;49878:105::-;49935:4;49965:12;-1:-1:-1;49955:22:0;49878:105::o;19459:98::-;19539:10;19459:98;:::o;53496:172::-;53593:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;53593:29:0;-1:-1:-1;;;;;53593:29:0;;;;;;;;;53634:28;;53593:24;;53634:28;;;;;;;53496:172;;;:::o;51861:1529::-;51958:35;51996:20;52008:7;51996:11;:20::i;:::-;51958:58;;52025:22;52067:13;:18;;;-1:-1:-1;;;;;52051:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;52051:34:0;;:81;;;;52120:12;:10;:12::i;:::-;-1:-1:-1;;;;;52096:36:0;:20;52108:7;52096:11;:20::i;:::-;-1:-1:-1;;;;;52096:36:0;;52051:81;:142;;;-1:-1:-1;52160:18:0;;52143:50;;52180:12;:10;:12::i;52143:50::-;52025:169;;52219:17;52203:101;;;;-1:-1:-1;;;52203:101:0;;;;;;;:::i;:::-;52351:4;-1:-1:-1;;;;;52329:26:0;:13;:18;;;-1:-1:-1;;;;;52329:26:0;;52313:98;;;;-1:-1:-1;;;52313:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52426:16:0;;52418:66;;;;-1:-1:-1;;;52418:66:0;;;;;;;:::i;:::-;52493:43;52515:4;52521:2;52525:7;52534:1;52493:21;:43::i;:::-;52593:49;52610:1;52614:7;52623:13;:18;;;52593:8;:49::i;:::-;-1:-1:-1;;;;;52651:18:0;;;;;;:12;:18;;;;;:31;;52681:1;;52651:18;:31;;52681:1;;-1:-1:-1;;;;;52651:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;52651:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;52689:16:0;;-1:-1:-1;52689:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;52689:16:0;;:29;;-1:-1:-1;;52689:29:0;;:::i;:::-;;;-1:-1:-1;;;;;52689:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52748:43:0;;;;;;;;-1:-1:-1;;;;;52748:43:0;;;;;;52774:15;52748:43;;;;;;;;;-1:-1:-1;52725:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;52725:66:0;-1:-1:-1;;;;52725:66:0;;;;-1:-1:-1;;;;;;52725:66:0;;;;;;;;53041:11;52737:7;-1:-1:-1;53041:11:0;:::i;:::-;53104:1;53063:24;;;:11;:24;;;;;:29;53019:33;;-1:-1:-1;;;;;;53063:29:0;53059:236;;53121:20;53129:11;53121:7;:20::i;:::-;53117:171;;;53181:97;;;;;;;;53208:18;;-1:-1:-1;;;;;53181:97:0;;;;;;53239:28;;;;53181:97;;;;;;;;;;-1:-1:-1;53154:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;53154:124:0;;;;;;;;;-1:-1:-1;;;;53154:124:0;-1:-1:-1;;;53154:124:0;;;;;;;;;;;;;;53117:171;53327:7;53323:2;-1:-1:-1;;;;;53308:27:0;53317:4;-1:-1:-1;;;;;53308:27:0;;;;;;;;;;;53342:42;53363:4;53369:2;53373:7;53382:1;53342:20;:42::i;:::-;51861:1529;;;;;;:::o;5960:98::-;6018:7;6045:5;6049:1;6045;:5;:::i;:::-;6038:12;5960:98;-1:-1:-1;;;5960:98:0:o;6359:::-;6417:7;6444:5;6448:1;6444;:5;:::i;45691:606::-;45767:21;;:::i;:::-;45808:16;45816:7;45808;:16::i;:::-;45800:71;;;;-1:-1:-1;;;45800:71:0;;;;;;;:::i;:::-;45880:26;45928:12;45917:7;:23;45913:93;;45972:22;45982:12;45972:7;:22;:::i;:::-;:26;;45997:1;45972:26;:::i;:::-;45951:47;;45913:93;46034:7;46014:212;46051:18;46043:4;:26;46014:212;;46088:31;46122:17;;;:11;:17;;;;;;;;;46088:51;;;;;;;;;-1:-1:-1;;;;;46088:51:0;;;;;-1:-1:-1;;;46088:51:0;;;;;;;;;;;;46152:28;46148:71;;46200:9;-1:-1:-1;46193:16:0;;-1:-1:-1;;46193:16:0;46148:71;-1:-1:-1;46071:6:0;;;;:::i;:::-;;;;46014:212;;;;46234:57;;-1:-1:-1;;;46234:57:0;;;;;;;:::i;22005:191::-;22098:6;;;-1:-1:-1;;;;;22115:17:0;;;-1:-1:-1;;;;;;22115:17:0;;;;;;;22148:40;;22098:6;;;22115:17;22098:6;;22148:40;;22079:16;;22148:40;22005:191;;:::o;49989:98::-;50054:27;50064:2;50068:8;50054:27;;;;;;;;;;;;:9;:27::i;55211:690::-;55348:4;55365:15;:2;-1:-1:-1;;;;;55365:13:0;;:15::i;:::-;55361:535;;;55420:2;-1:-1:-1;;;;;55404:36:0;;55441:12;:10;:12::i;:::-;55455:4;55461:7;55470:5;55404:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55404:72:0;;;;;;;;-1:-1:-1;;55404:72:0;;;;;;;;;;;;:::i;:::-;;;55391:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55635:13:0;;55631:215;;55668:61;;-1:-1:-1;;;55668:61:0;;;;;;;:::i;55631:215::-;55814:6;55808:13;55799:6;55795:2;55791:15;55784:38;55391:464;-1:-1:-1;;;;;;55526:55:0;-1:-1:-1;;;55526:55:0;;-1:-1:-1;55519:62:0;;55361:535;-1:-1:-1;55884:4:0;55211:690;;;;;;:::o;17021:723::-;17077:13;17298:10;17294:53;;-1:-1:-1;17325:10:0;;;;;;;;;;;;-1:-1:-1;;;17325:10:0;;;;;;17294:53;17372:5;17357:12;17413:78;17420:9;;17413:78;;17446:8;;;;:::i;:::-;;-1:-1:-1;17469:10:0;;-1:-1:-1;17477:2:0;17469:10;;:::i;:::-;;;17413:78;;;17501:19;17533:6;17523:17;;;;;;-1:-1:-1;;;17523:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17523:17:0;;17501:39;;17551:154;17558:10;;17551:154;;17585:11;17595:1;17585:11;;:::i;:::-;;-1:-1:-1;17654:10:0;17662:2;17654:5;:10;:::i;:::-;17641:24;;:2;:24;:::i;:::-;17628:39;;17611:6;17618;17611:14;;;;;;-1:-1:-1;;;17611:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17611:56:0;;;;;;;;-1:-1:-1;17682:11:0;17691:2;17682:11;;:::i;:::-;;;17551:154;;48658:186;-1:-1:-1;;;;;48803:25:0;;;48780:4;48803:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;48658:186::o;34135:157::-;-1:-1:-1;;;;;;34244:40:0;;-1:-1:-1;;;34244:40:0;34135:157;;;:::o;50426:1203::-;50531:20;50554:12;50703:21;50554:12;50703:7;:21::i;:::-;50702:22;50694:64;;;;-1:-1:-1;;;50694:64:0;;;;;;;:::i;:::-;50785:12;50773:8;:24;;50765:71;;;;-1:-1:-1;;;50765:71:0;;;;;;;:::i;:::-;50845:61;50875:1;50879:2;50883:12;50897:8;50845:21;:61::i;:::-;-1:-1:-1;;;;;50948:16:0;;50915:30;50948:16;;;:12;:16;;;;;;;;;50915:49;;;;;;;;;-1:-1:-1;;;;;50915:49:0;;;;;-1:-1:-1;;;50915:49:0;;;;;;;;;;;50990:119;;;;;;;;51010:19;;50915:49;;50990:119;;;51010:39;;51040:8;;51010:39;:::i;:::-;-1:-1:-1;;;;;50990:119:0;;;;;51093:8;51058:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;50990:119:0;;;;;;-1:-1:-1;;;;;50971:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;50971:138:0;;;;-1:-1:-1;;50971:138:0;;;;;;;;;;;;;;;;;51144:43;;;;;;;;;;;51170:15;51144:43;;;;;;;;51116:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;51116:71:0;-1:-1:-1;;;;51116:71:0;;;;-1:-1:-1;;;;;;51116:71:0;;;;;;;;;;;;;;;51128:12;;51240:281;51264:8;51260:1;:12;51240:281;;;51293:38;;51318:12;;-1:-1:-1;;;;;51293:38:0;;;51310:1;;51293:38;;51310:1;;51293:38;51358:59;51389:1;51393:2;51397:12;51411:5;51358:22;:59::i;:::-;51340:150;;;;-1:-1:-1;;;51340:150:0;;;;;;;:::i;:::-;51499:14;;;;:::i;:::-;;;;51274:3;;;;;:::i;:::-;;;;51240:281;;;-1:-1:-1;51529:12:0;:27;;;51563:60;;51596:2;51600:12;51614:8;51563:20;:60::i;23023:387::-;23346:20;23394:8;;;23023:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:259::-;;738:2;726:9;717:7;713:23;709:32;706:2;;;759:6;751;744:22;706:2;803:9;790:23;822:33;849:5;822:33;:::i;890:402::-;;;1019:2;1007:9;998:7;994:23;990:32;987:2;;;1040:6;1032;1025:22;987:2;1084:9;1071:23;1103:33;1130:5;1103:33;:::i;:::-;1155:5;-1:-1:-1;1212:2:1;1197:18;;1184:32;1225:35;1184:32;1225:35;:::i;:::-;1279:7;1269:17;;;977:315;;;;;:::o;1297:470::-;;;;1443:2;1431:9;1422:7;1418:23;1414:32;1411:2;;;1464:6;1456;1449:22;1411:2;1508:9;1495:23;1527:33;1554:5;1527:33;:::i;:::-;1579:5;-1:-1:-1;1636:2:1;1621:18;;1608:32;1649:35;1608:32;1649:35;:::i;:::-;1401:366;;1703:7;;-1:-1:-1;;;1757:2:1;1742:18;;;;1729:32;;1401:366::o;1772:830::-;;;;;1944:3;1932:9;1923:7;1919:23;1915:33;1912:2;;;1966:6;1958;1951:22;1912:2;2010:9;1997:23;2029:33;2056:5;2029:33;:::i;:::-;2081:5;-1:-1:-1;2138:2:1;2123:18;;2110:32;2151:35;2110:32;2151:35;:::i;:::-;2205:7;-1:-1:-1;2259:2:1;2244:18;;2231:32;;-1:-1:-1;2314:2:1;2299:18;;2286:32;2341:18;2330:30;;2327:2;;;2378:6;2370;2363:22;2327:2;2406:22;;2459:4;2451:13;;2447:27;-1:-1:-1;2437:2:1;;2493:6;2485;2478:22;2437:2;2521:75;2588:7;2583:2;2570:16;2565:2;2561;2557:11;2521:75;:::i;:::-;2511:85;;;1902:700;;;;;;;:::o;2607:396::-;;;2733:2;2721:9;2712:7;2708:23;2704:32;2701:2;;;2754:6;2746;2739:22;2701:2;2798:9;2785:23;2817:33;2844:5;2817:33;:::i;:::-;2869:5;-1:-1:-1;2926:2:1;2911:18;;2898:32;2939;2898;2939;:::i;3008:327::-;;;3137:2;3125:9;3116:7;3112:23;3108:32;3105:2;;;3158:6;3150;3143:22;3105:2;3202:9;3189:23;3221:33;3248:5;3221:33;:::i;:::-;3273:5;3325:2;3310:18;;;;3297:32;;-1:-1:-1;;;3095:240:1:o;3340:253::-;;3449:2;3437:9;3428:7;3424:23;3420:32;3417:2;;;3470:6;3462;3455:22;3417:2;3514:9;3501:23;3533:30;3557:5;3533:30;:::i;3598:257::-;;3718:2;3706:9;3697:7;3693:23;3689:32;3686:2;;;3739:6;3731;3724:22;3686:2;3776:9;3770:16;3795:30;3819:5;3795:30;:::i;3860:257::-;;3971:2;3959:9;3950:7;3946:23;3942:32;3939:2;;;3992:6;3984;3977:22;3939:2;4036:9;4023:23;4055:32;4081:5;4055:32;:::i;4122:261::-;;4244:2;4232:9;4223:7;4219:23;4215:32;4212:2;;;4265:6;4257;4250:22;4212:2;4302:9;4296:16;4321:32;4347:5;4321:32;:::i;4666:292::-;;4818:2;4806:9;4797:7;4793:23;4789:32;4786:2;;;4839:6;4831;4824:22;4786:2;4876:9;4870:16;4895:33;4922:5;4895:33;:::i;4963:482::-;;5085:2;5073:9;5064:7;5060:23;5056:32;5053:2;;;5106:6;5098;5091:22;5053:2;5151:9;5138:23;5184:18;5176:6;5173:30;5170:2;;;5221:6;5213;5206:22;5170:2;5249:22;;5302:4;5294:13;;5290:27;-1:-1:-1;5280:2:1;;5336:6;5328;5321:22;5280:2;5364:75;5431:7;5426:2;5413:16;5408:2;5404;5400:11;5364:75;:::i;5450:190::-;;5562:2;5550:9;5541:7;5537:23;5533:32;5530:2;;;5583:6;5575;5568:22;5530:2;-1:-1:-1;5611:23:1;;5520:120;-1:-1:-1;5520:120:1:o;5645:194::-;;5768:2;5756:9;5747:7;5743:23;5739:32;5736:2;;;5789:6;5781;5774:22;5736:2;-1:-1:-1;5817:16:1;;5726:113;-1:-1:-1;5726:113:1:o;5844:258::-;;;5973:2;5961:9;5952:7;5948:23;5944:32;5941:2;;;5994:6;5986;5979:22;5941:2;-1:-1:-1;;6022:23:1;;;6092:2;6077:18;;;6064:32;;-1:-1:-1;5931:171:1:o;6107:259::-;;6188:5;6182:12;6215:6;6210:3;6203:19;6231:63;6287:6;6280:4;6275:3;6271:14;6264:4;6257:5;6253:16;6231:63;:::i;:::-;6348:2;6327:15;-1:-1:-1;;6323:29:1;6314:39;;;;6355:4;6310:50;;6158:208;-1:-1:-1;;6158:208:1:o;6371:187::-;;6453:5;6447:12;6468:52;6513:6;6508:3;6501:4;6494:5;6490:16;6468:52;:::i;:::-;6536:16;;;;;6423:135;-1:-1:-1;;6423:135:1:o;6563:120::-;-1:-1:-1;;;6630:20:1;;6675:1;6666:11;;6620:63::o;6688:116::-;-1:-1:-1;;;6755:16:1;;6796:1;6787:11;;6745:59::o;6809:1449::-;7245:13;;6809:1449;;;;7318:1;7303:17;;7339:1;7375:18;;;;7402:2;;7456:4;7448:6;7444:17;7434:27;;7402:2;7482;7530;7522:6;7519:14;7499:18;7496:38;7493:2;;;-1:-1:-1;;;7557:33:1;;7613:4;7610:1;7603:15;7643:4;7564:3;7631:17;7493:2;7674:18;7701:104;;;;7819:1;7814:324;;;;7667:471;;7701:104;-1:-1:-1;;7734:24:1;;7722:37;;7779:16;;;;-1:-1:-1;7701:104:1;;7814:324;7850:39;7882:6;7850:39;:::i;:::-;7911:3;7927:165;7941:6;7938:1;7935:13;7927:165;;;8019:14;;8006:11;;;7999:35;8062:16;;;;7956:10;;7927:165;;;7931:3;;8121:6;8116:3;8112:16;8105:23;;7667:471;;;;;;;8154:98;8186:65;8214:36;8246:3;8214:36;:::i;:::-;8206:6;8186:65;:::i;:::-;8154:98;:::i;:::-;8147:105;7195:1063;-1:-1:-1;;;;;7195:1063:1:o;8263:203::-;-1:-1:-1;;;;;8427:32:1;;;;8409:51;;8397:2;8382:18;;8364:102::o;8471:490::-;-1:-1:-1;;;;;8740:15:1;;;8722:34;;8792:15;;8787:2;8772:18;;8765:43;8839:2;8824:18;;8817:34;;;8887:3;8882:2;8867:18;;8860:31;;;8471:490;;8908:47;;8935:19;;8927:6;8908:47;:::i;:::-;8900:55;8674:287;-1:-1:-1;;;;;;8674:287:1:o;8966:274::-;-1:-1:-1;;;;;9158:32:1;;;;9140:51;;9222:2;9207:18;;9200:34;9128:2;9113:18;;9095:145::o;9245:187::-;9410:14;;9403:22;9385:41;;9373:2;9358:18;;9340:92::o;9437:221::-;;9586:2;9575:9;9568:21;9606:46;9648:2;9637:9;9633:18;9625:6;9606:46;:::i;9663:398::-;9865:2;9847:21;;;9904:2;9884:18;;;9877:30;9943:34;9938:2;9923:18;;9916:62;-1:-1:-1;;;10009:2:1;9994:18;;9987:32;10051:3;10036:19;;9837:224::o;10066:402::-;10268:2;10250:21;;;10307:2;10287:18;;;10280:30;10346:34;10341:2;10326:18;;10319:62;-1:-1:-1;;;10412:2:1;10397:18;;10390:36;10458:3;10443:19;;10240:228::o;10473:406::-;10675:2;10657:21;;;10714:2;10694:18;;;10687:30;10753:34;10748:2;10733:18;;10726:62;-1:-1:-1;;;10819:2:1;10804:18;;10797:40;10869:3;10854:19;;10647:232::o;10884:399::-;11086:2;11068:21;;;11125:2;11105:18;;;11098:30;11164:34;11159:2;11144:18;;11137:62;-1:-1:-1;;;11230:2:1;11215:18;;11208:33;11273:3;11258:19;;11058:225::o;11288:398::-;11490:2;11472:21;;;11529:2;11509:18;;;11502:30;11568:34;11563:2;11548:18;;11541:62;-1:-1:-1;;;11634:2:1;11619:18;;11612:32;11676:3;11661:19;;11462:224::o;11691:401::-;11893:2;11875:21;;;11932:2;11912:18;;;11905:30;11971:34;11966:2;11951:18;;11944:62;-1:-1:-1;;;12037:2:1;12022:18;;12015:35;12082:3;12067:19;;11865:227::o;12097:341::-;12299:2;12281:21;;;12338:2;12318:18;;;12311:30;-1:-1:-1;;;12372:2:1;12357:18;;12350:47;12429:2;12414:18;;12271:167::o;12443:421::-;12645:2;12627:21;;;12684:2;12664:18;;;12657:30;12723:34;12718:2;12703:18;;12696:62;12794:27;12789:2;12774:18;;12767:55;12854:3;12839:19;;12617:247::o;12869:407::-;13071:2;13053:21;;;13110:2;13090:18;;;13083:30;13149:34;13144:2;13129:18;;13122:62;-1:-1:-1;;;13215:2:1;13200:18;;13193:41;13266:3;13251:19;;13043:233::o;13281:402::-;13483:2;13465:21;;;13522:2;13502:18;;;13495:30;13561:34;13556:2;13541:18;;13534:62;-1:-1:-1;;;13627:2:1;13612:18;;13605:36;13673:3;13658:19;;13455:228::o;13688:356::-;13890:2;13872:21;;;13909:18;;;13902:30;13968:34;13963:2;13948:18;;13941:62;14035:2;14020:18;;13862:182::o;14049:350::-;14251:2;14233:21;;;14290:2;14270:18;;;14263:30;14329:28;14324:2;14309:18;;14302:56;14390:2;14375:18;;14223:176::o;14404:414::-;14606:2;14588:21;;;14645:2;14625:18;;;14618:30;14684:34;14679:2;14664:18;;14657:62;-1:-1:-1;;;14750:2:1;14735:18;;14728:48;14808:3;14793:19;;14578:240::o;14823:398::-;15025:2;15007:21;;;15064:2;15044:18;;;15037:30;15103:34;15098:2;15083:18;;15076:62;-1:-1:-1;;;15169:2:1;15154:18;;15147:32;15211:3;15196:19;;14997:224::o;15226:415::-;15428:2;15410:21;;;15467:2;15447:18;;;15440:30;15506:34;15501:2;15486:18;;15479:62;-1:-1:-1;;;15572:2:1;15557:18;;15550:49;15631:3;15616:19;;15400:241::o;15646:353::-;15848:2;15830:21;;;15887:2;15867:18;;;15860:30;15926:31;15921:2;15906:18;;15899:59;15990:2;15975:18;;15820:179::o;16004:348::-;16206:2;16188:21;;;16245:2;16225:18;;;16218:30;16284:26;16279:2;16264:18;;16257:54;16343:2;16328:18;;16178:174::o;16357:410::-;16559:2;16541:21;;;16598:2;16578:18;;;16571:30;16637:34;16632:2;16617:18;;16610:62;-1:-1:-1;;;16703:2:1;16688:18;;16681:44;16757:3;16742:19;;16531:236::o;16772:355::-;16974:2;16956:21;;;17013:2;16993:18;;;16986:30;17052:33;17047:2;17032:18;;17025:61;17118:2;17103:18;;16946:181::o;17132:411::-;17334:2;17316:21;;;17373:2;17353:18;;;17346:30;17412:34;17407:2;17392:18;;17385:62;-1:-1:-1;;;17478:2:1;17463:18;;17456:45;17533:3;17518:19;;17306:237::o;17548:347::-;17750:2;17732:21;;;17789:2;17769:18;;;17762:30;17828:25;17823:2;17808:18;;17801:53;17886:2;17871:18;;17722:173::o;17900:409::-;18102:2;18084:21;;;18141:2;18121:18;;;18114:30;18180:34;18175:2;18160:18;;18153:62;-1:-1:-1;;;18246:2:1;18231:18;;18224:43;18299:3;18284:19;;18074:235::o;18314:398::-;18516:2;18498:21;;;18555:2;18535:18;;;18528:30;18594:34;18589:2;18574:18;;18567:62;-1:-1:-1;;;18660:2:1;18645:18;;18638:32;18702:3;18687:19;;18488:224::o;18717:177::-;18863:25;;;18851:2;18836:18;;18818:76::o;18899:129::-;;18967:17;;;19017:4;19001:21;;;18957:71::o;19033:253::-;;-1:-1:-1;;;;;19162:2:1;19159:1;19155:10;19192:2;19189:1;19185:10;19223:3;19219:2;19215:12;19210:3;19207:21;19204:2;;;19231:18;;:::i;:::-;19267:13;;19081:205;-1:-1:-1;;;;19081:205:1:o;19291:128::-;;19362:1;19358:6;19355:1;19352:13;19349:2;;;19368:18;;:::i;:::-;-1:-1:-1;19404:9:1;;19339:80::o;19424:120::-;;19490:1;19480:2;;19495:18;;:::i;:::-;-1:-1:-1;19529:9:1;;19470:74::o;19549:168::-;;19655:1;19651;19647:6;19643:14;19640:1;19637:21;19632:1;19625:9;19618:17;19614:45;19611:2;;;19662:18;;:::i;:::-;-1:-1:-1;19702:9:1;;19601:116::o;19722:246::-;;-1:-1:-1;;;;;19875:10:1;;;;19845;;19897:12;;;19894:2;;;19912:18;;:::i;:::-;19949:13;;19771:197;-1:-1:-1;;;19771:197:1:o;19973:125::-;;20041:1;20038;20035:8;20032:2;;;20046:18;;:::i;:::-;-1:-1:-1;20083:9:1;;20022:76::o;20103:258::-;20175:1;20185:113;20199:6;20196:1;20193:13;20185:113;;;20275:11;;;20269:18;20256:11;;;20249:39;20221:2;20214:10;20185:113;;;20316:6;20313:1;20310:13;20307:2;;;-1:-1:-1;;20351:1:1;20333:16;;20326:27;20156:205::o;20366:136::-;;20433:5;20423:2;;20442:18;;:::i;:::-;-1:-1:-1;;;20478:18:1;;20413:89::o;20507:380::-;20592:1;20582:12;;20639:1;20629:12;;;20650:2;;20704:4;20696:6;20692:17;20682:27;;20650:2;20757;20749:6;20746:14;20726:18;20723:38;20720:2;;;20803:10;20798:3;20794:20;20791:1;20784:31;20838:4;20835:1;20828:15;20866:4;20863:1;20856:15;20720:2;;20562:325;;;:::o;20892:135::-;;-1:-1:-1;;20952:17:1;;20949:2;;;20972:18;;:::i;:::-;-1:-1:-1;21019:1:1;21008:13;;20939:88::o;21032:112::-;;21090:1;21080:2;;21095:18;;:::i;:::-;-1:-1:-1;21129:9:1;;21070:74::o;21149:127::-;21210:10;21205:3;21201:20;21198:1;21191:31;21241:4;21238:1;21231:15;21265:4;21262:1;21255:15;21281:127;21342:10;21337:3;21333:20;21330:1;21323:31;21373:4;21370:1;21363:15;21397:4;21394:1;21387:15;21413:127;21474:10;21469:3;21465:20;21462:1;21455:31;21505:4;21502:1;21495:15;21529:4;21526:1;21519:15;21545:133;-1:-1:-1;;;;;21622:31:1;;21612:42;;21602:2;;21668:1;21665;21658:12;21683:120;21771:5;21764:13;21757:21;21750:5;21747:32;21737:2;;21793:1;21790;21783:12;21808:133;-1:-1:-1;;;;;;21884:32:1;;21874:43;;21864:2;;21931:1;21928;21921:12
Swarm Source
ipfs://e0ba21e0305607e29bf68c718666cc1e6e693b7a5c15c3ed72e3d7551032d620
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.