Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 6 from a total of 6 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 17838090 | 965 days ago | IN | 0 ETH | 0.00072949 | ||||
| Transfer | 17832330 | 965 days ago | IN | 0 ETH | 0.00104056 | ||||
| Transfer | 17831768 | 966 days ago | IN | 0 ETH | 0.00072942 | ||||
| Transfer | 17831753 | 966 days ago | IN | 0 ETH | 0.00119586 | ||||
| Transfer | 17831747 | 966 days ago | IN | 0 ETH | 0.00118452 | ||||
| Approve | 17805180 | 969 days ago | IN | 0 ETH | 0.00077197 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PhoenixToken
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;
pragma experimental ABIEncoderV2;
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
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);
}
}
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender)
external
view
returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}
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);
}
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}.
*
* 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 default value returned by this function, unless
* it's 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:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount)
public
virtual
override
returns (bool)
{
address owner = _msgSender();
_transfer(owner, to, 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}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount)
public
virtual
override
returns (bool)
{
address owner = _msgSender();
_approve(owner, 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}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue)
public
virtual
returns (bool)
{
address owner = _msgSender();
_approve(owner, spender, allowance(owner, spender) + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue)
public
virtual
returns (bool)
{
address owner = _msgSender();
uint256 currentAllowance = allowance(owner, spender);
require(
currentAllowance >= subtractedValue,
"ERC20: decreased allowance below zero"
);
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `from` to `to`.
*
* 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:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(
fromBalance >= amount,
"ERC20: transfer amount exceeds balance"
);
unchecked {
_balances[from] = fromBalance - amount;
// Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
// decrementing then incrementing.
_balances[to] += amount;
}
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, 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;
unchecked {
// Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
_balances[account] += amount;
}
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
// Overflow not possible: amount <= accountBalance <= totalSupply.
_totalSupply -= amount;
}
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), 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 Updates `owner` s allowance for `spender` based on spent `amount`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(
currentAllowance >= amount,
"ERC20: insufficient allowance"
);
unchecked {
_approve(owner, spender, currentAllowance - 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 {}
}
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}
// pragma solidity >=0.5.0;
interface IUniswapV2Factory {
event PairCreated(
address indexed token0,
address indexed token1,
address pair,
uint256
);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB)
external
view
returns (address pair);
function allPairs(uint256) external view returns (address pair);
function allPairsLength() external view returns (uint256);
function createPair(address tokenA, address tokenB)
external
returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
// pragma solidity >=0.5.0;
interface IUniswapV2Pair {
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
event Transfer(address indexed from, address indexed to, uint256 value);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint256);
function balanceOf(address owner) external view returns (uint256);
function allowance(address owner, address spender)
external
view
returns (uint256);
function approve(address spender, uint256 value) external returns (bool);
function transfer(address to, uint256 value) external returns (bool);
function transferFrom(
address from,
address to,
uint256 value
) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint256);
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
event Mint(address indexed sender, uint256 amount0, uint256 amount1);
event Burn(
address indexed sender,
uint256 amount0,
uint256 amount1,
address indexed to
);
event Swap(
address indexed sender,
uint256 amount0In,
uint256 amount1In,
uint256 amount0Out,
uint256 amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint256);
function factory() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function getReserves()
external
view
returns (
uint112 reserve0,
uint112 reserve1,
uint32 blockTimestampLast
);
function price0CumulativeLast() external view returns (uint256);
function price1CumulativeLast() external view returns (uint256);
function kLast() external view returns (uint256);
function mint(address to) external returns (uint256 liquidity);
function burn(address to)
external
returns (uint256 amount0, uint256 amount1);
function swap(
uint256 amount0Out,
uint256 amount1Out,
address to,
bytes calldata data
) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
// pragma solidity >=0.6.2;
interface IUniswapV2Router01 {
function factory() external pure returns (address);
function WETH() external pure returns (address);
function addLiquidity(
address tokenA,
address tokenB,
uint256 amountADesired,
uint256 amountBDesired,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
)
external
returns (
uint256 amountA,
uint256 amountB,
uint256 liquidity
);
function addLiquidityETH(
address token,
uint256 amountTokenDesired,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
)
external
payable
returns (
uint256 amountToken,
uint256 amountETH,
uint256 liquidity
);
function removeLiquidity(
address tokenA,
address tokenB,
uint256 liquidity,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline
) external returns (uint256 amountA, uint256 amountB);
function removeLiquidityETH(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
) external returns (uint256 amountToken, uint256 amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint256 liquidity,
uint256 amountAMin,
uint256 amountBMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountA, uint256 amountB);
function removeLiquidityETHWithPermit(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountToken, uint256 amountETH);
function swapExactTokensForTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapTokensForExactTokens(
uint256 amountOut,
uint256 amountInMax,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapExactETHForTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable returns (uint256[] memory amounts);
function swapTokensForExactETH(
uint256 amountOut,
uint256 amountInMax,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapExactTokensForETH(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external returns (uint256[] memory amounts);
function swapETHForExactTokens(
uint256 amountOut,
address[] calldata path,
address to,
uint256 deadline
) external payable returns (uint256[] memory amounts);
function quote(
uint256 amountA,
uint256 reserveA,
uint256 reserveB
) external pure returns (uint256 amountB);
function getAmountOut(
uint256 amountIn,
uint256 reserveIn,
uint256 reserveOut
) external pure returns (uint256 amountOut);
function getAmountIn(
uint256 amountOut,
uint256 reserveIn,
uint256 reserveOut
) external pure returns (uint256 amountIn);
function getAmountsOut(uint256 amountIn, address[] calldata path)
external
view
returns (uint256[] memory amounts);
function getAmountsIn(uint256 amountOut, address[] calldata path)
external
view
returns (uint256[] memory amounts);
}
// pragma solidity >=0.6.2;
// import './IUniswapV2Router01.sol';
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline
) external returns (uint256 amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint256 liquidity,
uint256 amountTokenMin,
uint256 amountETHMin,
address to,
uint256 deadline,
bool approveMax,
uint8 v,
bytes32 r,
bytes32 s
) external returns (uint256 amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint256 amountIn,
uint256 amountOutMin,
address[] calldata path,
address to,
uint256 deadline
) external;
}
contract PhoenixToken is ERC20, Ownable {
using SafeMath for uint256;
IUniswapV2Router02 public immutable uniswapV2Router;
address public immutable uniswapV2Pair;
address public constant deadAddress = address(0xdead);
bool private swapping;
address public marketingWallet;
address public lpWallet;
address public airdropWallet;
address public cexOthersWallet;
uint256 public maxTransactionAmount;
uint256 public swapTokensAtAmount;
uint256 public maxWallet;
uint256 public buyTotalFees;
uint256 private buyMarketingFee;
uint256 private buyLiquidityFee;
uint256 public sellTotalFees;
uint256 private sellMarketingFee;
uint256 private sellLiquidityFee;
uint256 private tokensForMarketing;
uint256 private tokensForLiquidity;
uint256 private previousFee;
mapping(address => bool) private _isExcludedFromFees;
mapping(address => bool) private _isExcludedMaxTransactionAmount;
mapping(address => bool) private automatedMarketMakerPairs;
event ExcludeFromFees(address indexed account, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event marketingWalletUpdated(
address indexed newWallet,
address indexed oldWallet
);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiquidity
);
constructor() ERC20("Phoenix Token", "Phoenix") {
uniswapV2Router = IUniswapV2Router02(
0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
);
uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
address(this),
uniswapV2Router.WETH()
);
uint256 totalSupply = 950_000_000_000 ether;
maxTransactionAmount = totalSupply;
maxWallet = totalSupply;
swapTokensAtAmount = (totalSupply * 1) / 1000;
buyMarketingFee = 1;
buyLiquidityFee = 0;
buyTotalFees = buyMarketingFee + buyLiquidityFee;
sellMarketingFee = 10;
sellLiquidityFee = 0;
sellTotalFees = sellMarketingFee + sellLiquidityFee;
previousFee = sellTotalFees;
marketingWallet = owner();
lpWallet = 0x29b8230bD2B1B697B496cD044Cc74Ff286805C63;
airdropWallet = 0x863271B51fdD065138EF48f86F2e40a06Afdb039;
cexOthersWallet = 0x4Fe52264105d55cb9Dc9a4C73BC4e7cC322566e5;
excludeFromFees(owner(), true);
excludeFromFees(address(this), true);
excludeFromFees(deadAddress, true);
excludeFromFees(lpWallet, true);
excludeFromFees(airdropWallet, true);
excludeFromFees(cexOthersWallet, true);
excludeFromMaxTransaction(owner(), true);
excludeFromMaxTransaction(address(this), true);
excludeFromMaxTransaction(deadAddress, true);
excludeFromMaxTransaction(address(uniswapV2Router), true);
excludeFromMaxTransaction(address(uniswapV2Pair), true);
excludeFromMaxTransaction(lpWallet, true);
excludeFromMaxTransaction(airdropWallet, true);
excludeFromMaxTransaction(cexOthersWallet, true);
_setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
_mint(msg.sender, totalSupply * 48 / 100);
_mint(lpWallet, totalSupply * 24 / 100);
_mint(airdropWallet, totalSupply * 20 / 100);
_mint(cexOthersWallet, totalSupply * 8 / 100);
}
receive() external payable {}
function updateSwapTokensAtAmount(uint256 newAmount)
external
onlyOwner
returns (bool)
{
require(
newAmount >= (totalSupply() * 1) / 100000,
"ERC20: Swap amount cannot be lower than 0.001% total supply."
);
require(
newAmount <= (totalSupply() * 5) / 1000,
"ERC20: Swap amount cannot be higher than 0.5% total supply."
);
swapTokensAtAmount = newAmount;
return true;
}
function updateMaxWalletAndTxnAmount(
uint256 newTxnNum,
uint256 newMaxWalletNum
) external onlyOwner {
require(
newTxnNum >= ((totalSupply() * 5) / 1000),
"ERC20: Cannot set maxTxn lower than 0.5%"
);
require(
newMaxWalletNum >= ((totalSupply() * 5) / 1000),
"ERC20: Cannot set maxWallet lower than 0.5%"
);
maxWallet = newMaxWalletNum;
maxTransactionAmount = newTxnNum;
}
function excludeFromMaxTransaction(address updAds, bool isEx)
public
onlyOwner
{
_isExcludedMaxTransactionAmount[updAds] = isEx;
}
function updateSellFees(uint256 _marketingFee, uint256 _liquidityFee)
public
onlyOwner
{
sellMarketingFee = _marketingFee;
sellLiquidityFee = _liquidityFee;
sellTotalFees = sellMarketingFee + sellLiquidityFee;
previousFee = sellTotalFees;
require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function withdrawStuckETH() public onlyOwner {
bool success;
(success, ) = address(msg.sender).call{value: address(this).balance}(
""
);
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
automatedMarketMakerPairs[pair] = value;
emit SetAutomatedMarketMakerPair(pair, value);
}
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 (
from != owner() &&
to != owner() &&
to != address(0) &&
to != deadAddress &&
!swapping
) {
//when buy
if (
automatedMarketMakerPairs[from] &&
!_isExcludedMaxTransactionAmount[to]
) {
require(
amount <= maxTransactionAmount,
"ERC20: Buy transfer amount exceeds the maxTransactionAmount."
);
require(
amount + balanceOf(to) <= maxWallet,
"ERC20: Max wallet exceeded"
);
}
//when sell
else if (
automatedMarketMakerPairs[to] &&
!_isExcludedMaxTransactionAmount[from]
) {
require(
amount <= maxTransactionAmount,
"ERC20: Sell transfer amount exceeds the maxTransactionAmount."
);
} else if (!_isExcludedMaxTransactionAmount[to]) {
require(
amount + balanceOf(to) <= maxWallet,
"ERC20: Max wallet exceeded"
);
}
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if (
canSwap &&
!swapping &&
!automatedMarketMakerPairs[from] &&
!_isExcludedFromFees[from] &&
!_isExcludedFromFees[to]
) {
swapping = true;
swapBack();
swapping = false;
}
bool takeFee = !swapping;
if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
uint256 fees = 0;
if (takeFee) {
// on sell
if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
fees = amount.mul(sellTotalFees).div(100);
tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
}
// on buy
else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
fees = amount.mul(buyTotalFees).div(100);
tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
}
if (fees > 0) {
super._transfer(from, address(this), fees);
}
amount -= fees;
}
super._transfer(from, to, amount);
sellTotalFees = previousFee;
}
function swapTokensForEth(uint256 tokenAmount) private {
address[] memory path = new address[](2);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
_approve(address(this), address(uniswapV2Router), tokenAmount);
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0,
0,
owner(),
block.timestamp
);
}
function swapBack() private {
uint256 contractBalance = balanceOf(address(this));
uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing;
bool success;
if (contractBalance == 0 || totalTokensToSwap == 0) {
return;
}
if (contractBalance > swapTokensAtAmount * 20) {
contractBalance = swapTokensAtAmount * 20;
}
uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /
totalTokensToSwap /
2;
uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);
uint256 initialETHBalance = address(this).balance;
swapTokensForEth(amountToSwapForETH);
uint256 ethBalance = address(this).balance.sub(initialETHBalance);
uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(
totalTokensToSwap
);
uint256 ethForLiquidity = ethBalance - ethForMarketing;
tokensForLiquidity = 0;
tokensForMarketing = 0;
if (liquidityTokens > 0 && ethForLiquidity > 0) {
addLiquidity(liquidityTokens, ethForLiquidity);
emit SwapAndLiquify(
amountToSwapForETH,
ethForLiquidity,
tokensForLiquidity
);
}
(success, ) = address(marketingWallet).call{value: address(this).balance}(
""
);
}
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"marketingWalletUpdated","type":"event"},{"inputs":[],"name":"airdropWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cexOthersWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60c06040523480156200001157600080fd5b506040518060400160405280600d81526020017f50686f656e697820546f6b656e000000000000000000000000000000000000008152506040518060400160405280600781526020017f50686f656e69780000000000000000000000000000000000000000000000000081525081600390816200008f919062000f0b565b508060049081620000a1919062000f0b565b505050620000c4620000b8620007ca60201b60201c565b620007d260201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200015a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018091906200105c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021091906200105c565b6040518363ffffffff1660e01b81526004016200022f9291906200109f565b6020604051808303816000875af11580156200024f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027591906200105c565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060006c0bfd9d94f90fbbe204f0000000905080600a8190555080600c819055506103e8600182620002da9190620010fb565b620002e6919062001175565b600b819055506001600e819055506000600f81905550600f54600e546200030e9190620011ad565b600d81905550600a6011819055506000601281905550601254601154620003369190620011ad565b601081905550601054601581905550620003556200089860201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507329b8230bd2b1b697b496cd044cc74ff286805c63600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073863271b51fdd065138ef48f86f2e40a06afdb039600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734fe52264105d55cb9dc9a4c73bc4e7cc322566e5600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004b6620004a86200089860201b60201c565b6001620008c260201b60201c565b620004c9306001620008c260201b60201c565b620004de61dead6001620008c260201b60201c565b62000513600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008c260201b60201c565b62000548600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008c260201b60201c565b6200057d600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620008c260201b60201c565b6200059f620005916200089860201b60201c565b60016200097d60201b60201c565b620005b23060016200097d60201b60201c565b620005c761dead60016200097d60201b60201c565b620005dc60805160016200097d60201b60201c565b620005f160a05160016200097d60201b60201c565b62000626600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200097d60201b60201c565b6200065b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200097d60201b60201c565b62000690600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200097d60201b60201c565b620006a560a0516001620009e860201b60201c565b620006d3336064603084620006bb9190620010fb565b620006c7919062001175565b62000a8960201b60201c565b62000723600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646018846200070b9190620010fb565b62000717919062001175565b62000a8960201b60201c565b62000773600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660646014846200075b9190620010fb565b62000767919062001175565b62000a8960201b60201c565b620007c3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166064600884620007ab9190620010fb565b620007b7919062001175565b62000a8960201b60201c565b5062001345565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008d262000bf660201b60201c565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000971919062001205565b60405180910390a25050565b6200098d62000bf660201b60201c565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000afb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000af29062001283565b60405180910390fd5b62000b0f6000838362000c8760201b60201c565b806002600082825462000b239190620011ad565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bd69190620012b6565b60405180910390a362000bf26000838362000c8c60201b60201c565b5050565b62000c06620007ca60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000c2c6200089860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c7c9062001323565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d1357607f821691505b60208210810362000d295762000d2862000ccb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d937fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d54565b62000d9f868362000d54565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000dec62000de662000de08462000db7565b62000dc1565b62000db7565b9050919050565b6000819050919050565b62000e088362000dcb565b62000e2062000e178262000df3565b84845462000d61565b825550505050565b600090565b62000e3762000e28565b62000e4481848462000dfd565b505050565b5b8181101562000e6c5762000e6060008262000e2d565b60018101905062000e4a565b5050565b601f82111562000ebb5762000e858162000d2f565b62000e908462000d44565b8101602085101562000ea0578190505b62000eb862000eaf8562000d44565b83018262000e49565b50505b505050565b600082821c905092915050565b600062000ee06000198460080262000ec0565b1980831691505092915050565b600062000efb838362000ecd565b9150826002028217905092915050565b62000f168262000c91565b67ffffffffffffffff81111562000f325762000f3162000c9c565b5b62000f3e825462000cfa565b62000f4b82828562000e70565b600060209050601f83116001811462000f83576000841562000f6e578287015190505b62000f7a858262000eed565b86555062000fea565b601f19841662000f938662000d2f565b60005b8281101562000fbd5784890151825560018201915060208501945060208101905062000f96565b8683101562000fdd578489015162000fd9601f89168262000ecd565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620010248262000ff7565b9050919050565b620010368162001017565b81146200104257600080fd5b50565b60008151905062001056816200102b565b92915050565b60006020828403121562001075576200107462000ff2565b5b6000620010858482850162001045565b91505092915050565b620010998162001017565b82525050565b6000604082019050620010b660008301856200108e565b620010c560208301846200108e565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620011088262000db7565b9150620011158362000db7565b9250828202620011258162000db7565b915082820484148315176200113f576200113e620010cc565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011828262000db7565b91506200118f8362000db7565b925082620011a257620011a162001146565b5b828204905092915050565b6000620011ba8262000db7565b9150620011c78362000db7565b9250828201905080821115620011e257620011e1620010cc565b5b92915050565b60008115159050919050565b620011ff81620011e8565b82525050565b60006020820190506200121c6000830184620011f4565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200126b601f8362001222565b9150620012788262001233565b602082019050919050565b600060208201905081810360008301526200129e816200125c565b9050919050565b620012b08162000db7565b82525050565b6000602082019050620012cd6000830184620012a5565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200130b60208362001222565b91506200131882620012d3565b602082019050919050565b600060208201905081810360008301526200133e81620012fc565b9050919050565b60805160a05161388e6200138e60003960006109d201526000818161092f0152818161236801528181612449015281816124700152818161250c0152612533015261388e6000f3fe6080604052600436106101f25760003560e01c80637571336a1161010d578063c0246668116100a0578063dd62ed3e1161006f578063dd62ed3e14610726578063e2f4560514610763578063f2fde38b1461078e578063f5648a4f146107b7578063f8b45b05146107ce576101f9565b8063c02466681461066a578063c8c8ebe414610693578063d257b34f146106be578063d85ba063146106fb576101f9565b806396188399116100dc578063961883991461059c578063a14779c9146105c5578063a457c2d7146105f0578063a9059cbb1461062d576101f9565b80637571336a146104f257806375f0a8741461051b5780638da5cb5b1461054657806395d89b4114610571576101f9565b806339509351116101855780636a486a8e116101545780636a486a8e146104485780636e1522151461047357806370a082311461049e578063715018a6146104db576101f9565b8063395093511461037857806349bd5a5e146103b55780634fbee193146103e05780636303516c1461041d576101f9565b806318160ddd116101c157806318160ddd146102ba57806323b872dd146102e557806327c8f83514610322578063313ce5671461034d576101f9565b806302dbd8f8146101fe57806306fdde0314610227578063095ea7b3146102525780631694505e1461028f576101f9565b366101f957005b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612622565b6107f9565b005b34801561023357600080fd5b5061023c610878565b60405161024991906126f2565b60405180910390f35b34801561025e57600080fd5b5061027960048036038101906102749190612772565b61090a565b60405161028691906127cd565b60405180910390f35b34801561029b57600080fd5b506102a461092d565b6040516102b19190612847565b60405180910390f35b3480156102c657600080fd5b506102cf610951565b6040516102dc9190612871565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061288c565b61095b565b60405161031991906127cd565b60405180910390f35b34801561032e57600080fd5b5061033761098a565b60405161034491906128ee565b60405180910390f35b34801561035957600080fd5b50610362610990565b60405161036f9190612925565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612772565b610999565b6040516103ac91906127cd565b60405180910390f35b3480156103c157600080fd5b506103ca6109d0565b6040516103d791906128ee565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190612940565b6109f4565b60405161041491906127cd565b60405180910390f35b34801561042957600080fd5b50610432610a4a565b60405161043f91906128ee565b60405180910390f35b34801561045457600080fd5b5061045d610a70565b60405161046a9190612871565b60405180910390f35b34801561047f57600080fd5b50610488610a76565b60405161049591906128ee565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190612940565b610a9c565b6040516104d29190612871565b60405180910390f35b3480156104e757600080fd5b506104f0610ae4565b005b3480156104fe57600080fd5b5061051960048036038101906105149190612999565b610af8565b005b34801561052757600080fd5b50610530610b5b565b60405161053d91906128ee565b60405180910390f35b34801561055257600080fd5b5061055b610b81565b60405161056891906128ee565b60405180910390f35b34801561057d57600080fd5b50610586610bab565b60405161059391906126f2565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612622565b610c3d565b005b3480156105d157600080fd5b506105da610d1d565b6040516105e791906128ee565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612772565b610d43565b60405161062491906127cd565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612772565b610dba565b60405161066191906127cd565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612999565b610ddd565b005b34801561069f57600080fd5b506106a8610e8e565b6040516106b59190612871565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906129d9565b610e94565b6040516106f291906127cd565b60405180910390f35b34801561070757600080fd5b50610710610f75565b60405161071d9190612871565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190612a06565b610f7b565b60405161075a9190612871565b60405180910390f35b34801561076f57600080fd5b50610778611002565b6040516107859190612871565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190612940565b611008565b005b3480156107c357600080fd5b506107cc61108b565b005b3480156107da57600080fd5b506107e3611104565b6040516107f09190612871565b60405180910390f35b61080161110a565b816011819055508060128190555060125460115461081f9190612a75565b601081905550601054601581905550600a6010541115610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b90612b1b565b60405180910390fd5b5050565b60606003805461088790612b6a565b80601f01602080910402602001604051908101604052809291908181526020018280546108b390612b6a565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b600080610915611188565b9050610922818585611190565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b600080610966611188565b9050610973858285611359565b61097e8585856113e5565b60019150509392505050565b61dead81565b60006012905090565b6000806109a4611188565b90506109c58185856109b68589610f7b565b6109c09190612a75565b611190565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aec61110a565b610af66000611d34565b565b610b0061110a565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610bba90612b6a565b80601f0160208091040260200160405190810160405280929190818152602001828054610be690612b6a565b8015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b610c4561110a565b6103e86005610c52610951565b610c5c9190612b9b565b610c669190612c0c565b821015610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612caf565b60405180910390fd5b6103e86005610cb5610951565b610cbf9190612b9b565b610cc99190612c0c565b811015610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290612d41565b60405180910390fd5b80600c8190555081600a819055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d4e611188565b90506000610d5c8286610f7b565b905083811015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890612dd3565b60405180910390fd5b610dae8286868403611190565b60019250505092915050565b600080610dc5611188565b9050610dd28185856113e5565b600191505092915050565b610de561110a565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610e8291906127cd565b60405180910390a25050565b600a5481565b6000610e9e61110a565b620186a06001610eac610951565b610eb69190612b9b565b610ec09190612c0c565b821015610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990612e65565b60405180910390fd5b6103e86005610f0f610951565b610f199190612b9b565b610f239190612c0c565b821115610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612ef7565b60405180910390fd5b81600b8190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b61101061110a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690612f89565b60405180910390fd5b61108881611d34565b50565b61109361110a565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110b990612fda565b60006040518083038185875af1925050503d80600081146110f6576040519150601f19603f3d011682016040523d82523d6000602084013e6110fb565b606091505b50508091505050565b600c5481565b611112611188565b73ffffffffffffffffffffffffffffffffffffffff16611130610b81565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061303b565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f6906130cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112659061315f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161134c9190612871565b60405180910390a3505050565b60006113658484610f7b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113df57818110156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c8906131cb565b60405180910390fd5b6113de8484848403611190565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b9061325d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906132ef565b60405180910390fd5b600081036114dc576114d783836000611dfa565b611d2f565b6114e4610b81565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115525750611522610b81565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561158b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115c5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115de5750600560149054906101000a900460ff16155b156118cc57601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156116865750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561172d57600a548111156116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613381565b60405180910390fd5b600c546116dc83610a9c565b826116e79190612a75565b1115611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906133ed565b60405180910390fd5b6118cb565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156117d05750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561181f57600a5481111561181a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118119061347f565b60405180910390fd5b6118ca565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118c957600c5461187c83610a9c565b826118879190612a75565b11156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906133ed565b60405180910390fd5b5b5b5b5b60006118d730610a9c565b90506000600b5482101590508080156118fd5750600560149054906101000a900460ff16155b80156119535750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119a95750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119ff5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a43576001600560146101000a81548160ff021916908315150217905550611a27612070565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611af95750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611b0357600090505b60008115611d1657601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b6657506000601054115b15611c0057611b936064611b856010548861227d90919063ffffffff16565b61229390919063ffffffff16565b905060105460125482611ba69190612b9b565b611bb09190612c0c565b60146000828254611bc19190612a75565b9250508190555060105460115482611bd99190612b9b565b611be39190612c0c565b60136000828254611bf49190612a75565b92505081905550611cf2565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c5b57506000600d54115b15611cf157611c886064611c7a600d548861227d90919063ffffffff16565b61229390919063ffffffff16565b9050600d54600f5482611c9b9190612b9b565b611ca59190612c0c565b60146000828254611cb69190612a75565b92505081905550600d54600e5482611cce9190612b9b565b611cd89190612c0c565b60136000828254611ce99190612a75565b925050819055505b5b6000811115611d0757611d06873083611dfa565b5b8085611d13919061349f565b94505b611d21878787611dfa565b601554601081905550505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e609061325d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf906132ef565b60405180910390fd5b611ee38383836122a9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613545565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120579190612871565b60405180910390a361206a8484846122ae565b50505050565b600061207b30610a9c565b9050600060135460145461208f9190612a75565b90506000808314806120a15750600082145b156120ae5750505061227b565b6014600b546120bd9190612b9b565b8311156120d6576014600b546120d39190612b9b565b92505b6000600283601454866120e99190612b9b565b6120f39190612c0c565b6120fd9190612c0c565b9050600061211482866122b390919063ffffffff16565b90506000479050612124826122c9565b600061213982476122b390919063ffffffff16565b90506000612164876121566013548561227d90919063ffffffff16565b61229390919063ffffffff16565b905060008183612174919061349f565b9050600060148190555060006013819055506000861180156121965750600081115b156121e3576121a58682612506565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826014546040516121da93929190613565565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161222990612fda565b60006040518083038185875af1925050503d8060008114612266576040519150601f19603f3d011682016040523d82523d6000602084013e61226b565b606091505b5050809750505050505050505050505b565b6000818361228b9190612b9b565b905092915050565b600081836122a19190612c0c565b905092915050565b505050565b505050565b600081836122c1919061349f565b905092915050565b6000600267ffffffffffffffff8111156122e6576122e561359c565b5b6040519080825280602002602001820160405280156123145781602001602082028036833780820191505090505b509050308160008151811061232c5761232b6135cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f5919061360f565b81600181518110612409576124086135cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061246e307f000000000000000000000000000000000000000000000000000000000000000084611190565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016124d0959493929190613735565b600060405180830381600087803b1580156124ea57600080fd5b505af11580156124fe573d6000803e3d6000fd5b505050505050565b612531307f000000000000000000000000000000000000000000000000000000000000000084611190565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061257b610b81565b426040518863ffffffff1660e01b815260040161259d9695949392919061378f565b60606040518083038185885af11580156125bb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125e09190613805565b5050505050565b600080fd5b6000819050919050565b6125ff816125ec565b811461260a57600080fd5b50565b60008135905061261c816125f6565b92915050565b60008060408385031215612639576126386125e7565b5b60006126478582860161260d565b92505060206126588582860161260d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561269c578082015181840152602081019050612681565b60008484015250505050565b6000601f19601f8301169050919050565b60006126c482612662565b6126ce818561266d565b93506126de81856020860161267e565b6126e7816126a8565b840191505092915050565b6000602082019050818103600083015261270c81846126b9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061273f82612714565b9050919050565b61274f81612734565b811461275a57600080fd5b50565b60008135905061276c81612746565b92915050565b60008060408385031215612789576127886125e7565b5b60006127978582860161275d565b92505060206127a88582860161260d565b9150509250929050565b60008115159050919050565b6127c7816127b2565b82525050565b60006020820190506127e260008301846127be565b92915050565b6000819050919050565b600061280d61280861280384612714565b6127e8565b612714565b9050919050565b600061281f826127f2565b9050919050565b600061283182612814565b9050919050565b61284181612826565b82525050565b600060208201905061285c6000830184612838565b92915050565b61286b816125ec565b82525050565b60006020820190506128866000830184612862565b92915050565b6000806000606084860312156128a5576128a46125e7565b5b60006128b38682870161275d565b93505060206128c48682870161275d565b92505060406128d58682870161260d565b9150509250925092565b6128e881612734565b82525050565b600060208201905061290360008301846128df565b92915050565b600060ff82169050919050565b61291f81612909565b82525050565b600060208201905061293a6000830184612916565b92915050565b600060208284031215612956576129556125e7565b5b60006129648482850161275d565b91505092915050565b612976816127b2565b811461298157600080fd5b50565b6000813590506129938161296d565b92915050565b600080604083850312156129b0576129af6125e7565b5b60006129be8582860161275d565b92505060206129cf85828601612984565b9150509250929050565b6000602082840312156129ef576129ee6125e7565b5b60006129fd8482850161260d565b91505092915050565b60008060408385031215612a1d57612a1c6125e7565b5b6000612a2b8582860161275d565b9250506020612a3c8582860161275d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a80826125ec565b9150612a8b836125ec565b9250828201905080821115612aa357612aa2612a46565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420313025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b0560248361266d565b9150612b1082612aa9565b604082019050919050565b60006020820190508181036000830152612b3481612af8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b8257607f821691505b602082108103612b9557612b94612b3b565b5b50919050565b6000612ba6826125ec565b9150612bb1836125ec565b9250828202612bbf816125ec565b91508282048414831517612bd657612bd5612a46565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c17826125ec565b9150612c22836125ec565b925082612c3257612c31612bdd565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b6000612c9960288361266d565b9150612ca482612c3d565b604082019050919050565b60006020820190508181036000830152612cc881612c8c565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b6000612d2b602b8361266d565b9150612d3682612ccf565b604082019050919050565b60006020820190508181036000830152612d5a81612d1e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612dbd60258361266d565b9150612dc882612d61565b604082019050919050565b60006020820190508181036000830152612dec81612db0565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b6000612e4f603c8361266d565b9150612e5a82612df3565b604082019050919050565b60006020820190508181036000830152612e7e81612e42565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b6000612ee1603b8361266d565b9150612eec82612e85565b604082019050919050565b60006020820190508181036000830152612f1081612ed4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f7360268361266d565b9150612f7e82612f17565b604082019050919050565b60006020820190508181036000830152612fa281612f66565b9050919050565b600081905092915050565b50565b6000612fc4600083612fa9565b9150612fcf82612fb4565b600082019050919050565b6000612fe582612fb7565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061302560208361266d565b915061303082612fef565b602082019050919050565b6000602082019050818103600083015261305481613018565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130b760248361266d565b91506130c28261305b565b604082019050919050565b600060208201905081810360008301526130e6816130aa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061314960228361266d565b9150613154826130ed565b604082019050919050565b600060208201905081810360008301526131788161313c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131b5601d8361266d565b91506131c08261317f565b602082019050919050565b600060208201905081810360008301526131e4816131a8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061324760258361266d565b9150613252826131eb565b604082019050919050565b600060208201905081810360008301526132768161323a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132d960238361266d565b91506132e48261327d565b604082019050919050565b60006020820190508181036000830152613308816132cc565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b600061336b603c8361266d565b91506133768261330f565b604082019050919050565b6000602082019050818103600083015261339a8161335e565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b60006133d7601a8361266d565b91506133e2826133a1565b602082019050919050565b60006020820190508181036000830152613406816133ca565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b6000613469603d8361266d565b91506134748261340d565b604082019050919050565b600060208201905081810360008301526134988161345c565b9050919050565b60006134aa826125ec565b91506134b5836125ec565b92508282039050818111156134cd576134cc612a46565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061352f60268361266d565b915061353a826134d3565b604082019050919050565b6000602082019050818103600083015261355e81613522565b9050919050565b600060608201905061357a6000830186612862565b6135876020830185612862565b6135946040830184612862565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061360981612746565b92915050565b600060208284031215613625576136246125e7565b5b6000613633848285016135fa565b91505092915050565b6000819050919050565b600061366161365c6136578461363c565b6127e8565b6125ec565b9050919050565b61367181613646565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136ac81612734565b82525050565b60006136be83836136a3565b60208301905092915050565b6000602082019050919050565b60006136e282613677565b6136ec8185613682565b93506136f783613693565b8060005b8381101561372857815161370f88826136b2565b975061371a836136ca565b9250506001810190506136fb565b5085935050505092915050565b600060a08201905061374a6000830188612862565b6137576020830187613668565b818103604083015261376981866136d7565b905061377860608301856128df565b6137856080830184612862565b9695505050505050565b600060c0820190506137a460008301896128df565b6137b16020830188612862565b6137be6040830187613668565b6137cb6060830186613668565b6137d860808301856128df565b6137e560a0830184612862565b979650505050505050565b6000815190506137ff816125f6565b92915050565b60008060006060848603121561381e5761381d6125e7565b5b600061382c868287016137f0565b935050602061383d868287016137f0565b925050604061384e868287016137f0565b915050925092509256fea264697066735822122001383b89267a2990f41e7d5940bc1a12df55d6ae505051d78caaf6b99bad7d4d64736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101f25760003560e01c80637571336a1161010d578063c0246668116100a0578063dd62ed3e1161006f578063dd62ed3e14610726578063e2f4560514610763578063f2fde38b1461078e578063f5648a4f146107b7578063f8b45b05146107ce576101f9565b8063c02466681461066a578063c8c8ebe414610693578063d257b34f146106be578063d85ba063146106fb576101f9565b806396188399116100dc578063961883991461059c578063a14779c9146105c5578063a457c2d7146105f0578063a9059cbb1461062d576101f9565b80637571336a146104f257806375f0a8741461051b5780638da5cb5b1461054657806395d89b4114610571576101f9565b806339509351116101855780636a486a8e116101545780636a486a8e146104485780636e1522151461047357806370a082311461049e578063715018a6146104db576101f9565b8063395093511461037857806349bd5a5e146103b55780634fbee193146103e05780636303516c1461041d576101f9565b806318160ddd116101c157806318160ddd146102ba57806323b872dd146102e557806327c8f83514610322578063313ce5671461034d576101f9565b806302dbd8f8146101fe57806306fdde0314610227578063095ea7b3146102525780631694505e1461028f576101f9565b366101f957005b600080fd5b34801561020a57600080fd5b5061022560048036038101906102209190612622565b6107f9565b005b34801561023357600080fd5b5061023c610878565b60405161024991906126f2565b60405180910390f35b34801561025e57600080fd5b5061027960048036038101906102749190612772565b61090a565b60405161028691906127cd565b60405180910390f35b34801561029b57600080fd5b506102a461092d565b6040516102b19190612847565b60405180910390f35b3480156102c657600080fd5b506102cf610951565b6040516102dc9190612871565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061288c565b61095b565b60405161031991906127cd565b60405180910390f35b34801561032e57600080fd5b5061033761098a565b60405161034491906128ee565b60405180910390f35b34801561035957600080fd5b50610362610990565b60405161036f9190612925565b60405180910390f35b34801561038457600080fd5b5061039f600480360381019061039a9190612772565b610999565b6040516103ac91906127cd565b60405180910390f35b3480156103c157600080fd5b506103ca6109d0565b6040516103d791906128ee565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190612940565b6109f4565b60405161041491906127cd565b60405180910390f35b34801561042957600080fd5b50610432610a4a565b60405161043f91906128ee565b60405180910390f35b34801561045457600080fd5b5061045d610a70565b60405161046a9190612871565b60405180910390f35b34801561047f57600080fd5b50610488610a76565b60405161049591906128ee565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190612940565b610a9c565b6040516104d29190612871565b60405180910390f35b3480156104e757600080fd5b506104f0610ae4565b005b3480156104fe57600080fd5b5061051960048036038101906105149190612999565b610af8565b005b34801561052757600080fd5b50610530610b5b565b60405161053d91906128ee565b60405180910390f35b34801561055257600080fd5b5061055b610b81565b60405161056891906128ee565b60405180910390f35b34801561057d57600080fd5b50610586610bab565b60405161059391906126f2565b60405180910390f35b3480156105a857600080fd5b506105c360048036038101906105be9190612622565b610c3d565b005b3480156105d157600080fd5b506105da610d1d565b6040516105e791906128ee565b60405180910390f35b3480156105fc57600080fd5b5061061760048036038101906106129190612772565b610d43565b60405161062491906127cd565b60405180910390f35b34801561063957600080fd5b50610654600480360381019061064f9190612772565b610dba565b60405161066191906127cd565b60405180910390f35b34801561067657600080fd5b50610691600480360381019061068c9190612999565b610ddd565b005b34801561069f57600080fd5b506106a8610e8e565b6040516106b59190612871565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e091906129d9565b610e94565b6040516106f291906127cd565b60405180910390f35b34801561070757600080fd5b50610710610f75565b60405161071d9190612871565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190612a06565b610f7b565b60405161075a9190612871565b60405180910390f35b34801561076f57600080fd5b50610778611002565b6040516107859190612871565b60405180910390f35b34801561079a57600080fd5b506107b560048036038101906107b09190612940565b611008565b005b3480156107c357600080fd5b506107cc61108b565b005b3480156107da57600080fd5b506107e3611104565b6040516107f09190612871565b60405180910390f35b61080161110a565b816011819055508060128190555060125460115461081f9190612a75565b601081905550601054601581905550600a6010541115610874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086b90612b1b565b60405180910390fd5b5050565b60606003805461088790612b6a565b80601f01602080910402602001604051908101604052809291908181526020018280546108b390612b6a565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b5050505050905090565b600080610915611188565b9050610922818585611190565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b600080610966611188565b9050610973858285611359565b61097e8585856113e5565b60019150509392505050565b61dead81565b60006012905090565b6000806109a4611188565b90506109c58185856109b68589610f7b565b6109c09190612a75565b611190565b600191505092915050565b7f000000000000000000000000da414c385ec6b59cf4e3b352cd4f72e484ab66ed81565b6000601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610aec61110a565b610af66000611d34565b565b610b0061110a565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610bba90612b6a565b80601f0160208091040260200160405190810160405280929190818152602001828054610be690612b6a565b8015610c335780601f10610c0857610100808354040283529160200191610c33565b820191906000526020600020905b815481529060010190602001808311610c1657829003601f168201915b5050505050905090565b610c4561110a565b6103e86005610c52610951565b610c5c9190612b9b565b610c669190612c0c565b821015610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90612caf565b60405180910390fd5b6103e86005610cb5610951565b610cbf9190612b9b565b610cc99190612c0c565b811015610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0290612d41565b60405180910390fd5b80600c8190555081600a819055505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610d4e611188565b90506000610d5c8286610f7b565b905083811015610da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9890612dd3565b60405180910390fd5b610dae8286868403611190565b60019250505092915050565b600080610dc5611188565b9050610dd28185856113e5565b600191505092915050565b610de561110a565b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610e8291906127cd565b60405180910390a25050565b600a5481565b6000610e9e61110a565b620186a06001610eac610951565b610eb69190612b9b565b610ec09190612c0c565b821015610f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef990612e65565b60405180910390fd5b6103e86005610f0f610951565b610f199190612b9b565b610f239190612c0c565b821115610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c90612ef7565b60405180910390fd5b81600b8190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600b5481565b61101061110a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361107f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107690612f89565b60405180910390fd5b61108881611d34565b50565b61109361110a565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110b990612fda565b60006040518083038185875af1925050503d80600081146110f6576040519150601f19603f3d011682016040523d82523d6000602084013e6110fb565b606091505b50508091505050565b600c5481565b611112611188565b73ffffffffffffffffffffffffffffffffffffffff16611130610b81565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061303b565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f6906130cd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112659061315f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161134c9190612871565b60405180910390a3505050565b60006113658484610f7b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146113df57818110156113d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c8906131cb565b60405180910390fd5b6113de8484848403611190565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b9061325d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906132ef565b60405180910390fd5b600081036114dc576114d783836000611dfa565b611d2f565b6114e4610b81565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156115525750611522610b81565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561158b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115c5575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115de5750600560149054906101000a900460ff16155b156118cc57601860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156116865750601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561172d57600a548111156116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790613381565b60405180910390fd5b600c546116dc83610a9c565b826116e79190612a75565b1115611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f906133ed565b60405180910390fd5b6118cb565b601860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156117d05750601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561181f57600a5481111561181a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118119061347f565b60405180910390fd5b6118ca565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166118c957600c5461187c83610a9c565b826118879190612a75565b11156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906133ed565b60405180910390fd5b5b5b5b5b60006118d730610a9c565b90506000600b5482101590508080156118fd5750600560149054906101000a900460ff16155b80156119535750601860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119a95750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119ff5750601660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a43576001600560146101000a81548160ff021916908315150217905550611a27612070565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611af95750601660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611b0357600090505b60008115611d1657601860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611b6657506000601054115b15611c0057611b936064611b856010548861227d90919063ffffffff16565b61229390919063ffffffff16565b905060105460125482611ba69190612b9b565b611bb09190612c0c565b60146000828254611bc19190612a75565b9250508190555060105460115482611bd99190612b9b565b611be39190612c0c565b60136000828254611bf49190612a75565b92505081905550611cf2565b601860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611c5b57506000600d54115b15611cf157611c886064611c7a600d548861227d90919063ffffffff16565b61229390919063ffffffff16565b9050600d54600f5482611c9b9190612b9b565b611ca59190612c0c565b60146000828254611cb69190612a75565b92505081905550600d54600e5482611cce9190612b9b565b611cd89190612c0c565b60136000828254611ce99190612a75565b925050819055505b5b6000811115611d0757611d06873083611dfa565b5b8085611d13919061349f565b94505b611d21878787611dfa565b601554601081905550505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e609061325d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecf906132ef565b60405180910390fd5b611ee38383836122a9565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611f69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6090613545565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120579190612871565b60405180910390a361206a8484846122ae565b50505050565b600061207b30610a9c565b9050600060135460145461208f9190612a75565b90506000808314806120a15750600082145b156120ae5750505061227b565b6014600b546120bd9190612b9b565b8311156120d6576014600b546120d39190612b9b565b92505b6000600283601454866120e99190612b9b565b6120f39190612c0c565b6120fd9190612c0c565b9050600061211482866122b390919063ffffffff16565b90506000479050612124826122c9565b600061213982476122b390919063ffffffff16565b90506000612164876121566013548561227d90919063ffffffff16565b61229390919063ffffffff16565b905060008183612174919061349f565b9050600060148190555060006013819055506000861180156121965750600081115b156121e3576121a58682612506565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56185826014546040516121da93929190613565565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161222990612fda565b60006040518083038185875af1925050503d8060008114612266576040519150601f19603f3d011682016040523d82523d6000602084013e61226b565b606091505b5050809750505050505050505050505b565b6000818361228b9190612b9b565b905092915050565b600081836122a19190612c0c565b905092915050565b505050565b505050565b600081836122c1919061349f565b905092915050565b6000600267ffffffffffffffff8111156122e6576122e561359c565b5b6040519080825280602002602001820160405280156123145781602001602082028036833780820191505090505b509050308160008151811061232c5761232b6135cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156123d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123f5919061360f565b81600181518110612409576124086135cb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061246e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611190565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016124d0959493929190613735565b600060405180830381600087803b1580156124ea57600080fd5b505af11580156124fe573d6000803e3d6000fd5b505050505050565b612531307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611190565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061257b610b81565b426040518863ffffffff1660e01b815260040161259d9695949392919061378f565b60606040518083038185885af11580156125bb573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125e09190613805565b5050505050565b600080fd5b6000819050919050565b6125ff816125ec565b811461260a57600080fd5b50565b60008135905061261c816125f6565b92915050565b60008060408385031215612639576126386125e7565b5b60006126478582860161260d565b92505060206126588582860161260d565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561269c578082015181840152602081019050612681565b60008484015250505050565b6000601f19601f8301169050919050565b60006126c482612662565b6126ce818561266d565b93506126de81856020860161267e565b6126e7816126a8565b840191505092915050565b6000602082019050818103600083015261270c81846126b9565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061273f82612714565b9050919050565b61274f81612734565b811461275a57600080fd5b50565b60008135905061276c81612746565b92915050565b60008060408385031215612789576127886125e7565b5b60006127978582860161275d565b92505060206127a88582860161260d565b9150509250929050565b60008115159050919050565b6127c7816127b2565b82525050565b60006020820190506127e260008301846127be565b92915050565b6000819050919050565b600061280d61280861280384612714565b6127e8565b612714565b9050919050565b600061281f826127f2565b9050919050565b600061283182612814565b9050919050565b61284181612826565b82525050565b600060208201905061285c6000830184612838565b92915050565b61286b816125ec565b82525050565b60006020820190506128866000830184612862565b92915050565b6000806000606084860312156128a5576128a46125e7565b5b60006128b38682870161275d565b93505060206128c48682870161275d565b92505060406128d58682870161260d565b9150509250925092565b6128e881612734565b82525050565b600060208201905061290360008301846128df565b92915050565b600060ff82169050919050565b61291f81612909565b82525050565b600060208201905061293a6000830184612916565b92915050565b600060208284031215612956576129556125e7565b5b60006129648482850161275d565b91505092915050565b612976816127b2565b811461298157600080fd5b50565b6000813590506129938161296d565b92915050565b600080604083850312156129b0576129af6125e7565b5b60006129be8582860161275d565b92505060206129cf85828601612984565b9150509250929050565b6000602082840312156129ef576129ee6125e7565b5b60006129fd8482850161260d565b91505092915050565b60008060408385031215612a1d57612a1c6125e7565b5b6000612a2b8582860161275d565b9250506020612a3c8582860161275d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a80826125ec565b9150612a8b836125ec565b9250828201905080821115612aa357612aa2612a46565b5b92915050565b7f45524332303a204d757374206b656570206665657320617420313025206f722060008201527f6c65737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b0560248361266d565b9150612b1082612aa9565b604082019050919050565b60006020820190508181036000830152612b3481612af8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612b8257607f821691505b602082108103612b9557612b94612b3b565b5b50919050565b6000612ba6826125ec565b9150612bb1836125ec565b9250828202612bbf816125ec565b91508282048414831517612bd657612bd5612a46565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612c17826125ec565b9150612c22836125ec565b925082612c3257612c31612bdd565b5b828204905092915050565b7f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460008201527f68616e20302e3525000000000000000000000000000000000000000000000000602082015250565b6000612c9960288361266d565b9150612ca482612c3d565b604082019050919050565b60006020820190508181036000830152612cc881612c8c565b9050919050565b7f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560008201527f72207468616e20302e3525000000000000000000000000000000000000000000602082015250565b6000612d2b602b8361266d565b9150612d3682612ccf565b604082019050919050565b60006020820190508181036000830152612d5a81612d1e565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612dbd60258361266d565b9150612dc882612d61565b604082019050919050565b60006020820190508181036000830152612dec81612db0565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760008201527f6572207468616e20302e3030312520746f74616c20737570706c792e00000000602082015250565b6000612e4f603c8361266d565b9150612e5a82612df3565b604082019050919050565b60006020820190508181036000830152612e7e81612e42565b9050919050565b7f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760008201527f686572207468616e20302e352520746f74616c20737570706c792e0000000000602082015250565b6000612ee1603b8361266d565b9150612eec82612e85565b604082019050919050565b60006020820190508181036000830152612f1081612ed4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f7360268361266d565b9150612f7e82612f17565b604082019050919050565b60006020820190508181036000830152612fa281612f66565b9050919050565b600081905092915050565b50565b6000612fc4600083612fa9565b9150612fcf82612fb4565b600082019050919050565b6000612fe582612fb7565b9150819050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061302560208361266d565b915061303082612fef565b602082019050919050565b6000602082019050818103600083015261305481613018565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006130b760248361266d565b91506130c28261305b565b604082019050919050565b600060208201905081810360008301526130e6816130aa565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061314960228361266d565b9150613154826130ed565b604082019050919050565b600060208201905081810360008301526131788161313c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006131b5601d8361266d565b91506131c08261317f565b602082019050919050565b600060208201905081810360008301526131e4816131a8565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061324760258361266d565b9150613252826131eb565b604082019050919050565b600060208201905081810360008301526132768161323a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006132d960238361266d565b91506132e48261327d565b604082019050919050565b60006020820190508181036000830152613308816132cc565b9050919050565b7f45524332303a20427579207472616e7366657220616d6f756e7420657863656560008201527f647320746865206d61785472616e73616374696f6e416d6f756e742e00000000602082015250565b600061336b603c8361266d565b91506133768261330f565b604082019050919050565b6000602082019050818103600083015261339a8161335e565b9050919050565b7f45524332303a204d61782077616c6c6574206578636565646564000000000000600082015250565b60006133d7601a8361266d565b91506133e2826133a1565b602082019050919050565b60006020820190508181036000830152613406816133ca565b9050919050565b7f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560008201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e000000602082015250565b6000613469603d8361266d565b91506134748261340d565b604082019050919050565b600060208201905081810360008301526134988161345c565b9050919050565b60006134aa826125ec565b91506134b5836125ec565b92508282039050818111156134cd576134cc612a46565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061352f60268361266d565b915061353a826134d3565b604082019050919050565b6000602082019050818103600083015261355e81613522565b9050919050565b600060608201905061357a6000830186612862565b6135876020830185612862565b6135946040830184612862565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061360981612746565b92915050565b600060208284031215613625576136246125e7565b5b6000613633848285016135fa565b91505092915050565b6000819050919050565b600061366161365c6136578461363c565b6127e8565b6125ec565b9050919050565b61367181613646565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136ac81612734565b82525050565b60006136be83836136a3565b60208301905092915050565b6000602082019050919050565b60006136e282613677565b6136ec8185613682565b93506136f783613693565b8060005b8381101561372857815161370f88826136b2565b975061371a836136ca565b9250506001810190506136fb565b5085935050505092915050565b600060a08201905061374a6000830188612862565b6137576020830187613668565b818103604083015261376981866136d7565b905061377860608301856128df565b6137856080830184612862565b9695505050505050565b600060c0820190506137a460008301896128df565b6137b16020830188612862565b6137be6040830187613668565b6137cb6060830186613668565b6137d860808301856128df565b6137e560a0830184612862565b979650505050505050565b6000815190506137ff816125f6565b92915050565b60008060006060848603121561381e5761381d6125e7565b5b600061382c868287016137f0565b935050602061383d868287016137f0565b925050604061384e868287016137f0565b915050925092509256fea264697066735822122001383b89267a2990f41e7d5940bc1a12df55d6ae505051d78caaf6b99bad7d4d64736f6c63430008120033
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.