Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 8,174 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24434538 | 3 days ago | IN | 0 ETH | 0.00000952 | ||||
| Set Approval For... | 24189604 | 37 days ago | IN | 0 ETH | 0.00000182 | ||||
| Transfer From | 24104935 | 49 days ago | IN | 0 ETH | 0.0000021 | ||||
| Set Approval For... | 23896144 | 78 days ago | IN | 0 ETH | 0.00000342 | ||||
| Set Approval For... | 23891430 | 79 days ago | IN | 0 ETH | 0.00000286 | ||||
| Set Approval For... | 23751757 | 99 days ago | IN | 0 ETH | 0.00000646 | ||||
| Set Approval For... | 23722634 | 103 days ago | IN | 0 ETH | 0.0001009 | ||||
| Transfer From | 23539613 | 128 days ago | IN | 0 ETH | 0.00001673 | ||||
| Set Approval For... | 23535857 | 129 days ago | IN | 0 ETH | 0.00000861 | ||||
| Set Approval For... | 23490768 | 135 days ago | IN | 0 ETH | 0.00010476 | ||||
| Set Approval For... | 23472485 | 138 days ago | IN | 0 ETH | 0.00001344 | ||||
| Set Approval For... | 23288675 | 163 days ago | IN | 0 ETH | 0.00003182 | ||||
| Set Approval For... | 23274981 | 165 days ago | IN | 0 ETH | 0.00002487 | ||||
| Set Approval For... | 23256304 | 168 days ago | IN | 0 ETH | 0.00000982 | ||||
| Set Approval For... | 23053668 | 196 days ago | IN | 0 ETH | 0.00000646 | ||||
| Set Approval For... | 23051199 | 197 days ago | IN | 0 ETH | 0.00001186 | ||||
| Transfer From | 22705739 | 245 days ago | IN | 0 ETH | 0.00005528 | ||||
| Transfer From | 22595256 | 260 days ago | IN | 0 ETH | 0.00014347 | ||||
| Set Approval For... | 21895798 | 358 days ago | IN | 0 ETH | 0.00094311 | ||||
| Set Approval For... | 21886255 | 359 days ago | IN | 0 ETH | 0.00005834 | ||||
| Set Approval For... | 21783544 | 374 days ago | IN | 0 ETH | 0.00004 | ||||
| Set Approval For... | 21654990 | 392 days ago | IN | 0 ETH | 0.00076814 | ||||
| Set Approval For... | 21631875 | 395 days ago | IN | 0 ETH | 0.00087348 | ||||
| Set Approval For... | 21526090 | 410 days ago | IN | 0 ETH | 0.00012286 | ||||
| Set Approval For... | 21526088 | 410 days ago | IN | 0 ETH | 0.00021722 |
Latest 7 internal transactions
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PabloApes
Compiler Version
v0.8.2+commit.661d1103
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-06-10
*/
// SPDX-License-Identifier: MIT
// 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/[email protected]
// 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/math/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (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 subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// File @openzeppelin/contracts/utils/introspection/[email protected]
// 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/token/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File @openzeppelin/contracts/security/[email protected]
// 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/ERC721/[email protected]
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]
// 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 @openzeppelin/contracts/utils/[email protected]
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File @openzeppelin/contracts/utils/[email protected]
// 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/introspection/[email protected]
// 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 contracts/ERC721A.sol
// Creator: Chiru Labs
pragma solidity ^0.8.0;
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support burning tokens to address(0).
*
* Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 internal currentIndex;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
function totalSupply() public view returns (uint256) {
return currentIndex;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
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);
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');
unchecked {
for (uint256 curr = tokenId; curr >= 0; 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 Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), 'ERC721A: mint to the zero address');
require(quantity != 0, 'ERC721A: quantity must be greater than 0');
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
// updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint128(quantity);
_addressData[to].numberMinted += uint128(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
for (uint256 i; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
if (safe) {
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);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId].addr = to;
_ownerships[tokenId].startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId].addr = prevOwnership.addr;
_ownerships[nextTokenId].startTimestamp = 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);
}
/**
* @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 {}
}
pragma solidity ^0.8.0;
contract PabloApes is Ownable, ERC721A, ReentrancyGuard {
using SafeMath for uint256;
bool private _isActive = true;
uint256 public constant MAX_SUPPLY = 10000;
uint256 public constant maxCountPerMint = 20;
uint256 public freeMintCount = 3000;
uint256 public freeMintPerAddr = 2;
uint256 public price = 0.005 ether;
string private _tokenBaseURI = "";
address private constant devAddr = 0x94ec0Ba4c17C0a658B51ce375F73b1B18d2650cD;
mapping(address => uint256) public freeMintCounts;
modifier onlyActive() {
require(_isActive && totalSupply() < MAX_SUPPLY, 'not active');
_;
}
constructor() ERC721A("PabloApes", "PabloApes") {
}
function mint(uint256 numberOfTokens) external payable onlyActive nonReentrant() {
require(numberOfTokens > 0, "zero count");
require(numberOfTokens <= maxCountPerMint, "exceeded max limit per mint");
require(numberOfTokens <= MAX_SUPPLY.sub(totalSupply()), "not enough nfts");
uint256 costForMinting = costForMint(numberOfTokens, msg.sender);
uint256 freeMint = numberOfTokens.sub(costForMinting.div(price));
if(costForMinting > 0) {
require(msg.value >= costForMinting, "insufficient funds!");
}
if(freeMint > 0) {
freeMintCounts[msg.sender] = freeMintCounts[msg.sender].add(freeMint);
freeMintCount = freeMintCount.sub(freeMint);
}
//refund remain eth
if (msg.value > costForMinting) {
Address.sendValue(payable(msg.sender), msg.value - costForMinting);
}
_safeMint(msg.sender, numberOfTokens);
}
function costForMint(uint256 _numToMint, address _account) public view returns(uint256) {
uint256 availableFreeMint = (freeMintCount == 0 || freeMintPerAddr <= freeMintCounts[_account]) ? 0 : freeMintPerAddr.sub(freeMintCounts[_account]);
if(_numToMint <= availableFreeMint) {
return 0;
} else {
return price.mul(_numToMint.sub(availableFreeMint));
}
}
function _baseURI() internal view override returns (string memory) {
return _tokenBaseURI;
}
function tokenURI(uint256 tokenId) public view override(ERC721A) returns (string memory)
{
return super.tokenURI(tokenId);
}
/////////////////////////////////////////////////////////////
////////////////// Admin Functions ////////////////////////
/////////////////////////////////////////////////////////////
function startSale() external onlyOwner {
_isActive = true;
}
function endSale() external onlyOwner {
_isActive = false;
}
function setPrice(uint256 _price) external onlyOwner {
price = _price;
}
function setFreeMintCount(uint256 _count) external onlyOwner {
freeMintCount = _count;
}
function setFreeMintPerAddr(uint256 _count) external onlyOwner {
freeMintPerAddr = _count;
}
function setTokenBaseURI(string memory URI) external onlyOwner {
_tokenBaseURI = URI;
}
function withdraw() external onlyOwner nonReentrant {
uint256 balance = address(this).balance;
uint256 devAmount = balance.div(10);
Address.sendValue(payable(devAddr), devAmount);
Address.sendValue(payable(owner()), balance.sub(devAmount));
}
receive() external payable {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"},{"internalType":"address","name":"_account","type":"address"}],"name":"costForMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxCountPerMint","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":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMintPerAddr","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setTokenBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6009805460ff19166001179055610bb8600a556002600b556611c37937e08000600c5560a06040819052600060808190526200003e91600d9162000138565b503480156200004c57600080fd5b50604051806040016040528060098152602001685061626c6f4170657360b81b815250604051806040016040528060098152602001685061626c6f4170657360b81b815250620000ab620000a5620000e460201b60201c565b620000e8565b8151620000c090600290602085019062000138565b508051620000d690600390602084019062000138565b50506001600855506200021b565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014690620001de565b90600052602060002090601f0160209004810192826200016a5760008555620001b5565b82601f106200018557805160ff1916838001178555620001b5565b82800160010185558215620001b5579182015b82811115620001b557825182559160200191906001019062000198565b50620001c3929150620001c7565b5090565b5b80821115620001c35760008155600101620001c8565b600281046001821680620001f357607f821691505b602082108114156200021557634e487b7160e01b600052602260045260246000fd5b50919050565b612120806200022b6000396000f3fe6080604052600436106101e75760003560e01c80638da5cb5b11610102578063b88d4fde11610095578063e90fcb5d11610064578063e90fcb5d1461054c578063e985e9c514610561578063f2fde38b146105aa578063f937a48d146105ca576101ee565b8063b88d4fde146104d6578063c2a4cb1b146104f6578063c87b56dd14610516578063e55f58bb14610536576101ee565b8063a035b1fe116100d1578063a035b1fe14610478578063a0712d681461048e578063a22cb465146104a1578063b66a0e5d146104c1576101ee565b80638da5cb5b146104055780638ef79e911461042357806391b7f5ed1461044357806395d89b4114610463576101ee565b8063380d831b1161017a5780636e2ccc5f116101495780636e2ccc5f1461038357806370a08231146103b0578063715018a6146103d057806373806f5a146103e5576101ee565b8063380d831b146103195780633ccfd60b1461032e57806342842e0e146103435780636352211e14610363576101ee565b806318160ddd116101b657806318160ddd146102a457806323b872dd146102c3578063253ca934146102e357806332cb6b0c14610303576101ee565b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e366004611daf565b6105e0565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610634565b60405161021f9190611eff565b34801561025657600080fd5b5061026a610265366004611e2d565b6106c6565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611d86565b610756565b005b3480156102b057600080fd5b506001545b60405190815260200161021f565b3480156102cf57600080fd5b506102a26102de366004611c98565b61086e565b3480156102ef57600080fd5b506102a26102fe366004611e2d565b610879565b34801561030f57600080fd5b506102b561271081565b34801561032557600080fd5b506102a26108a8565b34801561033a57600080fd5b506102a26108de565b34801561034f57600080fd5b506102a261035e366004611c98565b6109bb565b34801561036f57600080fd5b5061026a61037e366004611e2d565b6109d6565b34801561038f57600080fd5b506102b561039e366004611c4c565b600e6020526000908152604090205481565b3480156103bc57600080fd5b506102b56103cb366004611c4c565b6109e8565b3480156103dc57600080fd5b506102a2610a79565b3480156103f157600080fd5b506102b5610400366004611e45565b610aaf565b34801561041157600080fd5b506000546001600160a01b031661026a565b34801561042f57600080fd5b506102a261043e366004611de7565b610b41565b34801561044f57600080fd5b506102a261045e366004611e2d565b610b82565b34801561046f57600080fd5b5061023d610bb1565b34801561048457600080fd5b506102b5600c5481565b6102a261049c366004611e2d565b610bc0565b3480156104ad57600080fd5b506102a26104bc366004611d4c565b610e35565b3480156104cd57600080fd5b506102a2610f07565b3480156104e257600080fd5b506102a26104f1366004611cd3565b610f40565b34801561050257600080fd5b506102a2610511366004611e2d565b610f79565b34801561052257600080fd5b5061023d610531366004611e2d565b610fa8565b34801561054257600080fd5b506102b5600a5481565b34801561055857600080fd5b506102b5601481565b34801561056d57600080fd5b5061021361057c366004611c66565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105b657600080fd5b506102a26105c5366004611c4c565b610fb3565b3480156105d657600080fd5b506102b5600b5481565b60006001600160e01b031982166380ac58cd60e01b148061061157506001600160e01b03198216635b5e139f60e01b145b8061062c57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606002805461064390612028565b80601f016020809104026020016040519081016040528092919081815260200182805461066f90612028565b80156106bc5780601f10610691576101008083540402835291602001916106bc565b820191906000526020600020905b81548152906001019060200180831161069f57829003601f168201915b5050505050905090565b60006106d3826001541190565b61073a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610761826109d6565b9050806001600160a01b0316836001600160a01b031614156107d05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610731565b336001600160a01b03821614806107ec57506107ec813361057c565b61085e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610731565b61086983838361104e565b505050565b6108698383836110aa565b6000546001600160a01b031633146108a35760405162461bcd60e51b815260040161073190611f12565b600a55565b6000546001600160a01b031633146108d25760405162461bcd60e51b815260040161073190611f12565b6009805460ff19169055565b6000546001600160a01b031633146109085760405162461bcd60e51b815260040161073190611f12565b6002600854141561095b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610731565b600260085547600061096e82600a6113ae565b905061098e7394ec0ba4c17c0a658b51ce375f73b1b18d2650cd826113c1565b6109b26109a36000546001600160a01b031690565b6109ad84846114da565b6113c1565b50506001600855565b61086983838360405180602001604052806000815250610f40565b60006109e1826114e6565b5192915050565b60006001600160a01b038216610a545760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610731565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610aa35760405162461bcd60e51b815260040161073190611f12565b610aad60006115bf565b565b600080600a5460001480610add57506001600160a01b0383166000908152600e6020526040902054600b5411155b610b0b576001600160a01b0383166000908152600e6020526040902054600b54610b06916114da565b610b0e565b60005b9050808411610b21576000915050610b3b565b610b37610b2e85836114da565b600c549061160f565b9150505b92915050565b6000546001600160a01b03163314610b6b5760405162461bcd60e51b815260040161073190611f12565b8051610b7e90600d906020840190611b26565b5050565b6000546001600160a01b03163314610bac5760405162461bcd60e51b815260040161073190611f12565b600c55565b60606003805461064390612028565b60095460ff168015610bdb5750612710610bd960015490565b105b610c145760405162461bcd60e51b815260206004820152600a6024820152696e6f742061637469766560b01b6044820152606401610731565b60026008541415610c675760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610731565b600260085580610ca65760405162461bcd60e51b815260206004820152600a6024820152691e995c9bc818dbdd5b9d60b21b6044820152606401610731565b6014811115610cf75760405162461bcd60e51b815260206004820152601b60248201527f6578636565646564206d6178206c696d697420706572206d696e7400000000006044820152606401610731565b610d0c610d0360015490565b612710906114da565b811115610d4d5760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768206e66747360881b6044820152606401610731565b6000610d598233610aaf565b90506000610d7c610d75600c54846113ae90919063ffffffff16565b84906114da565b90508115610dca5781341015610dca5760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e742066756e64732160681b6044820152606401610731565b8015610e0b57336000908152600e6020526040902054610dea908261161b565b336000908152600e6020526040902055600a54610e0790826114da565b600a555b81341115610e2157610e21336109ad8434611fe5565b610e2b3384611627565b5050600160085550565b6001600160a01b038216331415610e8e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610731565b3360008181526007602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610efb911515815260200190565b60405180910390a35050565b6000546001600160a01b03163314610f315760405162461bcd60e51b815260040161073190611f12565b6009805460ff19166001179055565b610f4b8484846110aa565b610f5784848484611641565b610f735760405162461bcd60e51b815260040161073190611f47565b50505050565b6000546001600160a01b03163314610fa35760405162461bcd60e51b815260040161073190611f12565b600b55565b606061062c8261174f565b6000546001600160a01b03163314610fdd5760405162461bcd60e51b815260040161073190611f12565b6001600160a01b0381166110425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610731565b61104b816115bf565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110b5826114e6565b80519091506000906001600160a01b0316336001600160a01b031614806110ec5750336110e1846106c6565b6001600160a01b0316145b806110fe575081516110fe903361057c565b9050806111685760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610731565b846001600160a01b031682600001516001600160a01b0316146111dc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610731565b6001600160a01b0384166112405760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610731565b611250600084846000015161104e565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff160217905590860180835291205490911661136457611306816001541190565b15611364578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006113ba8284611fb2565b9392505050565b804710156114115760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610731565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461145e576040519150601f19603f3d011682016040523d82523d6000602084013e611463565b606091505b50509050806108695760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610731565b60006113ba8284611fe5565b6040805180820190915260008082526020820152611505826001541190565b6115645760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610731565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115b557915061062f9050565b5060001901611566565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006113ba8284611fc6565b60006113ba8284611f9a565b610b7e82826040518060200160405280600081525061181c565b60006001600160a01b0384163b1561174357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611685903390899088908890600401611ec2565b602060405180830381600087803b15801561169f57600080fd5b505af19250505080156116cf575060408051601f3d908101601f191682019092526116cc91810190611dcb565b60015b611729573d8080156116fd576040519150601f19603f3d011682016040523d82523d6000602084013e611702565b606091505b5080516117215760405162461bcd60e51b815260040161073190611f47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611747565b5060015b949350505050565b606061175c826001541190565b6117c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610731565b60006117ca611829565b90508051600014156117eb57604051806020016040528060008152506113ba565b806117f584611838565b604051602001611806929190611e93565b6040516020818303038152906040529392505050565b6108698383836001611953565b6060600d805461064390612028565b60608161185d57506040805180820190915260018152600360fc1b602082015261062f565b8160005b8115611887578061187181612063565b91506118809050600a83611fb2565b9150611861565b60008167ffffffffffffffff8111156118b057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118da576020820181803683370190505b5090505b8415611747576118ef600183611fe5565b91506118fc600a8661207e565b611907906030611f9a565b60f81b81838151811061192a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061194c600a86611fb2565b94506118de565b6001546001600160a01b0385166119b65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610731565b83611a145760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610731565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611b1d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b1157611af56000888488611641565b611b115760405162461bcd60e51b815260040161073190611f47565b60019182019101611aa2565b506001556113a7565b828054611b3290612028565b90600052602060002090601f016020900481019282611b545760008555611b9a565b82601f10611b6d57805160ff1916838001178555611b9a565b82800160010185558215611b9a579182015b82811115611b9a578251825591602001919060010190611b7f565b50611ba6929150611baa565b5090565b5b80821115611ba65760008155600101611bab565b600067ffffffffffffffff80841115611bda57611bda6120be565b604051601f8501601f19908116603f01168101908282118183101715611c0257611c026120be565b81604052809350858152868686011115611c1b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461062f57600080fd5b600060208284031215611c5d578081fd5b6113ba82611c35565b60008060408385031215611c78578081fd5b611c8183611c35565b9150611c8f60208401611c35565b90509250929050565b600080600060608486031215611cac578081fd5b611cb584611c35565b9250611cc360208501611c35565b9150604084013590509250925092565b60008060008060808587031215611ce8578081fd5b611cf185611c35565b9350611cff60208601611c35565b925060408501359150606085013567ffffffffffffffff811115611d21578182fd5b8501601f81018713611d31578182fd5b611d4087823560208401611bbf565b91505092959194509250565b60008060408385031215611d5e578182fd5b611d6783611c35565b915060208301358015158114611d7b578182fd5b809150509250929050565b60008060408385031215611d98578182fd5b611da183611c35565b946020939093013593505050565b600060208284031215611dc0578081fd5b81356113ba816120d4565b600060208284031215611ddc578081fd5b81516113ba816120d4565b600060208284031215611df8578081fd5b813567ffffffffffffffff811115611e0e578182fd5b8201601f81018413611e1e578182fd5b61174784823560208401611bbf565b600060208284031215611e3e578081fd5b5035919050565b60008060408385031215611e57578182fd5b82359150611c8f60208401611c35565b60008151808452611e7f816020860160208601611ffc565b601f01601f19169290920160200192915050565b60008351611ea5818460208801611ffc565b835190830190611eb9818360208801611ffc565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ef590830184611e67565b9695505050505050565b6000602082526113ba6020830184611e67565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611fad57611fad612092565b500190565b600082611fc157611fc16120a8565b500490565b6000816000190483118215151615611fe057611fe0612092565b500290565b600082821015611ff757611ff7612092565b500390565b60005b83811015612017578181015183820152602001611fff565b83811115610f735750506000910152565b60028104600182168061203c57607f821691505b6020821081141561205d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561207757612077612092565b5060010190565b60008261208d5761208d6120a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104b57600080fdfea264697066735822122059cf8f4c3fb64d1006c52558cdbde9b4e776d7cb5927118f85872cb172740efc64736f6c63430008020033
Deployed Bytecode
0x6080604052600436106101e75760003560e01c80638da5cb5b11610102578063b88d4fde11610095578063e90fcb5d11610064578063e90fcb5d1461054c578063e985e9c514610561578063f2fde38b146105aa578063f937a48d146105ca576101ee565b8063b88d4fde146104d6578063c2a4cb1b146104f6578063c87b56dd14610516578063e55f58bb14610536576101ee565b8063a035b1fe116100d1578063a035b1fe14610478578063a0712d681461048e578063a22cb465146104a1578063b66a0e5d146104c1576101ee565b80638da5cb5b146104055780638ef79e911461042357806391b7f5ed1461044357806395d89b4114610463576101ee565b8063380d831b1161017a5780636e2ccc5f116101495780636e2ccc5f1461038357806370a08231146103b0578063715018a6146103d057806373806f5a146103e5576101ee565b8063380d831b146103195780633ccfd60b1461032e57806342842e0e146103435780636352211e14610363576101ee565b806318160ddd116101b657806318160ddd146102a457806323b872dd146102c3578063253ca934146102e357806332cb6b0c14610303576101ee565b806301ffc9a7146101f357806306fdde0314610228578063081812fc1461024a578063095ea7b314610282576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e366004611daf565b6105e0565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610634565b60405161021f9190611eff565b34801561025657600080fd5b5061026a610265366004611e2d565b6106c6565b6040516001600160a01b03909116815260200161021f565b34801561028e57600080fd5b506102a261029d366004611d86565b610756565b005b3480156102b057600080fd5b506001545b60405190815260200161021f565b3480156102cf57600080fd5b506102a26102de366004611c98565b61086e565b3480156102ef57600080fd5b506102a26102fe366004611e2d565b610879565b34801561030f57600080fd5b506102b561271081565b34801561032557600080fd5b506102a26108a8565b34801561033a57600080fd5b506102a26108de565b34801561034f57600080fd5b506102a261035e366004611c98565b6109bb565b34801561036f57600080fd5b5061026a61037e366004611e2d565b6109d6565b34801561038f57600080fd5b506102b561039e366004611c4c565b600e6020526000908152604090205481565b3480156103bc57600080fd5b506102b56103cb366004611c4c565b6109e8565b3480156103dc57600080fd5b506102a2610a79565b3480156103f157600080fd5b506102b5610400366004611e45565b610aaf565b34801561041157600080fd5b506000546001600160a01b031661026a565b34801561042f57600080fd5b506102a261043e366004611de7565b610b41565b34801561044f57600080fd5b506102a261045e366004611e2d565b610b82565b34801561046f57600080fd5b5061023d610bb1565b34801561048457600080fd5b506102b5600c5481565b6102a261049c366004611e2d565b610bc0565b3480156104ad57600080fd5b506102a26104bc366004611d4c565b610e35565b3480156104cd57600080fd5b506102a2610f07565b3480156104e257600080fd5b506102a26104f1366004611cd3565b610f40565b34801561050257600080fd5b506102a2610511366004611e2d565b610f79565b34801561052257600080fd5b5061023d610531366004611e2d565b610fa8565b34801561054257600080fd5b506102b5600a5481565b34801561055857600080fd5b506102b5601481565b34801561056d57600080fd5b5061021361057c366004611c66565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105b657600080fd5b506102a26105c5366004611c4c565b610fb3565b3480156105d657600080fd5b506102b5600b5481565b60006001600160e01b031982166380ac58cd60e01b148061061157506001600160e01b03198216635b5e139f60e01b145b8061062c57506301ffc9a760e01b6001600160e01b03198316145b90505b919050565b60606002805461064390612028565b80601f016020809104026020016040519081016040528092919081815260200182805461066f90612028565b80156106bc5780601f10610691576101008083540402835291602001916106bc565b820191906000526020600020905b81548152906001019060200180831161069f57829003601f168201915b5050505050905090565b60006106d3826001541190565b61073a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610761826109d6565b9050806001600160a01b0316836001600160a01b031614156107d05760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610731565b336001600160a01b03821614806107ec57506107ec813361057c565b61085e5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610731565b61086983838361104e565b505050565b6108698383836110aa565b6000546001600160a01b031633146108a35760405162461bcd60e51b815260040161073190611f12565b600a55565b6000546001600160a01b031633146108d25760405162461bcd60e51b815260040161073190611f12565b6009805460ff19169055565b6000546001600160a01b031633146109085760405162461bcd60e51b815260040161073190611f12565b6002600854141561095b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610731565b600260085547600061096e82600a6113ae565b905061098e7394ec0ba4c17c0a658b51ce375f73b1b18d2650cd826113c1565b6109b26109a36000546001600160a01b031690565b6109ad84846114da565b6113c1565b50506001600855565b61086983838360405180602001604052806000815250610f40565b60006109e1826114e6565b5192915050565b60006001600160a01b038216610a545760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610731565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610aa35760405162461bcd60e51b815260040161073190611f12565b610aad60006115bf565b565b600080600a5460001480610add57506001600160a01b0383166000908152600e6020526040902054600b5411155b610b0b576001600160a01b0383166000908152600e6020526040902054600b54610b06916114da565b610b0e565b60005b9050808411610b21576000915050610b3b565b610b37610b2e85836114da565b600c549061160f565b9150505b92915050565b6000546001600160a01b03163314610b6b5760405162461bcd60e51b815260040161073190611f12565b8051610b7e90600d906020840190611b26565b5050565b6000546001600160a01b03163314610bac5760405162461bcd60e51b815260040161073190611f12565b600c55565b60606003805461064390612028565b60095460ff168015610bdb5750612710610bd960015490565b105b610c145760405162461bcd60e51b815260206004820152600a6024820152696e6f742061637469766560b01b6044820152606401610731565b60026008541415610c675760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610731565b600260085580610ca65760405162461bcd60e51b815260206004820152600a6024820152691e995c9bc818dbdd5b9d60b21b6044820152606401610731565b6014811115610cf75760405162461bcd60e51b815260206004820152601b60248201527f6578636565646564206d6178206c696d697420706572206d696e7400000000006044820152606401610731565b610d0c610d0360015490565b612710906114da565b811115610d4d5760405162461bcd60e51b815260206004820152600f60248201526e6e6f7420656e6f756768206e66747360881b6044820152606401610731565b6000610d598233610aaf565b90506000610d7c610d75600c54846113ae90919063ffffffff16565b84906114da565b90508115610dca5781341015610dca5760405162461bcd60e51b8152602060048201526013602482015272696e73756666696369656e742066756e64732160681b6044820152606401610731565b8015610e0b57336000908152600e6020526040902054610dea908261161b565b336000908152600e6020526040902055600a54610e0790826114da565b600a555b81341115610e2157610e21336109ad8434611fe5565b610e2b3384611627565b5050600160085550565b6001600160a01b038216331415610e8e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610731565b3360008181526007602090815260408083206001600160a01b0387168085529252909120805460ff1916841515179055906001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610efb911515815260200190565b60405180910390a35050565b6000546001600160a01b03163314610f315760405162461bcd60e51b815260040161073190611f12565b6009805460ff19166001179055565b610f4b8484846110aa565b610f5784848484611641565b610f735760405162461bcd60e51b815260040161073190611f47565b50505050565b6000546001600160a01b03163314610fa35760405162461bcd60e51b815260040161073190611f12565b600b55565b606061062c8261174f565b6000546001600160a01b03163314610fdd5760405162461bcd60e51b815260040161073190611f12565b6001600160a01b0381166110425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610731565b61104b816115bf565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110b5826114e6565b80519091506000906001600160a01b0316336001600160a01b031614806110ec5750336110e1846106c6565b6001600160a01b0316145b806110fe575081516110fe903361057c565b9050806111685760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610731565b846001600160a01b031682600001516001600160a01b0316146111dc5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610731565b6001600160a01b0384166112405760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610731565b611250600084846000015161104e565b6001600160a01b03858116600090815260056020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600490935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff160217905590860180835291205490911661136457611306816001541190565b15611364578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60006113ba8284611fb2565b9392505050565b804710156114115760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610731565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461145e576040519150601f19603f3d011682016040523d82523d6000602084013e611463565b606091505b50509050806108695760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610731565b60006113ba8284611fe5565b6040805180820190915260008082526020820152611505826001541190565b6115645760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610731565b815b6000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115b557915061062f9050565b5060001901611566565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006113ba8284611fc6565b60006113ba8284611f9a565b610b7e82826040518060200160405280600081525061181c565b60006001600160a01b0384163b1561174357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611685903390899088908890600401611ec2565b602060405180830381600087803b15801561169f57600080fd5b505af19250505080156116cf575060408051601f3d908101601f191682019092526116cc91810190611dcb565b60015b611729573d8080156116fd576040519150601f19603f3d011682016040523d82523d6000602084013e611702565b606091505b5080516117215760405162461bcd60e51b815260040161073190611f47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611747565b5060015b949350505050565b606061175c826001541190565b6117c05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610731565b60006117ca611829565b90508051600014156117eb57604051806020016040528060008152506113ba565b806117f584611838565b604051602001611806929190611e93565b6040516020818303038152906040529392505050565b6108698383836001611953565b6060600d805461064390612028565b60608161185d57506040805180820190915260018152600360fc1b602082015261062f565b8160005b8115611887578061187181612063565b91506118809050600a83611fb2565b9150611861565b60008167ffffffffffffffff8111156118b057634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118da576020820181803683370190505b5090505b8415611747576118ef600183611fe5565b91506118fc600a8661207e565b611907906030611f9a565b60f81b81838151811061192a57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061194c600a86611fb2565b94506118de565b6001546001600160a01b0385166119b65760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610731565b83611a145760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401610731565b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526004909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611b1d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b1157611af56000888488611641565b611b115760405162461bcd60e51b815260040161073190611f47565b60019182019101611aa2565b506001556113a7565b828054611b3290612028565b90600052602060002090601f016020900481019282611b545760008555611b9a565b82601f10611b6d57805160ff1916838001178555611b9a565b82800160010185558215611b9a579182015b82811115611b9a578251825591602001919060010190611b7f565b50611ba6929150611baa565b5090565b5b80821115611ba65760008155600101611bab565b600067ffffffffffffffff80841115611bda57611bda6120be565b604051601f8501601f19908116603f01168101908282118183101715611c0257611c026120be565b81604052809350858152868686011115611c1b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461062f57600080fd5b600060208284031215611c5d578081fd5b6113ba82611c35565b60008060408385031215611c78578081fd5b611c8183611c35565b9150611c8f60208401611c35565b90509250929050565b600080600060608486031215611cac578081fd5b611cb584611c35565b9250611cc360208501611c35565b9150604084013590509250925092565b60008060008060808587031215611ce8578081fd5b611cf185611c35565b9350611cff60208601611c35565b925060408501359150606085013567ffffffffffffffff811115611d21578182fd5b8501601f81018713611d31578182fd5b611d4087823560208401611bbf565b91505092959194509250565b60008060408385031215611d5e578182fd5b611d6783611c35565b915060208301358015158114611d7b578182fd5b809150509250929050565b60008060408385031215611d98578182fd5b611da183611c35565b946020939093013593505050565b600060208284031215611dc0578081fd5b81356113ba816120d4565b600060208284031215611ddc578081fd5b81516113ba816120d4565b600060208284031215611df8578081fd5b813567ffffffffffffffff811115611e0e578182fd5b8201601f81018413611e1e578182fd5b61174784823560208401611bbf565b600060208284031215611e3e578081fd5b5035919050565b60008060408385031215611e57578182fd5b82359150611c8f60208401611c35565b60008151808452611e7f816020860160208601611ffc565b601f01601f19169290920160200192915050565b60008351611ea5818460208801611ffc565b835190830190611eb9818360208801611ffc565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ef590830184611e67565b9695505050505050565b6000602082526113ba6020830184611e67565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008219821115611fad57611fad612092565b500190565b600082611fc157611fc16120a8565b500490565b6000816000190483118215151615611fe057611fe0612092565b500290565b600082821015611ff757611ff7612092565b500390565b60005b83811015612017578181015183820152602001611fff565b83811115610f735750506000910152565b60028104600182168061203c57607f821691505b6020821081141561205d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561207757612077612092565b5060010190565b60008261208d5761208d6120a8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461104b57600080fdfea264697066735822122059cf8f4c3fb64d1006c52558cdbde9b4e776d7cb5927118f85872cb172740efc64736f6c63430008020033
Deployed Bytecode Sourcemap
47346:3573:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34446:293;;;;;;;;;;-1:-1:-1;34446:293:0;;;;;:::i;:::-;;:::i;:::-;;;6275:14:1;;6268:22;6250:41;;6238:2;6223:18;34446:293:0;;;;;;;;36221:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37783:214::-;;;;;;;;;;-1:-1:-1;37783:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5573:32:1;;;5555:51;;5543:2;5528:18;37783:214:0;5510:102:1;37304:413:0;;;;;;;;;;-1:-1:-1;37304:413:0;;;;;:::i;:::-;;:::i;:::-;;34283:91;;;;;;;;;;-1:-1:-1;34354:12:0;;34283:91;;;16027:25:1;;;16015:2;16000:18;34283:91:0;15982:76:1;38659:162:0;;;;;;;;;;-1:-1:-1;38659:162:0;;;;;:::i;:::-;;:::i;50263:102::-;;;;;;;;;;-1:-1:-1;50263:102:0;;;;;:::i;:::-;;:::i;47485:42::-;;;;;;;;;;;;47522:5;47485:42;;50087:74;;;;;;;;;;;;;:::i;50596:283::-;;;;;;;;;;;;;:::i;38892:177::-;;;;;;;;;;-1:-1:-1;38892:177:0;;;;;:::i;:::-;;:::i;36030:124::-;;;;;;;;;;-1:-1:-1;36030:124:0;;;;;:::i;:::-;;:::i;47855:49::-;;;;;;;;;;-1:-1:-1;47855:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;34803:221;;;;;;;;;;-1:-1:-1;34803:221:0;;;;;:::i;:::-;;:::i;2589:103::-;;;;;;;;;;;;;:::i;49105:419::-;;;;;;;;;;-1:-1:-1;49105:419:0;;;;;:::i;:::-;;:::i;1938:87::-;;;;;;;;;;-1:-1:-1;1984:7:0;2011:6;-1:-1:-1;;;;;2011:6:0;1938:87;;50487:101;;;;;;;;;;-1:-1:-1;50487:101:0;;;;;:::i;:::-;;:::i;50169:86::-;;;;;;;;;;-1:-1:-1;50169:86:0;;;;;:::i;:::-;;:::i;36390:104::-;;;;;;;;;;;;;:::i;47684:34::-;;;;;;;;;;;;;;;;48100:995;;;;;;:::i;:::-;;:::i;38069:288::-;;;;;;;;;;-1:-1:-1;38069:288:0;;;;;:::i;:::-;;:::i;50004:75::-;;;;;;;;;;;;;:::i;39140:355::-;;;;;;;;;;-1:-1:-1;39140:355:0;;;;;:::i;:::-;;:::i;50373:106::-;;;;;;;;;;-1:-1:-1;50373:106:0;;;;;:::i;:::-;;:::i;49646:143::-;;;;;;;;;;-1:-1:-1;49646:143:0;;;;;:::i;:::-;;:::i;47589:35::-;;;;;;;;;;;;;;;;47536:44;;;;;;;;;;;;47578:2;47536:44;;38428:164;;;;;;;;;;-1:-1:-1;38428:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;38549:25:0;;;38525:4;38549:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;38428:164;2847:201;;;;;;;;;;-1:-1:-1;2847:201:0;;;;;:::i;:::-;;:::i;47634:34::-;;;;;;;;;;;;;;;;34446:293;34548:4;-1:-1:-1;;;;;;34581:40:0;;-1:-1:-1;;;34581:40:0;;:101;;-1:-1:-1;;;;;;;34634:48:0;;-1:-1:-1;;;34634:48:0;34581:101;:150;;;-1:-1:-1;;;;;;;;;;32534:40:0;;;34695:36;34565:166;;34446:293;;;;:::o;36221:100::-;36275:13;36308:5;36301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36221:100;:::o;37783:214::-;37851:7;37879:16;37887:7;39841:12;;-1:-1:-1;39831:22:0;39750:111;37879:16;37871:74;;;;-1:-1:-1;;;37871:74:0;;15669:2:1;37871:74:0;;;15651:21:1;15708:2;15688:18;;;15681:30;15747:34;15727:18;;;15720:62;-1:-1:-1;;;15798:18:1;;;15791:43;15851:19;;37871:74:0;;;;;;;;;-1:-1:-1;37965:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37965:24:0;;37783:214::o;37304:413::-;37377:13;37393:24;37409:7;37393:15;:24::i;:::-;37377:40;;37442:5;-1:-1:-1;;;;;37436:11:0;:2;-1:-1:-1;;;;;37436:11:0;;;37428:58;;;;-1:-1:-1;;;37428:58:0;;12920:2:1;37428:58:0;;;12902:21:1;12959:2;12939:18;;;12932:30;12998:34;12978:18;;;12971:62;-1:-1:-1;;;13049:18:1;;;13042:32;13091:19;;37428:58:0;12892:224:1;37428:58:0;736:10;-1:-1:-1;;;;;37521:21:0;;;;:62;;-1:-1:-1;37546:37:0;37563:5;736:10;37570:12;656:98;37546:37;37499:169;;;;-1:-1:-1;;;37499:169:0;;10124:2:1;37499:169:0;;;10106:21:1;10163:2;10143:18;;;10136:30;10202:34;10182:18;;;10175:62;10273:27;10253:18;;;10246:55;10318:19;;37499:169:0;10096:247:1;37499:169:0;37681:28;37690:2;37694:7;37703:5;37681:8;:28::i;:::-;37304:413;;;:::o;38659:162::-;38785:28;38795:4;38801:2;38805:7;38785:9;:28::i;50263:102::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;50335:13:::1;:22:::0;50263:102::o;50087:74::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;50136:9:::1;:17:::0;;-1:-1:-1;;50136:17:0::1;::::0;;50087:74::o;50596:283::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;18083:1:::1;18681:7;;:19;;18673:63;;;::::0;-1:-1:-1;;;18673:63:0;;14893:2:1;18673:63:0::1;::::0;::::1;14875:21:1::0;14932:2;14912:18;;;14905:30;14971:33;14951:18;;;14944:61;15022:18;;18673:63:0::1;14865:181:1::0;18673:63:0::1;18083:1;18814:7;:18:::0;50677:21:::2;50659:15;50729;50677:21:::0;50741:2:::2;50729:11;:15::i;:::-;50709:35;;50755:46;47804:42;50791:9;50755:17;:46::i;:::-;50812:59;50838:7;1984::::0;2011:6;-1:-1:-1;;;;;2011:6:0;1938:87;;50838:7:::2;50848:22;:7:::0;50860:9;50848:11:::2;:22::i;:::-;50812:17;:59::i;:::-;-1:-1:-1::0;;18039:1:0::1;18993:7;:22:::0;50596:283::o;38892:177::-;39022:39;39039:4;39045:2;39049:7;39022:39;;;;;;;;;;;;:16;:39::i;36030:124::-;36094:7;36121:20;36133:7;36121:11;:20::i;:::-;:25;;36030:124;-1:-1:-1;;36030:124:0:o;34803:221::-;34867:7;-1:-1:-1;;;;;34895:19:0;;34887:75;;;;-1:-1:-1;;;34887:75:0;;10550:2:1;34887:75:0;;;10532:21:1;10589:2;10569:18;;;10562:30;10628:34;10608:18;;;10601:62;-1:-1:-1;;;10679:18:1;;;10672:41;10730:19;;34887:75:0;10522:233:1;34887:75:0;-1:-1:-1;;;;;;34988:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;34988:27:0;;34803:221::o;2589:103::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;2654:30:::1;2681:1;2654:18;:30::i;:::-;2589:103::o:0;49105:419::-;49184:7;49204:25;49233:13;;49250:1;49233:18;:65;;;-1:-1:-1;;;;;;49274:24:0;;;;;;:14;:24;;;;;;49255:15;;:43;;49233:65;49232:119;;-1:-1:-1;;;;;49326:24:0;;;;;;:14;:24;;;;;;49306:15;;:45;;:19;:45::i;:::-;49232:119;;;49302:1;49232:119;49204:147;;49379:17;49365:10;:31;49362:155;;49420:1;49413:8;;;;;49362:155;49461:44;49471:33;:10;49486:17;49471:14;:33::i;:::-;49461:5;;;:9;:44::i;:::-;49454:51;;;49105:419;;;;;:::o;50487:101::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;50561:19;;::::1;::::0;:13:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;50487:101:::0;:::o;50169:86::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;50233:5:::1;:14:::0;50169:86::o;36390:104::-;36446:13;36479:7;36472:14;;;;;:::i;48100:995::-;47954:9;;;;:39;;;;;47522:5;47967:13;34354:12;;34283:91;;47967:13;:26;47954:39;47946:62;;;;-1:-1:-1;;;47946:62:0;;7894:2:1;47946:62:0;;;7876:21:1;7933:2;7913:18;;;7906:30;-1:-1:-1;;;7952:18:1;;;7945:40;8002:18;;47946:62:0;7866:160:1;47946:62:0;18083:1:::1;18681:7;;:19;;18673:63;;;::::0;-1:-1:-1;;;18673:63:0;;14893:2:1;18673:63:0::1;::::0;::::1;14875:21:1::0;14932:2;14912:18;;;14905:30;14971:33;14951:18;;;14944:61;15022:18;;18673:63:0::1;14865:181:1::0;18673:63:0::1;18083:1;18814:7;:18:::0;48200;48192:41:::2;;;::::0;-1:-1:-1;;;48192:41:0;;13743:2:1;48192:41:0::2;::::0;::::2;13725:21:1::0;13782:2;13762:18;;;13755:30;-1:-1:-1;;;13801:18:1;;;13794:40;13851:18;;48192:41:0::2;13715:160:1::0;48192:41:0::2;47578:2;48252:14;:33;;48244:73;;;::::0;-1:-1:-1;;;48244:73:0;;9424:2:1;48244:73:0::2;::::0;::::2;9406:21:1::0;9463:2;9443:18;;;9436:30;9502:29;9482:18;;;9475:57;9549:18;;48244:73:0::2;9396:177:1::0;48244:73:0::2;48354:29;48369:13;34354:12:::0;;34283:91;;48369:13:::2;47522:5;::::0;48354:14:::2;:29::i;:::-;48336:14;:47;;48328:75;;;::::0;-1:-1:-1;;;48328:75:0;;9780:2:1;48328:75:0::2;::::0;::::2;9762:21:1::0;9819:2;9799:18;;;9792:30;-1:-1:-1;;;9838:18:1;;;9831:45;9893:18;;48328:75:0::2;9752:165:1::0;48328:75:0::2;48416:22;48441:39;48453:14;48469:10;48441:11;:39::i;:::-;48416:64;;48491:16;48510:45;48529:25;48548:5;;48529:14;:18;;:25;;;;:::i;:::-;48510:14:::0;;:18:::2;:45::i;:::-;48491:64:::0;-1:-1:-1;48571:18:0;;48568:113:::2;;48627:14;48614:9;:27;;48606:59;;;::::0;-1:-1:-1;;;48606:59:0;;6728:2:1;48606:59:0::2;::::0;::::2;6710:21:1::0;6767:2;6747:18;;;6740:30;-1:-1:-1;;;6786:18:1;;;6779:49;6845:18;;48606:59:0::2;6700:169:1::0;48606:59:0::2;48696:12:::0;;48693:171:::2;;48769:10;48754:26;::::0;;;:14:::2;:26;::::0;;;;;:40:::2;::::0;48785:8;48754:30:::2;:40::i;:::-;48740:10;48725:26;::::0;;;:14:::2;:26;::::0;;;;:69;48825:13:::2;::::0;:27:::2;::::0;48843:8;48825:17:::2;:27::i;:::-;48809:13;:43:::0;48693:171:::2;48921:14;48909:9;:26;48905:125;;;48952:66;48978:10;48991:26;49003:14:::0;48991:9:::2;:26;:::i;48952:66::-;49050:37;49060:10;49072:14;49050:9;:37::i;:::-;-1:-1:-1::0;;18039:1:0::1;18993:7;:22:::0;-1:-1:-1;48100:995:0:o;38069:288::-;-1:-1:-1;;;;;38164:24:0;;736:10;38164:24;;38156:63;;;;-1:-1:-1;;;38156:63:0;;12146:2:1;38156:63:0;;;12128:21:1;12185:2;12165:18;;;12158:30;12224:28;12204:18;;;12197:56;12270:18;;38156:63:0;12118:176:1;38156:63:0;736:10;38232:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;38232:42:0;;;;;;;;;;:53;;-1:-1:-1;;38232:53:0;;;;;;;:42;-1:-1:-1;;;;;38301:48:0;;38340:8;38301:48;;;;6275:14:1;6268:22;6250:41;;6238:2;6223:18;;6205:92;38301:48:0;;;;;;;;38069:288;;:::o;50004:75::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;50055:9:::1;:16:::0;;-1:-1:-1;;50055:16:0::1;50067:4;50055:16;::::0;;50004:75::o;39140:355::-;39299:28;39309:4;39315:2;39319:7;39299:9;:28::i;:::-;39360:48;39383:4;39389:2;39393:7;39402:5;39360:22;:48::i;:::-;39338:149;;;;-1:-1:-1;;;39338:149:0;;;;;;;:::i;:::-;39140:355;;;;:::o;50373:106::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;50447:15:::1;:24:::0;50373:106::o;49646:143::-;49720:13;49758:23;49773:7;49758:14;:23::i;2847:201::-;1984:7;2011:6;-1:-1:-1;;;;;2011:6:0;736:10;2158:23;2150:68;;;;-1:-1:-1;;;2150:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2936:22:0;::::1;2928:73;;;::::0;-1:-1:-1;;;2928:73:0;;7076:2:1;2928:73:0::1;::::0;::::1;7058:21:1::0;7115:2;7095:18;;;7088:30;7154:34;7134:18;;;7127:62;-1:-1:-1;;;7205:18:1;;;7198:36;7251:19;;2928:73:0::1;7048:228:1::0;2928:73:0::1;3012:28;3031:8;3012:18;:28::i;:::-;2847:201:::0;:::o;44530:196::-;44645:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44645:29:0;-1:-1:-1;;;;;44645:29:0;;;;;;;;;44690:28;;44645:24;;44690:28;;;;;;;44530:196;;;:::o;42478:1934::-;42593:35;42631:20;42643:7;42631:11;:20::i;:::-;42706:18;;42593:58;;-1:-1:-1;42664:22:0;;-1:-1:-1;;;;;42690:34:0;736:10;-1:-1:-1;;;;;42690:34:0;;:83;;;-1:-1:-1;736:10:0;42737:20;42749:7;42737:11;:20::i;:::-;-1:-1:-1;;;;;42737:36:0;;42690:83;:146;;;-1:-1:-1;42803:18:0;;42786:50;;736:10;42823:12;656:98;42786:50;42664:173;;42858:17;42850:80;;;;-1:-1:-1;;;42850:80:0;;12501:2:1;42850:80:0;;;12483:21:1;12540:2;12520:18;;;12513:30;12579:34;12559:18;;;12552:62;-1:-1:-1;;;12630:18:1;;;12623:48;12688:19;;42850:80:0;12473:240:1;42850:80:0;42973:4;-1:-1:-1;;;;;42951:26:0;:13;:18;;;-1:-1:-1;;;;;42951:26:0;;42943:77;;;;-1:-1:-1;;;42943:77:0;;10962:2:1;42943:77:0;;;10944:21:1;11001:2;10981:18;;;10974:30;11040:34;11020:18;;;11013:62;-1:-1:-1;;;11091:18:1;;;11084:36;11137:19;;42943:77:0;10934:228:1;42943:77:0;-1:-1:-1;;;;;43039:16:0;;43031:66;;;;-1:-1:-1;;;43031:66:0;;8233:2:1;43031:66:0;;;8215:21:1;8272:2;8252:18;;;8245:30;8311:34;8291:18;;;8284:62;-1:-1:-1;;;8362:18:1;;;8355:35;8407:19;;43031:66:0;8205:227:1;43031:66:0;43218:49;43235:1;43239:7;43248:13;:18;;;43218:8;:49::i;:::-;-1:-1:-1;;;;;43555:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;43555:31:0;;;-1:-1:-1;;;;;43555:31:0;;;-1:-1:-1;;43555:31:0;;;;;;;43597:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;43597:29:0;;;;;;;;;;;;;43639:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;43639:30:0;;;;-1:-1:-1;;;;43680:61:0;-1:-1:-1;;;43725:15:0;43680:61;;;;;;44003:11;;;44029:24;;;;;:29;44003:11;;44029:29;44025:275;;44093:20;44101:11;39841:12;;-1:-1:-1;39831:22:0;39750:111;44093:20;44089:200;;;44166:18;;;44134:24;;;:11;:24;;;;;;;;:50;;44245:28;;;;44203:70;;-1:-1:-1;;;44203:70:0;-1:-1:-1;;;;;;;;;44134:50:0;;;-1:-1:-1;;;;;;44134:50:0;;;;;;;44203:70;;;;;;;44089:200;42478:1934;44343:7;44339:2;-1:-1:-1;;;;;44324:27:0;44333:4;-1:-1:-1;;;;;44324:27:0;;;;;;;;;;;44362:42;42478:1934;;;;;:::o;7427:98::-;7485:7;7512:5;7516:1;7512;:5;:::i;:::-;7505:12;7427:98;-1:-1:-1;;;7427:98:0:o;23413:317::-;23528:6;23503:21;:31;;23495:73;;;;-1:-1:-1;;;23495:73:0;;9066:2:1;23495:73:0;;;9048:21:1;9105:2;9085:18;;;9078:30;9144:31;9124:18;;;9117:59;9193:18;;23495:73:0;9038:179:1;23495:73:0;23582:12;23600:9;-1:-1:-1;;;;;23600:14:0;23622:6;23600:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23581:52;;;23652:7;23644:78;;;;-1:-1:-1;;;23644:78:0;;8639:2:1;23644:78:0;;;8621:21:1;8678:2;8658:18;;;8651:30;8717:34;8697:18;;;8690:62;8788:28;8768:18;;;8761:56;8834:19;;23644:78:0;8611:248:1;6671:98:0;6729:7;6756:5;6760:1;6756;:5;:::i;35463:505::-;-1:-1:-1;;;;;;;;;;;;;;;;;35566:16:0;35574:7;39841:12;;-1:-1:-1;39831:22:0;39750:111;35566:16;35558:71;;;;-1:-1:-1;;;35558:71:0;;7483:2:1;35558:71:0;;;7465:21:1;7522:2;7502:18;;;7495:30;7561:34;7541:18;;;7534:62;-1:-1:-1;;;7612:18:1;;;7605:40;7662:19;;35558:71:0;7455:232:1;35558:71:0;35679:7;35659:225;35722:31;35756:17;;;:11;:17;;;;;;;;;35722:51;;;;;;;;;-1:-1:-1;;;;;35722:51:0;;;;;-1:-1:-1;;;35722:51:0;;;;;;;;;;;;35792:28;35788:85;;35848:9;-1:-1:-1;35841:16:0;;-1:-1:-1;35841:16:0;35788:85;-1:-1:-1;;;35699:6:0;35659:225;;3208:191;3282:16;3301:6;;-1:-1:-1;;;;;3318:17:0;;;-1:-1:-1;;;;;;3318:17:0;;;;;;3351:40;;3301:6;;;;;;;3351:40;;3282:16;3351:40;3208:191;;:::o;7028:98::-;7086:7;7113:5;7117:1;7113;:5;:::i;6290:98::-;6348:7;6375:5;6379:1;6375;:5;:::i;39869:104::-;39938:27;39948:2;39952:8;39938:27;;;;;;;;;;;;:9;:27::i;45291:804::-;45446:4;-1:-1:-1;;;;;45467:13:0;;22447:19;:23;45463:625;;45503:72;;-1:-1:-1;;;45503:72:0;;-1:-1:-1;;;;;45503:36:0;;;;;:72;;736:10;;45554:4;;45560:7;;45569:5;;45503:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45503:72:0;;;;;;;;-1:-1:-1;;45503:72:0;;;;;;;;;;;;:::i;:::-;;;45499:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45749:13:0;;45745:273;;45792:61;;-1:-1:-1;;;45792:61:0;;;;;;;:::i;45745:273::-;45968:6;45962:13;45953:6;45949:2;45945:15;45938:38;45499:534;-1:-1:-1;;;;;;45626:55:0;-1:-1:-1;;;45626:55:0;;-1:-1:-1;45619:62:0;;45463:625;-1:-1:-1;46072:4:0;45463:625;45291:804;;;;;;:::o;36565:335::-;36638:13;36672:16;36680:7;39841:12;;-1:-1:-1;39831:22:0;39750:111;36672:16;36664:76;;;;-1:-1:-1;;;36664:76:0;;11730:2:1;36664:76:0;;;11712:21:1;11769:2;11749:18;;;11742:30;11808:34;11788:18;;;11781:62;-1:-1:-1;;;11859:18:1;;;11852:45;11914:19;;36664:76:0;11702:237:1;36664:76:0;36753:21;36777:10;:8;:10::i;:::-;36753:34;;36811:7;36805:21;36830:1;36805:26;;:87;;;;;;;;;;;;;;;;;36858:7;36867:18;:7;:16;:18::i;:::-;36841:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;36798:94;36565:335;-1:-1:-1;;;36565:335:0:o;40336:163::-;40459:32;40465:2;40469:8;40479:5;40486:4;40459:5;:32::i;49532:106::-;49584:13;49617;49610:20;;;;;:::i;29795:723::-;29851:13;30072:10;30068:53;;-1:-1:-1;30099:10:0;;;;;;;;;;;;-1:-1:-1;;;30099:10:0;;;;;;30068:53;30146:5;30131:12;30187:78;30194:9;;30187:78;;30220:8;;;;:::i;:::-;;-1:-1:-1;30243:10:0;;-1:-1:-1;30251:2:0;30243:10;;:::i;:::-;;;30187:78;;;30275:19;30307:6;30297:17;;;;;;-1:-1:-1;;;30297:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30297:17:0;;30275:39;;30325:154;30332:10;;30325:154;;30359:11;30369:1;30359:11;;:::i;:::-;;-1:-1:-1;30428:10:0;30436:2;30428:5;:10;:::i;:::-;30415:24;;:2;:24;:::i;:::-;30402:39;;30385:6;30392;30385:14;;;;;;-1:-1:-1;;;30385:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;30385:56:0;;;;;;;;-1:-1:-1;30456:11:0;30465:2;30456:11;;:::i;:::-;;;30325:154;;40758:1466;40920:12;;-1:-1:-1;;;;;40951:16:0;;40943:62;;;;-1:-1:-1;;;40943:62:0;;14082:2:1;40943:62:0;;;14064:21:1;14121:2;14101:18;;;14094:30;14160:34;14140:18;;;14133:62;-1:-1:-1;;;14211:18:1;;;14204:31;14252:19;;40943:62:0;14054:223:1;40943:62:0;41024:13;41016:66;;;;-1:-1:-1;;;41016:66:0;;14484:2:1;41016:66:0;;;14466:21:1;14523:2;14503:18;;;14496:30;14562:34;14542:18;;;14535:62;-1:-1:-1;;;14613:18:1;;;14606:38;14661:19;;41016:66:0;14456:230:1;41016:66:0;-1:-1:-1;;;;;41426:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;41426:45:0;;-1:-1:-1;;;;;41426:45:0;;;;;;;;41482:50;;;-1:-1:-1;;;41482:50:0;;;;;;;;;;;;;;;41545:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;41545:35:0;;;;-1:-1:-1;;;;41591:66:0;-1:-1:-1;;;41641:15:0;41591:66;;;;;;;41545:25;;41718:379;41738:8;41734:1;:12;41718:379;;;41773:38;;41798:12;;-1:-1:-1;;;;;41773:38:0;;;41790:1;;41773:38;;41790:1;;41773:38;41830:4;41826:229;;;41885:59;41916:1;41920:2;41924:12;41938:5;41885:22;:59::i;:::-;41855:184;;;;-1:-1:-1;;;41855:184:0;;;;;;;:::i;:::-;42071:14;;;;;41748:3;41718:379;;;-1:-1:-1;42109:12:0;:27;42156:60;39140:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;;;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;;;;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;;;;;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;;;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;;;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:264::-;;;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4343:6;4335;4328:22;4290:2;4384:9;4371:23;4361:33;;4413:38;4447:2;4436:9;4432:18;4413:38;:::i;4462:257::-;;4541:5;4535:12;4568:6;4563:3;4556:19;4584:63;4640:6;4633:4;4628:3;4624:14;4617:4;4610:5;4606:16;4584:63;:::i;:::-;4701:2;4680:15;-1:-1:-1;;4676:29:1;4667:39;;;;4708:4;4663:50;;4511:208;-1:-1:-1;;4511:208:1:o;4724:470::-;;4941:6;4935:13;4957:53;5003:6;4998:3;4991:4;4983:6;4979:17;4957:53;:::i;:::-;5073:13;;5032:16;;;;5095:57;5073:13;5032:16;5129:4;5117:17;;5095:57;:::i;:::-;5168:20;;4911:283;-1:-1:-1;;;;4911:283:1:o;5617:488::-;-1:-1:-1;;;;;5886:15:1;;;5868:34;;5938:15;;5933:2;5918:18;;5911:43;5985:2;5970:18;;5963:34;;;6033:3;6028:2;6013:18;;6006:31;;;5617:488;;6054:45;;6079:19;;6071:6;6054:45;:::i;:::-;6046:53;5820:285;-1:-1:-1;;;;;;5820:285:1:o;6302:219::-;;6451:2;6440:9;6433:21;6471:44;6511:2;6500:9;6496:18;6488:6;6471:44;:::i;11167:356::-;11369:2;11351:21;;;11388:18;;;11381:30;11447:34;11442:2;11427:18;;11420:62;11514:2;11499:18;;11341:182::o;13121:415::-;13323:2;13305:21;;;13362:2;13342:18;;;13335:30;13401:34;13396:2;13381:18;;13374:62;-1:-1:-1;;;13467:2:1;13452:18;;13445:49;13526:3;13511:19;;13295:241::o;16063:128::-;;16134:1;16130:6;16127:1;16124:13;16121:2;;;16140:18;;:::i;:::-;-1:-1:-1;16176:9:1;;16111:80::o;16196:120::-;;16262:1;16252:2;;16267:18;;:::i;:::-;-1:-1:-1;16301:9:1;;16242:74::o;16321:168::-;;16427:1;16423;16419:6;16415:14;16412:1;16409:21;16404:1;16397:9;16390:17;16386:45;16383:2;;;16434:18;;:::i;:::-;-1:-1:-1;16474:9:1;;16373:116::o;16494:125::-;;16562:1;16559;16556:8;16553:2;;;16567:18;;:::i;:::-;-1:-1:-1;16604:9:1;;16543:76::o;16624:258::-;16696:1;16706:113;16720:6;16717:1;16714:13;16706:113;;;16796:11;;;16790:18;16777:11;;;16770:39;16742:2;16735:10;16706:113;;;16837:6;16834:1;16831:13;16828:2;;;-1:-1:-1;;16872:1:1;16854:16;;16847:27;16677:205::o;16887:380::-;16972:1;16962:12;;17019:1;17009:12;;;17030:2;;17084:4;17076:6;17072:17;17062:27;;17030:2;17137;17129:6;17126:14;17106:18;17103:38;17100:2;;;17183:10;17178:3;17174:20;17171:1;17164:31;17218:4;17215:1;17208:15;17246:4;17243:1;17236:15;17100:2;;16942:325;;;:::o;17272:135::-;;-1:-1:-1;;17332:17:1;;17329:2;;;17352:18;;:::i;:::-;-1:-1:-1;17399:1:1;17388:13;;17319:88::o;17412:112::-;;17470:1;17460:2;;17475:18;;:::i;:::-;-1:-1:-1;17509:9:1;;17450:74::o;17529:127::-;17590:10;17585:3;17581:20;17578:1;17571:31;17621:4;17618:1;17611:15;17645:4;17642:1;17635:15;17661:127;17722:10;17717:3;17713:20;17710:1;17703:31;17753:4;17750:1;17743:15;17777:4;17774:1;17767:15;17793:127;17854:10;17849:3;17845:20;17842:1;17835:31;17885:4;17882:1;17875:15;17909:4;17906:1;17899:15;17925:131;-1:-1:-1;;;;;;17999:32:1;;17989:43;;17979:2;;18046:1;18043;18036:12
Swarm Source
ipfs://59cf8f4c3fb64d1006c52558cdbde9b4e776d7cb5927118f85872cb172740efc
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.