Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 15213955 | 1316 days ago | IN | 0 ETH | 0.00076106 | ||||
| Update Sell Fees | 15213946 | 1316 days ago | IN | 0 ETH | 0.00065787 | ||||
| Approve | 15213944 | 1316 days ago | IN | 0 ETH | 0.0009739 | ||||
| Approve | 15213940 | 1316 days ago | IN | 0 ETH | 0.00407712 | ||||
| Enable Trading | 15213936 | 1316 days ago | IN | 0 ETH | 0.00054334 | ||||
| Approve | 15213890 | 1316 days ago | IN | 0 ETH | 0.00069206 | ||||
| Transfer | 15213868 | 1316 days ago | IN | 0 ETH | 0.0018393 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Takenomi
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-07-25
*/
/**
Takenomi たけみ
Men call me Mad, and well, they may,
When full of rage and trouble,
I start to ape,
And sweep NFT's wooden floor away,
Like withered reeds or stubble.
Now go and write thy little rhyme,
I can no longer waste my time;
The devs are tired of waiting.
Website: https://takenomi.com/
TG: t.me/TakenomiPortal
*/
//USDC Auto-LP
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
}
}
////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)
/* pragma solidity ^0.8.0; */
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)
/* pragma solidity ^0.8.0; */
/* import "../IERC20.sol"; */
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)
/* pragma solidity ^0.8.0; */
/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
uint256 currentAllowance = _allowances[sender][_msgSender()];
require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
unchecked {
_approve(sender, _msgSender(), currentAllowance - amount);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
uint256 senderBalance = _balances[sender];
require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[sender] = senderBalance - amount;
}
_balances[recipient] += amount;
emit Transfer(sender, recipient, amount);
_afterTokenTransfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
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);
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}
////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.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 substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
}
interface IUniswapV2Router02 {
function factory() external pure returns (address);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
contract Takenomi is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
bool private swapping;
address public devWallet;
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWallet;
bool public limitsInEffect = true;
bool public tradingActive = false;
bool public swapEnabled = false;
uint256 public buyTotalFees;
uint256 public buyDevFee;
uint256 public buyLiquidityFee;
uint256 public sellTotalFees;
uint256 public sellDevFee;
uint256 public sellLiquidityFee;
/******************/
// exlcude from fees and max transaction amount
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) public _isExcludedMaxTransactionAmount;
event ExcludeFromFees(address indexed account, bool isExcluded);
event devWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
constructor() ERC20("Takenomi ", "Takenomi") {
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
excludeFromMaxTransaction(address(_uniswapV2Router), true);
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), USDC);
excludeFromMaxTransaction(address(uniswapV2Pair), true);
uint256 _buyDevFee = 3;
uint256 _buyLiquidityFee = 3;
uint256 _sellDevFee = 3;
uint256 _sellLiquidityFee = 3;
uint256 totalSupply = 1_000_000_000_000 * 1e18;
maxTransactionAmount = totalSupply * 1 / 100; // 1% from total supply maxTransactionAmountTxn
maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet
buyDevFee = _buyDevFee;
buyLiquidityFee = _buyLiquidityFee;
buyTotalFees = buyDevFee + buyLiquidityFee;
sellDevFee = _sellDevFee;
sellLiquidityFee = _sellLiquidityFee;
sellTotalFees = sellDevFee + sellLiquidityFee;
devWallet = address(0x021D2E331bA642F043EAF4eDA3924345074b805E); // set as dev wallet
// exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(address(0xdead), true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(address(0xdead), true);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(msg.sender, totalSupply);
}
receive() external payable {}
// once enabled, can never be turned off
function enableTrading() external onlyOwner {
tradingActive = true;
swapEnabled = true;
}
// remove limits after token is stable
function removeLimits() external onlyOwner returns (bool) {
limitsInEffect = false;
return true;
}
// change the minimum amount of tokens to sell from fees
function updateSwapTokensAtAmount(uint256 newAmount)
external
onlyOwner
returns (bool)
{
require(
newAmount >= (totalSupply() * 1) / 100000,
"Swap amount cannot be lower than 0.001% total supply."
);
require(
newAmount <= (totalSupply() * 5) / 1000,
"Swap amount cannot be higher than 0.5% total supply."
);
swapTokensAtAmount = newAmount;
return true;
}
function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 1) / 1000) / 1e18,
"Cannot set maxTransactionAmount lower than 0.1%"
);
maxTransactionAmount = newNum * (10**18);
}
function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
require(
newNum >= ((totalSupply() * 5) / 1000) / 1e18,
"Cannot set maxWallet lower than 0.5%"
);
maxWallet = newNum * (10**18);
}
function excludeFromMaxTransaction(address updAds, bool isEx)
public
onlyOwner
{
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
// only use to disable contract sales if absolutely necessary (emergency use only)
function updateSwapEnabled(bool enabled) external onlyOwner {
swapEnabled = enabled;
}
function updateBuyFees(
uint256 _devFee,
uint256 _liquidityFee
) external onlyOwner {
buyDevFee = _devFee;
buyLiquidityFee = _liquidityFee;
buyTotalFees = buyDevFee + buyLiquidityFee;
require(buyTotalFees <= 100, "Must keep fees at 100% or less");
}
function updateSellFees(
uint256 _devFee,
uint256 _liquidityFee
) external onlyOwner {
sellDevFee = _devFee;
sellLiquidityFee = _liquidityFee;
sellTotalFees = sellDevFee + sellLiquidityFee;
require(sellTotalFees <= 100, "Must keep fees at 100% or less");
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function updateDevWallet(address newDevWallet)
external
onlyOwner
{
emit devWalletUpdated(newDevWallet, devWallet);
devWallet = newDevWallet;
}
function isExcludedFromFees(address account) public view returns (bool) {
return _isExcludedFromFees[account];
}
function _transfer(
address from,
address to,
uint256 amount
) internal override {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
if (amount == 0) {
super._transfer(from, to, 0);
return;
}
if (limitsInEffect) {
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
!swapping
) {
if (!tradingActive) {
require(
_isExcludedFromFees[from] || _isExcludedFromFees[to],
"Trading is not active."
);
}
// at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
//when buy
if (
from == uniswapV2Pair &&
!_isExcludedMaxTransactionAmount[to]
) {
require(
amount <= maxTransactionAmount,
"Buy transfer amount exceeds the maxTransactionAmount."
);
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
else if (!_isExcludedMaxTransactionAmount[to]) {
require(
amount + balanceOf(to) <= maxWallet,
"Max wallet exceeded"
);
}
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
swapEnabled &&
!swapping &&
to == uniswapV2Pair &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
uint256 tokensForLiquidity = 0;
uint256 tokensForDev = 0;
// only take fees on buys/sells, do not take on wallet transfers
if (takeFee) {
// on sell
if (to == uniswapV2Pair && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(100);
tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees;
tokensForDev = (fees * sellDevFee) / sellTotalFees;
}
// on buy
else if (from == uniswapV2Pair && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees;
tokensForDev = (fees * buyDevFee) / buyTotalFees;
}
if (fees> 0) {
super._transfer(from, address(this), fees);
}
if (tokensForLiquidity > 0) {
super._transfer(address(this), uniswapV2Pair, tokensForLiquidity);
}
amount -= fees;
}
super._transfer(from, to, amount);
}
function swapTokensForUSDC(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = USDC;
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
tokenAmount,
0, // accept any amount of USDC
path,
devWallet,
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
if (contractBalance == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
swapTokensForUSDC(contractBalance);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b50604080518082018252600981526802a30b5b2b737b6b4960bd1b60208083019182528351808501909452600884526754616b656e6f6d6960c01b9084015281519192916200009891600391620005a4565b508051620000ae906004906020840190620005a4565b505050620000cb620000c56200034560201b60201c565b62000349565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ed8160016200039b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000138573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015e91906200064a565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d691906200064a565b6001600160a01b031660a0819052620001f19060016200039b565b60038080806c0c9f2c9cd04674edea4000000060646200021382600162000692565b6200021f9190620006b4565b60085560646200023182600262000692565b6200023d9190620006b4565b600a556127106200025082600562000692565b6200025c9190620006b4565b600955600d859055600e849055620002758486620006d7565b600c55601083905560118290556200028e8284620006d7565b600f55600780546001600160a01b03191673021d2e331ba642f043eaf4eda3924345074b805e179055620002d6620002ce6005546001600160a01b031690565b600162000415565b620002e330600162000415565b620002f261dead600162000415565b62000311620003096005546001600160a01b031690565b60016200039b565b6200031e3060016200039b565b6200032d61dead60016200039b565b620003393382620004bf565b5050505050506200072e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ea5760405162461bcd60e51b815260206004820181905260248201526000805160206200268a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004605760405162461bcd60e51b815260206004820181905260248201526000805160206200268a8339815191526044820152606401620003e1565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005175760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003e1565b80600260008282546200052b9190620006d7565b90915550506001600160a01b038216600090815260208190526040812080548392906200055a908490620006d7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005b290620006f2565b90600052602060002090601f016020900481019282620005d6576000855562000621565b82601f10620005f157805160ff191683800117855562000621565b8280016001018555821562000621579182015b828111156200062157825182559160200191906001019062000604565b506200062f92915062000633565b5090565b5b808211156200062f576000815560010162000634565b6000602082840312156200065d57600080fd5b81516001600160a01b03811681146200067557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006af57620006af6200067c565b500290565b600082620006d257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006ed57620006ed6200067c565b500190565b600181811c908216806200070757607f821691505b6020821081036200072857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611f05620007856000396000818161041d015281816112fc0152818161150d0152818161161d015281816116c6015261178001526000818161032001528181611a640152611aa30152611f056000f3fe6080604052600436106102555760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c02466681461067b578063c18bc1951461069b578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb5780639c3b4fdc14610610578063a0d82dc514610626578063a9059cbb1461063c578063bbc0c7421461065c57600080fd5b806389a30271146105685780638a8c523c146105885780638da5cb5b1461059d5780638ea5220f146105bb578063924de9b7146105db57600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e146104b25780636ddd1713146104c857806370a08231146104e8578063715018a61461051e578063751039fc146105335780637571336a1461054857600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee1931461045957806366ca9b831461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b1b565b6107c5565b005b34801561028f57600080fd5b50610298610865565b6040516102a59190611b3d565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611ba9565b6108f7565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611bd3565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611bd3565b61090d565b3480156103a557600080fd5b506102816103b4366004611bee565b610994565b3480156103c557600080fd5b506102ce6103d4366004611c07565b610a71565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f000000000000000000000000000000000000000000000000000000000000000081565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611bd3565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b506102816104ad366004611b1b565b610b1b565b3480156104be57600080fd5b5061036b600f5481565b3480156104d457600080fd5b50600b546102ce9062010000900460ff1681565b3480156104f457600080fd5b5061036b610503366004611bd3565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610281610bae565b34801561053f57600080fd5b506102ce610be4565b34801561055457600080fd5b50610281610563366004611c53565b610c21565b34801561057457600080fd5b50600654610342906001600160a01b031681565b34801561059457600080fd5b50610281610c76565b3480156105a957600080fd5b506005546001600160a01b0316610342565b3480156105c757600080fd5b50600754610342906001600160a01b031681565b3480156105e757600080fd5b506102816105f6366004611c86565b610cb3565b34801561060757600080fd5b50610298610cf9565b34801561061c57600080fd5b5061036b600d5481565b34801561063257600080fd5b5061036b60105481565b34801561064857600080fd5b506102ce610657366004611ba9565b610d08565b34801561066857600080fd5b50600b546102ce90610100900460ff1681565b34801561068757600080fd5b50610281610696366004611c53565b610d15565b3480156106a757600080fd5b506102816106b6366004611bee565b610d9e565b3480156106c757600080fd5b5061036b60085481565b3480156106dd57600080fd5b506102ce6106ec366004611bee565b610e6f565b3480156106fd57600080fd5b5061036b600c5481565b34801561071357600080fd5b5061036b610722366004611ca1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061036b60095481565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611bd3565b610fc6565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611ccb565b60405180910390fd5b6010829055601181905561080c8183611d16565b600f819055606410156108615760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c657373000060448201526064016107ef565b5050565b60606003805461087490611d2e565b80601f01602080910402602001604051908101604052809291908181526020018280546108a090611d2e565b80156108ed5780601f106108c2576101008083540402835291602001916108ed565b820191906000526020600020905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b6000610904338484611061565b50600192915050565b6005546001600160a01b031633146109375760405162461bcd60e51b81526004016107ef90611ccb565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109be5760405162461bcd60e51b81526004016107ef90611ccb565b670de0b6b3a76400006103e86109d360025490565b6109de906001611d68565b6109e89190611d87565b6109f29190611d87565b811015610a595760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a6b81670de0b6b3a7640000611d68565b60085550565b6000610a7e848484611185565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b035760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610b108533858403611061565b506001949350505050565b6005546001600160a01b03163314610b455760405162461bcd60e51b81526004016107ef90611ccb565b600d829055600e819055610b598183611d16565b600c819055606410156108615760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c657373000060448201526064016107ef565b6005546001600160a01b03163314610bd85760405162461bcd60e51b81526004016107ef90611ccb565b610be260006117c8565b565b6005546000906001600160a01b03163314610c115760405162461bcd60e51b81526004016107ef90611ccb565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c4b5760405162461bcd60e51b81526004016107ef90611ccb565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca05760405162461bcd60e51b81526004016107ef90611ccb565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cdd5760405162461bcd60e51b81526004016107ef90611ccb565b600b8054911515620100000262ff000019909216919091179055565b60606004805461087490611d2e565b6000610904338484611185565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b81526004016107ef90611ccb565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc85760405162461bcd60e51b81526004016107ef90611ccb565b670de0b6b3a76400006103e8610ddd60025490565b610de8906005611d68565b610df29190611d87565b610dfc9190611d87565b811015610e575760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610e6981670de0b6b3a7640000611d68565b600a5550565b6005546000906001600160a01b03163314610e9c5760405162461bcd60e51b81526004016107ef90611ccb565b620186a0610ea960025490565b610eb4906001611d68565b610ebe9190611d87565b821015610f2b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610f3760025490565b610f42906005611d68565b610f4c9190611d87565b821115610fb85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610ff05760405162461bcd60e51b81526004016107ef90611ccb565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b61105e816117c8565b50565b6001600160a01b0383166110c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166111245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111ab5760405162461bcd60e51b81526004016107ef90611da9565b6001600160a01b0382166111d15760405162461bcd60e51b81526004016107ef90611dee565b806000036111ea576111e58383600061181a565b505050565b600b5460ff16156114c2576005546001600160a01b0384811691161480159061122157506005546001600160a01b03838116911614155b801561123557506001600160a01b03821615155b801561124c57506001600160a01b03821661dead14155b80156112625750600654600160a01b900460ff16155b156114c257600b54610100900460ff166112fa576001600160a01b03831660009081526012602052604090205460ff16806112b557506001600160a01b03821660009081526012602052604090205460ff165b6112fa5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561135457506001600160a01b03821660009081526013602052604090205460ff16155b15611438576008548111156113c95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113ef9083611d16565b11156114335760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b6114c2565b6001600160a01b03821660009081526013602052604090205460ff166114c257600a546001600160a01b03831660009081526020819052604090205461147e9083611d16565b11156114c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b30600090815260208190526040902054600954811080159081906114ee5750600b5462010000900460ff165b80156115045750600654600160a01b900460ff16155b801561154157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561156657506001600160a01b03851660009081526012602052604090205460ff16155b801561158b57506001600160a01b03841660009081526012602052604090205460ff16155b156115b9576006805460ff60a01b1916600160a01b1790556115ab61196f565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061160757506001600160a01b03851660009081526012602052604090205460ff165b15611610575060005b600080600083156117b2577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561165e57506000600f54115b156116c457611683606461167d600f548a6119b990919063ffffffff16565b906119cc565b9250600f54601154846116969190611d68565b6116a09190611d87565b9150600f54601054846116b39190611d68565b6116bd9190611d87565b9050611763565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561170757506000600c54115b1561176357611726606461167d600c548a6119b990919063ffffffff16565b9250600c54600e54846117399190611d68565b6117439190611d87565b9150600c54600d54846117569190611d68565b6117609190611d87565b90505b82156117745761177489308561181a565b81156117a5576117a5307f00000000000000000000000000000000000000000000000000000000000000008461181a565b6117af8388611e31565b96505b6117bd89898961181a565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118405760405162461bcd60e51b81526004016107ef90611da9565b6001600160a01b0382166118665760405162461bcd60e51b81526004016107ef90611dee565b6001600160a01b038316600090815260208190526040902054818110156118de5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611915908490611d16565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161196191815260200190565b60405180910390a350505050565b306000908152602081905260408120549081900361198a5750565b600954611998906014611d68565b8111156119b0576009546119ad906014611d68565b90505b61105e816119d8565b60006119c58284611d68565b9392505050565b60006119c58284611d87565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0d57611a0d611e48565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a3e57611a3e611e48565b60200260200101906001600160a01b031690816001600160a01b031681525050611a89307f000000000000000000000000000000000000000000000000000000000000000084611061565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611ae5928792600092889291909116904290600401611e5e565b600060405180830381600087803b158015611aff57600080fd5b505af1158015611b13573d6000803e3d6000fd5b505050505050565b60008060408385031215611b2e57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b6a57858101830151858201604001528201611b4e565b81811115611b7c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fc157600080fd5b60008060408385031215611bbc57600080fd5b611bc583611b92565b946020939093013593505050565b600060208284031215611be557600080fd5b6119c582611b92565b600060208284031215611c0057600080fd5b5035919050565b600080600060608486031215611c1c57600080fd5b611c2584611b92565b9250611c3360208501611b92565b9150604084013590509250925092565b80358015158114610fc157600080fd5b60008060408385031215611c6657600080fd5b611c6f83611b92565b9150611c7d60208401611c43565b90509250929050565b600060208284031215611c9857600080fd5b6119c582611c43565b60008060408385031215611cb457600080fd5b611cbd83611b92565b9150611c7d60208401611b92565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d2957611d29611d00565b500190565b600181811c90821680611d4257607f821691505b602082108103611d6257634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d8257611d82611d00565b500290565b600082611da457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e4357611e43611d00565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611eae5784516001600160a01b031683529383019391830191600101611e89565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a1ae97801e5cff82afe27fe6f09c0702b422a352baffd006de661c236c07baa364736f6c634300080d00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102555760003560e01c806389a3027111610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610707578063e2f456051461074d578063f11a24d314610763578063f2fde38b14610779578063f637434214610799578063f8b45b05146107af57600080fd5b8063c02466681461067b578063c18bc1951461069b578063c8c8ebe4146106bb578063d257b34f146106d1578063d85ba063146106f157600080fd5b806395d89b41116100fd57806395d89b41146105fb5780639c3b4fdc14610610578063a0d82dc514610626578063a9059cbb1461063c578063bbc0c7421461065c57600080fd5b806389a30271146105685780638a8c523c146105885780638da5cb5b1461059d5780638ea5220f146105bb578063924de9b7146105db57600080fd5b8063313ce567116101d25780636a486a8e116101965780636a486a8e146104b25780636ddd1713146104c857806370a08231146104e8578063715018a61461051e578063751039fc146105335780637571336a1461054857600080fd5b8063313ce567146103ef57806349bd5a5e1461040b5780634a62bb651461043f5780634fbee1931461045957806366ca9b831461049257600080fd5b806318160ddd1161021957806318160ddd1461035a5780631816467f14610379578063203e727e1461039957806323b872dd146103b957806327c8f835146103d957600080fd5b806302dbd8f81461026157806306fdde0314610283578063095ea7b3146102ae57806310d5de53146102de5780631694505e1461030e57600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b5061028161027c366004611b1b565b6107c5565b005b34801561028f57600080fd5b50610298610865565b6040516102a59190611b3d565b60405180910390f35b3480156102ba57600080fd5b506102ce6102c9366004611ba9565b6108f7565b60405190151581526020016102a5565b3480156102ea57600080fd5b506102ce6102f9366004611bd3565b60136020526000908152604090205460ff1681565b34801561031a57600080fd5b506103427f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102a5565b34801561036657600080fd5b506002545b6040519081526020016102a5565b34801561038557600080fd5b50610281610394366004611bd3565b61090d565b3480156103a557600080fd5b506102816103b4366004611bee565b610994565b3480156103c557600080fd5b506102ce6103d4366004611c07565b610a71565b3480156103e557600080fd5b5061034261dead81565b3480156103fb57600080fd5b50604051601281526020016102a5565b34801561041757600080fd5b506103427f000000000000000000000000da4ded0db2250fa62a15574cd7e20bbc3476d7ae81565b34801561044b57600080fd5b50600b546102ce9060ff1681565b34801561046557600080fd5b506102ce610474366004611bd3565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561049e57600080fd5b506102816104ad366004611b1b565b610b1b565b3480156104be57600080fd5b5061036b600f5481565b3480156104d457600080fd5b50600b546102ce9062010000900460ff1681565b3480156104f457600080fd5b5061036b610503366004611bd3565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610281610bae565b34801561053f57600080fd5b506102ce610be4565b34801561055457600080fd5b50610281610563366004611c53565b610c21565b34801561057457600080fd5b50600654610342906001600160a01b031681565b34801561059457600080fd5b50610281610c76565b3480156105a957600080fd5b506005546001600160a01b0316610342565b3480156105c757600080fd5b50600754610342906001600160a01b031681565b3480156105e757600080fd5b506102816105f6366004611c86565b610cb3565b34801561060757600080fd5b50610298610cf9565b34801561061c57600080fd5b5061036b600d5481565b34801561063257600080fd5b5061036b60105481565b34801561064857600080fd5b506102ce610657366004611ba9565b610d08565b34801561066857600080fd5b50600b546102ce90610100900460ff1681565b34801561068757600080fd5b50610281610696366004611c53565b610d15565b3480156106a757600080fd5b506102816106b6366004611bee565b610d9e565b3480156106c757600080fd5b5061036b60085481565b3480156106dd57600080fd5b506102ce6106ec366004611bee565b610e6f565b3480156106fd57600080fd5b5061036b600c5481565b34801561071357600080fd5b5061036b610722366004611ca1565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075957600080fd5b5061036b60095481565b34801561076f57600080fd5b5061036b600e5481565b34801561078557600080fd5b50610281610794366004611bd3565b610fc6565b3480156107a557600080fd5b5061036b60115481565b3480156107bb57600080fd5b5061036b600a5481565b6005546001600160a01b031633146107f85760405162461bcd60e51b81526004016107ef90611ccb565b60405180910390fd5b6010829055601181905561080c8183611d16565b600f819055606410156108615760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c657373000060448201526064016107ef565b5050565b60606003805461087490611d2e565b80601f01602080910402602001604051908101604052809291908181526020018280546108a090611d2e565b80156108ed5780601f106108c2576101008083540402835291602001916108ed565b820191906000526020600020905b8154815290600101906020018083116108d057829003601f168201915b5050505050905090565b6000610904338484611061565b50600192915050565b6005546001600160a01b031633146109375760405162461bcd60e51b81526004016107ef90611ccb565b6007546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109be5760405162461bcd60e51b81526004016107ef90611ccb565b670de0b6b3a76400006103e86109d360025490565b6109de906001611d68565b6109e89190611d87565b6109f29190611d87565b811015610a595760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ef565b610a6b81670de0b6b3a7640000611d68565b60085550565b6000610a7e848484611185565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b035760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ef565b610b108533858403611061565b506001949350505050565b6005546001600160a01b03163314610b455760405162461bcd60e51b81526004016107ef90611ccb565b600d829055600e819055610b598183611d16565b600c819055606410156108615760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b65657020666565732061742031303025206f72206c657373000060448201526064016107ef565b6005546001600160a01b03163314610bd85760405162461bcd60e51b81526004016107ef90611ccb565b610be260006117c8565b565b6005546000906001600160a01b03163314610c115760405162461bcd60e51b81526004016107ef90611ccb565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c4b5760405162461bcd60e51b81526004016107ef90611ccb565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610ca05760405162461bcd60e51b81526004016107ef90611ccb565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cdd5760405162461bcd60e51b81526004016107ef90611ccb565b600b8054911515620100000262ff000019909216919091179055565b60606004805461087490611d2e565b6000610904338484611185565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b81526004016107ef90611ccb565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dc85760405162461bcd60e51b81526004016107ef90611ccb565b670de0b6b3a76400006103e8610ddd60025490565b610de8906005611d68565b610df29190611d87565b610dfc9190611d87565b811015610e575760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ef565b610e6981670de0b6b3a7640000611d68565b600a5550565b6005546000906001600160a01b03163314610e9c5760405162461bcd60e51b81526004016107ef90611ccb565b620186a0610ea960025490565b610eb4906001611d68565b610ebe9190611d87565b821015610f2b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ef565b6103e8610f3760025490565b610f42906005611d68565b610f4c9190611d87565b821115610fb85760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ef565b50600981905560015b919050565b6005546001600160a01b03163314610ff05760405162461bcd60e51b81526004016107ef90611ccb565b6001600160a01b0381166110555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ef565b61105e816117c8565b50565b6001600160a01b0383166110c35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ef565b6001600160a01b0382166111245760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ef565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111ab5760405162461bcd60e51b81526004016107ef90611da9565b6001600160a01b0382166111d15760405162461bcd60e51b81526004016107ef90611dee565b806000036111ea576111e58383600061181a565b505050565b600b5460ff16156114c2576005546001600160a01b0384811691161480159061122157506005546001600160a01b03838116911614155b801561123557506001600160a01b03821615155b801561124c57506001600160a01b03821661dead14155b80156112625750600654600160a01b900460ff16155b156114c257600b54610100900460ff166112fa576001600160a01b03831660009081526012602052604090205460ff16806112b557506001600160a01b03821660009081526012602052604090205460ff165b6112fa5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ef565b7f000000000000000000000000da4ded0db2250fa62a15574cd7e20bbc3476d7ae6001600160a01b0316836001600160a01b031614801561135457506001600160a01b03821660009081526013602052604090205460ff16155b15611438576008548111156113c95760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ef565b600a546001600160a01b0383166000908152602081905260409020546113ef9083611d16565b11156114335760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b6114c2565b6001600160a01b03821660009081526013602052604090205460ff166114c257600a546001600160a01b03831660009081526020819052604090205461147e9083611d16565b11156114c25760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ef565b30600090815260208190526040902054600954811080159081906114ee5750600b5462010000900460ff165b80156115045750600654600160a01b900460ff16155b801561154157507f000000000000000000000000da4ded0db2250fa62a15574cd7e20bbc3476d7ae6001600160a01b0316846001600160a01b0316145b801561156657506001600160a01b03851660009081526012602052604090205460ff16155b801561158b57506001600160a01b03841660009081526012602052604090205460ff16155b156115b9576006805460ff60a01b1916600160a01b1790556115ab61196f565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061160757506001600160a01b03851660009081526012602052604090205460ff165b15611610575060005b600080600083156117b2577f000000000000000000000000da4ded0db2250fa62a15574cd7e20bbc3476d7ae6001600160a01b0316886001600160a01b031614801561165e57506000600f54115b156116c457611683606461167d600f548a6119b990919063ffffffff16565b906119cc565b9250600f54601154846116969190611d68565b6116a09190611d87565b9150600f54601054846116b39190611d68565b6116bd9190611d87565b9050611763565b7f000000000000000000000000da4ded0db2250fa62a15574cd7e20bbc3476d7ae6001600160a01b0316896001600160a01b031614801561170757506000600c54115b1561176357611726606461167d600c548a6119b990919063ffffffff16565b9250600c54600e54846117399190611d68565b6117439190611d87565b9150600c54600d54846117569190611d68565b6117609190611d87565b90505b82156117745761177489308561181a565b81156117a5576117a5307f000000000000000000000000da4ded0db2250fa62a15574cd7e20bbc3476d7ae8461181a565b6117af8388611e31565b96505b6117bd89898961181a565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166118405760405162461bcd60e51b81526004016107ef90611da9565b6001600160a01b0382166118665760405162461bcd60e51b81526004016107ef90611dee565b6001600160a01b038316600090815260208190526040902054818110156118de5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ef565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611915908490611d16565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161196191815260200190565b60405180910390a350505050565b306000908152602081905260408120549081900361198a5750565b600954611998906014611d68565b8111156119b0576009546119ad906014611d68565b90505b61105e816119d8565b60006119c58284611d68565b9392505050565b60006119c58284611d87565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a0d57611a0d611e48565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a3e57611a3e611e48565b60200260200101906001600160a01b031690816001600160a01b031681525050611a89307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611061565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611ae5928792600092889291909116904290600401611e5e565b600060405180830381600087803b158015611aff57600080fd5b505af1158015611b13573d6000803e3d6000fd5b505050505050565b60008060408385031215611b2e57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b6a57858101830151858201604001528201611b4e565b81811115611b7c576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fc157600080fd5b60008060408385031215611bbc57600080fd5b611bc583611b92565b946020939093013593505050565b600060208284031215611be557600080fd5b6119c582611b92565b600060208284031215611c0057600080fd5b5035919050565b600080600060608486031215611c1c57600080fd5b611c2584611b92565b9250611c3360208501611b92565b9150604084013590509250925092565b80358015158114610fc157600080fd5b60008060408385031215611c6657600080fd5b611c6f83611b92565b9150611c7d60208401611c43565b90509250929050565b600060208284031215611c9857600080fd5b6119c582611c43565b60008060408385031215611cb457600080fd5b611cbd83611b92565b9150611c7d60208401611b92565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d2957611d29611d00565b500190565b600181811c90821680611d4257607f821691505b602082108103611d6257634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d8257611d82611d00565b500290565b600082611da457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e4357611e43611d00565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611eae5784516001600160a01b031683529383019391830191600101611e89565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a1ae97801e5cff82afe27fe6f09c0702b422a352baffd006de661c236c07baa364736f6c634300080d0033
Deployed Bytecode Sourcemap
25078:10777:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30392:320;;;;;;;;;;-1:-1:-1;30392:320:0;;;;;:::i;:::-;;:::i;:::-;;9934:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12101:169;;;;;;;;;;-1:-1:-1;12101:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;12101:169:0;1306:187:1;26041:63:0;;;;;;;;;;-1:-1:-1;26041:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25156:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;25156:51:0;1689:229:1;11054:108:0;;;;;;;;;;-1:-1:-1;11142:12:0;;11054:108;;;2069:25:1;;;2057:2;2042:18;11054:108:0;1923:177:1;30910:189:0;;;;;;;;;;-1:-1:-1;30910:189:0;;;;;:::i;:::-;;:::i;29153:275::-;;;;;;;;;;-1:-1:-1;29153:275:0;;;;;:::i;:::-;;:::i;12752:492::-;;;;;;;;;;-1:-1:-1;12752:492:0;;;;;:::i;:::-;;:::i;25259:53::-;;;;;;;;;;;;25305:6;25259:53;;10896:93;;;;;;;;;;-1:-1:-1;10896:93:0;;10979:2;2973:36:1;;2961:2;2946:18;10896:93:0;2831:184:1;25214:38:0;;;;;;;;;;;;;;;25570:33;;;;;;;;;;-1:-1:-1;25570:33:0;;;;;;;;31109:126;;;;;;;;;;-1:-1:-1;31109:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31199:28:0;31175:4;31199:28;;;:19;:28;;;;;;;;;31109:126;30071:313;;;;;;;;;;-1:-1:-1;30071:313:0;;;;;:::i;:::-;;:::i;25794:28::-;;;;;;;;;;;;;;;;25650:31;;;;;;;;;;-1:-1:-1;25650:31:0;;;;;;;;;;;11225:127;;;;;;;;;;-1:-1:-1;11225:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11326:18:0;11299:7;11326:18;;;;;;;;;;;;11225:127;3169:103;;;;;;;;;;;;;:::i;28457:121::-;;;;;;;;;;;;;:::i;29700:167::-;;;;;;;;;;-1:-1:-1;29700:167:0;;;;;:::i;:::-;;:::i;25319:64::-;;;;;;;;;;-1:-1:-1;25319:64:0;;;;-1:-1:-1;;;;;25319:64:0;;;28293:112;;;;;;;;;;;;;:::i;2518:87::-;;;;;;;;;;-1:-1:-1;2591:6:0;;-1:-1:-1;;;;;2591:6:0;2518:87;;25422:24;;;;;;;;;;-1:-1:-1;25422:24:0;;;;-1:-1:-1;;;;;25422:24:0;;;29963:100;;;;;;;;;;-1:-1:-1;29963:100:0;;;;;:::i;:::-;;:::i;10153:104::-;;;;;;;;;;;;;:::i;25724:24::-;;;;;;;;;;;;;;;;25829:25;;;;;;;;;;;;;;;;11565:175;;;;;;;;;;-1:-1:-1;11565:175:0;;;;;:::i;:::-;;:::i;25610:33::-;;;;;;;;;;-1:-1:-1;25610:33:0;;;;;;;;;;;30720:182;;;;;;;;;;-1:-1:-1;30720:182:0;;;;;:::i;:::-;;:::i;29436:256::-;;;;;;;;;;-1:-1:-1;29436:256:0;;;;;:::i;:::-;;:::i;25455:35::-;;;;;;;;;;;;;;;;28648:497;;;;;;;;;;-1:-1:-1;28648:497:0;;;;;:::i;:::-;;:::i;25690:27::-;;;;;;;;;;;;;;;;11803:151;;;;;;;;;;-1:-1:-1;11803:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11919:18:0;;;11892:7;11919:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11803:151;25497:33;;;;;;;;;;;;;;;;25755:30;;;;;;;;;;;;;;;;3427:201;;;;;;;;;;-1:-1:-1;3427:201:0;;;;;:::i;:::-;;:::i;25861:31::-;;;;;;;;;;;;;;;;25537:24;;;;;;;;;;;;;;;;30392:320;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;;;;;;;;;30511:10:::1;:20:::0;;;30542:16:::1;:32:::0;;;30601:29:::1;30561:13:::0;30524:7;30601:29:::1;:::i;:::-;30585:13;:45:::0;;;30666:3:::1;-1:-1:-1::0;30649:20:0::1;30641:63;;;::::0;-1:-1:-1;;;30641:63:0;;4722:2:1;30641:63:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:32;4780:18;;;4773:60;4850:18;;30641:63:0::1;4520:354:1::0;30641:63:0::1;30392:320:::0;;:::o;9934:100::-;9988:13;10021:5;10014:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9934:100;:::o;12101:169::-;12184:4;12201:39;1271:10;12224:7;12233:6;12201:8;:39::i;:::-;-1:-1:-1;12258:4:0;12101:169;;;;:::o;30910:189::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;31046:9:::1;::::0;31015:41:::1;::::0;-1:-1:-1;;;;;31046:9:0;;::::1;::::0;31015:41;::::1;::::0;::::1;::::0;31046:9:::1;::::0;31015:41:::1;31067:9;:24:::0;;-1:-1:-1;;;;;;31067:24:0::1;-1:-1:-1::0;;;;;31067:24:0;;;::::1;::::0;;;::::1;::::0;;30910:189::o;29153:275::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;29290:4:::1;29282;29261:13;11142:12:::0;;;11054:108;29261:13:::1;:17;::::0;29277:1:::1;29261:17;:::i;:::-;29260:26;;;;:::i;:::-;29259:35;;;;:::i;:::-;29249:6;:45;;29227:142;;;::::0;-1:-1:-1;;;29227:142:0;;5861:2:1;29227:142:0::1;::::0;::::1;5843:21:1::0;5900:2;5880:18;;;5873:30;5939:34;5919:18;;;5912:62;-1:-1:-1;;;5990:18:1;;;5983:45;6045:19;;29227:142:0::1;5659:411:1::0;29227:142:0::1;29403:17;:6:::0;29413::::1;29403:17;:::i;:::-;29380:20;:40:::0;-1:-1:-1;29153:275:0:o;12752:492::-;12892:4;12909:36;12919:6;12927:9;12938:6;12909:9;:36::i;:::-;-1:-1:-1;;;;;12985:19:0;;12958:24;12985:19;;;:11;:19;;;;;;;;1271:10;12985:33;;;;;;;;13037:26;;;;13029:79;;;;-1:-1:-1;;;13029:79:0;;6277:2:1;13029:79:0;;;6259:21:1;6316:2;6296:18;;;6289:30;6355:34;6335:18;;;6328:62;-1:-1:-1;;;6406:18:1;;;6399:38;6454:19;;13029:79:0;6075:404:1;13029:79:0;13144:57;13153:6;1271:10;13194:6;13175:16;:25;13144:8;:57::i;:::-;-1:-1:-1;13232:4:0;;12752:492;-1:-1:-1;;;;12752:492:0:o;30071:313::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;30189:9:::1;:19:::0;;;30219:15:::1;:31:::0;;;30276:27:::1;30237:13:::0;30201:7;30276:27:::1;:::i;:::-;30261:12;:42:::0;;;30338:3:::1;-1:-1:-1::0;30322:19:0::1;30314:62;;;::::0;-1:-1:-1;;;30314:62:0;;4722:2:1;30314:62:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:32;4780:18;;;4773:60;4850:18;;30314:62:0::1;4520:354:1::0;3169:103:0;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;3234:30:::1;3261:1;3234:18;:30::i;:::-;3169:103::o:0;28457:121::-;2591:6;;28509:4;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;-1:-1:-1;28526:14:0::1;:22:::0;;-1:-1:-1;;28526:22:0::1;::::0;;;28457:121;:::o;29700:167::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29813:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29813:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29700:167::o;28293:112::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;28348:13:::1;:20:::0;;-1:-1:-1;;28379:18:0;;;;;28293:112::o;29963:100::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;30034:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30034:21:0;;::::1;::::0;;;::::1;::::0;;29963:100::o;10153:104::-;10209:13;10242:7;10235:14;;;;;:::i;11565:175::-;11651:4;11668:42;1271:10;11692:9;11703:6;11668:9;:42::i;30720:182::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30805:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30805:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30860:34;;1446:41:1;;;30860:34:0::1;::::0;1419:18:1;30860:34:0::1;;;;;;;30720:182:::0;;:::o;29436:256::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;29576:4:::1;29568;29547:13;11142:12:::0;;;11054:108;29547:13:::1;:17;::::0;29563:1:::1;29547:17;:::i;:::-;29546:26;;;;:::i;:::-;29545:35;;;;:::i;:::-;29535:6;:45;;29513:131;;;::::0;-1:-1:-1;;;29513:131:0;;6686:2:1;29513:131:0::1;::::0;::::1;6668:21:1::0;6725:2;6705:18;;;6698:30;6764:34;6744:18;;;6737:62;-1:-1:-1;;;6815:18:1;;;6808:34;6859:19;;29513:131:0::1;6484:400:1::0;29513:131:0::1;29667:17;:6:::0;29677::::1;29667:17;:::i;:::-;29655:9;:29:::0;-1:-1:-1;29436:256:0:o;28648:497::-;2591:6;;28756:4;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;28835:6:::1;28814:13;11142:12:::0;;;11054:108;28814:13:::1;:17;::::0;28830:1:::1;28814:17;:::i;:::-;28813:28;;;;:::i;:::-;28800:9;:41;;28778:144;;;::::0;-1:-1:-1;;;28778:144:0;;7091:2:1;28778:144:0::1;::::0;::::1;7073:21:1::0;7130:2;7110:18;;;7103:30;7169:34;7149:18;;;7142:62;-1:-1:-1;;;7220:18:1;;;7213:51;7281:19;;28778:144:0::1;6889:417:1::0;28778:144:0::1;28990:4;28969:13;11142:12:::0;;;11054:108;28969:13:::1;:17;::::0;28985:1:::1;28969:17;:::i;:::-;28968:26;;;;:::i;:::-;28955:9;:39;;28933:141;;;::::0;-1:-1:-1;;;28933:141:0;;7513:2:1;28933:141:0::1;::::0;::::1;7495:21:1::0;7552:2;7532:18;;;7525:30;7591:34;7571:18;;;7564:62;-1:-1:-1;;;7642:18:1;;;7635:50;7702:19;;28933:141:0::1;7311:416:1::0;28933:141:0::1;-1:-1:-1::0;29085:18:0::1;:30:::0;;;29133:4:::1;2809:1;28648:497:::0;;;:::o;3427:201::-;2591:6;;-1:-1:-1;;;;;2591:6:0;1271:10;2738:23;2730:68;;;;-1:-1:-1;;;2730:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3516:22:0;::::1;3508:73;;;::::0;-1:-1:-1;;;3508:73:0;;7934:2:1;3508:73:0::1;::::0;::::1;7916:21:1::0;7973:2;7953:18;;;7946:30;8012:34;7992:18;;;7985:62;-1:-1:-1;;;8063:18:1;;;8056:36;8109:19;;3508:73:0::1;7732:402:1::0;3508:73:0::1;3592:28;3611:8;3592:18;:28::i;:::-;3427:201:::0;:::o;15593:380::-;-1:-1:-1;;;;;15729:19:0;;15721:68;;;;-1:-1:-1;;;15721:68:0;;8341:2:1;15721:68:0;;;8323:21:1;8380:2;8360:18;;;8353:30;8419:34;8399:18;;;8392:62;-1:-1:-1;;;8470:18:1;;;8463:34;8514:19;;15721:68:0;8139:400:1;15721:68:0;-1:-1:-1;;;;;15808:21:0;;15800:68;;;;-1:-1:-1;;;15800:68:0;;8746:2:1;15800:68:0;;;8728:21:1;8785:2;8765:18;;;8758:30;8824:34;8804:18;;;8797:62;-1:-1:-1;;;8875:18:1;;;8868:32;8917:19;;15800:68:0;8544:398:1;15800:68:0;-1:-1:-1;;;;;15881:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15933:32;;2069:25:1;;;15933:32:0;;2042:18:1;15933:32:0;;;;;;;15593:380;;;:::o;31243:3679::-;-1:-1:-1;;;;;31375:18:0;;31367:68;;;;-1:-1:-1;;;31367:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31454:16:0;;31446:64;;;;-1:-1:-1;;;31446:64:0;;;;;;;:::i;:::-;31527:6;31537:1;31527:11;31523:93;;31555:28;31571:4;31577:2;31581:1;31555:15;:28::i;:::-;31243:3679;;;:::o;31523:93::-;31632:14;;;;31628:1430;;;2591:6;;-1:-1:-1;;;;;31685:15:0;;;2591:6;;31685:15;;;;:49;;-1:-1:-1;2591:6:0;;-1:-1:-1;;;;;31721:13:0;;;2591:6;;31721:13;;31685:49;:86;;;;-1:-1:-1;;;;;;31755:16:0;;;;31685:86;:128;;;;-1:-1:-1;;;;;;31792:21:0;;31806:6;31792:21;;31685:128;:158;;;;-1:-1:-1;31835:8:0;;-1:-1:-1;;;31835:8:0;;;;31834:9;31685:158;31663:1384;;;31883:13;;;;;;;31878:223;;-1:-1:-1;;;;;31955:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31984:23:0;;;;;;:19;:23;;;;;;;;31955:52;31921:160;;;;-1:-1:-1;;;31921:160:0;;9959:2:1;31921:160:0;;;9941:21:1;9998:2;9978:18;;;9971:30;-1:-1:-1;;;10017:18:1;;;10010:52;10079:18;;31921:160:0;9757:346:1;31921:160:0;32315:13;-1:-1:-1;;;;;32307:21:0;:4;-1:-1:-1;;;;;32307:21:0;;:82;;;;-1:-1:-1;;;;;;32354:35:0;;;;;;:31;:35;;;;;;;;32353:36;32307:82;32281:751;;;32476:20;;32466:6;:30;;32432:169;;;;-1:-1:-1;;;32432:169:0;;10310:2:1;32432:169:0;;;10292:21:1;10349:2;10329:18;;;10322:30;10388:34;10368:18;;;10361:62;-1:-1:-1;;;10439:18:1;;;10432:51;10500:19;;32432:169:0;10108:417:1;32432:169:0;32684:9;;-1:-1:-1;;;;;11326:18:0;;11299:7;11326:18;;;;;;;;;;;32658:22;;:6;:22;:::i;:::-;:35;;32624:140;;;;-1:-1:-1;;;32624:140:0;;10732:2:1;32624:140:0;;;10714:21:1;10771:2;10751:18;;;10744:30;-1:-1:-1;;;10790:18:1;;;10783:49;10849:18;;32624:140:0;10530:343:1;32624:140:0;32281:751;;;-1:-1:-1;;;;;32812:35:0;;;;;;:31;:35;;;;;;;;32807:225;;32932:9;;-1:-1:-1;;;;;11326:18:0;;11299:7;11326:18;;;;;;;;;;;32906:22;;:6;:22;:::i;:::-;:35;;32872:140;;;;-1:-1:-1;;;32872:140:0;;10732:2:1;32872:140:0;;;10714:21:1;10771:2;10751:18;;;10744:30;-1:-1:-1;;;10790:18:1;;;10783:49;10849:18;;32872:140:0;10530:343:1;32872:140:0;33119:4;33070:28;11326:18;;;;;;;;;;;33177;;33153:42;;;;;;;33226:35;;-1:-1:-1;33250:11:0;;;;;;;33226:35;:61;;;;-1:-1:-1;33279:8:0;;-1:-1:-1;;;33279:8:0;;;;33278:9;33226:61;:97;;;;;33310:13;-1:-1:-1;;;;;33304:19:0;:2;-1:-1:-1;;;;;33304:19:0;;33226:97;:140;;;;-1:-1:-1;;;;;;33341:25:0;;;;;;:19;:25;;;;;;;;33340:26;33226:140;:181;;;;-1:-1:-1;;;;;;33384:23:0;;;;;;:19;:23;;;;;;;;33383:24;33226:181;33208:313;;;33434:8;:15;;-1:-1:-1;;;;33434:15:0;-1:-1:-1;;;33434:15:0;;;33466:10;:8;:10::i;:::-;33493:8;:16;;-1:-1:-1;;;;33493:16:0;;;33208:313;33549:8;;-1:-1:-1;;;;;33659:25:0;;33533:12;33659:25;;;:19;:25;;;;;;33549:8;-1:-1:-1;;;33549:8:0;;;;;33548:9;;33659:25;;:52;;-1:-1:-1;;;;;;33688:23:0;;;;;;:19;:23;;;;;;;;33659:52;33655:100;;;-1:-1:-1;33738:5:0;33655:100;33767:12;33794:26;33835:20;33948:7;33944:925;;;34006:13;-1:-1:-1;;;;;34000:19:0;:2;-1:-1:-1;;;;;34000:19:0;;:40;;;;;34039:1;34023:13;;:17;34000:40;33996:583;;;34068:34;34098:3;34068:25;34079:13;;34068:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;34061:41;;34170:13;;34150:16;;34143:4;:23;;;;:::i;:::-;34142:41;;;;:::i;:::-;34121:62;;34239:13;;34225:10;;34218:4;:17;;;;:::i;:::-;34217:35;;;;:::i;:::-;34202:50;;33996:583;;;34322:13;-1:-1:-1;;;;;34314:21:0;:4;-1:-1:-1;;;;;34314:21:0;;:41;;;;;34354:1;34339:12;;:16;34314:41;34310:269;;;34383:33;34412:3;34383:24;34394:12;;34383:6;:10;;:24;;;;:::i;:33::-;34376:40;;34483:12;;34464:15;;34457:4;:22;;;;:::i;:::-;34456:39;;;;:::i;:::-;34435:60;;34551:12;;34538:9;;34531:4;:16;;;;:::i;:::-;34530:33;;;;:::i;:::-;34515:48;;34310:269;34599:7;;34595:90;;34627:42;34643:4;34657;34664;34627:15;:42::i;:::-;34703:22;;34699:128;;34746:65;34770:4;34777:13;34792:18;34746:15;:65::i;:::-;34843:14;34853:4;34843:14;;:::i;:::-;;;33944:925;34881:33;34897:4;34903:2;34907:6;34881:15;:33::i;:::-;31356:3566;;;;;;31243:3679;;;:::o;3788:191::-;3881:6;;;-1:-1:-1;;;;;3898:17:0;;;-1:-1:-1;;;;;;3898:17:0;;;;;;;3931:40;;3881:6;;;3898:17;3881:6;;3931:40;;3862:16;;3931:40;3851:128;3788:191;:::o;13734:733::-;-1:-1:-1;;;;;13874:20:0;;13866:70;;;;-1:-1:-1;;;13866:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13955:23:0;;13947:71;;;;-1:-1:-1;;;13947:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14115:17:0;;14091:21;14115:17;;;;;;;;;;;14151:23;;;;14143:74;;;;-1:-1:-1;;;14143:74:0;;11210:2:1;14143:74:0;;;11192:21:1;11249:2;11229:18;;;11222:30;11288:34;11268:18;;;11261:62;-1:-1:-1;;;11339:18:1;;;11332:36;11385:19;;14143:74:0;11008:402:1;14143:74:0;-1:-1:-1;;;;;14253:17:0;;;:9;:17;;;;;;;;;;;14273:22;;;14253:42;;14317:20;;;;;;;;:30;;14289:6;;14253:9;14317:30;;14289:6;;14317:30;:::i;:::-;;;;;;;;14382:9;-1:-1:-1;;;;;14365:35:0;14374:6;-1:-1:-1;;;;;14365:35:0;;14393:6;14365:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;14365:35:0;;;;;;;;13855:612;13734:733;;;:::o;35510:340::-;35593:4;35549:23;11326:18;;;;;;;;;;;;35614:20;;;35610:59;;35651:7;35510:340::o;35610:59::-;35703:18;;:23;;35724:2;35703:23;:::i;:::-;35685:15;:41;35681:115;;;35761:18;;:23;;35782:2;35761:23;:::i;:::-;35743:41;;35681:115;35808:34;35826:15;35808:17;:34::i;21046:98::-;21104:7;21131:5;21135:1;21131;:5;:::i;:::-;21124:12;21046:98;-1:-1:-1;;;21046:98:0:o;21445:::-;21503:7;21530:5;21534:1;21530;:5;:::i;34930:572::-;35081:16;;;35095:1;35081:16;;;;;;;;35057:21;;35081:16;;;;;;;;;;-1:-1:-1;35081:16:0;35057:40;;35126:4;35108;35113:1;35108:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35108:23:0;;;:7;;;;;;;;;:23;35152:4;;35142:7;;35152:4;;;35142;;35152;;35142:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;35142:14:0;;;-1:-1:-1;;;;;35142:14:0;;;;;35169:62;35186:4;35201:15;35219:11;35169:8;:62::i;:::-;35444:9;;35270:224;;-1:-1:-1;;;35270:224:0;;-1:-1:-1;;;;;35270:15:0;:69;;;;;:224;;35354:11;;35380:1;;35425:4;;35444:9;;;;;35468:15;;35270:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34986:516;34930:572;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:356::-;4096:2;4078:21;;;4115:18;;;4108:30;4174:34;4169:2;4154:18;;4147:62;4241:2;4226:18;;3894:356::o;4255:127::-;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:128;4427:3;4458:1;4454:6;4451:1;4448:13;4445:39;;;4464:18;;:::i;:::-;-1:-1:-1;4500:9:1;;4387:128::o;4879:380::-;4958:1;4954:12;;;;5001;;;5022:61;;5076:4;5068:6;5064:17;5054:27;;5022:61;5129:2;5121:6;5118:14;5098:18;5095:38;5092:161;;5175:10;5170:3;5166:20;5163:1;5156:31;5210:4;5207:1;5200:15;5238:4;5235:1;5228:15;5092:161;;4879:380;;;:::o;5264:168::-;5304:7;5370:1;5366;5362:6;5358:14;5355:1;5352:21;5347:1;5340:9;5333:17;5329:45;5326:71;;;5377:18;;:::i;:::-;-1:-1:-1;5417:9:1;;5264:168::o;5437:217::-;5477:1;5503;5493:132;;5547:10;5542:3;5538:20;5535:1;5528:31;5582:4;5579:1;5572:15;5610:4;5607:1;5600:15;5493:132;-1:-1:-1;5639:9:1;;5437:217::o;8947:401::-;9149:2;9131:21;;;9188:2;9168:18;;;9161:30;9227:34;9222:2;9207:18;;9200:62;-1:-1:-1;;;9293:2:1;9278:18;;9271:35;9338:3;9323:19;;8947:401::o;9353:399::-;9555:2;9537:21;;;9594:2;9574:18;;;9567:30;9633:34;9628:2;9613:18;;9606:62;-1:-1:-1;;;9699:2:1;9684:18;;9677:33;9742:3;9727:19;;9353:399::o;10878:125::-;10918:4;10946:1;10943;10940:8;10937:34;;;10951:18;;:::i;:::-;-1:-1:-1;10988:9:1;;10878:125::o;11547:127::-;11608:10;11603:3;11599:20;11596:1;11589:31;11639:4;11636:1;11629:15;11663:4;11660:1;11653:15;11679:980;11941:4;11989:3;11978:9;11974:19;12020:6;12009:9;12002:25;12046:2;12084:6;12079:2;12068:9;12064:18;12057:34;12127:3;12122:2;12111:9;12107:18;12100:31;12151:6;12186;12180:13;12217:6;12209;12202:22;12255:3;12244:9;12240:19;12233:26;;12294:2;12286:6;12282:15;12268:29;;12315:1;12325:195;12339:6;12336:1;12333:13;12325:195;;;12404:13;;-1:-1:-1;;;;;12400:39:1;12388:52;;12495:15;;;;12460:12;;;;12436:1;12354:9;12325:195;;;-1:-1:-1;;;;;;;12576:32:1;;;;12571:2;12556:18;;12549:60;-1:-1:-1;;;12640:3:1;12625:19;12618:35;12537:3;11679:980;-1:-1:-1;;;11679:980:1:o
Swarm Source
ipfs://a1ae97801e5cff82afe27fe6f09c0702b422a352baffd006de661c236c07baa3
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.