More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 20,784 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 70144839 | 39 hrs ago | IN | 0 BNB | 0.00003367 | ||||
| Transfer | 68829926 | 13 days ago | IN | 0 BNB | 0.00000673 | ||||
| Approve | 68637918 | 14 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68124081 | 19 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021905 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021899 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021895 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021888 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021880 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021872 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021865 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021859 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021849 | 20 days ago | IN | 0 BNB | 0.00000146 | ||||
| Approve | 68021843 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021835 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021828 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021820 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021815 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021809 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021804 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021795 | 20 days ago | IN | 0 BNB | 0.00000132 | ||||
| Approve | 68021790 | 20 days ago | IN | 0 BNB | 0.00000131 | ||||
| Approve | 68021669 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 68021664 | 20 days ago | IN | 0 BNB | 0.00000231 | ||||
| Approve | 67412701 | 25 days ago | IN | 0 BNB | 0.00000465 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 15051541 | 1394 days ago | 2.40132159 BNB | ||||
| 15051541 | 1394 days ago | 2.40132159 BNB | ||||
| 15051541 | 1394 days ago | 4.83747945 BNB | ||||
| 15051541 | 1394 days ago | 4.83747945 BNB | ||||
| 15051506 | 1394 days ago | 2.39365256 BNB | ||||
| 15051506 | 1394 days ago | 2.39365256 BNB | ||||
| 15051506 | 1394 days ago | 4.82194575 BNB | ||||
| 15051506 | 1394 days ago | 4.82194575 BNB | ||||
| 15051470 | 1394 days ago | 2.39365256 BNB | ||||
| 15051470 | 1394 days ago | 2.39365256 BNB | ||||
| 15051470 | 1394 days ago | 4.82194575 BNB | ||||
| 15051470 | 1394 days ago | 4.82194575 BNB | ||||
| 15002934 | 1396 days ago | 0.00009512 BNB | ||||
| 15002934 | 1396 days ago | 2.64795752 BNB | ||||
| 15002934 | 1396 days ago | 2.64795752 BNB | ||||
| 15002934 | 1396 days ago | 5.33647875 BNB | ||||
| 15002934 | 1396 days ago | 5.33647875 BNB | ||||
| 14948128 | 1398 days ago | 0.0003124 BNB | ||||
| 14948128 | 1398 days ago | 2.74788964 BNB | ||||
| 14948128 | 1398 days ago | 2.74788964 BNB | ||||
| 14948128 | 1398 days ago | 11.31681651 BNB | ||||
| 14948128 | 1398 days ago | 16.97522477 BNB | ||||
| 14948128 | 1398 days ago | 28.29204128 BNB | ||||
| 14918963 | 1399 days ago | 0.04619872 BNB | ||||
| 14918963 | 1399 days ago | 8.50204902 BNB |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
EFT
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)Audit Report
/**
*Submitted for verification at BscScan.com on 2021-11-25
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `recipient`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address recipient, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `sender` to `recipient` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
}
}
library SafeMath {
/**
* @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) {
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
return c;
}
/**
* @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 sub(a, b, "SafeMath: subtraction overflow");
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
uint256 c = a - b;
return c;
}
/**
* @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) {
// 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 0;
}
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
return c;
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
}
/**
* @dev Returns the integer division of two unsigned integers. Reverts 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) {
require(b > 0, errorMessage);
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts 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 mod(a, b, "SafeMath: modulo by zero");
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
return a % b;
}
}
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin guidelines: functions revert instead
* of returning `false` on failure. This behavior is nonetheless conventional
* and does not conflict with the expectations of ERC20 applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
using SafeMath for uint256;
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) public {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5,05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `recipient` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
_transfer(_msgSender(), recipient, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* Requirements:
*
* - `sender` and `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
* - the caller must have allowance for ``sender``'s tokens of at least
* `amount`.
*/
function transferFrom(
address sender,
address recipient,
uint256 amount
) public virtual override returns (bool) {
_transfer(sender, recipient, amount);
_approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) {
_approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
return true;
}
/**
* @dev Moves tokens `amount` from `sender` to `recipient`.
*
* This is internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `sender` cannot be the zero address.
* - `recipient` cannot be the zero address.
* - `sender` must have a balance of at least `amount`.
*/
function _transfer(
address sender,
address recipient,
uint256 amount
) internal virtual {
require(sender != address(0), "ERC20: transfer from the zero address");
require(recipient != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(sender, recipient, amount);
_balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
_balances[recipient] = _balances[recipient].add(amount);
emit Transfer(sender, recipient, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Transfer(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);
_balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
_totalSupply = _totalSupply.sub(amount);
emit Transfer(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 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 to 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 {}
}
/**
* @title SafeMathUint
* @dev Math operations with safety checks that revert on error
*/
library SafeMathUint {
function toInt256Safe(uint256 a) internal pure returns (int256) {
int256 b = int256(a);
require(b >= 0);
return b;
}
}
/**
* @title SafeMathInt
* @dev Math operations for int256 with overflow safety checks.
*/
library SafeMathInt {
int256 private constant MIN_INT256 = int256(1) << 255;
int256 private constant MAX_INT256 = ~(int256(1) << 255);
/**
* @dev Multiplies two int256 variables and fails on overflow.
*/
function mul(int256 a, int256 b) internal pure returns (int256) {
int256 c = a * b;
// Detect overflow when multiplying MIN_INT256 with -1
require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256));
require((b == 0) || (c / b == a));
return c;
}
/**
* @dev Division of two int256 variables and fails on overflow.
*/
function div(int256 a, int256 b) internal pure returns (int256) {
// Prevent overflow when dividing MIN_INT256 by -1
require(b != -1 || a != MIN_INT256);
// Solidity already throws when dividing by 0.
return a / b;
}
/**
* @dev Subtracts two int256 variables and fails on overflow.
*/
function sub(int256 a, int256 b) internal pure returns (int256) {
int256 c = a - b;
require((b >= 0 && c <= a) || (b < 0 && c > a));
return c;
}
/**
* @dev Adds two int256 variables and fails on overflow.
*/
function add(int256 a, int256 b) internal pure returns (int256) {
int256 c = a + b;
require((b >= 0 && c >= a) || (b < 0 && c < a));
return c;
}
/**
* @dev Converts to absolute value, and fails on overflow.
*/
function abs(int256 a) internal pure returns (int256) {
require(a != MIN_INT256);
return a < 0 ? -a : a;
}
function toUint256Safe(int256 a) internal pure returns (uint256) {
require(a >= 0);
return uint256(a);
}
}
/// @title Dividend-Paying Token Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev An interface for a dividend-paying token contract.
interface DividendPayingTokenInterface {
/// @notice View the amount of dividend in wei that an address can withdraw.
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` can withdraw.
function dividendOf(address _owner) external view returns(uint256);
/// @notice Withdraws the ether distributed to the sender.
/// @dev SHOULD transfer `dividendOf(msg.sender)` wei to `msg.sender`, and `dividendOf(msg.sender)` SHOULD be 0 after the transfer.
/// MUST emit a `DividendWithdrawn` event if the amount of ether transferred is greater than 0.
function withdrawDividend() external;
/// @dev This event MUST emit when ether is distributed to token holders.
/// @param from The address which sends ether to this contract.
/// @param weiAmount The amount of distributed ether in wei.
event DividendsDistributed(
address indexed from,
uint256 weiAmount
);
/// @dev This event MUST emit when an address withdraws their dividend.
/// @param to The address which withdraws ether from this contract.
/// @param weiAmount The amount of withdrawn ether in wei.
event DividendWithdrawn(
address indexed to,
uint256 weiAmount
);
}
/// @title Dividend-Paying Token Optional Interface
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev OPTIONAL functions for a dividend-paying token contract.
interface DividendPayingTokenOptionalInterface {
/// @notice View the amount of dividend in wei that an address can withdraw.
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` can withdraw.
function withdrawableDividendOf(address _owner) external view returns(uint256);
/// @notice View the amount of dividend in wei that an address has withdrawn.
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` has withdrawn.
function withdrawnDividendOf(address _owner) external view returns(uint256);
/// @notice View the amount of dividend in wei that an address has earned in total.
/// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` has earned in total.
function accumulativeDividendOf(address _owner) external view returns(uint256);
}
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 () public {
address msgSender = _msgSender();
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(_owner == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
emit OwnershipTransferred(_owner, address(0));
_owner = 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");
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
}
}
/// @title Dividend-Paying Token
/// @author Roger Wu (https://github.com/roger-wu)
/// @dev A mintable ERC20 token that allows anyone to pay and distribute ether
/// to token holders as dividends and allows token holders to withdraw their dividends.
/// Reference: the source code of PoWH3D: https://etherscan.io/address/0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe#code
contract DividendPayingToken is ERC20, Ownable, DividendPayingTokenInterface, DividendPayingTokenOptionalInterface {
using SafeMath for uint256;
using SafeMathUint for uint256;
using SafeMathInt for int256;
address public immutable ETH = address(0x2170Ed0880ac9A755fd29B2688956BD959F933F8); //ETH
// With `magnitude`, we can properly distribute dividends even if the amount of received ether is small.
// For more discussion about choosing the value of `magnitude`,
// see https://github.com/ethereum/EIPs/issues/1726#issuecomment-472352728
uint256 constant internal magnitude = 2**128;
uint256 internal magnifiedDividendPerShare;
// About dividendCorrection:
// If the token balance of a `_user` is never changed, the dividend of `_user` can be computed with:
// `dividendOf(_user) = dividendPerShare * balanceOf(_user)`.
// When `balanceOf(_user)` is changed (via minting/burning/transferring tokens),
// `dividendOf(_user)` should not be changed,
// but the computed value of `dividendPerShare * balanceOf(_user)` is changed.
// To keep the `dividendOf(_user)` unchanged, we add a correction term:
// `dividendOf(_user) = dividendPerShare * balanceOf(_user) + dividendCorrectionOf(_user)`,
// where `dividendCorrectionOf(_user)` is updated whenever `balanceOf(_user)` is changed:
// `dividendCorrectionOf(_user) = dividendPerShare * (old balanceOf(_user)) - (new balanceOf(_user))`.
// So now `dividendOf(_user)` returns the same value before and after `balanceOf(_user)` is changed.
mapping(address => int256) internal magnifiedDividendCorrections;
mapping(address => uint256) internal withdrawnDividends;
uint256 public totalDividendsDistributed;
constructor(string memory _name, string memory _symbol) public ERC20(_name, _symbol) {
}
function distributeETHDividends(uint256 amount) public onlyOwner{
require(totalSupply() > 0);
if (amount > 0) {
magnifiedDividendPerShare = magnifiedDividendPerShare.add(
(amount).mul(magnitude) / totalSupply()
);
emit DividendsDistributed(msg.sender, amount);
totalDividendsDistributed = totalDividendsDistributed.add(amount);
}
}
/// @notice Withdraws the ether distributed to the sender.
/// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
function withdrawDividend() public virtual override {
_withdrawDividendOfUser(msg.sender);
}
/// @notice Withdraws the ether distributed to the sender.
/// @dev It emits a `DividendWithdrawn` event if the amount of withdrawn ether is greater than 0.
function _withdrawDividendOfUser(address payable user) internal returns (uint256) {
uint256 _withdrawableDividend = withdrawableDividendOf(user);
if (_withdrawableDividend > 0) {
withdrawnDividends[user] = withdrawnDividends[user].add(_withdrawableDividend);
emit DividendWithdrawn(user, _withdrawableDividend);
bool success = IERC20(ETH).transfer(user, _withdrawableDividend);
if(!success) {
withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend);
return 0;
}
return _withdrawableDividend;
}
return 0;
}
/// @notice View the amount of dividend in wei that an address can withdraw.
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` can withdraw.
function dividendOf(address _owner) public view override returns(uint256) {
return withdrawableDividendOf(_owner);
}
/// @notice View the amount of dividend in wei that an address can withdraw.
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` can withdraw.
function withdrawableDividendOf(address _owner) public view override returns(uint256) {
return accumulativeDividendOf(_owner).sub(withdrawnDividends[_owner]);
}
/// @notice View the amount of dividend in wei that an address has withdrawn.
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` has withdrawn.
function withdrawnDividendOf(address _owner) public view override returns(uint256) {
return withdrawnDividends[_owner];
}
/// @notice View the amount of dividend in wei that an address has earned in total.
/// @dev accumulativeDividendOf(_owner) = withdrawableDividendOf(_owner) + withdrawnDividendOf(_owner)
/// = (magnifiedDividendPerShare * balanceOf(_owner) + magnifiedDividendCorrections[_owner]) / magnitude
/// @param _owner The address of a token holder.
/// @return The amount of dividend in wei that `_owner` has earned in total.
function accumulativeDividendOf(address _owner) public view override returns(uint256) {
return magnifiedDividendPerShare.mul(balanceOf(_owner)).toInt256Safe()
.add(magnifiedDividendCorrections[_owner]).toUint256Safe() / magnitude;
}
/// @dev Internal function that transfer tokens from one address to another.
/// Update magnifiedDividendCorrections to keep dividends unchanged.
/// @param from The address to transfer from.
/// @param to The address to transfer to.
/// @param value The amount to be transferred.
function _transfer(address from, address to, uint256 value) internal virtual override {
require(false);
int256 _magCorrection = magnifiedDividendPerShare.mul(value).toInt256Safe();
magnifiedDividendCorrections[from] = magnifiedDividendCorrections[from].add(_magCorrection);
magnifiedDividendCorrections[to] = magnifiedDividendCorrections[to].sub(_magCorrection);
}
/// @dev Internal function that mints tokens to an account.
/// Update magnifiedDividendCorrections to keep dividends unchanged.
/// @param account The account that will receive the created tokens.
/// @param value The amount that will be created.
function _mint(address account, uint256 value) internal override {
super._mint(account, value);
magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
.sub( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
}
/// @dev Internal function that burns an amount of the token of a given account.
/// Update magnifiedDividendCorrections to keep dividends unchanged.
/// @param account The account whose tokens will be burnt.
/// @param value The amount that will be burnt.
function _burn(address account, uint256 value) internal override {
super._burn(account, value);
magnifiedDividendCorrections[account] = magnifiedDividendCorrections[account]
.add( (magnifiedDividendPerShare.mul(value)).toInt256Safe() );
}
function _setBalance(address account, uint256 newBalance) internal {
uint256 currentBalance = balanceOf(account);
if(newBalance > currentBalance) {
uint256 mintAmount = newBalance.sub(currentBalance);
_mint(account, mintAmount);
} else if(newBalance < currentBalance) {
uint256 burnAmount = currentBalance.sub(newBalance);
_burn(account, burnAmount);
}
}
}
library IterableMapping {
// Iterable mapping from address to uint;
struct Map {
address[] keys;
mapping(address => uint) values;
mapping(address => uint) indexOf;
mapping(address => bool) inserted;
}
function get(Map storage map, address key) public view returns (uint) {
return map.values[key];
}
function getIndexOfKey(Map storage map, address key) public view returns (int) {
if(!map.inserted[key]) {
return -1;
}
return int(map.indexOf[key]);
}
function getKeyAtIndex(Map storage map, uint index) public view returns (address) {
return map.keys[index];
}
function size(Map storage map) public view returns (uint) {
return map.keys.length;
}
function set(Map storage map, address key, uint val) public {
if (map.inserted[key]) {
map.values[key] = val;
} else {
map.inserted[key] = true;
map.values[key] = val;
map.indexOf[key] = map.keys.length;
map.keys.push(key);
}
}
function remove(Map storage map, address key) public {
if (!map.inserted[key]) {
return;
}
delete map.inserted[key];
delete map.values[key];
uint index = map.indexOf[key];
uint lastIndex = map.keys.length - 1;
address lastKey = map.keys[lastIndex];
map.indexOf[lastKey] = index;
delete map.indexOf[key];
map.keys[index] = lastKey;
map.keys.pop();
}
}
interface IUniswapV2Pair {
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint 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 (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint 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 (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
address indexed sender,
uint amount0In,
uint amount1In,
uint amount0Out,
uint amount1Out,
address indexed to
);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
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 (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function sync() external;
function initialize(address, address) external;
}
interface IUniswapV2Factory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeToSetter(address) external;
}
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,
uint amountADesired,
uint amountBDesired,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB, uint liquidity);
function addLiquidityETH(
address token,
uint amountTokenDesired,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external payable returns (uint amountToken, uint amountETH, uint liquidity);
function removeLiquidity(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline
) external returns (uint amountA, uint amountB);
function removeLiquidityETH(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountToken, uint amountETH);
function removeLiquidityWithPermit(
address tokenA,
address tokenB,
uint liquidity,
uint amountAMin,
uint amountBMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountA, uint amountB);
function removeLiquidityETHWithPermit(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountToken, uint amountETH);
function swapExactTokensForTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapTokensForExactTokens(
uint amountOut,
uint amountInMax,
address[] calldata path,
address to,
uint deadline
) external returns (uint[] memory amounts);
function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
external
returns (uint[] memory amounts);
function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
external
payable
returns (uint[] memory amounts);
function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}
interface IUniswapV2Router02 is IUniswapV2Router01 {
function removeLiquidityETHSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline
) external returns (uint amountETH);
function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
address token,
uint liquidity,
uint amountTokenMin,
uint amountETHMin,
address to,
uint deadline,
bool approveMax, uint8 v, bytes32 r, bytes32 s
) external returns (uint amountETH);
function swapExactTokensForTokensSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
function swapExactETHForTokensSupportingFeeOnTransferTokens(
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external payable;
function swapExactTokensForETHSupportingFeeOnTransferTokens(
uint amountIn,
uint amountOutMin,
address[] calldata path,
address to,
uint deadline
) external;
}
pragma solidity >=0.5.0;
interface IPinkAntiBot {
function setTokenOwner(address owner) external;
function onPreTransferCheck(
address from,
address to,
uint256 amount
) external;
}
contract EFT is ERC20, Ownable {
using SafeMath for uint256;
IPinkAntiBot public pinkAntiBot;
bool public antiBotEnabled;
IUniswapV2Router02 public uniswapV2Router;
address public uniswapV2Pair;
bool private swapping;
EFTDividendTracker public dividendTracker;
address public deadWallet = 0x000000000000000000000000000000000000dEaD;
address public immutable ETH = address(0x2170Ed0880ac9A755fd29B2688956BD959F933F8); //ETH
uint256 public swapTokensAtAmount = 1000000000000 * (10**18); //0.1%
uint256 public maxSellTransactionAmount = 10000000000000 * (10**18); //1%
mapping(address => bool) public _isBlacklisted;
uint256 public ETHRewardsFee = 4;
uint256 public liquidityFee = 1;
uint256 public marketingFee = 3;
uint256 public devFee = 2;
uint256 public extraFeeOnSell = 4;
uint256 public totalFees = ETHRewardsFee.add(liquidityFee).add(marketingFee).add(devFee);
uint256 public maxWalletToken = 10000000000000 * (10**18); //1%
address public _marketingWalletAddress = 0xC80e5B0485Aa25C3617B432794F650721A0E694A;
address public _developmentWalletAddress = 0x6DceD58A8310702927036b465c41cecF8b6f2EEd;
// use by default 300,000 gas to process auto-claiming dividends
uint256 public gasForProcessing = 300000;
// exlcude from fees and max transaction amount
mapping (address => bool) private _isExcludedFromFees;
// store addresses that a automatic market maker pairs. Any transfer *to* these addresses
// could be subject to a maximum transfer amount
mapping (address => bool) public automatedMarketMakerPairs;
event UpdateDividendTracker(address indexed newAddress, address indexed oldAddress);
event UpdateUniswapV2Router(address indexed newAddress, address indexed oldAddress);
event ExcludeFromFees(address indexed account, bool isExcluded);
event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded);
event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
event LiquidityWalletUpdated(address indexed newLiquidityWallet, address indexed oldLiquidityWallet);
event GasForProcessingUpdated(uint256 indexed newValue, uint256 indexed oldValue);
event SwapAndLiquify(
uint256 tokensSwapped,
uint256 ethReceived,
uint256 tokensIntoLiqudity
);
event SendDividends(
uint256 tokensSwapped,
uint256 amount
);
event ProcessedDividendTracker(
uint256 iterations,
uint256 claims,
uint256 lastProcessedIndex,
bool indexed automatic,
uint256 gas,
address indexed processor
);
event SwapBNBForTokens(
uint256 amountIn,
address[] path
);
constructor() public ERC20("ETH Fan Token", "EFT") {
dividendTracker = new EFTDividendTracker();
pinkAntiBot = IPinkAntiBot(0x8EFDb3b642eb2a20607ffe0A56CFefF6a95Df002);
pinkAntiBot.setTokenOwner(msg.sender);
antiBotEnabled = true;
IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x10ED43C718714eb63d5aA57B78B54704E256024E);
// Create a uniswap pair for this new token
address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
.createPair(address(this), _uniswapV2Router.WETH());
uniswapV2Router = _uniswapV2Router;
uniswapV2Pair = _uniswapV2Pair;
_setAutomatedMarketMakerPair(_uniswapV2Pair, true);
// exclude from receiving dividends
dividendTracker.excludeFromDividends(address(dividendTracker));
dividendTracker.excludeFromDividends(address(this));
dividendTracker.excludeFromDividends(owner());
dividendTracker.excludeFromDividends(deadWallet);
dividendTracker.excludeFromDividends(address(_uniswapV2Router));
// exclude from paying fees or having max transaction amount
excludeFromFees(owner(), true);
excludeFromFees(_marketingWalletAddress, true);
excludeFromFees(_developmentWalletAddress, true);
excludeFromFees(address(this), true);
/*
_mint is an internal function in ERC20.sol that is only called here,
and CANNOT be called ever again
*/
_mint(owner(), 1000000000000000 * (10**18));
}
receive() external payable {
}
function updateDividendTracker(address newAddress) public onlyOwner {
require(newAddress != address(dividendTracker), "EFT: The dividend tracker already has that address");
EFTDividendTracker newDividendTracker = EFTDividendTracker(payable(newAddress));
require(newDividendTracker.owner() == address(this), "EFT: The new dividend tracker must be owned by the EFT token contract");
newDividendTracker.excludeFromDividends(address(newDividendTracker));
newDividendTracker.excludeFromDividends(address(this));
newDividendTracker.excludeFromDividends(owner());
newDividendTracker.excludeFromDividends(address(uniswapV2Router));
emit UpdateDividendTracker(newAddress, address(dividendTracker));
dividendTracker = newDividendTracker;
}
function updateUniswapV2Router(address newAddress) public onlyOwner {
require(newAddress != address(uniswapV2Router), "EFT: The router already has that address");
emit UpdateUniswapV2Router(newAddress, address(uniswapV2Router));
uniswapV2Router = IUniswapV2Router02(newAddress);
address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
.createPair(address(this), uniswapV2Router.WETH());
uniswapV2Pair = _uniswapV2Pair;
}
function excludeFromFees(address account, bool excluded) public onlyOwner {
require(_isExcludedFromFees[account] != excluded, "EFT: Account is already the value of 'excluded'");
_isExcludedFromFees[account] = excluded;
emit ExcludeFromFees(account, excluded);
}
function excludeMultipleAccountsFromFees(address[] calldata accounts, bool excluded) public onlyOwner {
for(uint256 i = 0; i < accounts.length; i++) {
_isExcludedFromFees[accounts[i]] = excluded;
}
emit ExcludeMultipleAccountsFromFees(accounts, excluded);
}
function setMaxWalletToken(uint256 _maxToken) external onlyOwner {
maxWalletToken = _maxToken;
}
function setEnableAntiBot(bool _enable) external onlyOwner {
antiBotEnabled = _enable;
}
function setExtraFeeOnSell(uint256 _extraFeeOnSell) public onlyOwner {
extraFeeOnSell = _extraFeeOnSell; // extra fee on sell
}
function setMaxSelltx(uint256 _maxSellTxAmount) public onlyOwner {
maxSellTransactionAmount = _maxSellTxAmount;
}
function setMarketingWallet(address payable wallet) external onlyOwner{
_marketingWalletAddress = wallet;
}
function setBuybackWallet(address payable wallet) external onlyOwner{
_developmentWalletAddress = wallet;
}
function setETHRewardsFee(uint256 value) external onlyOwner{
ETHRewardsFee = value;
totalFees = ETHRewardsFee.add(liquidityFee).add(marketingFee).add(devFee);
}
function setLiquiditFee(uint256 value) external onlyOwner{
liquidityFee = value;
totalFees = ETHRewardsFee.add(liquidityFee).add(marketingFee).add(devFee);
}
function setMarketingFee(uint256 _marketingFee) external onlyOwner{
marketingFee = _marketingFee;
totalFees = ETHRewardsFee.add(liquidityFee).add(marketingFee).add(devFee);
}
function setdevFee(uint256 _devFee) external onlyOwner{
devFee = _devFee;
totalFees = ETHRewardsFee.add(liquidityFee).add(marketingFee).add(devFee);
}
function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner {
require(pair != uniswapV2Pair, "EFT: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs");
_setAutomatedMarketMakerPair(pair, value);
}
function blacklistAddress(address account, bool value) external onlyOwner{
_isBlacklisted[account] = value;
}
function _setAutomatedMarketMakerPair(address pair, bool value) private {
require(automatedMarketMakerPairs[pair] != value, "EFT: Automated market maker pair is already set to that value");
automatedMarketMakerPairs[pair] = value;
if(value) {
dividendTracker.excludeFromDividends(pair);
}
emit SetAutomatedMarketMakerPair(pair, value);
}
function updateGasForProcessing(uint256 newValue) public onlyOwner {
require(newValue >= 200000 && newValue <= 800000, "EFT: gasForProcessing must be between 200,000 and 500,000");
require(newValue != gasForProcessing, "EFT: Cannot update gasForProcessing to same value");
emit GasForProcessingUpdated(newValue, gasForProcessing);
gasForProcessing = newValue;
}
function updateClaimWait(uint256 claimWait) external onlyOwner {
dividendTracker.updateClaimWait(claimWait);
}
function getClaimWait() external view returns(uint256) {
return dividendTracker.claimWait();
}
function getTotalDividendsDistributed() external view returns (uint256) {
return dividendTracker.totalDividendsDistributed();
}
function isExcludedFromFees(address account) public view returns(bool) {
return _isExcludedFromFees[account];
}
function withdrawableDividendOf(address account) public view returns(uint256) {
return dividendTracker.withdrawableDividendOf(account);
}
function dividendTokenBalanceOf(address account) public view returns (uint256) {
return dividendTracker.balanceOf(account);
}
function excludeFromDividends(address account) external onlyOwner{
dividendTracker.excludeFromDividends(account);
}
function getAccountDividendsInfo(address account)
external view returns (
address,
int256,
int256,
uint256,
uint256,
uint256,
uint256,
uint256) {
return dividendTracker.getAccount(account);
}
function getAccountDividendsInfoAtIndex(uint256 index)
external view returns (
address,
int256,
int256,
uint256,
uint256,
uint256,
uint256,
uint256) {
return dividendTracker.getAccountAtIndex(index);
}
function processDividendTracker(uint256 gas) external {
(uint256 iterations, uint256 claims, uint256 lastProcessedIndex) = dividendTracker.process(gas);
emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, false, gas, tx.origin);
}
function claim() external {
dividendTracker.processAccount(msg.sender, false);
}
function getLastProcessedIndex() external view returns(uint256) {
return dividendTracker.getLastProcessedIndex();
}
function getNumberOfDividendTokenHolders() external view returns(uint256) {
return dividendTracker.getNumberOfTokenHolders();
}
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");
require(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address');
if (antiBotEnabled) {
pinkAntiBot.onPreTransferCheck(from, to, amount);
}
if (
from != owner() &&
to != owner() &&
to != address(0) &&
to != address(0xdead) &&
to != uniswapV2Pair
) {
uint256 contractBalanceRecepient = balanceOf(to);
require(
contractBalanceRecepient + amount <= maxWalletToken,
"Exceeds maximum wallet token amount."
);
}
if(amount == 0) {
super._transfer(from, to, 0);
return;
}
if(automatedMarketMakerPairs[to] && (!_isExcludedFromFees[from]) && (!_isExcludedFromFees[to])){
require(amount <= maxSellTransactionAmount, "Sell transfer amount exceeds the maxSellTransactionAmount.");
}
uint256 contractTokenBalance = balanceOf(address(this));
bool canSwap = contractTokenBalance >= swapTokensAtAmount;
if( canSwap &&
!swapping &&
!automatedMarketMakerPairs[from] &&
from != owner() &&
to != owner()
)
{
swapping = true;
uint256 walletTokens = contractTokenBalance.mul(marketingFee.add(devFee)).div(totalFees);
uint256 contractBalance = address(this).balance;
swapTokensForEth(walletTokens);
uint256 newBalance = address(this).balance.sub(contractBalance);
uint256 marketingShare = newBalance.mul(marketingFee).div(devFee.add(marketingFee));
uint256 buybackShare = newBalance.sub(marketingShare);
payable(_marketingWalletAddress).transfer(marketingShare);
payable(_developmentWalletAddress).transfer(buybackShare);
uint256 swapTokens = contractTokenBalance.mul(liquidityFee).div(totalFees);
swapAndLiquify(swapTokens);
uint256 sellTokens = balanceOf(address(this));
swapAndSendDividends(sellTokens);
swapping = false;
}
bool takeFee = !swapping;
// if any account belongs to _isExcludedFromFee account then remove the fee
if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
takeFee = false;
}
if(takeFee) {
uint256 fees = amount.mul(totalFees).div(100);
uint256 extraFee;
if(automatedMarketMakerPairs[to]){
extraFee =(amount*extraFeeOnSell)/100;
fees=fees+extraFee;
}
amount = amount.sub(fees);
super._transfer(from, address(this), fees);
}
super._transfer(from, to, amount);
try dividendTracker.setBalance(payable(from), balanceOf(from)) {} catch {}
try dividendTracker.setBalance(payable(to), balanceOf(to)) {} catch {}
if(!swapping) {
uint256 gas = gasForProcessing;
try dividendTracker.process(gas) returns (uint256 iterations, uint256 claims, uint256 lastProcessedIndex) {
emit ProcessedDividendTracker(iterations, claims, lastProcessedIndex, true, gas, tx.origin);
}
catch {
}
}
}
function swapAndLiquify(uint256 tokens) private {
// split the contract balance into halves
uint256 half = tokens.div(2);
uint256 otherHalf = tokens.sub(half);
// capture the contract's current ETH balance.
// this is so that we can capture exactly the amount of ETH that the
// swap creates, and not make the liquidity event include any ETH that
// has been manually sent to the contract
uint256 initialBalance = address(this).balance;
// swap tokens for ETH
swapTokensForEth(half); // <- this breaks the ETH -> HATE swap when swap+liquify is triggered
// how much ETH did we just swap into?
uint256 newBalance = address(this).balance.sub(initialBalance);
// add liquidity to uniswap
addLiquidity(otherHalf, newBalance);
emit SwapAndLiquify(half, newBalance, otherHalf);
}
function swapTokensForEth(uint256 tokenAmount) private {
// generate the uniswap pair path of token -> weth
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, // accept any amount of ETH
path,
address(this),
block.timestamp
);
}
function swapTokensForETH(uint256 tokenAmount) private {
address[] memory path = new address[](3);
path[0] = address(this);
path[1] = uniswapV2Router.WETH();
path[2] = ETH;
_approve(address(this), address(uniswapV2Router), tokenAmount);
// make the swap
uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
tokenAmount,
0,
path,
address(this),
block.timestamp
);
}
function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
// approve token transfer to cover all possible scenarios
_approve(address(this), address(uniswapV2Router), tokenAmount);
// add the liquidity
uniswapV2Router.addLiquidityETH{value: ethAmount}(
address(this),
tokenAmount,
0, // slippage is unavoidable
0, // slippage is unavoidable
owner(),
block.timestamp
);
}
function swapAndSendDividends(uint256 tokens) private{
swapTokensForETH(tokens);
uint256 dividends = IERC20(ETH).balanceOf(address(this));
bool success = IERC20(ETH).transfer(address(dividendTracker), dividends);
if (success) {
dividendTracker.distributeETHDividends(dividends);
emit SendDividends(tokens, dividends);
}
}
}
contract EFTDividendTracker is Ownable, DividendPayingToken {
using SafeMath for uint256;
using SafeMathInt for int256;
using IterableMapping for IterableMapping.Map;
IterableMapping.Map private tokenHoldersMap;
uint256 public lastProcessedIndex;
mapping (address => bool) public excludedFromDividends;
mapping (address => uint256) public lastClaimTimes;
uint256 public claimWait;
uint256 public immutable minimumTokenBalanceForDividends;
event ExcludeFromDividends(address indexed account);
event ClaimWaitUpdated(uint256 indexed newValue, uint256 indexed oldValue);
event Claim(address indexed account, uint256 amount, bool indexed automatic);
constructor() public DividendPayingToken("EFT_Dividen_Tracker", "EFT_Dividend_Tracker") {
claimWait = 3600;
minimumTokenBalanceForDividends = 200000 * (10**18); //must hold 200000+ tokens
}
function _transfer(address, address, uint256) internal override {
require(false, "EFT_Dividend_Tracker: No transfers allowed");
}
function withdrawDividend() public override {
require(false, "EFT_Dividend_Tracker: withdrawDividend disabled. Use the 'claim' function on the main EFT contract.");
}
function excludeFromDividends(address account) external onlyOwner {
require(!excludedFromDividends[account]);
excludedFromDividends[account] = true;
_setBalance(account, 0);
tokenHoldersMap.remove(account);
emit ExcludeFromDividends(account);
}
function updateClaimWait(uint256 newClaimWait) external onlyOwner {
require(newClaimWait >= 3600 && newClaimWait <= 86400, "EFT_Dividend_Tracker: claimWait must be updated to between 1 and 24 hours");
require(newClaimWait != claimWait, "EFT_Dividend_Tracker: Cannot update claimWait to same value");
emit ClaimWaitUpdated(newClaimWait, claimWait);
claimWait = newClaimWait;
}
function getLastProcessedIndex() external view returns(uint256) {
return lastProcessedIndex;
}
function getNumberOfTokenHolders() external view returns(uint256) {
return tokenHoldersMap.keys.length;
}
function getAccount(address _account)
public view returns (
address account,
int256 index,
int256 iterationsUntilProcessed,
uint256 withdrawableDividends,
uint256 totalDividends,
uint256 lastClaimTime,
uint256 nextClaimTime,
uint256 secondsUntilAutoClaimAvailable) {
account = _account;
index = tokenHoldersMap.getIndexOfKey(account);
iterationsUntilProcessed = -1;
if(index >= 0) {
if(uint256(index) > lastProcessedIndex) {
iterationsUntilProcessed = index.sub(int256(lastProcessedIndex));
}
else {
uint256 processesUntilEndOfArray = tokenHoldersMap.keys.length > lastProcessedIndex ?
tokenHoldersMap.keys.length.sub(lastProcessedIndex) :
0;
iterationsUntilProcessed = index.add(int256(processesUntilEndOfArray));
}
}
withdrawableDividends = withdrawableDividendOf(account);
totalDividends = accumulativeDividendOf(account);
lastClaimTime = lastClaimTimes[account];
nextClaimTime = lastClaimTime > 0 ?
lastClaimTime.add(claimWait) :
0;
secondsUntilAutoClaimAvailable = nextClaimTime > block.timestamp ?
nextClaimTime.sub(block.timestamp) :
0;
}
function getAccountAtIndex(uint256 index)
public view returns (
address,
int256,
int256,
uint256,
uint256,
uint256,
uint256,
uint256) {
if(index >= tokenHoldersMap.size()) {
return (0x0000000000000000000000000000000000000000, -1, -1, 0, 0, 0, 0, 0);
}
address account = tokenHoldersMap.getKeyAtIndex(index);
return getAccount(account);
}
function canAutoClaim(uint256 lastClaimTime) private view returns (bool) {
if(lastClaimTime > block.timestamp) {
return false;
}
return block.timestamp.sub(lastClaimTime) >= claimWait;
}
function setBalance(address payable account, uint256 newBalance) external onlyOwner {
if(excludedFromDividends[account]) {
return;
}
if(newBalance >= minimumTokenBalanceForDividends) {
_setBalance(account, newBalance);
tokenHoldersMap.set(account, newBalance);
}
else {
_setBalance(account, 0);
tokenHoldersMap.remove(account);
}
processAccount(account, true);
}
function process(uint256 gas) public returns (uint256, uint256, uint256) {
uint256 numberOfTokenHolders = tokenHoldersMap.keys.length;
if(numberOfTokenHolders == 0) {
return (0, 0, lastProcessedIndex);
}
uint256 _lastProcessedIndex = lastProcessedIndex;
uint256 gasUsed = 0;
uint256 gasLeft = gasleft();
uint256 iterations = 0;
uint256 claims = 0;
while(gasUsed < gas && iterations < numberOfTokenHolders) {
_lastProcessedIndex++;
if(_lastProcessedIndex >= tokenHoldersMap.keys.length) {
_lastProcessedIndex = 0;
}
address account = tokenHoldersMap.keys[_lastProcessedIndex];
if(canAutoClaim(lastClaimTimes[account])) {
if(processAccount(payable(account), true)) {
claims++;
}
}
iterations++;
uint256 newGasLeft = gasleft();
if(gasLeft > newGasLeft) {
gasUsed = gasUsed.add(gasLeft.sub(newGasLeft));
}
gasLeft = newGasLeft;
}
lastProcessedIndex = _lastProcessedIndex;
return (iterations, claims, lastProcessedIndex);
}
function processAccount(address payable account, bool automatic) public onlyOwner returns (bool) {
uint256 amount = _withdrawDividendOfUser(account);
if(amount > 0) {
lastClaimTimes[account] = block.timestamp;
emit Claim(account, amount, automatic);
return true;
}
return false;
}
}Contract Security Audit
- Tech Audit - November 26th, 2021 - Security Audit Report
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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"newValue","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"oldValue","type":"uint256"}],"name":"GasForProcessingUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newLiquidityWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldLiquidityWallet","type":"address"}],"name":"LiquidityWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"claims","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"lastProcessedIndex","type":"uint256"},{"indexed":true,"internalType":"bool","name":"automatic","type":"bool"},{"indexed":false,"internalType":"uint256","name":"gas","type":"uint256"},{"indexed":true,"internalType":"address","name":"processor","type":"address"}],"name":"ProcessedDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividends","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":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountIn","type":"uint256"},{"indexed":false,"internalType":"address[]","name":"path","type":"address[]"}],"name":"SwapBNBForTokens","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateDividendTracker","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[],"name":"ETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETHRewardsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_developmentWalletAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_marketingWalletAddress","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":[],"name":"antiBotEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadWallet","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":[],"name":"devFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"dividendTokenBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dividendTracker","outputs":[{"internalType":"contract EFTDividendTracker","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"extraFeeOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gasForProcessing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountDividendsInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getAccountDividendsInfoAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"int256","name":"","type":"int256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimWait","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLastProcessedIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNumberOfDividendTokenHolders","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"liquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","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":"pinkAntiBot","outputs":[{"internalType":"contract IPinkAntiBot","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"gas","type":"uint256"}],"name":"processDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setBuybackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setETHRewardsFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"setEnableAntiBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_extraFeeOnSell","type":"uint256"}],"name":"setExtraFeeOnSell","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setLiquiditFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"setMarketingFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellTxAmount","type":"uint256"}],"name":"setMaxSelltx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxToken","type":"uint256"}],"name":"setMaxWalletToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setdevFee","outputs":[],"stateMutability":"nonpayable","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":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"claimWait","type":"uint256"}],"name":"updateClaimWait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateDividendTracker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"updateGasForProcessing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60a0604052600a805461dead6001600160a01b03199091161790557f2170ed0880ac9a755fd29b2688956bd959f933f80000000000000000000000006080526c0c9f2c9cd04674edea40000000600b556c7e37be2022c0914b2680000000600c556004600e8190556001600f81905560036010819055600260118190556012849055620000b6939092620000a2929183916200072a602090811b6200291a17901c565b6200072a60201b6200291a1790919060201c565b6013556c7e37be2022c0914b2680000000601455601580546001600160a01b031990811673c80e5b0485aa25c3617b432794f650721a0e694a1790915560168054909116736dced58a8310702927036b465c41cecf8b6f2eed179055620493e06017553480156200012657600080fd5b506040518060400160405280600d81526020016c22aa24102330b7102a37b5b2b760991b8152506040518060400160405280600381526020016211519560ea1b81525081600390805190602001906200018192919062000b13565b5080516200019790600490602084019062000b13565b5050506000620001ac6200078c60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350604051620002089062000b98565b604051809103906000f08015801562000225573d6000803e3d6000fd5b50600980546001600160a01b039283166001600160a01b03199182161790915560068054909116738efdb3b642eb2a20607ffe0a56cfeff6a95df0021790819055604080516318e02bd960e01b8152336004820152905191909216916318e02bd991602480830192600092919082900301818387803b158015620002a857600080fd5b505af1158015620002bd573d6000803e3d6000fd5b50506006805460ff60a01b1916600160a01b17905550506040805163c45a015560e01b815290517310ed43c718714eb63d5aa57b78b54704e256024e91600091839163c45a0155916004808301926020929190829003018186803b1580156200032557600080fd5b505afa1580156200033a573d6000803e3d6000fd5b505050506040513d60208110156200035157600080fd5b5051604080516315ab88c960e31b815290516001600160a01b039283169263c9c653969230929187169163ad5c464891600480820192602092909190829003018186803b158015620003a257600080fd5b505afa158015620003b7573d6000803e3d6000fd5b505050506040513d6020811015620003ce57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156200042157600080fd5b505af115801562000436573d6000803e3d6000fd5b505050506040513d60208110156200044d57600080fd5b5051600780546001600160a01b038086166001600160a01b031992831617909255600880549284169290911691909117905590506200048e81600162000790565b6009546040805163031e79db60e41b81526001600160a01b0390921660048301819052905190916331e79db091602480830192600092919082900301818387803b158015620004dc57600080fd5b505af1158015620004f1573d6000803e3d6000fd5b50506009546040805163031e79db60e41b815230600482015290516001600160a01b0390921693506331e79db0925060248082019260009290919082900301818387803b1580156200054257600080fd5b505af115801562000557573d6000803e3d6000fd5b50506009546001600160a01b031691506331e79db0905062000578620008c3565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015620005b857600080fd5b505af1158015620005cd573d6000803e3d6000fd5b5050600954600a546040805163031e79db60e41b81526001600160a01b03928316600482015290519190921693506331e79db09250602480830192600092919082900301818387803b1580156200062357600080fd5b505af115801562000638573d6000803e3d6000fd5b50506009546040805163031e79db60e41b81526001600160a01b03878116600483015291519190921693506331e79db09250602480830192600092919082900301818387803b1580156200068b57600080fd5b505af1158015620006a0573d6000803e3d6000fd5b50505050620006c0620006b8620008c360201b60201c565b6001620008d2565b601554620006d9906001600160a01b03166001620008d2565b601654620006f2906001600160a01b03166001620008d2565b620006ff306001620008d2565b620007226200070d620008c3565b6d314dc6448d9338c15b0a00000000620009ff565b505062000bbd565b60008282018381101562000785576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b03821660009081526019602052604090205460ff1615158115151415620007f05760405162461bcd60e51b815260040180806020018281038252603d81526020018062007093603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601960205260409020805460ff1916821580159190911790915562000887576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156200086d57600080fd5b505af115801562000882573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6005546001600160a01b031690565b620008dc6200078c565b6005546001600160a01b039081169116146200093f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b03821660009081526018602052604090205460ff16151581151514156200099f5760405162461bcd60e51b815260040180806020018281038252602f81526020018062007064602f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6001600160a01b03821662000a5b576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b62000a696000838362000b0e565b62000a85816002546200072a60201b6200291a1790919060201c565b6002556001600160a01b0382166000908152602081815260409091205462000ab89183906200291a6200072a821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000b5657805160ff191683800117855562000b86565b8280016001018555821562000b86579182015b8281111562000b8657825182559160200191906001019062000b69565b5062000b9492915062000ba6565b5090565b6123518062004d1383390190565b5b8082111562000b94576000815560010162000ba7565b60805160601c61412962000bea60003980611b2c5280613894528061395d5280613c9952506141296000f3fe6080604052600436106103d25760003560e01c80636b67c4df116101fd578063a457c2d711610118578063c492f046116100ab578063e6c75f711161007a578063e6c75f7114610de0578063e7841ec014610df5578063e98030c714610e0a578063f27fd25414610e34578063f2fde38b14610e5e576103d9565b8063c492f04614610cfc578063d8c6404b14610d7b578063dd62ed3e14610d90578063e2f4560514610dcb576103d9565b8063adefd90c116100e7578063adefd90c14610c3a578063b62496f514610c64578063c024666814610c97578063c0982f4814610cd2576103d9565b8063a457c2d714610b17578063a8b9d24014610b50578063a9059cbb14610b83578063ad56c13c14610bbc576103d9565b80638c0344db1161019057806398118cb41161015f57806398118cb414610a9d5780639a7a23d614610ab25780639c1b8af514610aed578063a26579ad14610b02576103d9565b80638c0344db14610a345780638da5cb5b14610a4957806391d55f4114610a5e57806395d89b4114610a88576103d9565b80638322fff2116101cc5780638322fff2146109ad57806385141a77146109c2578063871c128d146109d757806388bdd9be14610a01576103d9565b80636b67c4df14610926578063700bb1911461093b57806370a0823114610965578063715018a614610998576103d9565b806339509351116102ed5780634fbee1931161028057806365b8dbc01161024f57806365b8dbc0146108965780636827e764146108c95780636843cd84146108de57806369cf17d414610911576103d9565b80634fbee193146107f15780635d098b3814610824578063625e764c1461085757806364b0f65314610881576103d9565b8063455a4396116102bc578063455a43961461076257806345f579771461079d57806349bd5a5e146107c75780634e71d92d146107dc576103d9565b806339509351146106d5578063407133d21461070e5780634144d9e41461072357806341e6e8cb14610738576103d9565b80631d0adc07116103655780632c1f5216116103345780632c1f52161461064d57806330bb4cff14610662578063313ce5671461067757806331e79db0146106a2576103d9565b80631d0adc07146105965780631f46b1c6146105c957806323b872dd146105f557806325250c7114610638576103d9565b806313114a9d116103a157806313114a9d146105085780631694505e1461051d57806318160ddd1461054e5780631cdd3be314610563576103d9565b806302259e9e146103de57806303a280fc1461040557806306fdde0314610431578063095ea7b3146104bb576103d9565b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610e91565b60408051918252519081900360200190f35b34801561041157600080fd5b5061042f6004803603602081101561042857600080fd5b5035610e97565b005b34801561043d57600080fd5b50610446610ef4565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610480578181015183820152602001610468565b50505050905090810190601f1680156104ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104c757600080fd5b506104f4600480360360408110156104de57600080fd5b506001600160a01b038135169060200135610f8a565b604080519115158252519081900360200190f35b34801561051457600080fd5b506103f3610fa8565b34801561052957600080fd5b50610532610fae565b604080516001600160a01b039092168252519081900360200190f35b34801561055a57600080fd5b506103f3610fbd565b34801561056f57600080fd5b506104f46004803603602081101561058657600080fd5b50356001600160a01b0316610fc3565b3480156105a257600080fd5b5061042f600480360360208110156105b957600080fd5b50356001600160a01b0316610fd8565b3480156105d557600080fd5b5061042f600480360360208110156105ec57600080fd5b50351515611052565b34801561060157600080fd5b506104f46004803603606081101561061857600080fd5b506001600160a01b038135811691602081013590911690604001356110c8565b34801561064457600080fd5b5061053261114f565b34801561065957600080fd5b5061053261115e565b34801561066e57600080fd5b506103f361116d565b34801561068357600080fd5b5061068c6111e3565b6040805160ff9092168252519081900360200190f35b3480156106ae57600080fd5b5061042f600480360360208110156106c557600080fd5b50356001600160a01b03166111e8565b3480156106e157600080fd5b506104f4600480360360408110156106f857600080fd5b506001600160a01b0381351690602001356112a9565b34801561071a57600080fd5b506105326112f7565b34801561072f57600080fd5b50610532611306565b34801561074457600080fd5b5061042f6004803603602081101561075b57600080fd5b5035611315565b34801561076e57600080fd5b5061042f6004803603604081101561078557600080fd5b506001600160a01b0381351690602001351515611372565b3480156107a957600080fd5b5061042f600480360360208110156107c057600080fd5b50356113f5565b3480156107d357600080fd5b50610532611479565b3480156107e857600080fd5b5061042f611488565b3480156107fd57600080fd5b506104f46004803603602081101561081457600080fd5b50356001600160a01b031661150d565b34801561083057600080fd5b5061042f6004803603602081101561084757600080fd5b50356001600160a01b031661152b565b34801561086357600080fd5b5061042f6004803603602081101561087a57600080fd5b50356115a5565b34801561088d57600080fd5b506103f3611627565b3480156108a257600080fd5b5061042f600480360360208110156108b957600080fd5b50356001600160a01b031661166c565b3480156108d557600080fd5b506103f36118f1565b3480156108ea57600080fd5b506103f36004803603602081101561090157600080fd5b50356001600160a01b03166118f7565b34801561091d57600080fd5b506103f361197a565b34801561093257600080fd5b506103f3611980565b34801561094757600080fd5b5061042f6004803603602081101561095e57600080fd5b5035611986565b34801561097157600080fd5b506103f36004803603602081101561098857600080fd5b50356001600160a01b0316611a6d565b3480156109a457600080fd5b5061042f611a88565b3480156109b957600080fd5b50610532611b2a565b3480156109ce57600080fd5b50610532611b4e565b3480156109e357600080fd5b5061042f600480360360208110156109fa57600080fd5b5035611b5d565b348015610a0d57600080fd5b5061042f60048036036020811015610a2457600080fd5b50356001600160a01b0316611c7a565b348015610a4057600080fd5b506103f3611fd1565b348015610a5557600080fd5b50610532611fd7565b348015610a6a57600080fd5b5061042f60048036036020811015610a8157600080fd5b5035611fe6565b348015610a9457600080fd5b50610446612043565b348015610aa957600080fd5b506103f36120a4565b348015610abe57600080fd5b5061042f60048036036040811015610ad557600080fd5b506001600160a01b03813516906020013515156120aa565b348015610af957600080fd5b506103f3612159565b348015610b0e57600080fd5b506103f361215f565b348015610b2357600080fd5b506104f460048036036040811015610b3a57600080fd5b506001600160a01b0381351690602001356121a4565b348015610b5c57600080fd5b506103f360048036036020811015610b7357600080fd5b50356001600160a01b031661220c565b348015610b8f57600080fd5b506104f460048036036040811015610ba657600080fd5b506001600160a01b03813516906020013561225d565b348015610bc857600080fd5b50610bef60048036036020811015610bdf57600080fd5b50356001600160a01b0316612271565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c4657600080fd5b5061042f60048036036020811015610c5d57600080fd5b5035612351565b348015610c7057600080fd5b506104f460048036036020811015610c8757600080fd5b50356001600160a01b03166123c8565b348015610ca357600080fd5b5061042f60048036036040811015610cba57600080fd5b506001600160a01b03813516906020013515156123dd565b348015610cde57600080fd5b5061042f60048036036020811015610cf557600080fd5b50356124f3565b348015610d0857600080fd5b5061042f60048036036040811015610d1f57600080fd5b810190602081018135640100000000811115610d3a57600080fd5b820183602082011115610d4c57600080fd5b80359060200191846020830284011164010000000083111715610d6e57600080fd5b919350915035151561256a565b348015610d8757600080fd5b506104f461268a565b348015610d9c57600080fd5b506103f360048036036040811015610db357600080fd5b506001600160a01b038135811691602001351661269a565b348015610dd757600080fd5b506103f36126c5565b348015610dec57600080fd5b506103f36126cb565b348015610e0157600080fd5b506103f36126d1565b348015610e1657600080fd5b5061042f60048036036020811015610e2d57600080fd5b5035612716565b348015610e4057600080fd5b50610bef60048036036020811015610e5757600080fd5b50356127bb565b348015610e6a57600080fd5b5061042f60048036036020811015610e8157600080fd5b50356001600160a01b0316612821565b600c5481565b610e9f61297b565b6005546001600160a01b03908116911614610eef576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b601255565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f805780601f10610f5557610100808354040283529160200191610f80565b820191906000526020600020905b815481529060010190602001808311610f6357829003601f168201915b5050505050905090565b6000610f9e610f9761297b565b848461297f565b5060015b92915050565b60135481565b6007546001600160a01b031681565b60025490565b600d6020526000908152604090205460ff1681565b610fe061297b565b6005546001600160a01b03908116911614611030576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b61105a61297b565b6005546001600160a01b039081169116146110aa576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b60068054911515600160a01b0260ff60a01b19909216919091179055565b60006110d5848484612a6b565b611145846110e161297b565b61114085604051806060016040528060288152602001613e8a602891396001600160a01b038a1660009081526001602052604081209061111f61297b565b6001600160a01b03168152602081019190915260400160002054919061325e565b61297f565b5060019392505050565b6016546001600160a01b031681565b6009546001600160a01b031681565b600954604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b1580156111b257600080fd5b505afa1580156111c6573d6000803e3d6000fd5b505050506040513d60208110156111dc57600080fd5b5051905090565b601290565b6111f061297b565b6005546001600160a01b03908116911614611240576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6009546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561128e57600080fd5b505af11580156112a2573d6000803e3d6000fd5b5050505050565b6000610f9e6112b661297b565b8461114085600160006112c761297b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061291a565b6006546001600160a01b031681565b6015546001600160a01b031681565b61131d61297b565b6005546001600160a01b0390811691161461136d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b600c55565b61137a61297b565b6005546001600160a01b039081169116146113ca576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6113fd61297b565b6005546001600160a01b0390811691161461144d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b600e819055601154601054600f54611473929161146d918290869061291a565b9061291a565b60135550565b6008546001600160a01b031681565b6009546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b1580156114df57600080fd5b505af11580156114f3573d6000803e3d6000fd5b505050506040513d602081101561150957600080fd5b5050565b6001600160a01b031660009081526018602052604090205460ff1690565b61153361297b565b6005546001600160a01b03908116911614611583576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6115ad61297b565b6005546001600160a01b039081169116146115fd576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b8060108190555061147360115461146d60105461146d600f54600e5461291a90919063ffffffff16565b600954604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b1580156111b257600080fd5b61167461297b565b6005546001600160a01b039081169116146116c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6007546001600160a01b03828116911614156117115760405162461bcd60e51b81526004018080602001828103825260288152602001806140766028913960400191505060405180910390fd5b6007546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600780546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b1580156117aa57600080fd5b505afa1580156117be573d6000803e3d6000fd5b505050506040513d60208110156117d457600080fd5b5051600754604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561182657600080fd5b505afa15801561183a573d6000803e3d6000fd5b505050506040513d602081101561185057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156118a257600080fd5b505af11580156118b6573d6000803e3d6000fd5b505050506040513d60208110156118cc57600080fd5b5051600880546001600160a01b0319166001600160a01b039092169190911790555050565b60115481565b600954604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561194857600080fd5b505afa15801561195c573d6000803e3d6000fd5b505050506040513d602081101561197257600080fd5b505192915050565b60125481565b60105481565b600954604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156119dd57600080fd5b505af11580156119f1573d6000803e3d6000fd5b505050506040513d6060811015611a0757600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b611a9061297b565b6005546001600160a01b03908116911614611ae0576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a546001600160a01b031681565b611b6561297b565b6005546001600160a01b03908116911614611bb5576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b62030d408110158015611bcb5750620c35008111155b611c065760405162461bcd60e51b8152600401808060200182810382526039815260200180613ed26039913960400191505060405180910390fd5b601754811415611c475760405162461bcd60e51b81526004018080602001828103825260318152602001806140c36031913960400191505060405180910390fd5b60175460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601755565b611c8261297b565b6005546001600160a01b03908116911614611cd2576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6009546001600160a01b0382811691161415611d1f5760405162461bcd60e51b8152600401808060200182810382526032815260200180613f0b6032913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611d6757600080fd5b505afa158015611d7b573d6000803e3d6000fd5b505050506040513d6020811015611d9157600080fd5b50516001600160a01b031614611dd85760405162461bcd60e51b8152600401808060200182810382526045815260200180613d926045913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611e2757600080fd5b505af1158015611e3b573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611e8657600080fd5b505af1158015611e9a573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611eb5611fd7565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611ef457600080fd5b505af1158015611f08573d6000803e3d6000fd5b50506007546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611f5a57600080fd5b505af1158015611f6e573d6000803e3d6000fd5b50506009546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980546001600160a01b0319166001600160a01b039290921691909117905550565b600e5481565b6005546001600160a01b031690565b611fee61297b565b6005546001600160a01b0390811691161461203e576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b601455565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f805780601f10610f5557610100808354040283529160200191610f80565b600f5481565b6120b261297b565b6005546001600160a01b03908116911614612102576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6008546001600160a01b038381169116141561214f5760405162461bcd60e51b815260040180806020018281038252604a815260200180613f9c604a913960600191505060405180910390fd5b61150982826132f5565b60175481565b60095460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b1580156111b257600080fd5b6000610f9e6121b161297b565b846111408560405180606001604052806025815260200161409e60259139600160006121db61297b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061325e565b600954604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561194857600080fd5b6000610f9e61226a61297b565b8484612a6b565b600080600080600080600080600960009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b1580156122e057600080fd5b505afa1580156122f4573d6000803e3d6000fd5b505050506040513d61010081101561230b57600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b61235961297b565b6005546001600160a01b039081169116146123a9576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b600f819055601154601054600e54611473929161146d9182908661291a565b60196020526000908152604090205460ff1681565b6123e561297b565b6005546001600160a01b03908116911614612435576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526018602052604090205460ff16151581151514156124935760405162461bcd60e51b815260040180806020018281038252602f81526020018061400a602f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6124fb61297b565b6005546001600160a01b0390811691161461254b576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6011819055601054600f54600e5461147392849261146d92839161291a565b61257261297b565b6005546001600160a01b039081169116146125c2576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b60005b828110156126175781601860008686858181106125de57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016125c5565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b600654600160a01b900460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b5481565b60145481565b6009546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b1580156111b257600080fd5b61271e61297b565b6005546001600160a01b0390811691161461276e576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6009546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561128e57600080fd5b600080600080600080600080600960009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b1580156122e057600080fd5b61282961297b565b6005546001600160a01b03908116911614612879576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6001600160a01b0381166128be5760405162461bcd60e51b8152600401808060200182810382526026815260200180613dd76026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015612974576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166129c45760405162461bcd60e51b8152600401808060200182810382526024815260200180613fe66024913960400191505060405180910390fd5b6001600160a01b038216612a095760405162461bcd60e51b8152600401808060200182810382526022815260200180613dfd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612ab05760405162461bcd60e51b8152600401808060200182810382526025815260200180613f3d6025913960400191505060405180910390fd5b6001600160a01b038216612af55760405162461bcd60e51b8152600401808060200182810382526023815260200180613d6f6023913960400191505060405180910390fd5b6001600160a01b0383166000908152600d602052604090205460ff16158015612b3757506001600160a01b0382166000908152600d602052604090205460ff16155b612b7e576040805162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b604482015290519081900360640190fd5b600654600160a01b900460ff1615612c06576006546040805163090ec10b60e31b81526001600160a01b03868116600483015285811660248301526044820185905291519190921691634876085891606480830192600092919082900301818387803b158015612bed57600080fd5b505af1158015612c01573d6000803e3d6000fd5b505050505b612c0e611fd7565b6001600160a01b0316836001600160a01b031614158015612c485750612c32611fd7565b6001600160a01b0316826001600160a01b031614155b8015612c5c57506001600160a01b03821615155b8015612c7357506001600160a01b03821661dead14155b8015612c8d57506008546001600160a01b03838116911614155b15612ce4576000612c9d83611a6d565b90506014548282011115612ce25760405162461bcd60e51b8152600401808060200182810382526024815260200180613e456024913960400191505060405180910390fd5b505b80612cfa57612cf583836000613423565b613259565b6001600160a01b03821660009081526019602052604090205460ff168015612d3b57506001600160a01b03831660009081526018602052604090205460ff16155b8015612d6057506001600160a01b03821660009081526018602052604090205460ff16155b15612da657600c54811115612da65760405162461bcd60e51b815260040180806020018281038252603a815260200180613f62603a913960400191505060405180910390fd5b6000612db130611a6d565b600b5490915081108015908190612dd25750600854600160a01b900460ff16155b8015612df757506001600160a01b03851660009081526019602052604090205460ff16155b8015612e1c5750612e06611fd7565b6001600160a01b0316856001600160a01b031614155b8015612e415750612e2b611fd7565b6001600160a01b0316846001600160a01b031614155b15612fa2576008805460ff60a01b1916600160a01b179055601354601154601054600092612e86929091612e8091612e79919061291a565b869061357e565b906135d7565b905047612e9282613619565b6000612e9e47836137bf565b90506000612eca612ebc60105460115461291a90919063ffffffff16565b601054612e8090859061357e565b90506000612ed883836137bf565b6015546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612f13573d6000803e3d6000fd5b506016546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f4e573d6000803e3d6000fd5b506000612f6c601354612e80600f548b61357e90919063ffffffff16565b9050612f7781613801565b6000612f8230611a6d565b9050612f8d81613887565b50506008805460ff60a01b1916905550505050505b6008546001600160a01b03861660009081526018602052604090205460ff600160a01b909204821615911680612ff057506001600160a01b03851660009081526018602052604090205460ff165b15612ff9575060005b801561307057600061301b6064612e806013548861357e90919063ffffffff16565b6001600160a01b0387166000908152601960205260408120549192509060ff161561305657606460125487028161304e57fe5b049182019190505b61306086836137bf565b955061306d883084613423565b50505b61307b868686613423565b6009546001600160a01b031663e30443bc8761309681611a6d565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156130dc57600080fd5b505af19250505080156130ed575060015b506009546001600160a01b031663e30443bc8661310981611a6d565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561314f57600080fd5b505af1925050508015613160575060015b50600854600160a01b900460ff1661325557601754600954604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b1580156131c657600080fd5b505af19250505080156131fa57506040513d60608110156131e657600080fd5b508051602082015160409092015190919060015b61320357613253565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b600081848411156132ed5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132b257818101518382015260200161329a565b50505050905090810190601f1680156132df5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526019602052604090205460ff16151581151514156133535760405162461bcd60e51b815260040180806020018281038252603d815260200180614039603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601960205260409020805460ff191682158015919091179091556133e7576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156133ce57600080fd5b505af11580156133e2573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166134685760405162461bcd60e51b8152600401808060200182810382526025815260200180613f3d6025913960400191505060405180910390fd5b6001600160a01b0382166134ad5760405162461bcd60e51b8152600401808060200182810382526023815260200180613d6f6023913960400191505060405180910390fd5b6134b8838383613259565b6134f581604051806060016040528060268152602001613e1f602691396001600160a01b038616600090815260208190526040902054919061325e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054613524908261291a565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261358d57506000610fa2565b8282028284828161359a57fe5b04146129745760405162461bcd60e51b8152600401808060200182810382526021815260200180613e696021913960400191505060405180910390fd5b600061297483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a80565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061364757fe5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561369b57600080fd5b505afa1580156136af573d6000803e3d6000fd5b505050506040513d60208110156136c557600080fd5b50518151829060019081106136d657fe5b6001600160a01b0392831660209182029290920101526007546136fc913091168461297f565b60075460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561378257818101518382015260200161376a565b505050509050019650505050505050600060405180830381600087803b1580156137ab57600080fd5b505af1158015613255573d6000803e3d6000fd5b600061297483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061325e565b600061380e8260026135d7565b9050600061381c83836137bf565b90504761382883613619565b600061383447836137bf565b90506138408382613ae5565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61389081613bb8565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156138ff57600080fd5b505afa158015613913573d6000803e3d6000fd5b505050506040513d602081101561392957600080fd5b50516009546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293506000927f00000000000000000000000000000000000000000000000000000000000000009092169163a9059cbb9160448082019260209290919082900301818787803b1580156139a757600080fd5b505af11580156139bb573d6000803e3d6000fd5b505050506040513d60208110156139d157600080fd5b50519050801561325957600954604080516351c2a0e360e01b81526004810185905290516001600160a01b03909216916351c2a0e39160248082019260009290919082900301818387803b158015613a2857600080fd5b505af1158015613a3c573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b60008183613acf5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156132b257818101518382015260200161329a565b506000838581613adb57fe5b0495945050505050565b600754613afd9030906001600160a01b03168461297f565b6007546001600160a01b031663f305d719823085600080613b1c611fd7565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613b8757600080fd5b505af1158015613b9b573d6000803e3d6000fd5b50505050506040513d6060811015613bb257600080fd5b50505050565b604080516003808252608082019092526060916020820183803683370190505090503081600081518110613be857fe5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613c3c57600080fd5b505afa158015613c50573d6000803e3d6000fd5b505050506040513d6020811015613c6657600080fd5b5051815182906001908110613c7757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f000000000000000000000000000000000000000000000000000000000000000081600281518110613cc557fe5b6001600160a01b039283166020918202929092010152600754613ceb913091168461297f565b600754604051635c11d79560e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b0390971696635c11d795968a968a9594939092909160c40190602087810191028083838b831561378257818101518382015260200161376a56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734546543a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e6564206279207468652045465420746f6b656e20636f6e74726163744f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724546543a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c3030304546543a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737353656c6c207472616e7366657220616d6f756e74206578636565647320746865206d617853656c6c5472616e73616374696f6e416d6f756e742e4546543a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734546543a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274546543a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c75654546543a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4546543a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c7565a26469706673582212202ecbe5a311379dbc40bfd46e7eeaf3e4f2ecc056474550d970e01a15fb44cd8564736f6c634300060c003360c06040527f2170ed0880ac9a755fd29b2688956bd959f933f80000000000000000000000006080523480156200003557600080fd5b50604080518082018252601381527f4546545f4469766964656e5f547261636b65720000000000000000000000000060208083019182528351808501909452601484527f4546545f4469766964656e645f547261636b657200000000000000000000000090840152815191929183918391620000b4916003916200014d565b508051620000ca9060049060208401906200014d565b5050506000620000df6200014960201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050610e1060115550692a5a058fc295ed00000060a052620001e9565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019057805160ff1916838001178555620001c0565b82800160010185558215620001c0579182015b82811115620001c0578251825591602001919060010190620001a3565b50620001ce929150620001d2565b5090565b5b80821115620001ce5760008155600101620001d3565b60805160601c60a0516121376200021a6000398061102b52806110f8525080610dee5280611ac452506121376000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c80638322fff211610125578063bc4c4b37116100ad578063e7841ec01161007c578063e7841ec01461067b578063e98030c714610683578063f2fde38b146106a0578063fbcbc0f1146106c6578063ffb2c479146106ec5761021c565b8063bc4c4b37146105eb578063be10b61414610619578063dd62ed3e14610621578063e30443bc1461064f5761021c565b806395d89b41116100f457806395d89b411461053f578063a457c2d714610547578063a8b9d24014610573578063a9059cbb14610599578063aafd847a146105c55761021c565b80638322fff2146104e557806385a6b3ae146105095780638da5cb5b1461051157806391b89fba146105195761021c565b806331e79db0116101a857806351c2a0e31161017757806351c2a0e31461048a5780636a474002146104a75780636f2789ec146104af57806370a08231146104b7578063715018a6146104dd5761021c565b806331e79db0146103a857806339509351146103d05780634e7b827f146103fc5780635183d6fd146104225761021c565b8063226cfa3d116101ef578063226cfa3d1461030057806323b872dd1461032657806327ce01471461035c5780633009a60914610382578063313ce5671461038a5761021c565b806306fdde0314610221578063095ea7b31461029e57806309bbedde146102de57806318160ddd146102f8575b600080fd5b610229610727565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026357818101518382015260200161024b565b50505050905090810190601f1680156102905780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102ca600480360360408110156102b457600080fd5b506001600160a01b0381351690602001356107bd565b604080519115158252519081900360200190f35b6102e66107db565b60408051918252519081900360200190f35b6102e66107e1565b6102e66004803603602081101561031657600080fd5b50356001600160a01b03166107e7565b6102ca6004803603606081101561033c57600080fd5b506001600160a01b038135811691602081013590911690604001356107f9565b6102e66004803603602081101561037257600080fd5b50356001600160a01b0316610880565b6102e66108df565b6103926108e5565b6040805160ff9092168252519081900360200190f35b6103ce600480360360208110156103be57600080fd5b50356001600160a01b03166108ea565b005b6102ca600480360360408110156103e657600080fd5b506001600160a01b038135169060200135610a46565b6102ca6004803603602081101561041257600080fd5b50356001600160a01b0316610a94565b61043f6004803603602081101561043857600080fd5b5035610aa9565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b6103ce600480360360208110156104a057600080fd5b5035610c08565b6103ce610cf2565b6102e6610d29565b6102e6600480360360208110156104cd57600080fd5b50356001600160a01b0316610d2f565b6103ce610d4a565b6104ed610dec565b604080516001600160a01b039092168252519081900360200190f35b6102e6610e10565b6104ed610e16565b6102e66004803603602081101561052f57600080fd5b50356001600160a01b0316610e25565b610229610e30565b6102ca6004803603604081101561055d57600080fd5b506001600160a01b038135169060200135610e91565b6102e66004803603602081101561058957600080fd5b50356001600160a01b0316610ef9565b6102ca600480360360408110156105af57600080fd5b506001600160a01b038135169060200135610f25565b6102e6600480360360208110156105db57600080fd5b50356001600160a01b0316610f39565b6102ca6004803603604081101561060157600080fd5b506001600160a01b0381351690602001351515610f54565b6102e6611029565b6102e66004803603604081101561063757600080fd5b506001600160a01b038135811691602001351661104d565b6103ce6004803603604081101561066557600080fd5b506001600160a01b038135169060200135611078565b6102e6611242565b6103ce6004803603602081101561069957600080fd5b5035611248565b6103ce600480360360208110156106b657600080fd5b50356001600160a01b0316611364565b61043f600480360360208110156106dc57600080fd5b50356001600160a01b031661145d565b6107096004803603602081101561070257600080fd5b50356115d0565b60408051938452602084019290925282820152519081900360600190f35b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b35780601f10610788576101008083540402835291602001916107b3565b820191906000526020600020905b81548152906001019060200180831161079657829003601f168201915b5050505050905090565b60006107d16107ca6116ce565b84846116d2565b5060015b92915050565b600a5490565b60025490565b60106020526000908152604090205481565b60006108068484846117be565b610876846108126116ce565b61087185604051806060016040528060288152602001611f69602891396001600160a01b038a166000908152600160205260408120906108506116ce565b6001600160a01b0316815260208101919091526040016000205491906117f5565b6116d2565b5060019392505050565b6001600160a01b038116600090815260076020526040812054600160801b906108cf906108ca906108c46108bf6108b688610d2f565b6006549061188c565b6118ec565b906118fc565b61192f565b816108d657fe5b0490505b919050565b600e5481565b601290565b6108f26116ce565b6005546001600160a01b03908116911614610942576040805162461bcd60e51b81526020600482018190526024820152600080516020611f91833981519152604482015290519081900360640190fd5b6001600160a01b0381166000908152600f602052604090205460ff161561096857600080fd5b6001600160a01b0381166000908152600f60205260408120805460ff19166001179055610996908290611942565b6040805163131836e760e21b8152600a60048201526001600160a01b03831660248201529051736d45aa7c387da4d4b2e9626546abd074d34a860891634c60db9c916044808301926000929190829003018186803b1580156109f757600080fd5b505af4158015610a0b573d6000803e3d6000fd5b50506040516001600160a01b03841692507fa878b31040b2e6d0a9a3d3361209db3908ba62014b0dca52adbaee451d128b259150600090a250565b60006107d1610a536116ce565b846108718560016000610a646116ce565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061199b565b600f6020526000908152604090205460ff1681565b600080600080600080600080600a736d45aa7c387da4d4b2e9626546abd074d34a860863deb3d89690916040518263ffffffff1660e01b81526004018082815260200191505060206040518083038186803b158015610b0757600080fd5b505af4158015610b1b573d6000803e3d6000fd5b505050506040513d6020811015610b3157600080fd5b50518910610b58575060009650600019955085945086935083925082915081905080610bfd565b6000600a736d45aa7c387da4d4b2e9626546abd074d34a860863d1aa9e7e90918c6040518363ffffffff1660e01b8152600401808381526020018281526020019250505060206040518083038186803b158015610bb457600080fd5b505af4158015610bc8573d6000803e3d6000fd5b505050506040513d6020811015610bde57600080fd5b50519050610beb8161145d565b98509850985098509850985098509850505b919395975091939597565b610c106116ce565b6005546001600160a01b03908116911614610c60576040805162461bcd60e51b81526020600482018190526024820152600080516020611f91833981519152604482015290519081900360640190fd5b6000610c6a6107e1565b11610c7457600080fd5b8015610cef57610ca5610c856107e1565b610c9383600160801b61188c565b81610c9a57fe5b60065491900461199b565b60065560408051828152905133917fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d78454116511919081900360200190a2600954610ceb908261199b565b6009555b50565b60405162461bcd60e51b815260040180806020018281038252606381526020018061203f6063913960800191505060405180910390fd5b60115481565b6001600160a01b031660009081526020819052604090205490565b610d526116ce565b6005546001600160a01b03908116911614610da2576040805162461bcd60e51b81526020600482018190526024820152600080516020611f91833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095481565b6005546001600160a01b031690565b60006107d582610ef9565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107b35780601f10610788576101008083540402835291602001916107b3565b60006107d1610e9e6116ce565b84610871856040518060600160405280602581526020016120dd6025913960016000610ec86116ce565b6001600160a01b03908116825260208083019390935260409182016000908120918d168152925290205491906117f5565b6001600160a01b0381166000908152600860205260408120546107d590610f1f84610880565b906119f5565b60006107d1610f326116ce565b84846117be565b6001600160a01b031660009081526008602052604090205490565b6000610f5e6116ce565b6005546001600160a01b03908116911614610fae576040805162461bcd60e51b81526020600482018190526024820152600080516020611f91833981519152604482015290519081900360640190fd5b6000610fb984611a37565b9050801561101f576001600160a01b0384166000818152601060209081526040918290204290558151848152915186151593927fa2c38e2d2fb7e3e1912d937fd1ca11ed6d51864dee4cfa7a7bf02becd7acf09292908290030190a360019150506107d5565b5060009392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6110806116ce565b6005546001600160a01b039081169116146110d0576040805162461bcd60e51b81526020600482018190526024820152600080516020611f91833981519152604482015290519081900360640190fd5b6001600160a01b0382166000908152600f602052604090205460ff16156110f65761123e565b7f000000000000000000000000000000000000000000000000000000000000000081106111ac576111278282611942565b60408051632f0ad01760e21b8152600a60048201526001600160a01b0384166024820152604481018390529051736d45aa7c387da4d4b2e9626546abd074d34a86089163bc2b405c916064808301926000929190829003018186803b15801561118f57600080fd5b505af41580156111a3573d6000803e3d6000fd5b50505050611231565b6111b7826000611942565b6040805163131836e760e21b8152600a60048201526001600160a01b03841660248201529051736d45aa7c387da4d4b2e9626546abd074d34a860891634c60db9c916044808301926000929190829003018186803b15801561121857600080fd5b505af415801561122c573d6000803e3d6000fd5b505050505b61123c826001610f54565b505b5050565b600e5490565b6112506116ce565b6005546001600160a01b039081169116146112a0576040805162461bcd60e51b81526020600482018190526024820152600080516020611f91833981519152604482015290519081900360640190fd5b610e1081101580156112b55750620151808111155b6112f05760405162461bcd60e51b8152600401808060200182810382526049815260200180611fd26049913960600191505060405180910390fd5b6011548114156113315760405162461bcd60e51b815260040180806020018281038252603b8152602001806120a2603b913960400191505060405180910390fd5b60115460405182907f474ea64804364a1e29a4487ddb63c3342a2dd826ccd8acf48825e680a0e6f20f90600090a3601155565b61136c6116ce565b6005546001600160a01b039081169116146113bc576040805162461bcd60e51b81526020600482018190526024820152600080516020611f91833981519152604482015290519081900360640190fd5b6001600160a01b0381166114015760405162461bcd60e51b8152600401808060200182810382526026815260200180611ed66026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600080600080600080600080889750600a736d45aa7c387da4d4b2e9626546abd074d34a86086317e142d190918a6040518363ffffffff1660e01b815260040180838152602001826001600160a01b031681526020019250505060206040518083038186803b1580156114cf57600080fd5b505af41580156114e3573d6000803e3d6000fd5b505050506040513d60208110156114f957600080fd5b5051965060001995506000871261155d57600e5487111561152957600e54611522908890611bc6565b955061155d565b600e54600a546000911061153e57600061154d565b600e54600a5461154d916119f5565b905061155988826118fc565b9650505b61156688610ef9565b945061157188610880565b6001600160a01b03891660009081526010602052604090205490945092508261159b5760006115a9565b6011546115a990849061199b565b91504282116115b95760006115c3565b6115c382426119f5565b9050919395975091939597565b600a5460009081908190806115f0575050600e54600092508291506116c7565b600e546000805a90506000805b898410801561160b57508582105b156116b657600a54600190950194851061162457600094505b6000600a600001868154811061163657fe5b60009182526020808320909101546001600160a01b0316808352601090915260409091205490915061166790611bf8565b1561168357611677816001610f54565b15611683576001909101905b60019092019160005a9050808511156116ad576116aa6116a386836119f5565b879061199b565b95505b93506115fd9050565b600e85905590975095509193505050505b9193909250565b3390565b6001600160a01b0383166117175760405162461bcd60e51b815260040180806020018281038252602481526020018061201b6024913960400191505060405180910390fd5b6001600160a01b03821661175c5760405162461bcd60e51b8152600401808060200182810382526022815260200180611efc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60405162461bcd60e51b815260040180806020018281038252602a815260200180611f1e602a913960400191505060405180910390fd5b600081848411156118845760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611849578181015183820152602001611831565b50505050905090810190601f1680156118765780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008261189b575060006107d5565b828202828482816118a857fe5b04146118e55760405162461bcd60e51b8152600401808060200182810382526021815260200180611f486021913960400191505060405180910390fd5b9392505050565b600081818112156107d557600080fd5b60008282018183128015906119115750838112155b80611926575060008312801561192657508381125b6118e557600080fd5b60008082121561193e57600080fd5b5090565b600061194d83610d2f565b90508082111561197557600061196383836119f5565b905061196f8482611c1f565b5061123c565b8082101561123c57600061198982846119f5565b90506119958482611c83565b50505050565b6000828201838110156118e5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60006118e583836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117f5565b600080611a4383610ef9565b90508015611bbd576001600160a01b038316600090815260086020526040902054611a6e908261199b565b6001600160a01b038416600081815260086020908152604091829020939093558051848152905191927fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d92918290030190a260007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb85846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611b3957600080fd5b505af1158015611b4d573d6000803e3d6000fd5b505050506040513d6020811015611b6357600080fd5b5051905080611bb5576001600160a01b038416600090815260086020526040902054611b8f90836119f5565b6001600160a01b03851660009081526008602052604081209190915592506108da915050565b5090506108da565b50600092915050565b6000818303818312801590611bdb5750838113155b80611926575060008312801561192657508381136118e557600080fd5b600042821115611c0a575060006108da565b601154611c1742846119f5565b101592915050565b611c298282611cc7565b611c63611c446108bf8360065461188c90919063ffffffff16565b6001600160a01b03841660009081526007602052604090205490611bc6565b6001600160a01b0390921660009081526007602052604090209190915550565b611c8d8282611db7565b611c63611ca86108bf8360065461188c90919063ffffffff16565b6001600160a01b038416600090815260076020526040902054906118fc565b6001600160a01b038216611d22576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611d2e6000838361123c565b600254611d3b908261199b565b6002556001600160a01b038216600090815260208190526040902054611d61908261199b565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038216611dfc5760405162461bcd60e51b8152600401808060200182810382526021815260200180611fb16021913960400191505060405180910390fd5b611e088260008361123c565b611e4581604051806060016040528060228152602001611eb4602291396001600160a01b03851660009081526020819052604090205491906117f5565b6001600160a01b038316600090815260208190526040902055600254611e6b90826119f5565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734546545f4469766964656e645f547261636b65723a204e6f207472616e736665727320616c6c6f776564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e2066726f6d20746865207a65726f20616464726573734546545f4469766964656e645f547261636b65723a20636c61696d57616974206d757374206265207570646174656420746f206265747765656e203120616e6420323420686f75727345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734546545f4469766964656e645f547261636b65723a2077697468647261774469766964656e642064697361626c65642e20557365207468652027636c61696d272066756e6374696f6e206f6e20746865206d61696e2045465420636f6e74726163742e4546545f4469766964656e645f547261636b65723a2043616e6e6f742075706461746520636c61696d5761697420746f2073616d652076616c756545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220e8b383eb5b5625fd2e9da6adceee7f1bfbf36849b27e5926c0205e3ac45b70ae64736f6c634300060c00334546543a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274546543a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c7565
Deployed Bytecode
0x6080604052600436106103d25760003560e01c80636b67c4df116101fd578063a457c2d711610118578063c492f046116100ab578063e6c75f711161007a578063e6c75f7114610de0578063e7841ec014610df5578063e98030c714610e0a578063f27fd25414610e34578063f2fde38b14610e5e576103d9565b8063c492f04614610cfc578063d8c6404b14610d7b578063dd62ed3e14610d90578063e2f4560514610dcb576103d9565b8063adefd90c116100e7578063adefd90c14610c3a578063b62496f514610c64578063c024666814610c97578063c0982f4814610cd2576103d9565b8063a457c2d714610b17578063a8b9d24014610b50578063a9059cbb14610b83578063ad56c13c14610bbc576103d9565b80638c0344db1161019057806398118cb41161015f57806398118cb414610a9d5780639a7a23d614610ab25780639c1b8af514610aed578063a26579ad14610b02576103d9565b80638c0344db14610a345780638da5cb5b14610a4957806391d55f4114610a5e57806395d89b4114610a88576103d9565b80638322fff2116101cc5780638322fff2146109ad57806385141a77146109c2578063871c128d146109d757806388bdd9be14610a01576103d9565b80636b67c4df14610926578063700bb1911461093b57806370a0823114610965578063715018a614610998576103d9565b806339509351116102ed5780634fbee1931161028057806365b8dbc01161024f57806365b8dbc0146108965780636827e764146108c95780636843cd84146108de57806369cf17d414610911576103d9565b80634fbee193146107f15780635d098b3814610824578063625e764c1461085757806364b0f65314610881576103d9565b8063455a4396116102bc578063455a43961461076257806345f579771461079d57806349bd5a5e146107c75780634e71d92d146107dc576103d9565b806339509351146106d5578063407133d21461070e5780634144d9e41461072357806341e6e8cb14610738576103d9565b80631d0adc07116103655780632c1f5216116103345780632c1f52161461064d57806330bb4cff14610662578063313ce5671461067757806331e79db0146106a2576103d9565b80631d0adc07146105965780631f46b1c6146105c957806323b872dd146105f557806325250c7114610638576103d9565b806313114a9d116103a157806313114a9d146105085780631694505e1461051d57806318160ddd1461054e5780631cdd3be314610563576103d9565b806302259e9e146103de57806303a280fc1461040557806306fdde0314610431578063095ea7b3146104bb576103d9565b366103d957005b600080fd5b3480156103ea57600080fd5b506103f3610e91565b60408051918252519081900360200190f35b34801561041157600080fd5b5061042f6004803603602081101561042857600080fd5b5035610e97565b005b34801561043d57600080fd5b50610446610ef4565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610480578181015183820152602001610468565b50505050905090810190601f1680156104ad5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156104c757600080fd5b506104f4600480360360408110156104de57600080fd5b506001600160a01b038135169060200135610f8a565b604080519115158252519081900360200190f35b34801561051457600080fd5b506103f3610fa8565b34801561052957600080fd5b50610532610fae565b604080516001600160a01b039092168252519081900360200190f35b34801561055a57600080fd5b506103f3610fbd565b34801561056f57600080fd5b506104f46004803603602081101561058657600080fd5b50356001600160a01b0316610fc3565b3480156105a257600080fd5b5061042f600480360360208110156105b957600080fd5b50356001600160a01b0316610fd8565b3480156105d557600080fd5b5061042f600480360360208110156105ec57600080fd5b50351515611052565b34801561060157600080fd5b506104f46004803603606081101561061857600080fd5b506001600160a01b038135811691602081013590911690604001356110c8565b34801561064457600080fd5b5061053261114f565b34801561065957600080fd5b5061053261115e565b34801561066e57600080fd5b506103f361116d565b34801561068357600080fd5b5061068c6111e3565b6040805160ff9092168252519081900360200190f35b3480156106ae57600080fd5b5061042f600480360360208110156106c557600080fd5b50356001600160a01b03166111e8565b3480156106e157600080fd5b506104f4600480360360408110156106f857600080fd5b506001600160a01b0381351690602001356112a9565b34801561071a57600080fd5b506105326112f7565b34801561072f57600080fd5b50610532611306565b34801561074457600080fd5b5061042f6004803603602081101561075b57600080fd5b5035611315565b34801561076e57600080fd5b5061042f6004803603604081101561078557600080fd5b506001600160a01b0381351690602001351515611372565b3480156107a957600080fd5b5061042f600480360360208110156107c057600080fd5b50356113f5565b3480156107d357600080fd5b50610532611479565b3480156107e857600080fd5b5061042f611488565b3480156107fd57600080fd5b506104f46004803603602081101561081457600080fd5b50356001600160a01b031661150d565b34801561083057600080fd5b5061042f6004803603602081101561084757600080fd5b50356001600160a01b031661152b565b34801561086357600080fd5b5061042f6004803603602081101561087a57600080fd5b50356115a5565b34801561088d57600080fd5b506103f3611627565b3480156108a257600080fd5b5061042f600480360360208110156108b957600080fd5b50356001600160a01b031661166c565b3480156108d557600080fd5b506103f36118f1565b3480156108ea57600080fd5b506103f36004803603602081101561090157600080fd5b50356001600160a01b03166118f7565b34801561091d57600080fd5b506103f361197a565b34801561093257600080fd5b506103f3611980565b34801561094757600080fd5b5061042f6004803603602081101561095e57600080fd5b5035611986565b34801561097157600080fd5b506103f36004803603602081101561098857600080fd5b50356001600160a01b0316611a6d565b3480156109a457600080fd5b5061042f611a88565b3480156109b957600080fd5b50610532611b2a565b3480156109ce57600080fd5b50610532611b4e565b3480156109e357600080fd5b5061042f600480360360208110156109fa57600080fd5b5035611b5d565b348015610a0d57600080fd5b5061042f60048036036020811015610a2457600080fd5b50356001600160a01b0316611c7a565b348015610a4057600080fd5b506103f3611fd1565b348015610a5557600080fd5b50610532611fd7565b348015610a6a57600080fd5b5061042f60048036036020811015610a8157600080fd5b5035611fe6565b348015610a9457600080fd5b50610446612043565b348015610aa957600080fd5b506103f36120a4565b348015610abe57600080fd5b5061042f60048036036040811015610ad557600080fd5b506001600160a01b03813516906020013515156120aa565b348015610af957600080fd5b506103f3612159565b348015610b0e57600080fd5b506103f361215f565b348015610b2357600080fd5b506104f460048036036040811015610b3a57600080fd5b506001600160a01b0381351690602001356121a4565b348015610b5c57600080fd5b506103f360048036036020811015610b7357600080fd5b50356001600160a01b031661220c565b348015610b8f57600080fd5b506104f460048036036040811015610ba657600080fd5b506001600160a01b03813516906020013561225d565b348015610bc857600080fd5b50610bef60048036036020811015610bdf57600080fd5b50356001600160a01b0316612271565b604080516001600160a01b0390991689526020890197909752878701959095526060870193909352608086019190915260a085015260c084015260e083015251908190036101000190f35b348015610c4657600080fd5b5061042f60048036036020811015610c5d57600080fd5b5035612351565b348015610c7057600080fd5b506104f460048036036020811015610c8757600080fd5b50356001600160a01b03166123c8565b348015610ca357600080fd5b5061042f60048036036040811015610cba57600080fd5b506001600160a01b03813516906020013515156123dd565b348015610cde57600080fd5b5061042f60048036036020811015610cf557600080fd5b50356124f3565b348015610d0857600080fd5b5061042f60048036036040811015610d1f57600080fd5b810190602081018135640100000000811115610d3a57600080fd5b820183602082011115610d4c57600080fd5b80359060200191846020830284011164010000000083111715610d6e57600080fd5b919350915035151561256a565b348015610d8757600080fd5b506104f461268a565b348015610d9c57600080fd5b506103f360048036036040811015610db357600080fd5b506001600160a01b038135811691602001351661269a565b348015610dd757600080fd5b506103f36126c5565b348015610dec57600080fd5b506103f36126cb565b348015610e0157600080fd5b506103f36126d1565b348015610e1657600080fd5b5061042f60048036036020811015610e2d57600080fd5b5035612716565b348015610e4057600080fd5b50610bef60048036036020811015610e5757600080fd5b50356127bb565b348015610e6a57600080fd5b5061042f60048036036020811015610e8157600080fd5b50356001600160a01b0316612821565b600c5481565b610e9f61297b565b6005546001600160a01b03908116911614610eef576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b601255565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f805780601f10610f5557610100808354040283529160200191610f80565b820191906000526020600020905b815481529060010190602001808311610f6357829003601f168201915b5050505050905090565b6000610f9e610f9761297b565b848461297f565b5060015b92915050565b60135481565b6007546001600160a01b031681565b60025490565b600d6020526000908152604090205460ff1681565b610fe061297b565b6005546001600160a01b03908116911614611030576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b601680546001600160a01b0319166001600160a01b0392909216919091179055565b61105a61297b565b6005546001600160a01b039081169116146110aa576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b60068054911515600160a01b0260ff60a01b19909216919091179055565b60006110d5848484612a6b565b611145846110e161297b565b61114085604051806060016040528060288152602001613e8a602891396001600160a01b038a1660009081526001602052604081209061111f61297b565b6001600160a01b03168152602081019190915260400160002054919061325e565b61297f565b5060019392505050565b6016546001600160a01b031681565b6009546001600160a01b031681565b600954604080516342d359d760e11b815290516000926001600160a01b0316916385a6b3ae916004808301926020929190829003018186803b1580156111b257600080fd5b505afa1580156111c6573d6000803e3d6000fd5b505050506040513d60208110156111dc57600080fd5b5051905090565b601290565b6111f061297b565b6005546001600160a01b03908116911614611240576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6009546040805163031e79db60e41b81526001600160a01b038481166004830152915191909216916331e79db091602480830192600092919082900301818387803b15801561128e57600080fd5b505af11580156112a2573d6000803e3d6000fd5b5050505050565b6000610f9e6112b661297b565b8461114085600160006112c761297b565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549061291a565b6006546001600160a01b031681565b6015546001600160a01b031681565b61131d61297b565b6005546001600160a01b0390811691161461136d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b600c55565b61137a61297b565b6005546001600160a01b039081169116146113ca576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6113fd61297b565b6005546001600160a01b0390811691161461144d576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b600e819055601154601054600f54611473929161146d918290869061291a565b9061291a565b60135550565b6008546001600160a01b031681565b6009546040805163bc4c4b3760e01b815233600482015260006024820181905291516001600160a01b039093169263bc4c4b3792604480840193602093929083900390910190829087803b1580156114df57600080fd5b505af11580156114f3573d6000803e3d6000fd5b505050506040513d602081101561150957600080fd5b5050565b6001600160a01b031660009081526018602052604090205460ff1690565b61153361297b565b6005546001600160a01b03908116911614611583576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b601580546001600160a01b0319166001600160a01b0392909216919091179055565b6115ad61297b565b6005546001600160a01b039081169116146115fd576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b8060108190555061147360115461146d60105461146d600f54600e5461291a90919063ffffffff16565b600954604080516304ddf6ef60e11b815290516000926001600160a01b0316916309bbedde916004808301926020929190829003018186803b1580156111b257600080fd5b61167461297b565b6005546001600160a01b039081169116146116c4576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6007546001600160a01b03828116911614156117115760405162461bcd60e51b81526004018080602001828103825260288152602001806140766028913960400191505060405180910390fd5b6007546040516001600160a01b03918216918316907f8fc842bbd331dfa973645f4ed48b11683d501ebf1352708d77a5da2ab49a576e90600090a3600780546001600160a01b0319166001600160a01b0383811691909117918290556040805163c45a015560e01b815290516000939092169163c45a015591600480820192602092909190829003018186803b1580156117aa57600080fd5b505afa1580156117be573d6000803e3d6000fd5b505050506040513d60208110156117d457600080fd5b5051600754604080516315ab88c960e31b815290516001600160a01b039384169363c9c6539693309391169163ad5c464891600480820192602092909190829003018186803b15801561182657600080fd5b505afa15801561183a573d6000803e3d6000fd5b505050506040513d602081101561185057600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301525160448083019260209291908290030181600087803b1580156118a257600080fd5b505af11580156118b6573d6000803e3d6000fd5b505050506040513d60208110156118cc57600080fd5b5051600880546001600160a01b0319166001600160a01b039092169190911790555050565b60115481565b600954604080516370a0823160e01b81526001600160a01b038481166004830152915160009392909216916370a0823191602480820192602092909190829003018186803b15801561194857600080fd5b505afa15801561195c573d6000803e3d6000fd5b505050506040513d602081101561197257600080fd5b505192915050565b60125481565b60105481565b600954604080516001624d3b8760e01b03198152600481018490529051600092839283926001600160a01b039092169163ffb2c4799160248082019260609290919082900301818787803b1580156119dd57600080fd5b505af11580156119f1573d6000803e3d6000fd5b505050506040513d6060811015611a0757600080fd5b5080516020808301516040938401518451848152928301829052828501819052606083018990529351929650945091925032916000917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a350505050565b6001600160a01b031660009081526020819052604090205490565b611a9061297b565b6005546001600160a01b03908116911614611ae0576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b7f0000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f881565b600a546001600160a01b031681565b611b6561297b565b6005546001600160a01b03908116911614611bb5576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b62030d408110158015611bcb5750620c35008111155b611c065760405162461bcd60e51b8152600401808060200182810382526039815260200180613ed26039913960400191505060405180910390fd5b601754811415611c475760405162461bcd60e51b81526004018080602001828103825260318152602001806140c36031913960400191505060405180910390fd5b60175460405182907f40d7e40e79af4e8e5a9b3c57030d8ea93f13d669c06d448c4d631d4ae7d23db790600090a3601755565b611c8261297b565b6005546001600160a01b03908116911614611cd2576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6009546001600160a01b0382811691161415611d1f5760405162461bcd60e51b8152600401808060200182810382526032815260200180613f0b6032913960400191505060405180910390fd5b6000819050306001600160a01b0316816001600160a01b0316638da5cb5b6040518163ffffffff1660e01b815260040160206040518083038186803b158015611d6757600080fd5b505afa158015611d7b573d6000803e3d6000fd5b505050506040513d6020811015611d9157600080fd5b50516001600160a01b031614611dd85760405162461bcd60e51b8152600401808060200182810382526045815260200180613d926045913960600191505060405180910390fd5b806001600160a01b03166331e79db0826040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611e2757600080fd5b505af1158015611e3b573d6000803e3d6000fd5b50506040805163031e79db60e41b815230600482015290516001600160a01b03851693506331e79db09250602480830192600092919082900301818387803b158015611e8657600080fd5b505af1158015611e9a573d6000803e3d6000fd5b50505050806001600160a01b03166331e79db0611eb5611fd7565b6040518263ffffffff1660e01b815260040180826001600160a01b03168152602001915050600060405180830381600087803b158015611ef457600080fd5b505af1158015611f08573d6000803e3d6000fd5b50506007546040805163031e79db60e41b81526001600160a01b039283166004820152905191851693506331e79db0925060248082019260009290919082900301818387803b158015611f5a57600080fd5b505af1158015611f6e573d6000803e3d6000fd5b50506009546040516001600160a01b03918216935090851691507f90c7d74461c613da5efa97d90740869367d74ab3aa5837aa4ae9a975f954b7a890600090a3600980546001600160a01b0319166001600160a01b039290921691909117905550565b600e5481565b6005546001600160a01b031690565b611fee61297b565b6005546001600160a01b0390811691161461203e576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b601455565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610f805780601f10610f5557610100808354040283529160200191610f80565b600f5481565b6120b261297b565b6005546001600160a01b03908116911614612102576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6008546001600160a01b038381169116141561214f5760405162461bcd60e51b815260040180806020018281038252604a815260200180613f9c604a913960600191505060405180910390fd5b61150982826132f5565b60175481565b60095460408051631bc9e27b60e21b815290516000926001600160a01b031691636f2789ec916004808301926020929190829003018186803b1580156111b257600080fd5b6000610f9e6121b161297b565b846111408560405180606001604052806025815260200161409e60259139600160006121db61297b565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919061325e565b600954604080516302a2e74960e61b81526001600160a01b0384811660048301529151600093929092169163a8b9d24091602480820192602092909190829003018186803b15801561194857600080fd5b6000610f9e61226a61297b565b8484612a6b565b600080600080600080600080600960009054906101000a90046001600160a01b03166001600160a01b031663fbcbc0f18a6040518263ffffffff1660e01b815260040180826001600160a01b031681526020019150506101006040518083038186803b1580156122e057600080fd5b505afa1580156122f4573d6000803e3d6000fd5b505050506040513d61010081101561230b57600080fd5b508051602082015160408301516060840151608085015160a086015160c087015160e090970151959e50939c50919a509850965094509092509050919395975091939597565b61235961297b565b6005546001600160a01b039081169116146123a9576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b600f819055601154601054600e54611473929161146d9182908661291a565b60196020526000908152604090205460ff1681565b6123e561297b565b6005546001600160a01b03908116911614612435576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6001600160a01b03821660009081526018602052604090205460ff16151581151514156124935760405162461bcd60e51b815260040180806020018281038252602f81526020018061400a602f913960400191505060405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff1916851515908117909155825190815291517f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79281900390910190a25050565b6124fb61297b565b6005546001600160a01b0390811691161461254b576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6011819055601054600f54600e5461147392849261146d92839161291a565b61257261297b565b6005546001600160a01b039081169116146125c2576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b60005b828110156126175781601860008686858181106125de57fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff19169115159190911790556001016125c5565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051808060200183151581526020018281038252858582818152602001925060200280828437600083820152604051601f909101601f1916909201829003965090945050505050a1505050565b600654600160a01b900460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600b5481565b60145481565b6009546040805163039e107b60e61b815290516000926001600160a01b03169163e7841ec0916004808301926020929190829003018186803b1580156111b257600080fd5b61271e61297b565b6005546001600160a01b0390811691161461276e576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6009546040805163e98030c760e01b81526004810184905290516001600160a01b039092169163e98030c79160248082019260009290919082900301818387803b15801561128e57600080fd5b600080600080600080600080600960009054906101000a90046001600160a01b03166001600160a01b0316635183d6fd8a6040518263ffffffff1660e01b8152600401808281526020019150506101006040518083038186803b1580156122e057600080fd5b61282961297b565b6005546001600160a01b03908116911614612879576040805162461bcd60e51b81526020600482018190526024820152600080516020613eb2833981519152604482015290519081900360640190fd5b6001600160a01b0381166128be5760405162461bcd60e51b8152600401808060200182810382526026815260200180613dd76026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b600082820183811015612974576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b3390565b6001600160a01b0383166129c45760405162461bcd60e51b8152600401808060200182810382526024815260200180613fe66024913960400191505060405180910390fd5b6001600160a01b038216612a095760405162461bcd60e51b8152600401808060200182810382526022815260200180613dfd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316612ab05760405162461bcd60e51b8152600401808060200182810382526025815260200180613f3d6025913960400191505060405180910390fd5b6001600160a01b038216612af55760405162461bcd60e51b8152600401808060200182810382526023815260200180613d6f6023913960400191505060405180910390fd5b6001600160a01b0383166000908152600d602052604090205460ff16158015612b3757506001600160a01b0382166000908152600d602052604090205460ff16155b612b7e576040805162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b604482015290519081900360640190fd5b600654600160a01b900460ff1615612c06576006546040805163090ec10b60e31b81526001600160a01b03868116600483015285811660248301526044820185905291519190921691634876085891606480830192600092919082900301818387803b158015612bed57600080fd5b505af1158015612c01573d6000803e3d6000fd5b505050505b612c0e611fd7565b6001600160a01b0316836001600160a01b031614158015612c485750612c32611fd7565b6001600160a01b0316826001600160a01b031614155b8015612c5c57506001600160a01b03821615155b8015612c7357506001600160a01b03821661dead14155b8015612c8d57506008546001600160a01b03838116911614155b15612ce4576000612c9d83611a6d565b90506014548282011115612ce25760405162461bcd60e51b8152600401808060200182810382526024815260200180613e456024913960400191505060405180910390fd5b505b80612cfa57612cf583836000613423565b613259565b6001600160a01b03821660009081526019602052604090205460ff168015612d3b57506001600160a01b03831660009081526018602052604090205460ff16155b8015612d6057506001600160a01b03821660009081526018602052604090205460ff16155b15612da657600c54811115612da65760405162461bcd60e51b815260040180806020018281038252603a815260200180613f62603a913960400191505060405180910390fd5b6000612db130611a6d565b600b5490915081108015908190612dd25750600854600160a01b900460ff16155b8015612df757506001600160a01b03851660009081526019602052604090205460ff16155b8015612e1c5750612e06611fd7565b6001600160a01b0316856001600160a01b031614155b8015612e415750612e2b611fd7565b6001600160a01b0316846001600160a01b031614155b15612fa2576008805460ff60a01b1916600160a01b179055601354601154601054600092612e86929091612e8091612e79919061291a565b869061357e565b906135d7565b905047612e9282613619565b6000612e9e47836137bf565b90506000612eca612ebc60105460115461291a90919063ffffffff16565b601054612e8090859061357e565b90506000612ed883836137bf565b6015546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015612f13573d6000803e3d6000fd5b506016546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015612f4e573d6000803e3d6000fd5b506000612f6c601354612e80600f548b61357e90919063ffffffff16565b9050612f7781613801565b6000612f8230611a6d565b9050612f8d81613887565b50506008805460ff60a01b1916905550505050505b6008546001600160a01b03861660009081526018602052604090205460ff600160a01b909204821615911680612ff057506001600160a01b03851660009081526018602052604090205460ff165b15612ff9575060005b801561307057600061301b6064612e806013548861357e90919063ffffffff16565b6001600160a01b0387166000908152601960205260408120549192509060ff161561305657606460125487028161304e57fe5b049182019190505b61306086836137bf565b955061306d883084613423565b50505b61307b868686613423565b6009546001600160a01b031663e30443bc8761309681611a6d565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156130dc57600080fd5b505af19250505080156130ed575060015b506009546001600160a01b031663e30443bc8661310981611a6d565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b15801561314f57600080fd5b505af1925050508015613160575060015b50600854600160a01b900460ff1661325557601754600954604080516001624d3b8760e01b031981526004810184905290516001600160a01b039092169163ffb2c479916024808201926060929091908290030181600087803b1580156131c657600080fd5b505af19250505080156131fa57506040513d60608110156131e657600080fd5b508051602082015160409092015190919060015b61320357613253565b604080518481526020810184905280820183905260608101869052905132916001917fc864333d6121033635ab41b29ae52f10a22cf4438c3e4f1c4c68518feb2f8a989181900360800190a35050505b505b5050505b505050565b600081848411156132ed5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156132b257818101518382015260200161329a565b50505050905090810190601f1680156132df5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b03821660009081526019602052604090205460ff16151581151514156133535760405162461bcd60e51b815260040180806020018281038252603d815260200180614039603d913960400191505060405180910390fd5b6001600160a01b0382166000908152601960205260409020805460ff191682158015919091179091556133e7576009546040805163031e79db60e41b81526001600160a01b038581166004830152915191909216916331e79db091602480830192600092919082900301818387803b1580156133ce57600080fd5b505af11580156133e2573d6000803e3d6000fd5b505050505b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b0383166134685760405162461bcd60e51b8152600401808060200182810382526025815260200180613f3d6025913960400191505060405180910390fd5b6001600160a01b0382166134ad5760405162461bcd60e51b8152600401808060200182810382526023815260200180613d6f6023913960400191505060405180910390fd5b6134b8838383613259565b6134f581604051806060016040528060268152602001613e1f602691396001600160a01b038616600090815260208190526040902054919061325e565b6001600160a01b038085166000908152602081905260408082209390935590841681522054613524908261291a565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008261358d57506000610fa2565b8282028284828161359a57fe5b04146129745760405162461bcd60e51b8152600401808060200182810382526021815260200180613e696021913960400191505060405180910390fd5b600061297483836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613a80565b6040805160028082526060808301845292602083019080368337019050509050308160008151811061364757fe5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561369b57600080fd5b505afa1580156136af573d6000803e3d6000fd5b505050506040513d60208110156136c557600080fd5b50518151829060019081106136d657fe5b6001600160a01b0392831660209182029290920101526007546136fc913091168461297f565b60075460405163791ac94760e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b039097169663791ac947968a968a9594939092909160c40190602080880191028083838b5b8381101561378257818101518382015260200161376a565b505050509050019650505050505050600060405180830381600087803b1580156137ab57600080fd5b505af1158015613255573d6000803e3d6000fd5b600061297483836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061325e565b600061380e8260026135d7565b9050600061381c83836137bf565b90504761382883613619565b600061383447836137bf565b90506138408382613ae5565b604080518581526020810183905280820185905290517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15050505050565b61389081613bb8565b60007f0000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f86001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b1580156138ff57600080fd5b505afa158015613913573d6000803e3d6000fd5b505050506040513d602081101561392957600080fd5b50516009546040805163a9059cbb60e01b81526001600160a01b0392831660048201526024810184905290519293506000927f0000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f89092169163a9059cbb9160448082019260209290919082900301818787803b1580156139a757600080fd5b505af11580156139bb573d6000803e3d6000fd5b505050506040513d60208110156139d157600080fd5b50519050801561325957600954604080516351c2a0e360e01b81526004810185905290516001600160a01b03909216916351c2a0e39160248082019260009290919082900301818387803b158015613a2857600080fd5b505af1158015613a3c573d6000803e3d6000fd5b5050604080518681526020810186905281517f80195cc573b02cc48460cbca6e6e4cc85ddb91959d946e1c3025ea3d87942dc39450908190039091019150a1505050565b60008183613acf5760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156132b257818101518382015260200161329a565b506000838581613adb57fe5b0495945050505050565b600754613afd9030906001600160a01b03168461297f565b6007546001600160a01b031663f305d719823085600080613b1c611fd7565b426040518863ffffffff1660e01b815260040180876001600160a01b03168152602001868152602001858152602001848152602001836001600160a01b0316815260200182815260200196505050505050506060604051808303818588803b158015613b8757600080fd5b505af1158015613b9b573d6000803e3d6000fd5b50505050506040513d6060811015613bb257600080fd5b50505050565b604080516003808252608082019092526060916020820183803683370190505090503081600081518110613be857fe5b6001600160a01b03928316602091820292909201810191909152600754604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b158015613c3c57600080fd5b505afa158015613c50573d6000803e3d6000fd5b505050506040513d6020811015613c6657600080fd5b5051815182906001908110613c7757fe5b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000002170ed0880ac9a755fd29b2688956bd959f933f881600281518110613cc557fe5b6001600160a01b039283166020918202929092010152600754613ceb913091168461297f565b600754604051635c11d79560e01b8152600481018481526000602483018190523060648401819052426084850181905260a060448601908152875160a487015287516001600160a01b0390971696635c11d795968a968a9594939092909160c40190602087810191028083838b831561378257818101518382015260200161376a56fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734546543a20546865206e6577206469766964656e6420747261636b6572206d757374206265206f776e6564206279207468652045465420746f6b656e20636f6e74726163744f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f756e742e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724546543a20676173466f7250726f63657373696e67206d757374206265206265747765656e203230302c30303020616e64203530302c3030304546543a20546865206469766964656e6420747261636b657220616c7265616479206861732074686174206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737353656c6c207472616e7366657220616d6f756e74206578636565647320746865206d617853656c6c5472616e73616374696f6e416d6f756e742e4546543a205468652050616e63616b655377617020706169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6d617465644d61726b65744d616b6572506169727345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734546543a204163636f756e7420697320616c7265616479207468652076616c7565206f6620276578636c75646564274546543a204175746f6d61746564206d61726b6574206d616b6572207061697220697320616c72656164792073657420746f20746861742076616c75654546543a2054686520726f7574657220616c7265616479206861732074686174206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4546543a2043616e6e6f742075706461746520676173466f7250726f63657373696e6720746f2073616d652076616c7565a26469706673582212202ecbe5a311379dbc40bfd46e7eeaf3e4f2ecc056474550d970e01a15fb44cd8564736f6c634300060c0033
Deployed Bytecode Sourcemap
43505:18170:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44071:67;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;50181:141;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50181:141:0;;:::i;:::-;;10977:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13144:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13144:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44398:88;;;;;;;;;;;;;:::i;43651:41::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;43651:41:0;;;;;;;;;;;;;;12097:108;;;;;;;;;;;;;:::i;44156:46::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44156:46:0;-1:-1:-1;;;;;44156:46:0;;:::i;50600:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50600:121:0;-1:-1:-1;;;;;50600:121:0;;:::i;50073:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50073:98:0;;;;:::i;13795:355::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;13795:355:0;;;;;;;;;;;;;;;;;:::i;44654:85::-;;;;;;;;;;;;;:::i;43767:41::-;;;;;;;;;;;;;:::i;52982:141::-;;;;;;;;;;;;;:::i;11939:93::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53551:123;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53551:123:0;-1:-1:-1;;;;;53551:123:0;;:::i;14559:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;14559:218:0;;;;;;;;:::i;43578:31::-;;;;;;;;;;;;;:::i;44564:83::-;;;;;;;;;;;;;:::i;50332:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50332:127:0;;:::i;51777:123::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51777:123:0;;;;;;;;;;:::i;50729:183::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50729:183:0;;:::i;43699:29::-;;;;;;;;;;;;;:::i;54602:88::-;;;;;;;;;;;;;:::i;53131:125::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53131:125:0;-1:-1:-1;;;;;53131:125:0;;:::i;50467:121::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50467:121:0;-1:-1:-1;;;;;50467:121:0;;:::i;51108:199::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51108:199:0;;:::i;54832:141::-;;;;;;;;;;;;;:::i;48829:497::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48829:497:0;-1:-1:-1;;;;;48829:497:0;;:::i;44326:25::-;;;;;;;;;;;;;:::i;53416:130::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53416:130:0;-1:-1:-1;;;;;53416:130:0;;:::i;44358:33::-;;;;;;;;;;;;;:::i;44288:31::-;;;;;;;;;;;;;:::i;54335:259::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54335:259:0;;:::i;12268:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12268:127:0;-1:-1:-1;;;;;12268:127:0;;:::i;25502:148::-;;;;;;;;;;;;;:::i;43896:82::-;;;;;;;;;;;;;:::i;43817:70::-;;;;;;;;;;;;;:::i;52324:402::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52324:402:0;;:::i;47996:825::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47996:825:0;-1:-1:-1;;;;;47996:825:0;;:::i;44211:32::-;;;;;;;;;;;;;:::i;24860:79::-;;;;;;;;;;;;;:::i;49953:108::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49953:108:0;;:::i;11196:104::-;;;;;;;;;;;;;:::i;44250:31::-;;;;;;;;;;;;;:::i;51504:261::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;51504:261:0;;;;;;;;;;:::i;44820:40::-;;;;;;;;;;;;;:::i;52866:108::-;;;;;;;;;;;;;:::i;15280:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15280:269:0;;;;;;;;:::i;53264:147::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53264:147:0;-1:-1:-1;;;;;53264:147:0;;:::i;12608:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12608:175:0;;;;;;;;:::i;53682:318::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53682:318:0;-1:-1:-1;;;;;53682:318:0;;:::i;:::-;;;;-1:-1:-1;;;;;53682:318:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50920:180;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50920:180:0;;:::i;45136:58::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45136:58:0;-1:-1:-1;;;;;45136:58:0;;:::i;49334:295::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;49334:295:0;;;;;;;;;;:::i;51319:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51319:175:0;;:::i;49637:304::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49637:304:0;-1:-1:-1;49637:304:0;;;;:::i;43616:26::-;;;;;;;;;;;;;:::i;12846:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;12846:151:0;;;;;;;;;;:::i;43997:60::-;;;;;;;;;;;;;:::i;44493:57::-;;;;;;;;;;;;;:::i;54698:126::-;;;;;;;;;;;;;:::i;52734:124::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52734:124:0;;:::i;54005:325::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54005:325:0;;:::i;25805:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25805:244:0;-1:-1:-1;;;;;25805:244:0;;:::i;44071:67::-;;;;:::o;50181:141::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;50261:14:::1;:32:::0;50181:141::o;10977:100::-;11064:5;11057:12;;;;;;;;-1:-1:-1;;11057:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11031:13;;11057:12;;11064:5;;11057:12;;11064:5;11057:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10977:100;:::o;13144:169::-;13227:4;13244:39;13253:12;:10;:12::i;:::-;13267:7;13276:6;13244:8;:39::i;:::-;-1:-1:-1;13301:4:0;13144:169;;;;;:::o;44398:88::-;;;;:::o;43651:41::-;;;-1:-1:-1;;;;;43651:41:0;;:::o;12097:108::-;12185:12;;12097:108;:::o;44156:46::-;;;;;;;;;;;;;;;:::o;50600:121::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;50679:25:::1;:34:::0;;-1:-1:-1;;;;;;50679:34:0::1;-1:-1:-1::0;;;;;50679:34:0;;;::::1;::::0;;;::::1;::::0;;50600:121::o;50073:98::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;50139:14:::1;:24:::0;;;::::1;;-1:-1:-1::0;;;50139:24:0::1;-1:-1:-1::0;;;;50139:24:0;;::::1;::::0;;;::::1;::::0;;50073:98::o;13795:355::-;13935:4;13952:36;13962:6;13970:9;13981:6;13952:9;:36::i;:::-;13999:121;14008:6;14016:12;:10;:12::i;:::-;14030:89;14068:6;14030:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14030:19:0;;;;;;:11;:19;;;;;;14050:12;:10;:12::i;:::-;-1:-1:-1;;;;;14030:33:0;;;;;;;;;;;;-1:-1:-1;14030:33:0;;;:89;:37;:89::i;:::-;13999:8;:121::i;:::-;-1:-1:-1;14138:4:0;13795:355;;;;;:::o;44654:85::-;;;-1:-1:-1;;;;;44654:85:0;;:::o;43767:41::-;;;-1:-1:-1;;;;;43767:41:0;;:::o;52982:141::-;53072:15;;:43;;;-1:-1:-1;;;53072:43:0;;;;53045:7;;-1:-1:-1;;;;;53072:15:0;;:41;;:43;;;;;;;;;;;;;;:15;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53072:43:0;;-1:-1:-1;52982:141:0;:::o;11939:93::-;12022:2;11939:93;:::o;53551:123::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;53624:15:::1;::::0;:45:::1;::::0;;-1:-1:-1;;;53624:45:0;;-1:-1:-1;;;;;53624:45:0;;::::1;;::::0;::::1;::::0;;;:15;;;::::1;::::0;:36:::1;::::0;:45;;;;;:15:::1;::::0;:45;;;;;;;:15;;:45;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;53551:123:::0;:::o;14559:218::-;14647:4;14664:83;14673:12;:10;:12::i;:::-;14687:7;14696:50;14735:10;14696:11;:25;14708:12;:10;:12::i;:::-;-1:-1:-1;;;;;14696:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14696:25:0;;;:34;;;;;;;;;;;:38;:50::i;43578:31::-;;;-1:-1:-1;;;;;43578:31:0;;:::o;44564:83::-;;;-1:-1:-1;;;;;44564:83:0;;:::o;50332:127::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;50408:24:::1;:43:::0;50332:127::o;51777:123::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;51861:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;51861:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;51777:123::o;50729:183::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;50799:13:::1;:21:::0;;;50897:6:::1;::::0;50879:12:::1;::::0;50861::::1;::::0;50843:61:::1;::::0;50897:6;50843:49:::1;::::0;;;50815:5;;50843:17:::1;:31::i;:::-;:35:::0;::::1;:49::i;:61::-;50831:9;:73:::0;-1:-1:-1;50729:183:0:o;43699:29::-;;;-1:-1:-1;;;;;43699:29:0;;:::o;54602:88::-;54633:15;;:49;;;-1:-1:-1;;;54633:49:0;;54664:10;54633:49;;;;:15;:49;;;;;;;;-1:-1:-1;;;;;54633:15:0;;;;:30;;:49;;;;;;;;;;;;;;;;;;:15;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;54602:88:0:o;53131:125::-;-1:-1:-1;;;;;53220:28:0;53196:4;53220:28;;;:19;:28;;;;;;;;;53131:125::o;50467:121::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;50548:23:::1;:32:::0;;-1:-1:-1;;;;;;50548:32:0::1;-1:-1:-1::0;;;;;50548:32:0;;;::::1;::::0;;;::::1;::::0;;50467:121::o;51108:199::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;51200:13:::1;51185:12;:28;;;;51236:61;51290:6;;51236:49;51272:12;;51236:31;51254:12;;51236:13;;:17;;:31;;;;:::i;54832:141::-:0;54924:15;;:41;;;-1:-1:-1;;;54924:41:0;;;;54897:7;;-1:-1:-1;;;;;54924:15:0;;:39;;:41;;;;;;;;;;;;;;:15;:41;;;;;;;;;;48829:497;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;48938:15:::1;::::0;-1:-1:-1;;;;;48916:38:0;;::::1;48938:15:::0;::::1;48916:38;;48908:91;;;;-1:-1:-1::0;;;48908:91:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49057:15;::::0;49015:59:::1;::::0;-1:-1:-1;;;;;49057:15:0;;::::1;::::0;49015:59;::::1;::::0;::::1;::::0;49057:15:::1;::::0;49015:59:::1;49085:15;:48:::0;;-1:-1:-1;;;;;;49085:48:0::1;-1:-1:-1::0;;;;;49085:48:0;;::::1;::::0;;;::::1;::::0;;;;49187:25:::1;::::0;;-1:-1:-1;;;49187:25:0;;;;-1:-1:-1;;49187:15:0;;::::1;::::0;:23:::1;::::0;:25:::1;::::0;;::::1;::::0;::::1;::::0;;;;;;;;;:15;:25;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;49187:25:0;49254:15:::1;::::0;:22:::1;::::0;;-1:-1:-1;;;49254:22:0;;;;-1:-1:-1;;;;;49169:69:0;;::::1;::::0;::::1;::::0;49247:4:::1;::::0;49254:15;::::1;::::0;:20:::1;::::0;:22:::1;::::0;;::::1;::::0;49187:25:::1;::::0;49254:22;;;;;;;;:15;:22;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;49254:22:0;49169:108:::1;::::0;;-1:-1:-1;;;;;;49169:108:0::1;::::0;;;;;;-1:-1:-1;;;;;49169:108:0;;::::1;;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;49254:22:::1;::::0;49169:108;;;;;;;-1:-1:-1;49169:108:0;;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;49169:108:0;49288:13:::1;:30:::0;;-1:-1:-1;;;;;;49288:30:0::1;-1:-1:-1::0;;;;;49288:30:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;48829:497:0:o;44326:25::-;;;;:::o;53416:130::-;53507:15;;:34;;;-1:-1:-1;;;53507:34:0;;-1:-1:-1;;;;;53507:34:0;;;;;;;;;53486:7;;53507:15;;;;;:25;;:34;;;;;;;;;;;;;;;:15;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53507:34:0;;53416:130;-1:-1:-1;;53416:130:0:o;44358:33::-;;;;:::o;44288:31::-;;;;:::o;54335:259::-;54461:15;;:28;;;-1:-1:-1;;;;;;54461:28:0;;;;;;;;;;54395:18;;;;;;-1:-1:-1;;;;;54461:15:0;;;;:23;;:28;;;;;;;;;;;;;;;54395:18;54461:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54461:28:0;;;;;;;;;;;;54499:87;;;;;;;;;;;;;;;;;54461:28;54499:87;;;;;;;54461:28;;-1:-1:-1;54461:28:0;-1:-1:-1;54461:28:0;;-1:-1:-1;54576:9:0;;54564:5;;54499:87;;;;;;;;;54335:259;;;;:::o;12268:127::-;-1:-1:-1;;;;;12369:18:0;12342:7;12369:18;;;;;;;;;;;;12268:127::o;25502:148::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;25593:6:::1;::::0;25572:40:::1;::::0;25609:1:::1;::::0;-1:-1:-1;;;;;25593:6:0::1;::::0;25572:40:::1;::::0;25609:1;;25572:40:::1;25623:6;:19:::0;;-1:-1:-1;;;;;;25623:19:0::1;::::0;;25502:148::o;43896:82::-;;;:::o;43817:70::-;;;-1:-1:-1;;;;;43817:70:0;;:::o;52324:402::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;52422:6:::1;52410:8;:18;;:40;;;;;52444:6;52432:8;:18;;52410:40;52402:110;;;;-1:-1:-1::0;;;52402:110:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52543:16;;52531:8;:28;;52523:90;;;;-1:-1:-1::0;;;52523:90:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52663:16;::::0;52629:51:::1;::::0;52653:8;;52629:51:::1;::::0;;;::::1;52691:16;:27:::0;52324:402::o;47996:825::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;48105:15:::1;::::0;-1:-1:-1;;;;;48083:38:0;;::::1;48105:15:::0;::::1;48083:38;;48075:101;;;;-1:-1:-1::0;;;48075:101:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48189:37;48256:10;48189:79;;48327:4;-1:-1:-1::0;;;;;48289:43:0::1;:18;-1:-1:-1::0;;;;;48289:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;48289:26:0;-1:-1:-1;;;;;48289:43:0::1;;48281:125;;;;-1:-1:-1::0;;;48281:125:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48419:18;-1:-1:-1::0;;;;;48419:39:0::1;;48467:18;48419:68;;;;;;;;;;;;;-1:-1:-1::0;;;;;48419:68:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48498:54:0::1;::::0;;-1:-1:-1;;;48498:54:0;;48546:4:::1;48498:54;::::0;::::1;::::0;;;-1:-1:-1;;;;;48498:39:0;::::1;::::0;-1:-1:-1;48498:39:0::1;::::0;-1:-1:-1;48498:54:0;;;;;-1:-1:-1;;48498:54:0;;;;;;;-1:-1:-1;48498:39:0;:54;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;48563:18;-1:-1:-1::0;;;;;48563:39:0::1;;48603:7;:5;:7::i;:::-;48563:48;;;;;;;;;;;;;-1:-1:-1::0;;;;;48563:48:0::1;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48670:15:0::1;::::0;48622:65:::1;::::0;;-1:-1:-1;;;48622:65:0;;-1:-1:-1;;;;;48670:15:0;;::::1;48622:65;::::0;::::1;::::0;;;:39;;::::1;::::0;-1:-1:-1;48622:39:0::1;::::0;-1:-1:-1;48622:65:0;;;;;48670:15:::1;::::0;48622:65;;;;;;;;48670:15;48622:39;:65;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;48747:15:0::1;::::0;48705:59:::1;::::0;-1:-1:-1;;;;;48747:15:0;;::::1;::::0;-1:-1:-1;48705:59:0;;::::1;::::0;-1:-1:-1;48705:59:0::1;::::0;48747:15:::1;::::0;48705:59:::1;48777:15;:36:::0;;-1:-1:-1;;;;;;48777:36:0::1;-1:-1:-1::0;;;;;48777:36:0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;47996:825:0:o;44211:32::-;;;;:::o;24860:79::-;24925:6;;-1:-1:-1;;;;;24925:6:0;24860:79;:::o;49953:108::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;50028:14:::1;:26:::0;49953:108::o;11196:104::-;11285:7;11278:14;;;;;;;;-1:-1:-1;;11278:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11252:13;;11278:14;;11285:7;;11278:14;;11285:7;11278:14;;;;;;;;;;;;;;;;;;;;;;;;44250:31;;;;:::o;51504:261::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;51611:13:::1;::::0;-1:-1:-1;;;;;51603:21:0;;::::1;51611:13:::0;::::1;51603:21;;51595:108;;;;-1:-1:-1::0;;;51595:108:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51716:41;51745:4;51751:5;51716:28;:41::i;44820:40::-:0;;;;:::o;52866:108::-;52939:15;;:27;;;-1:-1:-1;;;52939:27:0;;;;52912:7;;-1:-1:-1;;;;;52939:15:0;;:25;;:27;;;;;;;;;;;;;;:15;:27;;;;;;;;;;15280:269;15373:4;15390:129;15399:12;:10;:12::i;:::-;15413:7;15422:96;15461:15;15422:96;;;;;;;;;;;;;;;;;:11;:25;15434:12;:10;:12::i;:::-;-1:-1:-1;;;;;15422:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;15422:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;53264:147::-;53357:15;;:47;;;-1:-1:-1;;;53357:47:0;;-1:-1:-1;;;;;53357:47:0;;;;;;;;;53333:7;;53357:15;;;;;:38;;:47;;;;;;;;;;;;;;;:15;:47;;;;;;;;;;12608:175;12694:4;12711:42;12721:12;:10;:12::i;:::-;12735:9;12746:6;12711:9;:42::i;53682:318::-;53778:7;53800:6;53821;53842:7;53864;53886;53908;53930;53957:15;;;;;;;;;-1:-1:-1;;;;;53957:15:0;-1:-1:-1;;;;;53957:26:0;;53984:7;53957:35;;;;;;;;;;;;;-1:-1:-1;;;;;53957:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53957:35:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53957:35:0;;-1:-1:-1;53957:35:0;;-1:-1:-1;53957:35:0;-1:-1:-1;53957:35:0;-1:-1:-1;53957:35:0;-1:-1:-1;53957:35:0;;-1:-1:-1;53957:35:0;-1:-1:-1;53682:318:0;;;;;;;;;:::o;50920:180::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;50988:12:::1;:20:::0;;;51085:6:::1;::::0;51067:12:::1;::::0;51031:13:::1;::::0;:61:::1;::::0;51085:6;51031:49:::1;::::0;;;51003:5;51031:17:::1;:31::i;45136:58::-:0;;;;;;;;;;;;;;;:::o;49334:295::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;49427:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;::::1;;:40;;::::0;::::1;;;;49419:100;;;;-1:-1:-1::0;;;49419:100:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;49530:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;49530:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;49587:34;;;;;;;::::1;::::0;;;;;;;;::::1;49334:295:::0;;:::o;51319:175::-;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;51384:6:::1;:16:::0;;;51459:12:::1;::::0;51441::::1;::::0;51423:13:::1;::::0;:61:::1;::::0;51393:7;;51423:49:::1;::::0;;;:17:::1;:31::i;49637:304::-:0;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;49754:9:::1;49750:115;49769:19:::0;;::::1;49750:115;;;49845:8;49810:19;:32;49830:8;;49839:1;49830:11;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;49830:11:0::1;49810:32:::0;;-1:-1:-1;49810:32:0;::::1;::::0;;;;;;-1:-1:-1;49810:32:0;:43;;-1:-1:-1;;49810:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;49790:3:0::1;49750:115;;;;49882:51;49914:8;;49924;49882:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;::::1;::::0;::::1;::::0;;::::1;-1:-1:-1::0;;49882:51:0::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;49882:51:0;;-1:-1:-1;;;;;49882:51:0::1;49637:304:::0;;;:::o;43616:26::-;;;-1:-1:-1;;;43616:26:0;;;;;:::o;12846:151::-;-1:-1:-1;;;;;12962:18:0;;;12935:7;12962:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12846:151::o;43997:60::-;;;;:::o;44493:57::-;;;;:::o;54698:126::-;54777:15;;:39;;;-1:-1:-1;;;54777:39:0;;;;54753:7;;-1:-1:-1;;;;;54777:15:0;;:37;;:39;;;;;;;;;;;;;;:15;:39;;;;;;;;;;52734:124;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;52808:15:::1;::::0;:42:::1;::::0;;-1:-1:-1;;;52808:42:0;;::::1;::::0;::::1;::::0;;;;;-1:-1:-1;;;;;52808:15:0;;::::1;::::0;:31:::1;::::0;:42;;;;;:15:::1;::::0;:42;;;;;;;;:15;;:42;::::1;;::::0;::::1;;;;::::0;::::1;54005:325:::0;54106:7;54128:6;54149;54170:7;54192;54214;54236;54258;54282:15;;;;;;;;;-1:-1:-1;;;;;54282:15:0;-1:-1:-1;;;;;54282:33:0;;54316:5;54282:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25805:244;25082:12;:10;:12::i;:::-;25072:6;;-1:-1:-1;;;;;25072:6:0;;;:22;;;25064:67;;;;;-1:-1:-1;;;25064:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;25064:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;25894:22:0;::::1;25886:73;;;;-1:-1:-1::0;;;25886:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25996:6;::::0;25975:38:::1;::::0;-1:-1:-1;;;;;25975:38:0;;::::1;::::0;25996:6:::1;::::0;25975:38:::1;::::0;25996:6:::1;::::0;25975:38:::1;26024:6;:17:::0;;-1:-1:-1;;;;;;26024:17:0::1;-1:-1:-1::0;;;;;26024:17:0;;;::::1;::::0;;;::::1;::::0;;25805:244::o;4506:181::-;4564:7;4596:5;;;4620:6;;;;4612:46;;;;;-1:-1:-1;;;4612:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4678:1;4506:181;-1:-1:-1;;;4506:181:0:o;3895:98::-;3975:10;3895:98;:::o;18466:380::-;-1:-1:-1;;;;;18602:19:0;;18594:68;;;;-1:-1:-1;;;18594:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18681:21:0;;18673:68;;;;-1:-1:-1;;;18673:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18754:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18806:32;;;;;;;;;;;;;;;;;18466:380;;;:::o;54983:3678::-;-1:-1:-1;;;;;55115:18:0;;55107:68;;;;-1:-1:-1;;;55107:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55194:16:0;;55186:64;;;;-1:-1:-1;;;55186:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;55270:20:0;;;;;;:14;:20;;;;;;;;55269:21;:44;;;;-1:-1:-1;;;;;;55295:18:0;;;;;;:14;:18;;;;;;;;55294:19;55269:44;55261:76;;;;;-1:-1:-1;;;55261:76:0;;;;;;;;;;;;-1:-1:-1;;;55261:76:0;;;;;;;;;;;;;;;55352:14;;-1:-1:-1;;;55352:14:0;;;;55348:85;;;55377:11;;:48;;;-1:-1:-1;;;55377:48:0;;-1:-1:-1;;;;;55377:48:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:30;;:48;;;;;:11;;:48;;;;;;;:11;;:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55348:85;55489:7;:5;:7::i;:::-;-1:-1:-1;;;;;55481:15:0;:4;-1:-1:-1;;;;;55481:15:0;;;:45;;;;;55519:7;:5;:7::i;:::-;-1:-1:-1;;;;;55513:13:0;:2;-1:-1:-1;;;;;55513:13:0;;;55481:45;:78;;;;-1:-1:-1;;;;;;55543:16:0;;;;55481:78;:116;;;;-1:-1:-1;;;;;;55576:21:0;;55590:6;55576:21;;55481:116;:152;;;;-1:-1:-1;55620:13:0;;-1:-1:-1;;;;;55614:19:0;;;55620:13;;55614:19;;55481:152;55463:437;;;55662:32;55697:13;55707:2;55697:9;:13::i;:::-;55662:48;;55788:14;;55778:6;55751:24;:33;:51;;55725:149;;;;-1:-1:-1;;;55725:149:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55463:437;;55917:11;55914:92;;55945:28;55961:4;55967:2;55971:1;55945:15;:28::i;:::-;55988:7;;55914:92;-1:-1:-1;;;;;56029:29:0;;;;;;:25;:29;;;;;;;;:61;;;;-1:-1:-1;;;;;;56064:25:0;;;;;;:19;:25;;;;;;;;56063:26;56029:61;:91;;;;-1:-1:-1;;;;;;56096:23:0;;;;;;:19;:23;;;;;;;;56095:24;56029:91;56026:227;;;56154:24;;56144:6;:34;;56136:105;;;;-1:-1:-1;;;56136:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56267:28;56298:24;56316:4;56298:9;:24::i;:::-;56372:18;;56267:55;;-1:-1:-1;56348:42:0;;;;;;;56407:33;;-1:-1:-1;56432:8:0;;-1:-1:-1;;;56432:8:0;;;;56431:9;56407:33;:82;;;;-1:-1:-1;;;;;;56458:31:0;;;;;;:25;:31;;;;;;;;56457:32;56407:82;:114;;;;;56514:7;:5;:7::i;:::-;-1:-1:-1;;;;;56506:15:0;:4;-1:-1:-1;;;;;56506:15:0;;;56407:114;:144;;;;;56544:7;:5;:7::i;:::-;-1:-1:-1;;;;;56538:13:0;:2;-1:-1:-1;;;;;56538:13:0;;;56407:144;56403:1109;;;56611:8;:15;;-1:-1:-1;;;;56611:15:0;-1:-1:-1;;;56611:15:0;;;56721:9;;56708:6;;56691:12;;56611:15;;56666:65;;56721:9;;56666:50;;56691:24;;:12;:16;:24::i;:::-;56666:20;;:24;:50::i;:::-;:54;;:65::i;:::-;56643:88;-1:-1:-1;56772:21:0;56808:30;56643:88;56808:16;:30::i;:::-;56853:18;56874:42;:21;56900:15;56874:25;:42::i;:::-;56853:63;;56931:22;56956:58;56989:24;57000:12;;56989:6;;:10;;:24;;;;:::i;:::-;56971:12;;56956:28;;:10;;:14;:28::i;:58::-;56931:83;-1:-1:-1;57029:20:0;57052:30;:10;56931:83;57052:14;:30::i;:::-;57105:23;;57097:57;;57029:53;;-1:-1:-1;;;;;;57105:23:0;;57097:57;;;;;57139:14;;57105:23;57097:57;57105:23;57097:57;57139:14;57105:23;57097:57;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57177:25:0;;57169:57;;-1:-1:-1;;;;;57177:25:0;;;;57169:57;;;;;57213:12;;57177:25;57169:57;57177:25;57169:57;57213:12;57177:25;57169:57;;;;;;;;;;;;;;;;;;;;;57243:18;57264:53;57307:9;;57264:38;57289:12;;57264:20;:24;;:38;;;;:::i;:53::-;57243:74;;57332:26;57347:10;57332:14;:26::i;:::-;57375:18;57396:24;57414:4;57396:9;:24::i;:::-;57375:45;;57435:32;57456:10;57435:20;:32::i;:::-;-1:-1:-1;;57484:8:0;:16;;-1:-1:-1;;;;57484:16:0;;;-1:-1:-1;;;;;56403:1109:0;57542:8;;-1:-1:-1;;;;;57651:25:0;;57526:12;57651:25;;;:19;:25;;;;;;57542:8;-1:-1:-1;;;57542:8:0;;;;;57541:9;;57651:25;;:52;;-1:-1:-1;;;;;;57680:23:0;;;;;;:19;:23;;;;;;;;57651:52;57648:99;;;-1:-1:-1;57730:5:0;57648:99;57762:7;57759:353;;;57783:12;57798:30;57824:3;57798:21;57809:9;;57798:6;:10;;:21;;;;:::i;:30::-;-1:-1:-1;;;;;57871:29:0;;57840:16;57871:29;;;:25;:29;;;;;;57783:45;;-1:-1:-1;57840:16:0;57871:29;;57868:137;;;57952:3;57936:14;;57929:6;:21;57928:27;;;;;;57979:13;;;;57928:27;-1:-1:-1;57868:137:0;58025:16;:6;58036:4;58025:10;:16::i;:::-;58016:25;;58058:42;58074:4;58088;58095;58058:15;:42::i;:::-;57759:353;;;58124:33;58140:4;58146:2;58150:6;58124:15;:33::i;:::-;58174:15;;-1:-1:-1;;;;;58174:15:0;:26;58209:4;58216:15;58209:4;58216:9;:15::i;:::-;58174:58;;;;;;;;;;;;;-1:-1:-1;;;;;58174:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58170:74;58258:15;;-1:-1:-1;;;;;58258:15:0;:26;58293:2;58298:13;58293:2;58298:9;:13::i;:::-;58258:54;;;;;;;;;;;;;-1:-1:-1;;;;;58258:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58254:70;58340:8;;-1:-1:-1;;;58340:8:0;;;;58336:318;;58373:16;;58404:15;;:28;;;-1:-1:-1;;;;;;58404:28:0;;;;;;;;;;-1:-1:-1;;;;;58404:15:0;;;;:23;;:28;;;;;;;;;;;;;;;58359:11;58404:15;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;58404:28:0;;;;;;;;;;;;;;;;58400:243;;;;;58521:86;;;;;;;;;;;;;;;;;;;;;;;;;;58597:9;;58586:4;;58521:86;;;;;;;;;58433:184;;;58400:243;58336:318;;54983:3678;;;;;;;:::o;5409:192::-;5495:7;5531:12;5523:6;;;;5515:29;;;;-1:-1:-1;;;5515:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5567:5:0;;;5409:192::o;51910:404::-;-1:-1:-1;;;;;52001:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;51993:114;;;;-1:-1:-1;;;51993:114:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52118:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;52118:39:0;;;;;;;;;;;;52170:79;;52195:15;;:42;;;-1:-1:-1;;;52195:42:0;;-1:-1:-1;;;;;52195:42:0;;;;;;;;;:15;;;;;:36;;:42;;;;;:15;;:42;;;;;;;:15;;:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52170:79;52266:40;;;;;;-1:-1:-1;;;;;52266:40:0;;;;;;;;51910:404;;:::o;16039:573::-;-1:-1:-1;;;;;16179:20:0;;16171:70;;;;-1:-1:-1;;;16171:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16260:23:0;;16252:71;;;;-1:-1:-1;;;16252:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16336:47;16357:6;16365:9;16376:6;16336:20;:47::i;:::-;16416:71;16438:6;16416:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16416:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16396:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16521:20;;;;;;;:32;;16546:6;16521:24;:32::i;:::-;-1:-1:-1;;;;;16498:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16569:35;;;;;;;16498:20;;16569:35;;;;;;;;;;;;;16039:573;;;:::o;5860:471::-;5918:7;6163:6;6159:47;;-1:-1:-1;6193:1:0;6186:8;;6159:47;6230:5;;;6234:1;6230;:5;:1;6254:5;;;;;:10;6246:56;;;;-1:-1:-1;;;6246:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6807:132;6865:7;6892:39;6896:1;6899;6892:39;;;;;;;;;;;;;;;;;:3;:39::i;59607:595::-;59761:16;;;59775:1;59761:16;;;59737:21;59761:16;;;;;59737:21;59761:16;;;;;;;;;;-1:-1:-1;59761:16:0;59737:40;;59806:4;59788;59793:1;59788:7;;;;;;;;-1:-1:-1;;;;;59788:23:0;;;:7;;;;;;;;;;:23;;;;59832:15;;:22;;;-1:-1:-1;;;59832:22:0;;;;:15;;;;;:20;;:22;;;;;59788:7;;59832:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59832:22:0;59822:7;;:4;;59827:1;;59822:7;;;;;;-1:-1:-1;;;;;59822:32:0;;;:7;;;;;;;;;:32;59899:15;;59867:62;;59884:4;;59899:15;59917:11;59867:8;:62::i;:::-;59968:15;;:224;;-1:-1:-1;;;59968:224:0;;;;;;;;:15;:224;;;;;;60146:4;59968:224;;;;;;60166:15;59968:224;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59968:15:0;;;;:66;;60049:11;;60119:4;;60146;60166:15;59968:224;;;;;;;;;;;;;;;;:15;:224;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4970:136;5028:7;5055:43;5059:1;5062;5055:43;;;;;;;;;;;;;;;;;:3;:43::i;58675:922::-;58784:12;58799:13;:6;58810:1;58799:10;:13::i;:::-;58784:28;-1:-1:-1;58823:17:0;58843:16;:6;58784:28;58843:10;:16::i;:::-;58823:36;-1:-1:-1;59162:21:0;59228:22;59245:4;59228:16;:22::i;:::-;59381:18;59402:41;:21;59428:14;59402:25;:41::i;:::-;59381:62;;59493:35;59506:9;59517:10;59493:12;:35::i;:::-;59546:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58675:922;;;;;:::o;61273:399::-;61337:24;61354:6;61337:16;:24::i;:::-;61372:17;61399:3;-1:-1:-1;;;;;61392:21:0;;61422:4;61392:36;;;;;;;;;;;;;-1:-1:-1;;;;;61392:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61392:36:0;61483:15;;61454:57;;;-1:-1:-1;;;61454:57:0;;-1:-1:-1;;;;;61483:15:0;;;61454:57;;;;;;;;;;;;61392:36;;-1:-1:-1;;;61461:3:0;61454:20;;;;;;:57;;;;;61392:36;;61454:57;;;;;;;;-1:-1:-1;61454:20:0;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;61454:57:0;;-1:-1:-1;61524:141:0;;;;61552:15;;:49;;;-1:-1:-1;;;61552:49:0;;;;;;;;;;-1:-1:-1;;;;;61552:15:0;;;;:38;;:49;;;;;:15;;:49;;;;;;;;:15;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;61621:32:0;;;;;;;;;;;;;;;;-1:-1:-1;61621:32:0;;;;;;;;-1:-1:-1;61621:32:0;61273:399;;;:::o;7435:278::-;7521:7;7556:12;7549:5;7541:28;;;;-1:-1:-1;;;7541:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7580:9;7596:1;7592;:5;;;;;;;7435:278;-1:-1:-1;;;;;7435:278:0:o;60748:517::-;60930:15;;60898:62;;60915:4;;-1:-1:-1;;;;;60930:15:0;60948:11;60898:8;:62::i;:::-;61003:15;;-1:-1:-1;;;;;61003:15:0;:31;61042:9;61075:4;61095:11;61003:15;;61207:7;:5;:7::i;:::-;61229:15;61003:252;;;;;;;;;;;;;-1:-1:-1;;;;;61003:252:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;61003:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;60748:517:0:o;60210:530::-;60302:16;;;60316:1;60302:16;;;;;;;;;60278:21;;60302:16;;;60278:21;;60302:16;;;;;-1:-1:-1;60302:16:0;60278:40;;60347:4;60329;60334:1;60329:7;;;;;;;;-1:-1:-1;;;;;60329:23:0;;;:7;;;;;;;;;;:23;;;;60373:15;;:22;;;-1:-1:-1;;;60373:22:0;;;;:15;;;;;:20;;:22;;;;;60329:7;;60373:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60373:22:0;60363:7;;:4;;60368:1;;60363:7;;;;;;;;;;;:32;-1:-1:-1;;;;;60363:32:0;;;-1:-1:-1;;;;;60363:32:0;;;;;60416:3;60406:4;60411:1;60406:7;;;;;;;;-1:-1:-1;;;;;60406:13:0;;;:7;;;;;;;;;:13;60464:15;;60432:62;;60449:4;;60464:15;60482:11;60432:8;:62::i;:::-;60533:15;;:199;;-1:-1:-1;;;60533:199:0;;;;;;;;-1:-1:-1;60533:199:0;;;;;;60686:4;60533:199;;;;;;60706:15;60533:199;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60533:15:0;;;;:69;;:199;;;;60686:4;60706:15;60533:199;;;;;;;-1:-1:-1;60533:199:0;;;;;;;;-1:-1:-1;60533:199:0;;;;;;;;;;;;;;;
Swarm Source
ipfs://e8b383eb5b5625fd2e9da6adceee7f1bfbf36849b27e5926c0205e3ac45b70ae
Loading...
Loading
OVERVIEW
Eth fan token has migrated to 0xB72962568345253f71A18318D67E13A282b187E6Loading...
Loading
Multichain Portfolio | 34 Chains
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.