ERC-20
Source Code
Overview
Max Total Supply
1,000,000,000 FRANK
Holders
183,515
Market
Price
$0.00 @ 0.000000 ETH
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 8 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
BasedFarmerFrank
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity =0.8.24;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "./interfaces/IUniswapV2Factory.sol";
import "./interfaces/IUniswapV2Router02.sol";
import "./interfaces/IFrankFarm.sol";
/*
Based Farmer Frank ($FRANK)
https://www.basedfarmerfrank.com/
https://t.me/basedfarmerFRANK
https://twitter.com/FarmerFrankBase
*/
contract BasedFarmerFrank is Context, IERC20, Ownable {
using Address for address payable;
using SafeMath for uint;
mapping(address => uint) private _balances;
mapping(address => mapping(address => uint)) private _allowances;
mapping(address => bool) private _isExcludedFromFee;
address payable public farmContractAddress;
uint private _initialBuyTax = 30;
uint private _initialSellTax = 30;
uint private _finalBuyTax = 2;
uint private _finalSellTax = 2;
uint private _reduceBuyTaxAfter = 30;
uint private _reduceSellTaxAfter = 30;
uint private _preventSwapBefore = 30;
uint8 private constant _decimals = 8;
uint private constant _totalSupply = 1_000_000_000 * 10 ** _decimals;
string private constant _name = unicode"Farmer Frank";
string private constant _symbol = unicode"FRANK";
uint public _maxTxAmount = (_totalSupply * 2) / 100;
uint public _maxWalletSize = (_totalSupply * 2) / 100;
uint public _swapThreshold = _totalSupply / 1000;
IUniswapV2Router02 private uniswapV2Router;
address private uniswapV2Pair;
bool private tradingOpen;
uint public launchBlock;
bool private inSwap = false;
bool private swapEnabled = false;
event MaxTxAmountUpdated(uint _maxTxAmount);
modifier lockTheSwap() {
inSwap = true;
_;
inSwap = false;
}
constructor(address _farmContractAddress) {
farmContractAddress = payable(_farmContractAddress);
_balances[_msgSender()] = _totalSupply;
_isExcludedFromFee[_msgSender()] = true;
_isExcludedFromFee[address(this)] = true;
_isExcludedFromFee[_farmContractAddress] = true;
emit Transfer(address(0), _msgSender(), _totalSupply);
}
function name() public pure returns (string memory) {
return _name;
}
function symbol() public pure returns (string memory) {
return _symbol;
}
function decimals() public pure returns (uint8) {
return _decimals;
}
function totalSupply() public pure override returns (uint) {
return _totalSupply;
}
function balanceOf(address account) public view override returns (uint) {
return _balances[account];
}
function transfer(
address recipient,
uint amount
) public override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
function allowance(
address owner,
address spender
) public view override returns (uint) {
return _allowances[owner][spender];
}
function approve(
address spender,
uint amount
) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
function transferFrom(
address sender,
address recipient,
uint amount
) public override returns (bool) {
_transfer(sender, recipient, amount);
_approve(
sender,
_msgSender(),
_allowances[sender][_msgSender()].sub(
amount,
"ERC20: transfer amount exceeds allowance"
)
);
return true;
}
function _approve(address owner, address spender, uint amount) private {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
function _transfer(address from, address to, uint amount) private {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
require(amount > 0, "Transfer amount must be greater than zero");
uint taxAmount;
address farmer;
uint points;
if (!_isExcludedFromFee[from] && !_isExcludedFromFee[to]) {
if (from == uniswapV2Pair && to != address(uniswapV2Router)) {
if (!_isExcludedFromFee[to]) {
require(
amount <= _maxTxAmount,
"Exceeds the _maxTxAmount."
);
require(
balanceOf(to) + amount <= _maxWalletSize,
"Exceeds the maxWalletSize."
);
}
farmer = to;
points = (amount * 1000) / 10 ** _decimals;
}
taxAmount = amount
.mul(
(block.number > launchBlock + _reduceBuyTaxAfter)
? _finalBuyTax
: _initialBuyTax
)
.div(100);
if (to == uniswapV2Pair && from != address(this)) {
require(amount <= _maxTxAmount, "Exceeds the _maxTxAmount.");
taxAmount = amount
.mul(
(block.number > launchBlock + _reduceSellTaxAfter)
? _finalSellTax
: _initialSellTax
)
.div(100);
farmer = from;
points = (amount * 1000) / 10 ** _decimals;
}
uint contractTokenBalance = balanceOf(address(this));
if (
!inSwap &&
to == uniswapV2Pair &&
swapEnabled &&
contractTokenBalance > _swapThreshold &&
block.number > launchBlock + _preventSwapBefore
) {
swapTokensForEth(
min(amount, min(contractTokenBalance, _swapThreshold))
);
uint contractETHBalance = address(this).balance;
if (contractETHBalance > 0) {
sendETHToFarm(contractETHBalance);
IFrankFarm(farmContractAddress).gather(contractETHBalance);
}
}
}
if (taxAmount > 0) {
_balances[address(this)] = _balances[address(this)].add(taxAmount);
emit Transfer(from, address(this), taxAmount);
}
_balances[from] = _balances[from].sub(amount);
_balances[to] = _balances[to].add(amount.sub(taxAmount));
if (
farmer != address(0) &&
farmer != address(this) &&
farmer != address(uniswapV2Router) &&
farmer != address(uniswapV2Pair) &&
farmer != address(farmContractAddress) &&
!Address.isContract(farmer) &&
points > 0
) {
IFrankFarm(farmContractAddress).update(farmer, points);
}
emit Transfer(from, to, amount.sub(taxAmount));
}
function min(uint a, uint b) private pure returns (uint) {
return (a > b) ? b : a;
}
function swapTokensForEth(uint tokenAmount) private lockTheSwap {
if (tokenAmount == 0) return;
if (!tradingOpen) return;
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function removeLimits() external onlyOwner {
_maxTxAmount = _totalSupply;
_maxWalletSize = _totalSupply;
emit MaxTxAmountUpdated(_totalSupply);
}
function sendETHToFarm(uint amount) private {
Address.sendValue(farmContractAddress, amount);
}
function openTrading() external onlyOwner {
require(!tradingOpen, "Trading is already open");
require(balanceOf(address(this)) > 0, "No token balance");
require(address(this).balance > 0, "No eth balance");
// BASE CHAIN: 0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24
// ETHEREUM SEPOLIA: 0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008
uniswapV2Router = IUniswapV2Router02(
0x4752ba5DBc23f44D87826276BF6Fd6b1C372aD24
);
_approve(address(this), address(uniswapV2Router), _totalSupply);
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
address(this),
uniswapV2Router.WETH()
);
uniswapV2Router.addLiquidityETH{value: address(this).balance}(
address(this),
balanceOf(address(this)),
0,
0,
owner(),
block.timestamp
);
IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max);
swapEnabled = true;
tradingOpen = true;
launchBlock = block.number;
}
function manualSwap(uint amount) external onlyOwner {
uint tokenBalance = balanceOf(address(this));
require(amount <= tokenBalance, "!amount");
if (amount > 0) {
swapTokensForEth(amount);
}
uint ethBalance = address(this).balance;
if (ethBalance > 0) {
sendETHToFarm(ethBalance);
IFrankFarm(farmContractAddress).gather(ethBalance);
}
}
function setExcluded(address account, bool isExcluded) external onlyOwner {
_isExcludedFromFee[account] = isExcluded;
}
function setFarm(address _farmContractAddress) external onlyOwner {
farmContractAddress = payable(_farmContractAddress);
}
function rescueETH() external onlyOwner {
payable(_msgSender()).transfer(address(this).balance);
}
function rescueTokens(address _token) external onlyOwner {
require(_token != address(this), "Can not rescue own token!");
IERC20(_token).transfer(
_msgSender(),
IERC20(_token).balanceOf(address(this))
);
}
receive() external payable {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.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 Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. 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);
}
}// 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) (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 v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IFrankFarm {
function update(address account, uint points) external;
function gather(uint amount) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
)
external
returns (
uint amountA,
uint amountB,
uint liquidity
);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
)
external
payable
returns (
uint amountToken,
uint amountETH,
uint liquidity
);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"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":[{"internalType":"address","name":"_farmContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"MaxTxAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWalletSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"farmContractAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"setExcluded","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_farmContractAddress","type":"address"}],"name":"setFarm","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052601e600555601e60065560026007556002600855601e600955601e600a55601e600b55606460026008600a6200003b919062000615565b633b9aca006200004c919062000665565b62000058919062000665565b620000649190620006dc565b600c55606460026008600a6200007b919062000615565b633b9aca006200008c919062000665565b62000098919062000665565b620000a49190620006dc565b600d556103e86008600a620000ba919062000615565b633b9aca00620000cb919062000665565b620000d79190620006dc565b600e555f60125f6101000a81548160ff0219169083151502179055505f601260016101000a81548160ff02191690831515021790555034801562000119575f80fd5b5060405162003ec638038062003ec683398181016040528101906200013f919062000778565b6200015f62000153620003bb60201b60201c565b620003c260201b60201c565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506008600a620001af919062000615565b633b9aca00620001c0919062000665565b60015f620001d3620003bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550600160035f62000225620003bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160035f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506200032e620003bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6008600a6200038c919062000615565b633b9aca006200039d919062000665565b604051620003ac9190620007b9565b60405180910390a350620007d4565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156200050d57808604811115620004e557620004e462000483565b5b6001851615620004f55780820291505b80810290506200050585620004b0565b9450620004c5565b94509492505050565b5f82620005275760019050620005f9565b8162000536575f9050620005f9565b81600181146200054f57600281146200055a5762000590565b6001915050620005f9565b60ff8411156200056f576200056e62000483565b5b8360020a91508482111562000589576200058862000483565b5b50620005f9565b5060208310610133831016604e8410600b8410161715620005ca5782820a905083811115620005c457620005c362000483565b5b620005f9565b620005d98484846001620004bc565b92509050818404811115620005f357620005f262000483565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f620006218262000600565b91506200062e8362000609565b92506200065d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000516565b905092915050565b5f620006718262000600565b91506200067e8362000600565b92508282026200068e8162000600565b91508282048414831517620006a857620006a762000483565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f620006e88262000600565b9150620006f58362000600565b925082620007085762000707620006af565b5b828204905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620007428262000717565b9050919050565b620007548162000736565b81146200075f575f80fd5b50565b5f81519050620007728162000749565b92915050565b5f6020828403121562000790576200078f62000713565b5b5f6200079f8482850162000762565b91505092915050565b620007b38162000600565b82525050565b5f602082019050620007ce5f830184620007a8565b92915050565b6136e480620007e25f395ff3fe60806040526004361061014d575f3560e01c80637d1db4a5116100b5578063b70143c91161006e578063b70143c914610454578063c9567bf91461047c578063d00efb2f14610492578063d4f26c51146104bc578063dd62ed3e146104e4578063f2fde38b1461052057610154565b80637d1db4a5146103465780638da5cb5b146103705780638f9a55c01461039a57806395d89b41146103c45780639fc33a9f146103ee578063a9059cbb1461041857610154565b806323b872dd1161010757806323b872dd146102505780632836be241461028c578063313ce567146102b457806370a08231146102de578063715018a61461031a578063751039fc1461033057610154565b8062ae3bf81461015857806306fdde0314610180578063095ea7b3146101aa5780630e5a9231146101e657806318160ddd1461021057806320800a001461023a57610154565b3661015457005b5f80fd5b348015610163575f80fd5b5061017e60048036038101906101799190612555565b610548565b005b34801561018b575f80fd5b506101946106bb565b6040516101a1919061260a565b60405180910390f35b3480156101b5575f80fd5b506101d060048036038101906101cb919061265d565b6106f8565b6040516101dd91906126b5565b60405180910390f35b3480156101f1575f80fd5b506101fa610715565b60405161020791906126dd565b60405180910390f35b34801561021b575f80fd5b5061022461071b565b60405161023191906126dd565b60405180910390f35b348015610245575f80fd5b5061024e61073e565b005b34801561025b575f80fd5b50610276600480360381019061027191906126f6565b610793565b60405161028391906126b5565b60405180910390f35b348015610297575f80fd5b506102b260048036038101906102ad9190612770565b610867565b005b3480156102bf575f80fd5b506102c86108c7565b6040516102d591906127c9565b60405180910390f35b3480156102e9575f80fd5b5061030460048036038101906102ff9190612555565b6108cf565b60405161031191906126dd565b60405180910390f35b348015610325575f80fd5b5061032e610915565b005b34801561033b575f80fd5b50610344610928565b005b348015610351575f80fd5b5061035a6109cb565b60405161036791906126dd565b60405180910390f35b34801561037b575f80fd5b506103846109d1565b60405161039191906127f1565b60405180910390f35b3480156103a5575f80fd5b506103ae6109f8565b6040516103bb91906126dd565b60405180910390f35b3480156103cf575f80fd5b506103d86109fe565b6040516103e5919061260a565b60405180910390f35b3480156103f9575f80fd5b50610402610a3b565b60405161040f919061282a565b60405180910390f35b348015610423575f80fd5b5061043e6004803603810190610439919061265d565b610a60565b60405161044b91906126b5565b60405180910390f35b34801561045f575f80fd5b5061047a60048036038101906104759190612843565b610a7d565b005b348015610487575f80fd5b50610490610b88565b005b34801561049d575f80fd5b506104a66110b1565b6040516104b391906126dd565b60405180910390f35b3480156104c7575f80fd5b506104e260048036038101906104dd9190612555565b6110b7565b005b3480156104ef575f80fd5b5061050a6004803603810190610505919061286e565b611102565b60405161051791906126dd565b60405180910390f35b34801561052b575f80fd5b5061054660048036038101906105419190612555565b611184565b005b610550611206565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b5906128f6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6105e2611284565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161061b91906127f1565b602060405180830381865afa158015610636573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061065a9190612928565b6040518363ffffffff1660e01b8152600401610677929190612953565b6020604051808303815f875af1158015610693573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106b7919061298e565b5050565b60606040518060400160405280600c81526020017f4661726d6572204672616e6b0000000000000000000000000000000000000000815250905090565b5f61070b610704611284565b848461128b565b6001905092915050565b600e5481565b5f6008600a61072a9190612b15565b633b9aca006107399190612b5f565b905090565b610746611206565b61074e611284565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610790573d5f803e3d5ffd5b50565b5f61079f84848461144e565b61085c846107ab611284565b610857856040518060600160405280602881526020016136876028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61080e611284565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611faf9092919063ffffffff16565b61128b565b600190509392505050565b61086f611206565b8060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6008905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61091d611206565b6109265f612003565b565b610930611206565b6008600a61093e9190612b15565b633b9aca0061094d9190612b5f565b600c819055506008600a6109619190612b15565b633b9aca006109709190612b5f565b600d819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6008600a6109a59190612b15565b633b9aca006109b49190612b5f565b6040516109c191906126dd565b60405180910390a1565b600c5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606040518060400160405280600581526020017f4652414e4b000000000000000000000000000000000000000000000000000000815250905090565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610a73610a6c611284565b848461144e565b6001905092915050565b610a85611206565b5f610a8f306108cf565b905080821115610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90612bea565b60405180910390fd5b5f821115610ae657610ae5826120c4565b5b5f4790505f811115610b8357610afb8161234b565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a62cf65d826040518263ffffffff1660e01b8152600401610b5591906126dd565b5f604051808303815f87803b158015610b6c575f80fd5b505af1158015610b7e573d5f803e3d5ffd5b505050505b505050565b610b90611206565b601060149054906101000a900460ff1615610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790612c52565b60405180910390fd5b5f610bea306108cf565b11610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190612cba565b60405180910390fd5b5f4711610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390612d22565b60405180910390fd5b734752ba5dbc23f44d87826276bf6fd6b1c372ad24600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d0830600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008600a610cf49190612b15565b633b9aca00610d039190612b5f565b61128b565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d969190612d54565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e409190612d54565b6040518363ffffffff1660e01b8152600401610e5d929190612d7f565b6020604051808303815f875af1158015610e79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e9d9190612d54565b60105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610f24306108cf565b5f80610f2e6109d1565b426040518863ffffffff1660e01b8152600401610f5096959493929190612de8565b60606040518083038185885af1158015610f6c573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610f919190612e47565b50505060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611031929190612953565b6020604051808303815f875af115801561104d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611071919061298e565b506001601260016101000a81548160ff0219169083151502179055506001601060146101000a81548160ff02191690831515021790555043601181905550565b60115481565b6110bf611206565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61118c611206565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190612f07565b60405180910390fd5b61120381612003565b50565b61120e611284565b73ffffffffffffffffffffffffffffffffffffffff1661122c6109d1565b73ffffffffffffffffffffffffffffffffffffffff1614611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990612f6f565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090612ffd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e9061308b565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161144191906126dd565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613119565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611521906131a7565b60405180910390fd5b5f811161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613235565b60405180910390fd5b5f805f60035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561160d575060035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ade5760105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156116bb5750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156117d85760035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117ac57600c54841115611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061329d565b60405180910390fd5b600d5484611760876108cf565b61176a91906132bb565b11156117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290613338565b60405180910390fd5b5b8491506008600a6117bd9190612b15565b6103e8856117cb9190612b5f565b6117d59190613383565b90505b61181f60646118116009546011546117f091906132bb565b43116117fe57600554611802565b6007545b8761237990919063ffffffff16565b61238e90919063ffffffff16565b925060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156118a957503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561196857600c548411156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea9061329d565b60405180910390fd5b61193a606461192c600a5460115461190b91906132bb565b43116119195760065461191d565b6008545b8761237990919063ffffffff16565b61238e90919063ffffffff16565b92508591506008600a61194d9190612b15565b6103e88561195b9190612b5f565b6119659190613383565b90505b5f611972306108cf565b905060125f9054906101000a900460ff161580156119dc575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156119f45750601260019054906101000a900460ff165b8015611a015750600e5481115b8015611a1b5750600b54601154611a1891906132bb565b43115b15611adc57611a3d611a3886611a3384600e546123a3565b6123a3565b6120c4565b5f4790505f811115611ada57611a528161234b565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a62cf65d826040518263ffffffff1660e01b8152600401611aac91906126dd565b5f604051808303815f87803b158015611ac3575f80fd5b505af1158015611ad5573d5f803e3d5ffd5b505050505b505b505b5f831115611bdd57611b368360015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123bb90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611bd491906126dd565b60405180910390a35b611c2d8460015f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123d090919063ffffffff16565b60015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611cd0611c8484866123d090919063ffffffff16565b60015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123bb90919063ffffffff16565b60015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d7957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dd25750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e2b575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e84575060045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e965750611e94826123e5565b155b8015611ea157505f81115b15611f305760045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a2d83b5e83836040518363ffffffff1660e01b8152600401611f02929190612953565b5f604051808303815f87803b158015611f19575f80fd5b505af1158015611f2b573d5f803e3d5ffd5b505050505b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611f9286886123d090919063ffffffff16565b604051611f9f91906126dd565b60405180910390a3505050505050565b5f838311158290611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed919061260a565b60405180910390fd5b5082840390509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160125f6101000a81548160ff0219169083151502179055505f81031561232f57601060149054906101000a900460ff161561232f575f600267ffffffffffffffff811115612117576121166133b3565b5b6040519080825280602002602001820160405280156121455781602001602082028036833780820191505090505b50905030815f8151811061215c5761215b6133e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612200573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122249190612d54565b81600181518110612238576122376133e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061229e30600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461128b565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016123009594939291906134c4565b5f604051808303815f87803b158015612317575f80fd5b505af1158015612329573d5f803e3d5ffd5b50505050505b5f60125f6101000a81548160ff02191690831515021790555050565b61237660045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612407565b50565b5f81836123869190612b5f565b905092915050565b5f818361239b9190613383565b905092915050565b5f8183116123b157826123b3565b815b905092915050565b5f81836123c891906132bb565b905092915050565b5f81836123dd919061351c565b905092915050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8047101561244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613599565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff168260405161246f906135e4565b5f6040518083038185875af1925050503d805f81146124a9576040519150601f19603f3d011682016040523d82523d5f602084013e6124ae565b606091505b50509050806124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e990613668565b60405180910390fd5b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612524826124fb565b9050919050565b6125348161251a565b811461253e575f80fd5b50565b5f8135905061254f8161252b565b92915050565b5f6020828403121561256a576125696124f7565b5b5f61257784828501612541565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156125b757808201518184015260208101905061259c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6125dc82612580565b6125e6818561258a565b93506125f681856020860161259a565b6125ff816125c2565b840191505092915050565b5f6020820190508181035f83015261262281846125d2565b905092915050565b5f819050919050565b61263c8161262a565b8114612646575f80fd5b50565b5f8135905061265781612633565b92915050565b5f8060408385031215612673576126726124f7565b5b5f61268085828601612541565b925050602061269185828601612649565b9150509250929050565b5f8115159050919050565b6126af8161269b565b82525050565b5f6020820190506126c85f8301846126a6565b92915050565b6126d78161262a565b82525050565b5f6020820190506126f05f8301846126ce565b92915050565b5f805f6060848603121561270d5761270c6124f7565b5b5f61271a86828701612541565b935050602061272b86828701612541565b925050604061273c86828701612649565b9150509250925092565b61274f8161269b565b8114612759575f80fd5b50565b5f8135905061276a81612746565b92915050565b5f8060408385031215612786576127856124f7565b5b5f61279385828601612541565b92505060206127a48582860161275c565b9150509250929050565b5f60ff82169050919050565b6127c3816127ae565b82525050565b5f6020820190506127dc5f8301846127ba565b92915050565b6127eb8161251a565b82525050565b5f6020820190506128045f8301846127e2565b92915050565b5f612814826124fb565b9050919050565b6128248161280a565b82525050565b5f60208201905061283d5f83018461281b565b92915050565b5f60208284031215612858576128576124f7565b5b5f61286584828501612649565b91505092915050565b5f8060408385031215612884576128836124f7565b5b5f61289185828601612541565b92505060206128a285828601612541565b9150509250929050565b7f43616e206e6f7420726573637565206f776e20746f6b656e21000000000000005f82015250565b5f6128e060198361258a565b91506128eb826128ac565b602082019050919050565b5f6020820190508181035f83015261290d816128d4565b9050919050565b5f8151905061292281612633565b92915050565b5f6020828403121561293d5761293c6124f7565b5b5f61294a84828501612914565b91505092915050565b5f6040820190506129665f8301856127e2565b61297360208301846126ce565b9392505050565b5f8151905061298881612746565b92915050565b5f602082840312156129a3576129a26124f7565b5b5f6129b08482850161297a565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115612a3b57808604811115612a1757612a166129b9565b5b6001851615612a265780820291505b8081029050612a34856129e6565b94506129fb565b94509492505050565b5f82612a535760019050612b0e565b81612a60575f9050612b0e565b8160018114612a765760028114612a8057612aaf565b6001915050612b0e565b60ff841115612a9257612a916129b9565b5b8360020a915084821115612aa957612aa86129b9565b5b50612b0e565b5060208310610133831016604e8410600b8410161715612ae45782820a905083811115612adf57612ade6129b9565b5b612b0e565b612af184848460016129f2565b92509050818404811115612b0857612b076129b9565b5b81810290505b9392505050565b5f612b1f8261262a565b9150612b2a836127ae565b9250612b577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612a44565b905092915050565b5f612b698261262a565b9150612b748361262a565b9250828202612b828161262a565b91508282048414831517612b9957612b986129b9565b5b5092915050565b7f21616d6f756e74000000000000000000000000000000000000000000000000005f82015250565b5f612bd460078361258a565b9150612bdf82612ba0565b602082019050919050565b5f6020820190508181035f830152612c0181612bc8565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f612c3c60178361258a565b9150612c4782612c08565b602082019050919050565b5f6020820190508181035f830152612c6981612c30565b9050919050565b7f4e6f20746f6b656e2062616c616e6365000000000000000000000000000000005f82015250565b5f612ca460108361258a565b9150612caf82612c70565b602082019050919050565b5f6020820190508181035f830152612cd181612c98565b9050919050565b7f4e6f206574682062616c616e63650000000000000000000000000000000000005f82015250565b5f612d0c600e8361258a565b9150612d1782612cd8565b602082019050919050565b5f6020820190508181035f830152612d3981612d00565b9050919050565b5f81519050612d4e8161252b565b92915050565b5f60208284031215612d6957612d686124f7565b5b5f612d7684828501612d40565b91505092915050565b5f604082019050612d925f8301856127e2565b612d9f60208301846127e2565b9392505050565b5f819050919050565b5f819050919050565b5f612dd2612dcd612dc884612da6565b612daf565b61262a565b9050919050565b612de281612db8565b82525050565b5f60c082019050612dfb5f8301896127e2565b612e0860208301886126ce565b612e156040830187612dd9565b612e226060830186612dd9565b612e2f60808301856127e2565b612e3c60a08301846126ce565b979650505050505050565b5f805f60608486031215612e5e57612e5d6124f7565b5b5f612e6b86828701612914565b9350506020612e7c86828701612914565b9250506040612e8d86828701612914565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612ef160268361258a565b9150612efc82612e97565b604082019050919050565b5f6020820190508181035f830152612f1e81612ee5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612f5960208361258a565b9150612f6482612f25565b602082019050919050565b5f6020820190508181035f830152612f8681612f4d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612fe760248361258a565b9150612ff282612f8d565b604082019050919050565b5f6020820190508181035f83015261301481612fdb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61307560228361258a565b91506130808261301b565b604082019050919050565b5f6020820190508181035f8301526130a281613069565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61310360258361258a565b915061310e826130a9565b604082019050919050565b5f6020820190508181035f830152613130816130f7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61319160238361258a565b915061319c82613137565b604082019050919050565b5f6020820190508181035f8301526131be81613185565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f61321f60298361258a565b915061322a826131c5565b604082019050919050565b5f6020820190508181035f83015261324c81613213565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f61328760198361258a565b915061329282613253565b602082019050919050565b5f6020820190508181035f8301526132b48161327b565b9050919050565b5f6132c58261262a565b91506132d08361262a565b92508282019050808211156132e8576132e76129b9565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f613322601a8361258a565b915061332d826132ee565b602082019050919050565b5f6020820190508181035f83015261334f81613316565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61338d8261262a565b91506133988361262a565b9250826133a8576133a7613356565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61343f8161251a565b82525050565b5f6134508383613436565b60208301905092915050565b5f602082019050919050565b5f6134728261340d565b61347c8185613417565b935061348783613427565b805f5b838110156134b757815161349e8882613445565b97506134a98361345c565b92505060018101905061348a565b5085935050505092915050565b5f60a0820190506134d75f8301886126ce565b6134e46020830187612dd9565b81810360408301526134f68186613468565b905061350560608301856127e2565b61351260808301846126ce565b9695505050505050565b5f6135268261262a565b91506135318361262a565b9250828203905081811115613549576135486129b9565b5b92915050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f613583601d8361258a565b915061358e8261354f565b602082019050919050565b5f6020820190508181035f8301526135b081613577565b9050919050565b5f81905092915050565b50565b5f6135cf5f836135b7565b91506135da826135c1565b5f82019050919050565b5f6135ee826135c4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f613652603a8361258a565b915061365d826135f8565b604082019050919050565b5f6020820190508181035f83015261367f81613646565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ea06caee8ed97cda8732f89c324866d7e3b6e9f82923359d9e0225788736c7bd64736f6c63430008180033000000000000000000000000826e061727971f937c7cea001b9d87208caa389c
Deployed Bytecode
0x60806040526004361061014d575f3560e01c80637d1db4a5116100b5578063b70143c91161006e578063b70143c914610454578063c9567bf91461047c578063d00efb2f14610492578063d4f26c51146104bc578063dd62ed3e146104e4578063f2fde38b1461052057610154565b80637d1db4a5146103465780638da5cb5b146103705780638f9a55c01461039a57806395d89b41146103c45780639fc33a9f146103ee578063a9059cbb1461041857610154565b806323b872dd1161010757806323b872dd146102505780632836be241461028c578063313ce567146102b457806370a08231146102de578063715018a61461031a578063751039fc1461033057610154565b8062ae3bf81461015857806306fdde0314610180578063095ea7b3146101aa5780630e5a9231146101e657806318160ddd1461021057806320800a001461023a57610154565b3661015457005b5f80fd5b348015610163575f80fd5b5061017e60048036038101906101799190612555565b610548565b005b34801561018b575f80fd5b506101946106bb565b6040516101a1919061260a565b60405180910390f35b3480156101b5575f80fd5b506101d060048036038101906101cb919061265d565b6106f8565b6040516101dd91906126b5565b60405180910390f35b3480156101f1575f80fd5b506101fa610715565b60405161020791906126dd565b60405180910390f35b34801561021b575f80fd5b5061022461071b565b60405161023191906126dd565b60405180910390f35b348015610245575f80fd5b5061024e61073e565b005b34801561025b575f80fd5b50610276600480360381019061027191906126f6565b610793565b60405161028391906126b5565b60405180910390f35b348015610297575f80fd5b506102b260048036038101906102ad9190612770565b610867565b005b3480156102bf575f80fd5b506102c86108c7565b6040516102d591906127c9565b60405180910390f35b3480156102e9575f80fd5b5061030460048036038101906102ff9190612555565b6108cf565b60405161031191906126dd565b60405180910390f35b348015610325575f80fd5b5061032e610915565b005b34801561033b575f80fd5b50610344610928565b005b348015610351575f80fd5b5061035a6109cb565b60405161036791906126dd565b60405180910390f35b34801561037b575f80fd5b506103846109d1565b60405161039191906127f1565b60405180910390f35b3480156103a5575f80fd5b506103ae6109f8565b6040516103bb91906126dd565b60405180910390f35b3480156103cf575f80fd5b506103d86109fe565b6040516103e5919061260a565b60405180910390f35b3480156103f9575f80fd5b50610402610a3b565b60405161040f919061282a565b60405180910390f35b348015610423575f80fd5b5061043e6004803603810190610439919061265d565b610a60565b60405161044b91906126b5565b60405180910390f35b34801561045f575f80fd5b5061047a60048036038101906104759190612843565b610a7d565b005b348015610487575f80fd5b50610490610b88565b005b34801561049d575f80fd5b506104a66110b1565b6040516104b391906126dd565b60405180910390f35b3480156104c7575f80fd5b506104e260048036038101906104dd9190612555565b6110b7565b005b3480156104ef575f80fd5b5061050a6004803603810190610505919061286e565b611102565b60405161051791906126dd565b60405180910390f35b34801561052b575f80fd5b5061054660048036038101906105419190612555565b611184565b005b610550611206565b3073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036105be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105b5906128f6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6105e2611284565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161061b91906127f1565b602060405180830381865afa158015610636573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061065a9190612928565b6040518363ffffffff1660e01b8152600401610677929190612953565b6020604051808303815f875af1158015610693573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106b7919061298e565b5050565b60606040518060400160405280600c81526020017f4661726d6572204672616e6b0000000000000000000000000000000000000000815250905090565b5f61070b610704611284565b848461128b565b6001905092915050565b600e5481565b5f6008600a61072a9190612b15565b633b9aca006107399190612b5f565b905090565b610746611206565b61074e611284565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610790573d5f803e3d5ffd5b50565b5f61079f84848461144e565b61085c846107ab611284565b610857856040518060600160405280602881526020016136876028913960025f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61080e611284565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611faf9092919063ffffffff16565b61128b565b600190509392505050565b61086f611206565b8060035f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f6008905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61091d611206565b6109265f612003565b565b610930611206565b6008600a61093e9190612b15565b633b9aca0061094d9190612b5f565b600c819055506008600a6109619190612b15565b633b9aca006109709190612b5f565b600d819055507f947f344d56e1e8c70dc492fb94c4ddddd490c016aab685f5e7e47b2e85cb44cf6008600a6109a59190612b15565b633b9aca006109b49190612b5f565b6040516109c191906126dd565b60405180910390a1565b600c5481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b60606040518060400160405280600581526020017f4652414e4b000000000000000000000000000000000000000000000000000000815250905090565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f610a73610a6c611284565b848461144e565b6001905092915050565b610a85611206565b5f610a8f306108cf565b905080821115610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90612bea565b60405180910390fd5b5f821115610ae657610ae5826120c4565b5b5f4790505f811115610b8357610afb8161234b565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a62cf65d826040518263ffffffff1660e01b8152600401610b5591906126dd565b5f604051808303815f87803b158015610b6c575f80fd5b505af1158015610b7e573d5f803e3d5ffd5b505050505b505050565b610b90611206565b601060149054906101000a900460ff1615610be0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd790612c52565b60405180910390fd5b5f610bea306108cf565b11610c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2190612cba565b60405180910390fd5b5f4711610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6390612d22565b60405180910390fd5b734752ba5dbc23f44d87826276bf6fd6b1c372ad24600f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610d0830600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166008600a610cf49190612b15565b633b9aca00610d039190612b5f565b61128b565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d72573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d969190612d54565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e1c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e409190612d54565b6040518363ffffffff1660e01b8152600401610e5d929190612d7f565b6020604051808303815f875af1158015610e79573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e9d9190612d54565b60105f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610f24306108cf565b5f80610f2e6109d1565b426040518863ffffffff1660e01b8152600401610f5096959493929190612de8565b60606040518083038185885af1158015610f6c573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610f919190612e47565b50505060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401611031929190612953565b6020604051808303815f875af115801561104d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611071919061298e565b506001601260016101000a81548160ff0219169083151502179055506001601060146101000a81548160ff02191690831515021790555043601181905550565b60115481565b6110bf611206565b8060045f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61118c611206565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f190612f07565b60405180910390fd5b61120381612003565b50565b61120e611284565b73ffffffffffffffffffffffffffffffffffffffff1661122c6109d1565b73ffffffffffffffffffffffffffffffffffffffff1614611282576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127990612f6f565b60405180910390fd5b565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f090612ffd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611367576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135e9061308b565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161144191906126dd565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036114bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b390613119565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361152a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611521906131a7565b60405180910390fd5b5f811161156c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156390613235565b60405180910390fd5b5f805f60035f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561160d575060035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611ade5760105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156116bb5750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156117d85760035f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166117ac57600c54841115611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a9061329d565b60405180910390fd5b600d5484611760876108cf565b61176a91906132bb565b11156117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290613338565b60405180910390fd5b5b8491506008600a6117bd9190612b15565b6103e8856117cb9190612b5f565b6117d59190613383565b90505b61181f60646118116009546011546117f091906132bb565b43116117fe57600554611802565b6007545b8761237990919063ffffffff16565b61238e90919063ffffffff16565b925060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156118a957503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561196857600c548411156118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea9061329d565b60405180910390fd5b61193a606461192c600a5460115461190b91906132bb565b43116119195760065461191d565b6008545b8761237990919063ffffffff16565b61238e90919063ffffffff16565b92508591506008600a61194d9190612b15565b6103e88561195b9190612b5f565b6119659190613383565b90505b5f611972306108cf565b905060125f9054906101000a900460ff161580156119dc575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156119f45750601260019054906101000a900460ff165b8015611a015750600e5481115b8015611a1b5750600b54601154611a1891906132bb565b43115b15611adc57611a3d611a3886611a3384600e546123a3565b6123a3565b6120c4565b5f4790505f811115611ada57611a528161234b565b60045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a62cf65d826040518263ffffffff1660e01b8152600401611aac91906126dd565b5f604051808303815f87803b158015611ac3575f80fd5b505af1158015611ad5573d5f803e3d5ffd5b505050505b505b505b5f831115611bdd57611b368360015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123bb90919063ffffffff16565b60015f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055503073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051611bd491906126dd565b60405180910390a35b611c2d8460015f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123d090919063ffffffff16565b60015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550611cd0611c8484866123d090919063ffffffff16565b60015f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123bb90919063ffffffff16565b60015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611d7957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611dd25750600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e2b575060105f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e84575060045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611e965750611e94826123e5565b155b8015611ea157505f81115b15611f305760045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a2d83b5e83836040518363ffffffff1660e01b8152600401611f02929190612953565b5f604051808303815f87803b158015611f19575f80fd5b505af1158015611f2b573d5f803e3d5ffd5b505050505b8473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef611f9286886123d090919063ffffffff16565b604051611f9f91906126dd565b60405180910390a3505050505050565b5f838311158290611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed919061260a565b60405180910390fd5b5082840390509392505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600160125f6101000a81548160ff0219169083151502179055505f81031561232f57601060149054906101000a900460ff161561232f575f600267ffffffffffffffff811115612117576121166133b3565b5b6040519080825280602002602001820160405280156121455781602001602082028036833780820191505090505b50905030815f8151811061215c5761215b6133e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612200573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906122249190612d54565b81600181518110612238576122376133e0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061229e30600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff168461128b565b600f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b81526004016123009594939291906134c4565b5f604051808303815f87803b158015612317575f80fd5b505af1158015612329573d5f803e3d5ffd5b50505050505b5f60125f6101000a81548160ff02191690831515021790555050565b61237660045f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612407565b50565b5f81836123869190612b5f565b905092915050565b5f818361239b9190613383565b905092915050565b5f8183116123b157826123b3565b815b905092915050565b5f81836123c891906132bb565b905092915050565b5f81836123dd919061351c565b905092915050565b5f808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8047101561244a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244190613599565b60405180910390fd5b5f8273ffffffffffffffffffffffffffffffffffffffff168260405161246f906135e4565b5f6040518083038185875af1925050503d805f81146124a9576040519150601f19603f3d011682016040523d82523d5f602084013e6124ae565b606091505b50509050806124f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e990613668565b60405180910390fd5b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612524826124fb565b9050919050565b6125348161251a565b811461253e575f80fd5b50565b5f8135905061254f8161252b565b92915050565b5f6020828403121561256a576125696124f7565b5b5f61257784828501612541565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156125b757808201518184015260208101905061259c565b5f8484015250505050565b5f601f19601f8301169050919050565b5f6125dc82612580565b6125e6818561258a565b93506125f681856020860161259a565b6125ff816125c2565b840191505092915050565b5f6020820190508181035f83015261262281846125d2565b905092915050565b5f819050919050565b61263c8161262a565b8114612646575f80fd5b50565b5f8135905061265781612633565b92915050565b5f8060408385031215612673576126726124f7565b5b5f61268085828601612541565b925050602061269185828601612649565b9150509250929050565b5f8115159050919050565b6126af8161269b565b82525050565b5f6020820190506126c85f8301846126a6565b92915050565b6126d78161262a565b82525050565b5f6020820190506126f05f8301846126ce565b92915050565b5f805f6060848603121561270d5761270c6124f7565b5b5f61271a86828701612541565b935050602061272b86828701612541565b925050604061273c86828701612649565b9150509250925092565b61274f8161269b565b8114612759575f80fd5b50565b5f8135905061276a81612746565b92915050565b5f8060408385031215612786576127856124f7565b5b5f61279385828601612541565b92505060206127a48582860161275c565b9150509250929050565b5f60ff82169050919050565b6127c3816127ae565b82525050565b5f6020820190506127dc5f8301846127ba565b92915050565b6127eb8161251a565b82525050565b5f6020820190506128045f8301846127e2565b92915050565b5f612814826124fb565b9050919050565b6128248161280a565b82525050565b5f60208201905061283d5f83018461281b565b92915050565b5f60208284031215612858576128576124f7565b5b5f61286584828501612649565b91505092915050565b5f8060408385031215612884576128836124f7565b5b5f61289185828601612541565b92505060206128a285828601612541565b9150509250929050565b7f43616e206e6f7420726573637565206f776e20746f6b656e21000000000000005f82015250565b5f6128e060198361258a565b91506128eb826128ac565b602082019050919050565b5f6020820190508181035f83015261290d816128d4565b9050919050565b5f8151905061292281612633565b92915050565b5f6020828403121561293d5761293c6124f7565b5b5f61294a84828501612914565b91505092915050565b5f6040820190506129665f8301856127e2565b61297360208301846126ce565b9392505050565b5f8151905061298881612746565b92915050565b5f602082840312156129a3576129a26124f7565b5b5f6129b08482850161297a565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115612a3b57808604811115612a1757612a166129b9565b5b6001851615612a265780820291505b8081029050612a34856129e6565b94506129fb565b94509492505050565b5f82612a535760019050612b0e565b81612a60575f9050612b0e565b8160018114612a765760028114612a8057612aaf565b6001915050612b0e565b60ff841115612a9257612a916129b9565b5b8360020a915084821115612aa957612aa86129b9565b5b50612b0e565b5060208310610133831016604e8410600b8410161715612ae45782820a905083811115612adf57612ade6129b9565b5b612b0e565b612af184848460016129f2565b92509050818404811115612b0857612b076129b9565b5b81810290505b9392505050565b5f612b1f8261262a565b9150612b2a836127ae565b9250612b577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612a44565b905092915050565b5f612b698261262a565b9150612b748361262a565b9250828202612b828161262a565b91508282048414831517612b9957612b986129b9565b5b5092915050565b7f21616d6f756e74000000000000000000000000000000000000000000000000005f82015250565b5f612bd460078361258a565b9150612bdf82612ba0565b602082019050919050565b5f6020820190508181035f830152612c0181612bc8565b9050919050565b7f54726164696e6720697320616c7265616479206f70656e0000000000000000005f82015250565b5f612c3c60178361258a565b9150612c4782612c08565b602082019050919050565b5f6020820190508181035f830152612c6981612c30565b9050919050565b7f4e6f20746f6b656e2062616c616e6365000000000000000000000000000000005f82015250565b5f612ca460108361258a565b9150612caf82612c70565b602082019050919050565b5f6020820190508181035f830152612cd181612c98565b9050919050565b7f4e6f206574682062616c616e63650000000000000000000000000000000000005f82015250565b5f612d0c600e8361258a565b9150612d1782612cd8565b602082019050919050565b5f6020820190508181035f830152612d3981612d00565b9050919050565b5f81519050612d4e8161252b565b92915050565b5f60208284031215612d6957612d686124f7565b5b5f612d7684828501612d40565b91505092915050565b5f604082019050612d925f8301856127e2565b612d9f60208301846127e2565b9392505050565b5f819050919050565b5f819050919050565b5f612dd2612dcd612dc884612da6565b612daf565b61262a565b9050919050565b612de281612db8565b82525050565b5f60c082019050612dfb5f8301896127e2565b612e0860208301886126ce565b612e156040830187612dd9565b612e226060830186612dd9565b612e2f60808301856127e2565b612e3c60a08301846126ce565b979650505050505050565b5f805f60608486031215612e5e57612e5d6124f7565b5b5f612e6b86828701612914565b9350506020612e7c86828701612914565b9250506040612e8d86828701612914565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612ef160268361258a565b9150612efc82612e97565b604082019050919050565b5f6020820190508181035f830152612f1e81612ee5565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612f5960208361258a565b9150612f6482612f25565b602082019050919050565b5f6020820190508181035f830152612f8681612f4d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612fe760248361258a565b9150612ff282612f8d565b604082019050919050565b5f6020820190508181035f83015261301481612fdb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f61307560228361258a565b91506130808261301b565b604082019050919050565b5f6020820190508181035f8301526130a281613069565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61310360258361258a565b915061310e826130a9565b604082019050919050565b5f6020820190508181035f830152613130816130f7565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61319160238361258a565b915061319c82613137565b604082019050919050565b5f6020820190508181035f8301526131be81613185565b9050919050565b7f5472616e7366657220616d6f756e74206d7573742062652067726561746572205f8201527f7468616e207a65726f0000000000000000000000000000000000000000000000602082015250565b5f61321f60298361258a565b915061322a826131c5565b604082019050919050565b5f6020820190508181035f83015261324c81613213565b9050919050565b7f4578636565647320746865205f6d61785478416d6f756e742e000000000000005f82015250565b5f61328760198361258a565b915061329282613253565b602082019050919050565b5f6020820190508181035f8301526132b48161327b565b9050919050565b5f6132c58261262a565b91506132d08361262a565b92508282019050808211156132e8576132e76129b9565b5b92915050565b7f4578636565647320746865206d617857616c6c657453697a652e0000000000005f82015250565b5f613322601a8361258a565b915061332d826132ee565b602082019050919050565b5f6020820190508181035f83015261334f81613316565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61338d8261262a565b91506133988361262a565b9250826133a8576133a7613356565b5b828204905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61343f8161251a565b82525050565b5f6134508383613436565b60208301905092915050565b5f602082019050919050565b5f6134728261340d565b61347c8185613417565b935061348783613427565b805f5b838110156134b757815161349e8882613445565b97506134a98361345c565b92505060018101905061348a565b5085935050505092915050565b5f60a0820190506134d75f8301886126ce565b6134e46020830187612dd9565b81810360408301526134f68186613468565b905061350560608301856127e2565b61351260808301846126ce565b9695505050505050565b5f6135268261262a565b91506135318361262a565b9250828203905081811115613549576135486129b9565b5b92915050565b7f416464726573733a20696e73756666696369656e742062616c616e63650000005f82015250565b5f613583601d8361258a565b915061358e8261354f565b602082019050919050565b5f6020820190508181035f8301526135b081613577565b9050919050565b5f81905092915050565b50565b5f6135cf5f836135b7565b91506135da826135c1565b5f82019050919050565b5f6135ee826135c4565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c20725f8201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b5f613652603a8361258a565b915061365d826135f8565b604082019050919050565b5f6020820190508181035f83015261367f81613646565b905091905056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220ea06caee8ed97cda8732f89c324866d7e3b6e9f82923359d9e0225788736c7bd64736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000826e061727971f937c7cea001b9d87208caa389c
-----Decoded View---------------
Arg [0] : _farmContractAddress (address): 0x826e061727971f937C7cEA001B9D87208cAA389c
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000826e061727971f937c7cea001b9d87208caa389c
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.
Add Token to MetaMask (Web3)