Source Code
Overview
ETH Balance
ETH Value
$0.00| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 25195715 | 85 days ago | 0.0025 ETH | ||||
| 20054261 | 224 days ago | 0.0014 ETH | ||||
| 19913994 | 228 days ago | 0.0014 ETH | ||||
| 18297492 | 278 days ago | 0.0014 ETH | ||||
| 17968728 | 289 days ago | 0.0014 ETH | ||||
| 17827458 | 293 days ago | 0.008 ETH | ||||
| 17665223 | 298 days ago | 0.008 ETH | ||||
| 17411007 | 305 days ago | 0.000042 ETH | ||||
| 17410999 | 305 days ago | 0.000042 ETH | ||||
| 17355281 | 306 days ago | 0.0025 ETH | ||||
| 17301912 | 308 days ago | 0.000042 ETH | ||||
| 17300355 | 308 days ago | 0.0014 ETH | ||||
| 17300306 | 308 days ago | 0.000042 ETH | ||||
| 17300202 | 308 days ago | 0.000042 ETH | ||||
| 17300170 | 308 days ago | 0.000042 ETH | ||||
| 17300157 | 308 days ago | 0.000042 ETH | ||||
| 17297776 | 308 days ago | 0.000042 ETH | ||||
| 17297773 | 308 days ago | 0.000042 ETH | ||||
| 17297767 | 308 days ago | 0.000042 ETH | ||||
| 17293036 | 308 days ago | 0.000042 ETH | ||||
| 17285892 | 308 days ago | 0.000042 ETH | ||||
| 17284266 | 308 days ago | 0.000042 ETH | ||||
| 17284233 | 308 days ago | 0.000042 ETH | ||||
| 16878940 | 319 days ago | 0.000042 ETH | ||||
| 16878930 | 319 days ago | 0.000042 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
BattlemonBox
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
import "./api3/RrpRequesterV0.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";
import "./interfaces/IERC721Mintable.sol";
import "./interfaces/IBattlemonStickers.sol";
import "./interfaces/IBattlemonItems.sol";
import "./interfaces/IBattlemonPickaxe.sol";
import "./interfaces/IBattlemonPoints.sol";
import "./interfaces/IBattlemon.sol";
import "./interfaces/IBattlemonReferral.sol";
import "./BattlemonLineaPark.sol";
import "./interfaces/IBattlemonGoldenKey.sol";
// sticker = 0
// COIN small = 100
// COIN medium = 101
// COIN large = 102
// Point small = 200
// Point medium = 201
// Point large = 202
// Points for lemon = 210
// Points for item = 211
// Pickaxe cheap = 400
// Pickaxe good = 401
// Pickaxe great = 402
// Item = 500
// Lemon = 600
contract BattlemonBox is Initializable, OwnableUpgradeable, RrpRequesterV0 {
event Prize(uint boxType, bytes32 requestId, address winner, uint prizeId);
event NewPurchase(address buyer, uint boxType, bytes32 requestId);
event CallFailed(address to, uint256 value);
uint256 private _randNonce;
address public lemons;
address public stickers;
address public items;
address public pickaxe;
address public points;
address public tresuary;
uint256 public CHEAP_BOX_PRICE;
uint256 public GOOD_BOX_PRICE;
uint256 public GREAT_BOX_PRICE;
uint256 public MAX_ITEMS_AMOUNT;
uint256 public MAX_LEMONS_AMOUNT;
uint256 public lemonsMinted;
uint256 public itemsMinted;
uint256 public smallAmount;
uint256 public mediumAmount;
uint256 public largeAmount; // coming soon
address public referrals;
address public airnodeAddress; /// The address of the QRNG Airnode
bytes32 public endpointIdUint256; /// The endpoint ID for requesting a single random number
address public sponsorWallet; /// The wallet that will cover the gas costs of the request
mapping(bytes32 => Request) public requests;
struct Request {
address sender;
bool pending;
}
// v2 fields
uint256 public BATTLE_BOX_PRICE;
address public keys;
address public lineaPark;
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() {
_disableInitializers();
}
function initialize(
address _tresuary,
address _airnodeRrp,
uint[] calldata amounts,
uint[] calldata prices
) public initializer {
__Ownable_init();
__RrpRequester_Initialize(_airnodeRrp);
require(amounts.length == 2, "Box: wrong length");
smallAmount = amounts[0];
mediumAmount = amounts[1];
tresuary = _tresuary;
CHEAP_BOX_PRICE = prices[0];
GOOD_BOX_PRICE = prices[1];
GREAT_BOX_PRICE = prices[2];
MAX_ITEMS_AMOUNT = 11111;
MAX_LEMONS_AMOUNT = 1111;
}
function buyBattleBox(uint tokenId, bool buyWithKey) public payable {
require(msg.value == BATTLE_BOX_PRICE, "Box: Wrong msg.value"); // 0.15$
// Buy for linea park nft
if (!buyWithKey) {
require(
BattlemonLineaPark(lineaPark).ownerOf(tokenId) == msg.sender,
"Box: Not token owner"
);
BattlemonLineaPark(lineaPark).transferFrom(
msg.sender,
address(this),
tokenId
);
}
// Buy for key
if (buyWithKey) {
require(
IBattlemonGoldenKey(keys).openBattleBox(tokenId, msg.sender),
"Box: Can't open battle box with key"
);
}
bytes32 requestId = airnodeRrp.makeFullRequest(
airnodeAddress,
endpointIdUint256,
address(this),
sponsorWallet,
address(this),
this._buyBattleBoxCallback.selector,
""
);
requests[requestId].pending = true;
requests[requestId].sender = msg.sender;
uint value = _rewardReferree(msg.sender, msg.value); //90%
sponsorWallet.call{value: value}("");
emit NewPurchase(msg.sender, 3, requestId);
}
function buyCheapBox() public payable {
require(msg.value == CHEAP_BOX_PRICE, "Box: Wrong msg.value");
bytes32 requestId = airnodeRrp.makeFullRequest(
airnodeAddress,
endpointIdUint256,
address(this),
sponsorWallet,
address(this),
this._buyCheapBoxCallback.selector,
""
);
requests[requestId].pending = true;
requests[requestId].sender = msg.sender;
uint value = _rewardReferree(msg.sender, msg.value); //90%
// sponsorWallet.call{value: value / 22}(""); // 4->5->22
emit NewPurchase(msg.sender, 0, requestId);
}
function buyGoodBox() public payable {
require(msg.value == GOOD_BOX_PRICE, "Box: Wrong msg.value");
bytes32 requestId = airnodeRrp.makeFullRequest(
airnodeAddress,
endpointIdUint256,
address(this),
sponsorWallet,
address(this),
this._buyGoodBoxCallback.selector,
""
);
requests[requestId].pending = true;
requests[requestId].sender = msg.sender;
uint value = _rewardReferree(msg.sender, msg.value);
// sponsorWallet.call{value: value / 35}(""); // 7->10->35
emit NewPurchase(msg.sender, 1, requestId);
}
function buyGreatBox() public payable {
require(msg.value == GREAT_BOX_PRICE, "Box: Wrong msg.value");
bytes32 requestId = airnodeRrp.makeFullRequest(
airnodeAddress,
endpointIdUint256,
address(this),
sponsorWallet,
address(this),
this._buyGreatBoxCallback.selector,
""
);
requests[requestId].pending = true;
requests[requestId].sender = msg.sender;
uint value = _rewardReferree(msg.sender, msg.value);
// sponsorWallet.call{value: value / 110}(""); //23->29->110
emit NewPurchase(msg.sender, 2, requestId);
}
function _buyBattleBoxCallback(
bytes32 requestId,
bytes calldata data
) external onlyAirnodeRrp {
require(
requests[requestId].pending == true,
"Box: Request finished or doesn't exist"
);
requests[requestId].pending = false;
uint256 r = (abi.decode(data, (uint256)) % 100_0000) + 1;
address sender = requests[requestId].sender;
address referree = IBattlemonReferral(referrals).getUserRef(sender);
// Always
sendPoints(sender, referree, 3 ether);
// 60%
if (r <= 60_0000) {
sendPoints(sender, referree, 25 ether);
emit Prize(0, requestId, sender, 200);
return;
}
// 35%
if (r > 60_0000 && r <= 95_0000) {
sendPoints(sender, referree, 50 ether);
emit Prize(0, requestId, sender, 201);
return;
}
// 1$
if (r > 95_0000 && r <= 96_0000) {
IBattlemonStickers(stickers).mint(sender, 1);
emit Prize(0, requestId, sender, 0);
return;
}
// 1%
if (r > 96_0000 && r <= 97_0000) {
if (lemonsMinted + 1 > MAX_LEMONS_AMOUNT) {
sendPoints(sender, referree, 200 ether);
emit Prize(2, requestId, sender, 210);
return;
}
IBattlemon(lemons).boxMint(sender);
lemonsMinted++;
emit Prize(2, requestId, sender, 600);
return;
}
// 2.99%
if (r > 97_0000 && r <= 99_9900) {
IBattlemonPickaxe(pickaxe).boxMint(sender, 0);
emit Prize(0, requestId, sender, 400);
return;
}
// 0.01%
if (r > 99_9900) {
sender.call{value: smallAmount}("");
emit Prize(0, requestId, sender, 100);
return;
}
}
function _buyCheapBoxCallback(
bytes32 requestId,
bytes calldata data
) external onlyAirnodeRrp {
require(
requests[requestId].pending == true,
"Box: Request finished or doesn't exist"
);
requests[requestId].pending = false;
uint256 r = (abi.decode(data, (uint256)) % 100) + 1;
address sender = requests[requestId].sender;
address referree = IBattlemonReferral(referrals).getUserRef(sender);
// 50%
if (r <= 50) {
sendPoints(sender, referree, 25 ether);
emit Prize(0, requestId, sender, 200);
return;
}
// 25%
if (r > 50 && r <= 75) {
IBattlemonStickers(stickers).mint(sender, 1);
emit Prize(0, requestId, sender, 0);
return;
}
// 24%
if (r > 75 && r < 100) {
IBattlemonPickaxe(pickaxe).boxMint(sender, 0);
emit Prize(0, requestId, sender, 400);
return;
}
// 1%
if (r == 100) {
sender.call{value: smallAmount}("");
emit Prize(0, requestId, sender, 100);
return;
}
}
function _buyGoodBoxCallback(
bytes32 requestId,
bytes calldata data
) external onlyAirnodeRrp {
require(
requests[requestId].pending == true,
"Box: Request finished or doesn't exist"
);
requests[requestId].pending = false;
address sender = requests[requestId].sender;
uint256 r = (abi.decode(data, (uint256)) % 100) + 1;
address referree = IBattlemonReferral(referrals).getUserRef(sender);
// 10%
if (r <= 10) {
IBattlemonStickers(stickers).mint(sender, 1);
emit Prize(1, requestId, sender, 0);
return;
}
// 15%
if (r >= 11 && r <= 25) {
if (itemsMinted + 1 > MAX_ITEMS_AMOUNT) {
sendPoints(sender, referree, 50 ether);
emit Prize(1, requestId, sender, 211);
return;
}
IBattlemonItems(items).rewardMint(sender, 1);
itemsMinted++;
emit Prize(1, requestId, sender, 500);
return;
}
// 8%
if (r >= 26 && r <= 33) {
sender.call{value: smallAmount}("");
emit Prize(1, requestId, sender, 100);
return;
}
// 5%
if (r >= 34 && r <= 38) {
sender.call{value: mediumAmount}("");
emit Prize(1, requestId, sender, 101);
return;
}
// 26%
if (r >= 39 && r <= 64) {
sendPoints(sender, referree, 25 ether);
emit Prize(1, requestId, sender, 200);
return;
}
// 18%
if (r >= 65 && r <= 82) {
sendPoints(sender, referree, 50 ether);
emit Prize(1, requestId, sender, 201);
return;
}
// 18%
if (r >= 83) {
IBattlemonPickaxe(pickaxe).boxMint(sender, 1);
emit Prize(1, requestId, sender, 401);
return;
}
}
function _buyGreatBoxCallback(
bytes32 requestId,
bytes calldata data
) external onlyAirnodeRrp {
require(
requests[requestId].pending == true,
"Box: Request finished or doesn't exist"
);
requests[requestId].pending = false;
address sender = requests[requestId].sender;
uint256 r = (abi.decode(data, (uint256)) % 100) + 1;
address referree = IBattlemonReferral(referrals).getUserRef(sender);
// 25%
if (r <= 25) {
if (lemonsMinted + 1 > MAX_LEMONS_AMOUNT) {
sendPoints(sender, referree, 200 ether);
emit Prize(2, requestId, sender, 210);
return;
}
IBattlemon(lemons).boxMint(sender);
lemonsMinted++;
emit Prize(2, requestId, sender, 600);
return;
}
// 20%
if (r >= 26 && r <= 45) {
if (itemsMinted + 1 > MAX_ITEMS_AMOUNT) {
sendPoints(sender, referree, 50 ether);
emit Prize(2, requestId, sender, 211);
return;
}
IBattlemonItems(items).rewardMint(sender, 1);
itemsMinted++;
emit Prize(2, requestId, sender, 500);
return;
}
// 15%
if (r >= 46 && r <= 60) {
sender.call{value: mediumAmount}("");
emit Prize(2, requestId, sender, 101);
return;
}
// 5%
if (r >= 61 && r <= 65) {
sendPoints(sender, referree, 50 ether);
emit Prize(2, requestId, sender, 201);
return;
}
// 20%
if (r >= 66 && r <= 85) {
sendPoints(sender, referree, 100 ether);
emit Prize(2, requestId, sender, 202);
return;
}
// 10%
if (r >= 86 && r <= 95) {
IBattlemonPickaxe(pickaxe).boxMint(sender, 2); // lvl3
emit Prize(2, requestId, sender, 402);
return;
}
// 5%
if (r >= 96) {
IBattlemonStickers(stickers).mint(sender, 1);
emit Prize(2, requestId, sender, 0);
return;
}
}
function setAddresses(
address lemons_,
address items_,
address stickers_,
address pickaxe_,
address points_,
address referrals_
) public onlyOwner {
require(
lemons_ != address(0) &&
items_ != address(0) &&
points_ != address(0) &&
referrals_ != address(0) &&
stickers_ != address(0) &&
pickaxe_ != address(0),
"Box: Zero address"
);
lemons = lemons_;
items = items_;
stickers = stickers_;
pickaxe = pickaxe_;
points = points_;
referrals = referrals_;
}
function sendPoints(address sender, address referree, uint amount) private {
uint bonus = 0;
if (referree != address(0)) {
bonus = (amount * 5) / 100;
IBattlemonPoints(points).mint(referree, bonus);
}
IBattlemonPoints(points).mint(sender, amount + bonus);
}
function setRequestParameters(
address _airnode,
bytes32 _endpointIdUint256,
address _sponsorWallet
) external onlyOwner {
airnodeAddress = _airnode;
endpointIdUint256 = _endpointIdUint256;
sponsorWallet = _sponsorWallet;
}
function _rewardReferree(
address sender,
uint value
) private returns (uint) {
address referree = IBattlemonReferral(referrals).getUserRef(sender);
if (referree != address(0)) {
(bool s, ) = payable(referree).call{value: (value * 5) / 100}("");
require(s, "Box: Cant transfer funds to referree");
(bool s2, ) = payable(sender).call{value: (value * 5) / 100}("");
if (!s2) {
emit CallFailed(sender, value);
}
}
return (value * 9) / 10;
}
receive() external payable {}
function withdraw(uint value) public {
require(msg.sender == tresuary, "Not tresuary");
(bool s, ) = payable(tresuary).call{value: value}("");
require(s, "Box: Withdraw went wrong");
}
function setConfig(uint[] memory prices) public onlyOwner {
require(prices.length == 4);
CHEAP_BOX_PRICE = prices[0];
GOOD_BOX_PRICE = prices[1];
GREAT_BOX_PRICE = prices[2];
BATTLE_BOX_PRICE = prices[3];
}
function setKeysLineaParkAddresses(
address[] memory addresses
) public onlyOwner {
require(addresses.length == 2, "Box: Wrong length");
lineaPark = addresses[0];
keys = addresses[1];
}
function changeMaxLemonsAmount(uint amount) public onlyOwner {
require(amount > MAX_LEMONS_AMOUNT, "Box: Less then previous");
MAX_LEMONS_AMOUNT = amount;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IAuthorizationUtilsV0.sol";
import "./ITemplateUtilsV0.sol";
import "./IWithdrawalUtilsV0.sol";
interface IAirnodeRrpV0 is
IAuthorizationUtilsV0,
ITemplateUtilsV0,
IWithdrawalUtilsV0
{
event SetSponsorshipStatus(
address indexed sponsor,
address indexed requester,
bool sponsorshipStatus
);
event MadeTemplateRequest(
address indexed airnode,
bytes32 indexed requestId,
uint256 requesterRequestCount,
uint256 chainId,
address requester,
bytes32 templateId,
address sponsor,
address sponsorWallet,
address fulfillAddress,
bytes4 fulfillFunctionId,
bytes parameters
);
event MadeFullRequest(
address indexed airnode,
bytes32 indexed requestId,
uint256 requesterRequestCount,
uint256 chainId,
address requester,
bytes32 endpointId,
address sponsor,
address sponsorWallet,
address fulfillAddress,
bytes4 fulfillFunctionId,
bytes parameters
);
event FulfilledRequest(
address indexed airnode,
bytes32 indexed requestId,
bytes data
);
event FailedRequest(
address indexed airnode,
bytes32 indexed requestId,
string errorMessage
);
function setSponsorshipStatus(address requester, bool sponsorshipStatus)
external;
function makeTemplateRequest(
bytes32 templateId,
address sponsor,
address sponsorWallet,
address fulfillAddress,
bytes4 fulfillFunctionId,
bytes calldata parameters
) external returns (bytes32 requestId);
function makeFullRequest(
address airnode,
bytes32 endpointId,
address sponsor,
address sponsorWallet,
address fulfillAddress,
bytes4 fulfillFunctionId,
bytes calldata parameters
) external returns (bytes32 requestId);
function fulfill(
bytes32 requestId,
address airnode,
address fulfillAddress,
bytes4 fulfillFunctionId,
bytes calldata data,
bytes calldata signature
) external returns (bool callSuccess, bytes memory callData);
function fail(
bytes32 requestId,
address airnode,
address fulfillAddress,
bytes4 fulfillFunctionId,
string calldata errorMessage
) external;
function sponsorToRequesterToSponsorshipStatus(
address sponsor,
address requester
) external view returns (bool sponsorshipStatus);
function requesterToRequestCountPlusOne(address requester)
external
view
returns (uint256 requestCountPlusOne);
function requestIsAwaitingFulfillment(bytes32 requestId)
external
view
returns (bool isAwaitingFulfillment);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IAuthorizationUtilsV0 {
function checkAuthorizationStatus(
address[] calldata authorizers,
address airnode,
bytes32 requestId,
bytes32 endpointId,
address sponsor,
address requester
) external view returns (bool status);
function checkAuthorizationStatuses(
address[] calldata authorizers,
address airnode,
bytes32[] calldata requestIds,
bytes32[] calldata endpointIds,
address[] calldata sponsors,
address[] calldata requesters
) external view returns (bool[] memory statuses);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface ITemplateUtilsV0 {
event CreatedTemplate(
bytes32 indexed templateId,
address airnode,
bytes32 endpointId,
bytes parameters
);
function createTemplate(
address airnode,
bytes32 endpointId,
bytes calldata parameters
) external returns (bytes32 templateId);
function getTemplates(bytes32[] calldata templateIds)
external
view
returns (
address[] memory airnodes,
bytes32[] memory endpointIds,
bytes[] memory parameters
);
function templates(bytes32 templateId)
external
view
returns (
address airnode,
bytes32 endpointId,
bytes memory parameters
);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IWithdrawalUtilsV0 {
event RequestedWithdrawal(
address indexed airnode,
address indexed sponsor,
bytes32 indexed withdrawalRequestId,
address sponsorWallet
);
event FulfilledWithdrawal(
address indexed airnode,
address indexed sponsor,
bytes32 indexed withdrawalRequestId,
address sponsorWallet,
uint256 amount
);
function requestWithdrawal(address airnode, address sponsorWallet) external;
function fulfillWithdrawal(
bytes32 withdrawalRequestId,
address airnode,
address sponsor
) external payable;
function sponsorToWithdrawalRequestCount(address sponsor)
external
view
returns (uint256 withdrawalRequestCount);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @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 OwnableUpgradeable is Initializable, ContextUpgradeable {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
function __Ownable_init() internal onlyInitializing {
__Ownable_init_unchained();
}
function __Ownable_init_unchained() internal onlyInitializing {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.2;
import "../../utils/AddressUpgradeable.sol";
/**
* @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an
* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
*
* The initialization functions use a version number. Once a version number is used, it is consumed and cannot be
* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in
* case an upgrade adds a module that needs to be initialized.
*
* For example:
*
* [.hljs-theme-light.nopadding]
* ```solidity
* contract MyToken is ERC20Upgradeable {
* function initialize() initializer public {
* __ERC20_init("MyToken", "MTK");
* }
* }
*
* contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {
* function initializeV2() reinitializer(2) public {
* __ERC20Permit_init("MyToken");
* }
* }
* ```
*
* TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
* possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
*
* CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
* that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
*
* [CAUTION]
* ====
* Avoid leaving a contract uninitialized.
*
* An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
* contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke
* the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() {
* _disableInitializers();
* }
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
* @custom:oz-retyped-from bool
*/
uint8 private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Triggered when the contract has been initialized or reinitialized.
*/
event Initialized(uint8 version);
/**
* @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,
* `onlyInitializing` functions can be used to initialize parent contracts.
*
* Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a
* constructor.
*
* Emits an {Initialized} event.
*/
modifier initializer() {
bool isTopLevelCall = !_initializing;
require(
(isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1),
"Initializable: contract is already initialized"
);
_initialized = 1;
if (isTopLevelCall) {
_initializing = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
emit Initialized(1);
}
}
/**
* @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the
* contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be
* used to initialize parent contracts.
*
* A reinitializer may be used after the original initialization step. This is essential to configure modules that
* are added through upgrades and that require initialization.
*
* When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`
* cannot be nested. If one is invoked in the context of another, execution will revert.
*
* Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in
* a contract, executing them in the right order is up to the developer or operator.
*
* WARNING: setting the version to 255 will prevent any future reinitialization.
*
* Emits an {Initialized} event.
*/
modifier reinitializer(uint8 version) {
require(!_initializing && _initialized < version, "Initializable: contract is already initialized");
_initialized = version;
_initializing = true;
_;
_initializing = false;
emit Initialized(version);
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} and {reinitializer} modifiers, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
/**
* @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.
* Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized
* to any version. It is recommended to use this to lock implementation contracts that are designed to be called
* through proxies.
*
* Emits an {Initialized} event the first time it is successfully executed.
*/
function _disableInitializers() internal virtual {
require(!_initializing, "Initializable: contract is initializing");
if (_initialized != type(uint8).max) {
_initialized = type(uint8).max;
emit Initialized(type(uint8).max);
}
}
/**
* @dev Returns the highest version that has been initialized. See {reinitializer}.
*/
function _getInitializedVersion() internal view returns (uint8) {
return _initialized;
}
/**
* @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.
*/
function _isInitializing() internal view returns (bool) {
return _initializing;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165Upgradeable.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721Upgradeable is IERC165Upgradeable {
/**
* @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library AddressUpgradeable {
/**
* @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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol)
pragma solidity ^0.8.0;
import {Initializable} from "../proxy/utils/Initializable.sol";
/**
* @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 ContextUpgradeable is Initializable {
function __Context_init() internal onlyInitializing {
}
function __Context_init_unchained() internal onlyInitializing {
}
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// 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 IERC165Upgradeable {
/**
* @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);
}// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 amount) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @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 virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @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) {
_requireMinted(tokenId);
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 overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @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.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* 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) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @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.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @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 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: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* 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);
}// SPDX-License-Identifier: MIT
// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [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://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.4) (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;
}
function _contextSuffixLength() internal view virtual returns (uint256) {
return 0;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @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;
}
}// SPDX-License-Identifier: MIT
// 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);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @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] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@api3/airnode-protocol/contracts/rrp/interfaces/IAirnodeRrpV0.sol";
import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";
/// @title The contract to be inherited to make Airnode RRP requests
contract RrpRequesterV0 is Initializable {
IAirnodeRrpV0 public airnodeRrp;
/// @dev Reverts if the caller is not the Airnode RRP contract.
/// Use it as a modifier for fulfill and error callback methods, but also
/// check `requestId`.
modifier onlyAirnodeRrp() {
require(msg.sender == address(airnodeRrp), "Caller not Airnode RRP");
_;
}
function __RrpRequester_Initialize(
address _airnodeRrp
) internal onlyInitializing {
airnodeRrp = IAirnodeRrpV0(_airnodeRrp);
IAirnodeRrpV0(_airnodeRrp).setSponsorshipStatus(address(this), true);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
contract BattlemonLineaPark is ERC721 {
uint256 private _nextTokenId;
constructor() ERC721("BattlemonLineaPark", "PARK") {}
function _baseURI() internal pure override returns (string memory) {
return
"https://bafybeibrljiwya5jtaiprgmler6apmngt2l5e37zis4mk5gwl3um4yqecq.ipfs.nftstorage.link/json.json";
}
function tokenURI(uint256) public pure override returns (string memory) {
return _baseURI();
}
function safeMint() public {
require(block.timestamp <= 1712264400, "Too late");
uint256 tokenId = _nextTokenId++;
_safeMint(msg.sender, tokenId);
}
}//SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
import "./IBattlemonItems.sol";
import "@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol";
interface IBattlemon is IERC721Upgradeable {
event EquipmentChanged(
address indexed owner,
uint256 indexed lemonId,
Metadata lemonData,
int[] itemsIds,
IBattlemonItems.Metadata[10] itemsMetadata
);
event Lvlup(
uint256 indexed tokenId,
uint256 lemonType,
uint256 indexed level,
uint256 agility,
uint256 speed,
uint256 luck,
bytes dna
);
event Create(
address indexed to,
uint256 indexed tokenId,
uint8 indexed lemonType,
uint256 agility,
uint256 speed,
uint256 luck,
bytes dna,
uint256 level
);
event CrosschainTransfer(
address indexed to,
uint256 indexed tokenId,
uint8 indexed lemonType,
uint256 agility,
uint256 speed,
uint256 luck,
bytes dna,
uint256 level
);
struct Metadata {
uint8 level;
// 0-OMEGA, 1-ALPHA
uint8 lemonType;
bytes dna;
uint256 agility;
uint256 speed;
uint256 luck;
}
struct EquippedItem {
uint256 itemId;
// Required because itemId can be 0 when item actually has id == 0
bool equipped;
}
function sendLemonToRaid(uint256 lemonId, address caller) external;
function boxMint(address to) external;
function levelOf(uint id) external view returns (uint8);
function lemonData(uint id) external view returns (Metadata memory);
}//SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IBattlemonGoldenKey {
function openBattleBox(
uint tokenId,
address sender
) external returns (bool);
}//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
interface IBattlemonItems {
event MintRandom(
address indexed account,
uint256 indexed itemId,
string itemName
);
struct Metadata {
bool isEquipped;
uint8 itemType;
uint8 level;
// Stats
uint agility;
uint speed;
uint luck;
// Used only for equipment
// All the rest of the time = address(0)
address actualOwner;
bytes dna;
}
function mintRandom(address account) external;
function rewardMint(address account, uint amount) external;
// function mintSpecificItem(address account, uint256 itemType, uint256 id, uint256 amount) external;
function equipItem(uint id, address sender) external;
function unequipItem(uint id, address sender) external;
function getItemData(uint tokenId) external view returns (Metadata memory);
function transferEquippedItem(address to, uint id) external;
}//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
interface IBattlemonPickaxe {
function boxMint(address to, uint _type) external;
}//SPDX-License-Identifier: MIT
pragma solidity 0.8.20;
interface IBattlemonPoints {
function mint(address to, uint amount) external;
}//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
interface IBattlemonReferral {
function setReferee(address ref) external;
function getUserRef(address user) external view returns (address);
}//SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
interface IBattlemonStickers {
function mint(address to, uint amount) external returns (bool);
}// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.20;
import "@openzeppelin/contracts/interfaces/IERC721.sol";
interface IERC721Mintable is IERC721 {
function boxMint(address to) external;
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"CallFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"boxType","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"}],"name":"NewPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"boxType","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"requestId","type":"bytes32"},{"indexed":false,"internalType":"address","name":"winner","type":"address"},{"indexed":false,"internalType":"uint256","name":"prizeId","type":"uint256"}],"name":"Prize","type":"event"},{"inputs":[],"name":"BATTLE_BOX_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHEAP_BOX_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOOD_BOX_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GREAT_BOX_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_ITEMS_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_LEMONS_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"_buyBattleBoxCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"_buyCheapBoxCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"_buyGoodBoxCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"_buyGreatBoxCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airnodeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"airnodeRrp","outputs":[{"internalType":"contract IAirnodeRrpV0","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"buyWithKey","type":"bool"}],"name":"buyBattleBox","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyCheapBox","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyGoodBox","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"buyGreatBox","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"changeMaxLemonsAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endpointIdUint256","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tresuary","type":"address"},{"internalType":"address","name":"_airnodeRrp","type":"address"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"uint256[]","name":"prices","type":"uint256[]"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"items","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"itemsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"keys","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"largeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lemons","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lemonsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lineaPark","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mediumAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pickaxe","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"points","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referrals","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"requests","outputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"bool","name":"pending","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lemons_","type":"address"},{"internalType":"address","name":"items_","type":"address"},{"internalType":"address","name":"stickers_","type":"address"},{"internalType":"address","name":"pickaxe_","type":"address"},{"internalType":"address","name":"points_","type":"address"},{"internalType":"address","name":"referrals_","type":"address"}],"name":"setAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"prices","type":"uint256[]"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setKeysLineaParkAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_airnode","type":"address"},{"internalType":"bytes32","name":"_endpointIdUint256","type":"bytes32"},{"internalType":"address","name":"_sponsorWallet","type":"address"}],"name":"setRequestParameters","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"smallAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sponsorWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stickers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tresuary","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040523480156200001157600080fd5b506200001c62000022565b620000e3565b600054610100900460ff16156200008f5760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff90811614620000e1576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b61324980620000f36000396000f3fe6080604052600436106102605760003560e01c80637bdf252511610144578063bf90fb4e116100b6578063e0706c911161007a578063e0706c91146106c2578063eaea812e146106e2578063f2fde38b146106f8578063f6ea293614610718578063f83acb9c14610738578063fa922e661461074057600080fd5b8063bf90fb4e1461062c578063c06fad061461064c578063d0bdd66c1461066c578063d3dc75391461068c578063dc400e1d146106ac57600080fd5b80639303434d116101085780639303434d1461053f5780639cf4d4091461055f5780639d86698514610575578063a2c8aff2146105d6578063abb33009146105f6578063b4d083481461061657600080fd5b80637bdf2525146104b55780638402b2a1146104d55780638c22501a146104eb5780638cfc2ef3146105015780638da5cb5b1461052157600080fd5b80634f8a84c5116101dd578063644de3cb116101a1578063644de3cb146104145780636adfc6001461042a5780636cfb6bf914610440578063715018a61461046057806371bab6661461047557806378d488ad1461049557600080fd5b80634f8a84c5146103ad57806352de9ec8146103c35780635a2bdc10146103e35780635c78a393146103eb57806362b739681461040157600080fd5b806327e703641161022457806327e70364146103175780632e1a7d4d14610337578063307540f614610357578063438bd33814610377578063451398341461039757600080fd5b806307b9fc571461026c57806308b40053146102955780631856fda4146102cd5780631be6dd64146102ef578063225addb11461030f57600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028260795481565b6040519081526020015b60405180910390f35b3480156102a157600080fd5b50607e546102b5906001600160a01b031681565b6040516001600160a01b03909116815260200161028c565b3480156102d957600080fd5b506102ed6102e8366004612af1565b610760565b005b3480156102fb57600080fd5b50606b546102b5906001600160a01b031681565b6102ed6107c3565b34801561032357600080fd5b506102ed610332366004612b6b565b6108db565b34801561034357600080fd5b506102ed610352366004612af1565b610aff565b34801561036357600080fd5b50607d546102b5906001600160a01b031681565b34801561038357600080fd5b506068546102b5906001600160a01b031681565b3480156103a357600080fd5b50610282606d5481565b3480156103b957600080fd5b5061028260725481565b3480156103cf57600080fd5b506102ed6103de366004612c00565b610bef565b6102ed611199565b3480156103f757600080fd5b5061028260735481565b6102ed61040f366004612c8a565b6112a5565b34801561042057600080fd5b5061028260705481565b34801561043657600080fd5b50610282607c5481565b34801561044c57600080fd5b506102ed61045b366004612cba565b611610565b34801561046c57600080fd5b506102ed611737565b34801561048157600080fd5b506065546102b5906001600160a01b031681565b3480156104a157600080fd5b506067546102b5906001600160a01b031681565b3480156104c157600080fd5b506102ed6104d0366004612d3c565b61174b565b3480156104e157600080fd5b5061028260765481565b3480156104f757600080fd5b50610282606f5481565b34801561050d57600080fd5b50606c546102b5906001600160a01b031681565b34801561052d57600080fd5b506033546001600160a01b03166102b5565b34801561054b57600080fd5b506102ed61055a366004612c00565b611787565b34801561056b57600080fd5b5061028260755481565b34801561058157600080fd5b506105b7610590366004612af1565b607b602052600090815260409020546001600160a01b03811690600160a01b900460ff1682565b604080516001600160a01b03909316835290151560208301520161028c565b3480156105e257600080fd5b506102ed6105f1366004612de9565b611c3b565b34801561060257600080fd5b506102ed610611366004612c00565b611cd8565b34801561062257600080fd5b5061028260715481565b34801561063857600080fd5b50607a546102b5906001600160a01b031681565b34801561065857600080fd5b506069546102b5906001600160a01b031681565b34801561067857600080fd5b506078546102b5906001600160a01b031681565b34801561069857600080fd5b506077546102b5906001600160a01b031681565b3480156106b857600080fd5b50610282606e5481565b3480156106ce57600080fd5b506102ed6106dd366004612c00565b611ec5565b3480156106ee57600080fd5b5061028260745481565b34801561070457600080fd5b506102ed610713366004612e7f565b6123e4565b34801561072457600080fd5b506102ed610733366004612ea3565b61245d565b6102ed61252f565b34801561074c57600080fd5b50606a546102b5906001600160a01b031681565b61076861263b565b60715481116107be5760405162461bcd60e51b815260206004820152601760248201527f426f783a204c657373207468656e2070726576696f757300000000000000000060448201526064015b60405180910390fd5b607155565b606e5434146107e45760405162461bcd60e51b81526004016107b590612f32565b606554607854607954607a54604051636e6be03f60e01b81526000946001600160a01b0390811694636e6be03f946108339491831693909230921690829063e0706c9160e01b90600401612f60565b6020604051808303816000875af1158015610852573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108769190612fb4565b6000818152607b6020526040812080546001600160a81b03191633908117600160a01b17909155919250906108ab9034612695565b90506000805160206131f4833981519152336001846040516108cf93929190612fcd565b60405180910390a15050565b600054610100900460ff16158080156108fb5750600054600160ff909116105b806109155750303b158015610915575060005460ff166001145b6109785760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016107b5565b6000805460ff19166001179055801561099b576000805461ff0019166101001790555b6109a36128a4565b6109ac866128d3565b600284146109f05760405162461bcd60e51b8152602060048201526011602482015270084def07440eee4dedcce40d8cadccee8d607b1b60448201526064016107b5565b84846000818110610a0357610a03612fee565b60200291909101356074555084846001818110610a2257610a22612fee565b602002919091013560755550606c80546001600160a01b0319166001600160a01b0389161790558282600081610a5a57610a5a612fee565b6020029190910135606d555082826001818110610a7957610a79612fee565b6020029190910135606e555082826002818110610a9857610a98612fee565b6020029190910135606f5550612b676070556104576071558015610af6576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050505050565b606c546001600160a01b03163314610b485760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420747265737561727960a01b60448201526064016107b5565b606c546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b95576040519150601f19603f3d011682016040523d82523d6000602084013e610b9a565b606091505b5050905080610beb5760405162461bcd60e51b815260206004820152601860248201527f426f783a2057697468647261772077656e742077726f6e67000000000000000060448201526064016107b5565b5050565b6065546001600160a01b03163314610c195760405162461bcd60e51b81526004016107b590613004565b6000838152607b6020526040902054600160a01b900460ff161515600114610c535760405162461bcd60e51b81526004016107b590613034565b6000838152607b60205260408120805460ff60a01b1981169091556001600160a01b0316906064610c8684860186612af1565b610c909190613090565b610c9b9060016130ba565b607754604051630462b54760e11b81526001600160a01b038581166004830152929350600092909116906308c56a8e90602401602060405180830381865afa158015610ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0f91906130cd565b905060198211610e1457607154607254610d2a9060016130ba565b1115610d7957610d448382680ad78ebc5ac6200000612970565b6000805160206131d48339815191526002878560d2604051610d6994939291906130ea565b60405180910390a1505050505050565b60675460405163196cac4f60e21b81526001600160a01b038581166004830152909116906365b2b13c90602401600060405180830381600087803b158015610dc057600080fd5b505af1158015610dd4573d6000803e3d6000fd5b505060728054925090506000610de98361310e565b91905055506000805160206131d483398151915260028785610258604051610d6994939291906130ea565b601a8210158015610e265750602d8211155b15610f1c57607054607354610e3c9060016130ba565b1115610e7b57610e5683826802b5e3af16b1880000612970565b6000805160206131d48339815191526002878560d3604051610d6994939291906130ea565b606954604051637210420560e01b81526001600160a01b0390911690637210420590610eae908690600190600401613127565b600060405180830381600087803b158015610ec857600080fd5b505af1158015610edc573d6000803e3d6000fd5b505060738054925090506000610ef18361310e565b91905055506000805160206131d4833981519152600287856101f4604051610d6994939291906130ea565b602e8210158015610f2e5750603c8211155b15610fab576075546040516001600160a01b0385169190600081818185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050506000805160206131d4833981519152600287856065604051610d6994939291906130ea565b603d8210158015610fbd575060418211155b15610ffb57610fd683826802b5e3af16b1880000612970565b6000805160206131d48339815191526002878560c9604051610d6994939291906130ea565b6042821015801561100d575060558211155b1561104b57611026838268056bc75e2d63100000612970565b6000805160206131d48339815191526002878560ca604051610d6994939291906130ea565b6056821015801561105d5750605f8211155b156110ed57606a54604051637e32b99760e11b81526001600160a01b039091169063fc65732e90611095908690600290600401613127565b600060405180830381600087803b1580156110af57600080fd5b505af11580156110c3573d6000803e3d6000fd5b505050506000805160206131d483398151915260028785610192604051610d6994939291906130ea565b60608210611191576068546040516340c10f1960e01b81526001600160a01b03909116906340c10f1990611128908690600190600401613127565b6020604051808303816000875af1158015611147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116b9190613140565b506000805160206131d4833981519152600287856000604051610d6994939291906130ea565b505050505050565b606d5434146111ba5760405162461bcd60e51b81526004016107b590612f32565b606554607854607954607a54604051636e6be03f60e01b81526000946001600160a01b0390811694636e6be03f946112099491831693909230921690829063abb3300960e01b90600401612f60565b6020604051808303816000875af1158015611228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124c9190612fb4565b6000818152607b6020526040812080546001600160a81b03191633908117600160a01b17909155919250906112819034612695565b90506000805160206131f4833981519152336000846040516108cf93929190612fcd565b607c5434146112c65760405162461bcd60e51b81526004016107b590612f32565b806113f057607e546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611314573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133891906130cd565b6001600160a01b0316146113855760405162461bcd60e51b81526020600482015260146024820152732137bc1d102737ba103a37b5b2b71037bbb732b960611b60448201526064016107b5565b607e546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401600060405180830381600087803b1580156113d757600080fd5b505af11580156113eb573d6000803e3d6000fd5b505050505b80156114c357607d5460405163bde2410560e01b8152600481018490523360248201526001600160a01b039091169063bde24105906044016020604051808303816000875af1158015611447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146b9190613140565b6114c35760405162461bcd60e51b815260206004820152602360248201527f426f783a2043616e2774206f70656e20626174746c6520626f782077697468206044820152626b657960e81b60648201526084016107b5565b606554607854607954607a54604051636e6be03f60e01b81526000946001600160a01b0390811694636e6be03f9461151294918316939092309216908290639303434d60e01b90600401612f60565b6020604051808303816000875af1158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190612fb4565b6000818152607b6020526040812080546001600160a81b03191633908117600160a01b179091559192509061158a9034612695565b607a546040519192506001600160a01b0316908290600081818185875af1925050503d80600081146115d8576040519150601f19603f3d011682016040523d82523d6000602084013e6115dd565b606091505b5050506000805160206131f48339815191523360038460405161160293929190612fcd565b60405180910390a150505050565b61161861263b565b6001600160a01b0386161580159061163857506001600160a01b03851615155b801561164c57506001600160a01b03821615155b801561166057506001600160a01b03811615155b801561167457506001600160a01b03841615155b801561168857506001600160a01b03831615155b6116c85760405162461bcd60e51b8152602060048201526011602482015270426f783a205a65726f206164647265737360781b60448201526064016107b5565b606780546001600160a01b03199081166001600160a01b03988916179091556069805482169688169690961790955560688054861694871694909417909355606a8054851692861692909217909155606b80548416918516919091179055607780549092169216919091179055565b61173f61263b565b6117496000612a6f565b565b61175361263b565b607880546001600160a01b039485166001600160a01b031991821617909155607992909255607a8054919093169116179055565b6065546001600160a01b031633146117b15760405162461bcd60e51b81526004016107b590613004565b6000838152607b6020526040902054600160a01b900460ff1615156001146117eb5760405162461bcd60e51b81526004016107b590613034565b6000838152607b60205260408120805460ff60a01b19169055620f424061181483850185612af1565b61181e9190613090565b6118299060016130ba565b6000858152607b6020526040808220546077549151630462b54760e11b81526001600160a01b03918216600482018190529495509116906308c56a8e90602401602060405180830381865afa158015611886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118aa91906130cd565b90506118bf82826729a2241af62c0000612970565b620927c08311611902576118dd828268015af1d78b58c40000612970565b6000805160206131d48339815191526000878460c8604051610d6994939291906130ea565b620927c0831180156119175750620e7ef08311155b156119555761193082826802b5e3af16b1880000612970565b6000805160206131d48339815191526000878460c9604051610d6994939291906130ea565b620e7ef08311801561196a5750620ea6008311155b15611a0b576068546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906119a2908590600190600401613127565b6020604051808303816000875af11580156119c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e59190613140565b506000805160206131d4833981519152600087846000604051610d6994939291906130ea565b620ea60083118015611a205750620ecd108311155b15611b1057607154607254611a369060016130ba565b1115611a7557611a508282680ad78ebc5ac6200000612970565b6000805160206131d48339815191526002878460d2604051610d6994939291906130ea565b60675460405163196cac4f60e21b81526001600160a01b038481166004830152909116906365b2b13c90602401600060405180830381600087803b158015611abc57600080fd5b505af1158015611ad0573d6000803e3d6000fd5b505060728054925090506000611ae58361310e565b91905055506000805160206131d483398151915260028784610258604051610d6994939291906130ea565b620ecd1083118015611b255750620f41dc8311155b15611bb557606a54604051637e32b99760e11b81526001600160a01b039091169063fc65732e90611b5d908590600090600401613127565b600060405180830381600087803b158015611b7757600080fd5b505af1158015611b8b573d6000803e3d6000fd5b505050506000805160206131d483398151915260008784610190604051610d6994939291906130ea565b620f41dc83111561119157816001600160a01b03166074546040515b60006040518083038185875af1925050503d8060008114611c0e576040519150601f19603f3d011682016040523d82523d6000602084013e611c13565b606091505b5050506000805160206131d4833981519152600087846064604051610d6994939291906130ea565b611c4361263b565b8051600414611c5157600080fd5b80600081518110611c6457611c64612fee565b6020026020010151606d8190555080600181518110611c8557611c85612fee565b6020026020010151606e8190555080600281518110611ca657611ca6612fee565b6020026020010151606f8190555080600381518110611cc757611cc7612fee565b6020026020010151607c8190555050565b6065546001600160a01b03163314611d025760405162461bcd60e51b81526004016107b590613004565b6000838152607b6020526040902054600160a01b900460ff161515600114611d3c5760405162461bcd60e51b81526004016107b590613034565b6000838152607b60205260408120805460ff60a01b191690556064611d6383850185612af1565b611d6d9190613090565b611d789060016130ba565b6000858152607b6020526040808220546077549151630462b54760e11b81526001600160a01b03918216600482018190529495509116906308c56a8e90602401602060405180830381865afa158015611dd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df991906130cd565b905060328311611e17576118dd828268015af1d78b58c40000612970565b603283118015611e285750604b8311155b15611e60576068546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906119a2908590600190600401613127565b604b83118015611e705750606483105b15611ea857606a54604051637e32b99760e11b81526001600160a01b039091169063fc65732e90611b5d908590600090600401613127565b8260640361119157816001600160a01b0316607454604051611bd1565b6065546001600160a01b03163314611eef5760405162461bcd60e51b81526004016107b590613004565b6000838152607b6020526040902054600160a01b900460ff161515600114611f295760405162461bcd60e51b81526004016107b590613034565b6000838152607b60205260408120805460ff60a01b1981169091556001600160a01b0316906064611f5c84860186612af1565b611f669190613090565b611f719060016130ba565b607754604051630462b54760e11b81526001600160a01b038581166004830152929350600092909116906308c56a8e90602401602060405180830381865afa158015611fc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe591906130cd565b9050600a821161208b576068546040516340c10f1960e01b81526001600160a01b03909116906340c10f1990612022908690600190600401613127565b6020604051808303816000875af1158015612041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120659190613140565b506000805160206131d4833981519152600187856000604051610d6994939291906130ea565b600b821015801561209d575060198211155b15612193576070546073546120b39060016130ba565b11156120f2576120cd83826802b5e3af16b1880000612970565b6000805160206131d48339815191526001878560d3604051610d6994939291906130ea565b606954604051637210420560e01b81526001600160a01b0390911690637210420590612125908690600190600401613127565b600060405180830381600087803b15801561213f57600080fd5b505af1158015612153573d6000803e3d6000fd5b5050607380549250905060006121688361310e565b91905055506000805160206131d4833981519152600187856101f4604051610d6994939291906130ea565b601a82101580156121a5575060218211155b15612222576074546040516001600160a01b0385169190600081818185875af1925050503d80600081146121f5576040519150601f19603f3d011682016040523d82523d6000602084013e6121fa565b606091505b5050506000805160206131d4833981519152600187856064604051610d6994939291906130ea565b60228210158015612234575060268211155b156122b1576075546040516001600160a01b0385169190600081818185875af1925050503d8060008114612284576040519150601f19603f3d011682016040523d82523d6000602084013e612289565b606091505b5050506000805160206131d4833981519152600187856065604051610d6994939291906130ea565b602782101580156122c3575060408211155b15612301576122dc838268015af1d78b58c40000612970565b6000805160206131d48339815191526001878560c8604051610d6994939291906130ea565b60418210158015612313575060528211155b156123515761232c83826802b5e3af16b1880000612970565b6000805160206131d48339815191526001878560c9604051610d6994939291906130ea565b6053821061119157606a54604051637e32b99760e11b81526001600160a01b039091169063fc65732e9061238c908690600190600401613127565b600060405180830381600087803b1580156123a657600080fd5b505af11580156123ba573d6000803e3d6000fd5b505050506000805160206131d483398151915260018785610191604051610d6994939291906130ea565b6123ec61263b565b6001600160a01b0381166124515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b5565b61245a81612a6f565b50565b61246561263b565b80516002146124aa5760405162461bcd60e51b8152602060048201526011602482015270084def07440aee4dedcce40d8cadccee8d607b1b60448201526064016107b5565b806000815181106124bd576124bd612fee565b6020026020010151607e60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001815181106124fe576124fe612fee565b6020026020010151607d60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b606f5434146125505760405162461bcd60e51b81526004016107b590612f32565b606554607854607954607a54604051636e6be03f60e01b81526000946001600160a01b0390811694636e6be03f9461259f94918316939092309216908290630a5bd3d960e31b90600401612f60565b6020604051808303816000875af11580156125be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e29190612fb4565b6000818152607b6020526040812080546001600160a81b03191633908117600160a01b17909155919250906126179034612695565b90506000805160206131f4833981519152336002846040516108cf93929190612fcd565b6033546001600160a01b031633146117495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b5565b607754604051630462b54760e11b81526001600160a01b03848116600483015260009283929116906308c56a8e90602401602060405180830381865afa1580156126e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270791906130cd565b90506001600160a01b038116156128835760006001600160a01b038216606461273186600561315d565b61273b9190613174565b604051600081818185875af1925050503d8060008114612777576040519150601f19603f3d011682016040523d82523d6000602084013e61277c565b606091505b50509050806127d95760405162461bcd60e51b8152602060048201526024808201527f426f783a2043616e74207472616e736665722066756e647320746f20726566656044820152637272656560e01b60648201526084016107b5565b60006001600160a01b03861660646127f287600561315d565b6127fc9190613174565b604051600081818185875af1925050503d8060008114612838576040519150601f19603f3d011682016040523d82523d6000602084013e61283d565b606091505b5050905080612880577fb9eaeae386d339f8115782f297a9e5f0e13fb587cd6b0d502f113cb8dd4d6cb08686604051612877929190613127565b60405180910390a15b50505b600a61289084600961315d565b61289a9190613174565b9150505b92915050565b600054610100900460ff166128cb5760405162461bcd60e51b81526004016107b590613188565b611749612ac1565b600054610100900460ff166128fa5760405162461bcd60e51b81526004016107b590613188565b606580546001600160a01b0319166001600160a01b038316908117909155604051632b77c09f60e21b81523060048201526001602482015263addf027c90604401600060405180830381600087803b15801561295557600080fd5b505af1158015612969573d6000803e3d6000fd5b5050505050565b60006001600160a01b038316156129fe57606461298e83600561315d565b6129989190613174565b606b546040516340c10f1960e01b81529192506001600160a01b0316906340c10f19906129cb9086908590600401613127565b600060405180830381600087803b1580156129e557600080fd5b505af11580156129f9573d6000803e3d6000fd5b505050505b606b546001600160a01b03166340c10f1985612a1a84866130ba565b6040518363ffffffff1660e01b8152600401612a37929190613127565b600060405180830381600087803b158015612a5157600080fd5b505af1158015612a65573d6000803e3d6000fd5b5050505050505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16612ae85760405162461bcd60e51b81526004016107b590613188565b61174933612a6f565b600060208284031215612b0357600080fd5b5035919050565b6001600160a01b038116811461245a57600080fd5b60008083601f840112612b3157600080fd5b50813567ffffffffffffffff811115612b4957600080fd5b6020830191508360208260051b8501011115612b6457600080fd5b9250929050565b60008060008060008060808789031215612b8457600080fd5b8635612b8f81612b0a565b95506020870135612b9f81612b0a565b9450604087013567ffffffffffffffff80821115612bbc57600080fd5b612bc88a838b01612b1f565b90965094506060890135915080821115612be157600080fd5b50612bee89828a01612b1f565b979a9699509497509295939492505050565b600080600060408486031215612c1557600080fd5b83359250602084013567ffffffffffffffff80821115612c3457600080fd5b818601915086601f830112612c4857600080fd5b813581811115612c5757600080fd5b876020828501011115612c6957600080fd5b6020830194508093505050509250925092565b801515811461245a57600080fd5b60008060408385031215612c9d57600080fd5b823591506020830135612caf81612c7c565b809150509250929050565b60008060008060008060c08789031215612cd357600080fd5b8635612cde81612b0a565b95506020870135612cee81612b0a565b94506040870135612cfe81612b0a565b93506060870135612d0e81612b0a565b92506080870135612d1e81612b0a565b915060a0870135612d2e81612b0a565b809150509295509295509295565b600080600060608486031215612d5157600080fd5b8335612d5c81612b0a565b9250602084013591506040840135612d7381612b0a565b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612dbd57612dbd612d7e565b604052919050565b600067ffffffffffffffff821115612ddf57612ddf612d7e565b5060051b60200190565b60006020808385031215612dfc57600080fd5b823567ffffffffffffffff811115612e1357600080fd5b8301601f81018513612e2457600080fd5b8035612e37612e3282612dc5565b612d94565b81815260059190911b82018301908381019087831115612e5657600080fd5b928401925b82841015612e7457833582529284019290840190612e5b565b979650505050505050565b600060208284031215612e9157600080fd5b8135612e9c81612b0a565b9392505050565b60006020808385031215612eb657600080fd5b823567ffffffffffffffff811115612ecd57600080fd5b8301601f81018513612ede57600080fd5b8035612eec612e3282612dc5565b81815260059190911b82018301908381019087831115612f0b57600080fd5b928401925b82841015612e74578335612f2381612b0a565b82529284019290840190612f10565b602080825260149082015273426f783a2057726f6e67206d73672e76616c756560601b604082015260600190565b6001600160a01b03968716815260208101959095529285166040850152908416606084015290921660808201526001600160e01b031990911660a082015260e060c082018190526000908201526101000190565b600060208284031215612fc657600080fd5b5051919050565b6001600160a01b039390931683526020830191909152604082015260600190565b634e487b7160e01b600052603260045260246000fd5b602080825260169082015275043616c6c6572206e6f74204169726e6f6465205252560541b604082015260600190565b60208082526026908201527f426f783a20526571756573742066696e6973686564206f7220646f65736e277460408201526508195e1a5cdd60d21b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261309f5761309f61307a565b500690565b634e487b7160e01b600052601160045260246000fd5b8082018082111561289e5761289e6130a4565b6000602082840312156130df57600080fd5b8151612e9c81612b0a565b93845260208401929092526001600160a01b03166040830152606082015260800190565b600060018201613120576131206130a4565b5060010190565b6001600160a01b03929092168252602082015260400190565b60006020828403121561315257600080fd5b8151612e9c81612c7c565b808202811582820484141761289e5761289e6130a4565b6000826131835761318361307a565b500490565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fe56a3b20bc3f9083fc670343503806b8915bbd76afc7e2f3c91e2ea2109e4156d6f70710153eeb1c58603c2c9c038486c92bc42af74bcdddaa175c153d4c7063aa2646970667358221220160e2b62a002044fa015391646d6878c73d74c01a7b14b7b98af989602d4a06164736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102605760003560e01c80637bdf252511610144578063bf90fb4e116100b6578063e0706c911161007a578063e0706c91146106c2578063eaea812e146106e2578063f2fde38b146106f8578063f6ea293614610718578063f83acb9c14610738578063fa922e661461074057600080fd5b8063bf90fb4e1461062c578063c06fad061461064c578063d0bdd66c1461066c578063d3dc75391461068c578063dc400e1d146106ac57600080fd5b80639303434d116101085780639303434d1461053f5780639cf4d4091461055f5780639d86698514610575578063a2c8aff2146105d6578063abb33009146105f6578063b4d083481461061657600080fd5b80637bdf2525146104b55780638402b2a1146104d55780638c22501a146104eb5780638cfc2ef3146105015780638da5cb5b1461052157600080fd5b80634f8a84c5116101dd578063644de3cb116101a1578063644de3cb146104145780636adfc6001461042a5780636cfb6bf914610440578063715018a61461046057806371bab6661461047557806378d488ad1461049557600080fd5b80634f8a84c5146103ad57806352de9ec8146103c35780635a2bdc10146103e35780635c78a393146103eb57806362b739681461040157600080fd5b806327e703641161022457806327e70364146103175780632e1a7d4d14610337578063307540f614610357578063438bd33814610377578063451398341461039757600080fd5b806307b9fc571461026c57806308b40053146102955780631856fda4146102cd5780631be6dd64146102ef578063225addb11461030f57600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028260795481565b6040519081526020015b60405180910390f35b3480156102a157600080fd5b50607e546102b5906001600160a01b031681565b6040516001600160a01b03909116815260200161028c565b3480156102d957600080fd5b506102ed6102e8366004612af1565b610760565b005b3480156102fb57600080fd5b50606b546102b5906001600160a01b031681565b6102ed6107c3565b34801561032357600080fd5b506102ed610332366004612b6b565b6108db565b34801561034357600080fd5b506102ed610352366004612af1565b610aff565b34801561036357600080fd5b50607d546102b5906001600160a01b031681565b34801561038357600080fd5b506068546102b5906001600160a01b031681565b3480156103a357600080fd5b50610282606d5481565b3480156103b957600080fd5b5061028260725481565b3480156103cf57600080fd5b506102ed6103de366004612c00565b610bef565b6102ed611199565b3480156103f757600080fd5b5061028260735481565b6102ed61040f366004612c8a565b6112a5565b34801561042057600080fd5b5061028260705481565b34801561043657600080fd5b50610282607c5481565b34801561044c57600080fd5b506102ed61045b366004612cba565b611610565b34801561046c57600080fd5b506102ed611737565b34801561048157600080fd5b506065546102b5906001600160a01b031681565b3480156104a157600080fd5b506067546102b5906001600160a01b031681565b3480156104c157600080fd5b506102ed6104d0366004612d3c565b61174b565b3480156104e157600080fd5b5061028260765481565b3480156104f757600080fd5b50610282606f5481565b34801561050d57600080fd5b50606c546102b5906001600160a01b031681565b34801561052d57600080fd5b506033546001600160a01b03166102b5565b34801561054b57600080fd5b506102ed61055a366004612c00565b611787565b34801561056b57600080fd5b5061028260755481565b34801561058157600080fd5b506105b7610590366004612af1565b607b602052600090815260409020546001600160a01b03811690600160a01b900460ff1682565b604080516001600160a01b03909316835290151560208301520161028c565b3480156105e257600080fd5b506102ed6105f1366004612de9565b611c3b565b34801561060257600080fd5b506102ed610611366004612c00565b611cd8565b34801561062257600080fd5b5061028260715481565b34801561063857600080fd5b50607a546102b5906001600160a01b031681565b34801561065857600080fd5b506069546102b5906001600160a01b031681565b34801561067857600080fd5b506078546102b5906001600160a01b031681565b34801561069857600080fd5b506077546102b5906001600160a01b031681565b3480156106b857600080fd5b50610282606e5481565b3480156106ce57600080fd5b506102ed6106dd366004612c00565b611ec5565b3480156106ee57600080fd5b5061028260745481565b34801561070457600080fd5b506102ed610713366004612e7f565b6123e4565b34801561072457600080fd5b506102ed610733366004612ea3565b61245d565b6102ed61252f565b34801561074c57600080fd5b50606a546102b5906001600160a01b031681565b61076861263b565b60715481116107be5760405162461bcd60e51b815260206004820152601760248201527f426f783a204c657373207468656e2070726576696f757300000000000000000060448201526064015b60405180910390fd5b607155565b606e5434146107e45760405162461bcd60e51b81526004016107b590612f32565b606554607854607954607a54604051636e6be03f60e01b81526000946001600160a01b0390811694636e6be03f946108339491831693909230921690829063e0706c9160e01b90600401612f60565b6020604051808303816000875af1158015610852573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108769190612fb4565b6000818152607b6020526040812080546001600160a81b03191633908117600160a01b17909155919250906108ab9034612695565b90506000805160206131f4833981519152336001846040516108cf93929190612fcd565b60405180910390a15050565b600054610100900460ff16158080156108fb5750600054600160ff909116105b806109155750303b158015610915575060005460ff166001145b6109785760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b60648201526084016107b5565b6000805460ff19166001179055801561099b576000805461ff0019166101001790555b6109a36128a4565b6109ac866128d3565b600284146109f05760405162461bcd60e51b8152602060048201526011602482015270084def07440eee4dedcce40d8cadccee8d607b1b60448201526064016107b5565b84846000818110610a0357610a03612fee565b60200291909101356074555084846001818110610a2257610a22612fee565b602002919091013560755550606c80546001600160a01b0319166001600160a01b0389161790558282600081610a5a57610a5a612fee565b6020029190910135606d555082826001818110610a7957610a79612fee565b6020029190910135606e555082826002818110610a9857610a98612fee565b6020029190910135606f5550612b676070556104576071558015610af6576000805461ff0019169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b50505050505050565b606c546001600160a01b03163314610b485760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420747265737561727960a01b60448201526064016107b5565b606c546040516000916001600160a01b03169083908381818185875af1925050503d8060008114610b95576040519150601f19603f3d011682016040523d82523d6000602084013e610b9a565b606091505b5050905080610beb5760405162461bcd60e51b815260206004820152601860248201527f426f783a2057697468647261772077656e742077726f6e67000000000000000060448201526064016107b5565b5050565b6065546001600160a01b03163314610c195760405162461bcd60e51b81526004016107b590613004565b6000838152607b6020526040902054600160a01b900460ff161515600114610c535760405162461bcd60e51b81526004016107b590613034565b6000838152607b60205260408120805460ff60a01b1981169091556001600160a01b0316906064610c8684860186612af1565b610c909190613090565b610c9b9060016130ba565b607754604051630462b54760e11b81526001600160a01b038581166004830152929350600092909116906308c56a8e90602401602060405180830381865afa158015610ceb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0f91906130cd565b905060198211610e1457607154607254610d2a9060016130ba565b1115610d7957610d448382680ad78ebc5ac6200000612970565b6000805160206131d48339815191526002878560d2604051610d6994939291906130ea565b60405180910390a1505050505050565b60675460405163196cac4f60e21b81526001600160a01b038581166004830152909116906365b2b13c90602401600060405180830381600087803b158015610dc057600080fd5b505af1158015610dd4573d6000803e3d6000fd5b505060728054925090506000610de98361310e565b91905055506000805160206131d483398151915260028785610258604051610d6994939291906130ea565b601a8210158015610e265750602d8211155b15610f1c57607054607354610e3c9060016130ba565b1115610e7b57610e5683826802b5e3af16b1880000612970565b6000805160206131d48339815191526002878560d3604051610d6994939291906130ea565b606954604051637210420560e01b81526001600160a01b0390911690637210420590610eae908690600190600401613127565b600060405180830381600087803b158015610ec857600080fd5b505af1158015610edc573d6000803e3d6000fd5b505060738054925090506000610ef18361310e565b91905055506000805160206131d4833981519152600287856101f4604051610d6994939291906130ea565b602e8210158015610f2e5750603c8211155b15610fab576075546040516001600160a01b0385169190600081818185875af1925050503d8060008114610f7e576040519150601f19603f3d011682016040523d82523d6000602084013e610f83565b606091505b5050506000805160206131d4833981519152600287856065604051610d6994939291906130ea565b603d8210158015610fbd575060418211155b15610ffb57610fd683826802b5e3af16b1880000612970565b6000805160206131d48339815191526002878560c9604051610d6994939291906130ea565b6042821015801561100d575060558211155b1561104b57611026838268056bc75e2d63100000612970565b6000805160206131d48339815191526002878560ca604051610d6994939291906130ea565b6056821015801561105d5750605f8211155b156110ed57606a54604051637e32b99760e11b81526001600160a01b039091169063fc65732e90611095908690600290600401613127565b600060405180830381600087803b1580156110af57600080fd5b505af11580156110c3573d6000803e3d6000fd5b505050506000805160206131d483398151915260028785610192604051610d6994939291906130ea565b60608210611191576068546040516340c10f1960e01b81526001600160a01b03909116906340c10f1990611128908690600190600401613127565b6020604051808303816000875af1158015611147573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116b9190613140565b506000805160206131d4833981519152600287856000604051610d6994939291906130ea565b505050505050565b606d5434146111ba5760405162461bcd60e51b81526004016107b590612f32565b606554607854607954607a54604051636e6be03f60e01b81526000946001600160a01b0390811694636e6be03f946112099491831693909230921690829063abb3300960e01b90600401612f60565b6020604051808303816000875af1158015611228573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061124c9190612fb4565b6000818152607b6020526040812080546001600160a81b03191633908117600160a01b17909155919250906112819034612695565b90506000805160206131f4833981519152336000846040516108cf93929190612fcd565b607c5434146112c65760405162461bcd60e51b81526004016107b590612f32565b806113f057607e546040516331a9108f60e11b81526004810184905233916001600160a01b031690636352211e90602401602060405180830381865afa158015611314573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133891906130cd565b6001600160a01b0316146113855760405162461bcd60e51b81526020600482015260146024820152732137bc1d102737ba103a37b5b2b71037bbb732b960611b60448201526064016107b5565b607e546040516323b872dd60e01b8152336004820152306024820152604481018490526001600160a01b03909116906323b872dd90606401600060405180830381600087803b1580156113d757600080fd5b505af11580156113eb573d6000803e3d6000fd5b505050505b80156114c357607d5460405163bde2410560e01b8152600481018490523360248201526001600160a01b039091169063bde24105906044016020604051808303816000875af1158015611447573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061146b9190613140565b6114c35760405162461bcd60e51b815260206004820152602360248201527f426f783a2043616e2774206f70656e20626174746c6520626f782077697468206044820152626b657960e81b60648201526084016107b5565b606554607854607954607a54604051636e6be03f60e01b81526000946001600160a01b0390811694636e6be03f9461151294918316939092309216908290639303434d60e01b90600401612f60565b6020604051808303816000875af1158015611531573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115559190612fb4565b6000818152607b6020526040812080546001600160a81b03191633908117600160a01b179091559192509061158a9034612695565b607a546040519192506001600160a01b0316908290600081818185875af1925050503d80600081146115d8576040519150601f19603f3d011682016040523d82523d6000602084013e6115dd565b606091505b5050506000805160206131f48339815191523360038460405161160293929190612fcd565b60405180910390a150505050565b61161861263b565b6001600160a01b0386161580159061163857506001600160a01b03851615155b801561164c57506001600160a01b03821615155b801561166057506001600160a01b03811615155b801561167457506001600160a01b03841615155b801561168857506001600160a01b03831615155b6116c85760405162461bcd60e51b8152602060048201526011602482015270426f783a205a65726f206164647265737360781b60448201526064016107b5565b606780546001600160a01b03199081166001600160a01b03988916179091556069805482169688169690961790955560688054861694871694909417909355606a8054851692861692909217909155606b80548416918516919091179055607780549092169216919091179055565b61173f61263b565b6117496000612a6f565b565b61175361263b565b607880546001600160a01b039485166001600160a01b031991821617909155607992909255607a8054919093169116179055565b6065546001600160a01b031633146117b15760405162461bcd60e51b81526004016107b590613004565b6000838152607b6020526040902054600160a01b900460ff1615156001146117eb5760405162461bcd60e51b81526004016107b590613034565b6000838152607b60205260408120805460ff60a01b19169055620f424061181483850185612af1565b61181e9190613090565b6118299060016130ba565b6000858152607b6020526040808220546077549151630462b54760e11b81526001600160a01b03918216600482018190529495509116906308c56a8e90602401602060405180830381865afa158015611886573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118aa91906130cd565b90506118bf82826729a2241af62c0000612970565b620927c08311611902576118dd828268015af1d78b58c40000612970565b6000805160206131d48339815191526000878460c8604051610d6994939291906130ea565b620927c0831180156119175750620e7ef08311155b156119555761193082826802b5e3af16b1880000612970565b6000805160206131d48339815191526000878460c9604051610d6994939291906130ea565b620e7ef08311801561196a5750620ea6008311155b15611a0b576068546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906119a2908590600190600401613127565b6020604051808303816000875af11580156119c1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e59190613140565b506000805160206131d4833981519152600087846000604051610d6994939291906130ea565b620ea60083118015611a205750620ecd108311155b15611b1057607154607254611a369060016130ba565b1115611a7557611a508282680ad78ebc5ac6200000612970565b6000805160206131d48339815191526002878460d2604051610d6994939291906130ea565b60675460405163196cac4f60e21b81526001600160a01b038481166004830152909116906365b2b13c90602401600060405180830381600087803b158015611abc57600080fd5b505af1158015611ad0573d6000803e3d6000fd5b505060728054925090506000611ae58361310e565b91905055506000805160206131d483398151915260028784610258604051610d6994939291906130ea565b620ecd1083118015611b255750620f41dc8311155b15611bb557606a54604051637e32b99760e11b81526001600160a01b039091169063fc65732e90611b5d908590600090600401613127565b600060405180830381600087803b158015611b7757600080fd5b505af1158015611b8b573d6000803e3d6000fd5b505050506000805160206131d483398151915260008784610190604051610d6994939291906130ea565b620f41dc83111561119157816001600160a01b03166074546040515b60006040518083038185875af1925050503d8060008114611c0e576040519150601f19603f3d011682016040523d82523d6000602084013e611c13565b606091505b5050506000805160206131d4833981519152600087846064604051610d6994939291906130ea565b611c4361263b565b8051600414611c5157600080fd5b80600081518110611c6457611c64612fee565b6020026020010151606d8190555080600181518110611c8557611c85612fee565b6020026020010151606e8190555080600281518110611ca657611ca6612fee565b6020026020010151606f8190555080600381518110611cc757611cc7612fee565b6020026020010151607c8190555050565b6065546001600160a01b03163314611d025760405162461bcd60e51b81526004016107b590613004565b6000838152607b6020526040902054600160a01b900460ff161515600114611d3c5760405162461bcd60e51b81526004016107b590613034565b6000838152607b60205260408120805460ff60a01b191690556064611d6383850185612af1565b611d6d9190613090565b611d789060016130ba565b6000858152607b6020526040808220546077549151630462b54760e11b81526001600160a01b03918216600482018190529495509116906308c56a8e90602401602060405180830381865afa158015611dd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df991906130cd565b905060328311611e17576118dd828268015af1d78b58c40000612970565b603283118015611e285750604b8311155b15611e60576068546040516340c10f1960e01b81526001600160a01b03909116906340c10f19906119a2908590600190600401613127565b604b83118015611e705750606483105b15611ea857606a54604051637e32b99760e11b81526001600160a01b039091169063fc65732e90611b5d908590600090600401613127565b8260640361119157816001600160a01b0316607454604051611bd1565b6065546001600160a01b03163314611eef5760405162461bcd60e51b81526004016107b590613004565b6000838152607b6020526040902054600160a01b900460ff161515600114611f295760405162461bcd60e51b81526004016107b590613034565b6000838152607b60205260408120805460ff60a01b1981169091556001600160a01b0316906064611f5c84860186612af1565b611f669190613090565b611f719060016130ba565b607754604051630462b54760e11b81526001600160a01b038581166004830152929350600092909116906308c56a8e90602401602060405180830381865afa158015611fc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe591906130cd565b9050600a821161208b576068546040516340c10f1960e01b81526001600160a01b03909116906340c10f1990612022908690600190600401613127565b6020604051808303816000875af1158015612041573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120659190613140565b506000805160206131d4833981519152600187856000604051610d6994939291906130ea565b600b821015801561209d575060198211155b15612193576070546073546120b39060016130ba565b11156120f2576120cd83826802b5e3af16b1880000612970565b6000805160206131d48339815191526001878560d3604051610d6994939291906130ea565b606954604051637210420560e01b81526001600160a01b0390911690637210420590612125908690600190600401613127565b600060405180830381600087803b15801561213f57600080fd5b505af1158015612153573d6000803e3d6000fd5b5050607380549250905060006121688361310e565b91905055506000805160206131d4833981519152600187856101f4604051610d6994939291906130ea565b601a82101580156121a5575060218211155b15612222576074546040516001600160a01b0385169190600081818185875af1925050503d80600081146121f5576040519150601f19603f3d011682016040523d82523d6000602084013e6121fa565b606091505b5050506000805160206131d4833981519152600187856064604051610d6994939291906130ea565b60228210158015612234575060268211155b156122b1576075546040516001600160a01b0385169190600081818185875af1925050503d8060008114612284576040519150601f19603f3d011682016040523d82523d6000602084013e612289565b606091505b5050506000805160206131d4833981519152600187856065604051610d6994939291906130ea565b602782101580156122c3575060408211155b15612301576122dc838268015af1d78b58c40000612970565b6000805160206131d48339815191526001878560c8604051610d6994939291906130ea565b60418210158015612313575060528211155b156123515761232c83826802b5e3af16b1880000612970565b6000805160206131d48339815191526001878560c9604051610d6994939291906130ea565b6053821061119157606a54604051637e32b99760e11b81526001600160a01b039091169063fc65732e9061238c908690600190600401613127565b600060405180830381600087803b1580156123a657600080fd5b505af11580156123ba573d6000803e3d6000fd5b505050506000805160206131d483398151915260018785610191604051610d6994939291906130ea565b6123ec61263b565b6001600160a01b0381166124515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107b5565b61245a81612a6f565b50565b61246561263b565b80516002146124aa5760405162461bcd60e51b8152602060048201526011602482015270084def07440aee4dedcce40d8cadccee8d607b1b60448201526064016107b5565b806000815181106124bd576124bd612fee565b6020026020010151607e60006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806001815181106124fe576124fe612fee565b6020026020010151607d60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b606f5434146125505760405162461bcd60e51b81526004016107b590612f32565b606554607854607954607a54604051636e6be03f60e01b81526000946001600160a01b0390811694636e6be03f9461259f94918316939092309216908290630a5bd3d960e31b90600401612f60565b6020604051808303816000875af11580156125be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125e29190612fb4565b6000818152607b6020526040812080546001600160a81b03191633908117600160a01b17909155919250906126179034612695565b90506000805160206131f4833981519152336002846040516108cf93929190612fcd565b6033546001600160a01b031633146117495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107b5565b607754604051630462b54760e11b81526001600160a01b03848116600483015260009283929116906308c56a8e90602401602060405180830381865afa1580156126e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270791906130cd565b90506001600160a01b038116156128835760006001600160a01b038216606461273186600561315d565b61273b9190613174565b604051600081818185875af1925050503d8060008114612777576040519150601f19603f3d011682016040523d82523d6000602084013e61277c565b606091505b50509050806127d95760405162461bcd60e51b8152602060048201526024808201527f426f783a2043616e74207472616e736665722066756e647320746f20726566656044820152637272656560e01b60648201526084016107b5565b60006001600160a01b03861660646127f287600561315d565b6127fc9190613174565b604051600081818185875af1925050503d8060008114612838576040519150601f19603f3d011682016040523d82523d6000602084013e61283d565b606091505b5050905080612880577fb9eaeae386d339f8115782f297a9e5f0e13fb587cd6b0d502f113cb8dd4d6cb08686604051612877929190613127565b60405180910390a15b50505b600a61289084600961315d565b61289a9190613174565b9150505b92915050565b600054610100900460ff166128cb5760405162461bcd60e51b81526004016107b590613188565b611749612ac1565b600054610100900460ff166128fa5760405162461bcd60e51b81526004016107b590613188565b606580546001600160a01b0319166001600160a01b038316908117909155604051632b77c09f60e21b81523060048201526001602482015263addf027c90604401600060405180830381600087803b15801561295557600080fd5b505af1158015612969573d6000803e3d6000fd5b5050505050565b60006001600160a01b038316156129fe57606461298e83600561315d565b6129989190613174565b606b546040516340c10f1960e01b81529192506001600160a01b0316906340c10f19906129cb9086908590600401613127565b600060405180830381600087803b1580156129e557600080fd5b505af11580156129f9573d6000803e3d6000fd5b505050505b606b546001600160a01b03166340c10f1985612a1a84866130ba565b6040518363ffffffff1660e01b8152600401612a37929190613127565b600060405180830381600087803b158015612a5157600080fd5b505af1158015612a65573d6000803e3d6000fd5b5050505050505050565b603380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600054610100900460ff16612ae85760405162461bcd60e51b81526004016107b590613188565b61174933612a6f565b600060208284031215612b0357600080fd5b5035919050565b6001600160a01b038116811461245a57600080fd5b60008083601f840112612b3157600080fd5b50813567ffffffffffffffff811115612b4957600080fd5b6020830191508360208260051b8501011115612b6457600080fd5b9250929050565b60008060008060008060808789031215612b8457600080fd5b8635612b8f81612b0a565b95506020870135612b9f81612b0a565b9450604087013567ffffffffffffffff80821115612bbc57600080fd5b612bc88a838b01612b1f565b90965094506060890135915080821115612be157600080fd5b50612bee89828a01612b1f565b979a9699509497509295939492505050565b600080600060408486031215612c1557600080fd5b83359250602084013567ffffffffffffffff80821115612c3457600080fd5b818601915086601f830112612c4857600080fd5b813581811115612c5757600080fd5b876020828501011115612c6957600080fd5b6020830194508093505050509250925092565b801515811461245a57600080fd5b60008060408385031215612c9d57600080fd5b823591506020830135612caf81612c7c565b809150509250929050565b60008060008060008060c08789031215612cd357600080fd5b8635612cde81612b0a565b95506020870135612cee81612b0a565b94506040870135612cfe81612b0a565b93506060870135612d0e81612b0a565b92506080870135612d1e81612b0a565b915060a0870135612d2e81612b0a565b809150509295509295509295565b600080600060608486031215612d5157600080fd5b8335612d5c81612b0a565b9250602084013591506040840135612d7381612b0a565b809150509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612dbd57612dbd612d7e565b604052919050565b600067ffffffffffffffff821115612ddf57612ddf612d7e565b5060051b60200190565b60006020808385031215612dfc57600080fd5b823567ffffffffffffffff811115612e1357600080fd5b8301601f81018513612e2457600080fd5b8035612e37612e3282612dc5565b612d94565b81815260059190911b82018301908381019087831115612e5657600080fd5b928401925b82841015612e7457833582529284019290840190612e5b565b979650505050505050565b600060208284031215612e9157600080fd5b8135612e9c81612b0a565b9392505050565b60006020808385031215612eb657600080fd5b823567ffffffffffffffff811115612ecd57600080fd5b8301601f81018513612ede57600080fd5b8035612eec612e3282612dc5565b81815260059190911b82018301908381019087831115612f0b57600080fd5b928401925b82841015612e74578335612f2381612b0a565b82529284019290840190612f10565b602080825260149082015273426f783a2057726f6e67206d73672e76616c756560601b604082015260600190565b6001600160a01b03968716815260208101959095529285166040850152908416606084015290921660808201526001600160e01b031990911660a082015260e060c082018190526000908201526101000190565b600060208284031215612fc657600080fd5b5051919050565b6001600160a01b039390931683526020830191909152604082015260600190565b634e487b7160e01b600052603260045260246000fd5b602080825260169082015275043616c6c6572206e6f74204169726e6f6465205252560541b604082015260600190565b60208082526026908201527f426f783a20526571756573742066696e6973686564206f7220646f65736e277460408201526508195e1a5cdd60d21b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261309f5761309f61307a565b500690565b634e487b7160e01b600052601160045260246000fd5b8082018082111561289e5761289e6130a4565b6000602082840312156130df57600080fd5b8151612e9c81612b0a565b93845260208401929092526001600160a01b03166040830152606082015260800190565b600060018201613120576131206130a4565b5060010190565b6001600160a01b03929092168252602082015260400190565b60006020828403121561315257600080fd5b8151612e9c81612c7c565b808202811582820484141761289e5761289e6130a4565b6000826131835761318361307a565b500490565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b60608201526080019056fe56a3b20bc3f9083fc670343503806b8915bbd76afc7e2f3c91e2ea2109e4156d6f70710153eeb1c58603c2c9c038486c92bc42af74bcdddaa175c153d4c7063aa2646970667358221220160e2b62a002044fa015391646d6878c73d74c01a7b14b7b98af989602d4a06164736f6c63430008140033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.