ERC-20
Overview
Max Total Supply
40,143,703.051649857884444334 FTAO_Dividend
Holders
71
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
583,772.701870850547646454 FTAO_DividendValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FTAODividendTracker
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Website: https://www.fixedtao.com // Telegram: https://t.me/fixedtao // Twitter: https://x.com/fixedtao // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "./libs/SafeMath.sol"; import "./interfaces/IDividendTracker.sol"; interface IPair { function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function token0() external view returns (address); } interface IFactory { function createPair( address tokenA, address tokenB ) external returns (address pair); function getPair( address tokenA, address tokenB ) external view returns (address pair); } interface IUniswapRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract DividendPayingToken is ERC20, DividendPayingTokenInterface, Ownable { using SafeMath for uint256; using SafeMathUint for uint256; using SafeMathInt for int256; address public rewardToken; // 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 internal constant 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; uint256 public totalDividendsWithdrawn; constructor( string memory _name, string memory _symbol ) ERC20(_name, _symbol) {} function _distributeLPDividends(uint256 amount) internal virtual { 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(payable(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 ); totalDividendsWithdrawn += _withdrawableDividend; emit DividendWithdrawn(user, _withdrawableDividend); bool success = IERC20(rewardToken).transfer( user, _withdrawableDividend ); if (!success) { withdrawnDividends[user] = withdrawnDividends[user].sub( _withdrawableDividend ); totalDividendsWithdrawn -= _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); } } } contract FTAODividendTracker is Ownable, DividendPayingToken { struct AccountInfo { address account; uint256 withdrawableDividends; uint256 totalDividends; uint256 lastClaimTime; } mapping(address => bool) public excludedFromDividends; mapping(address => uint256) public lastClaimTimes; address public ftao; bool public claimEnabled; event ExcludeFromDividends(address indexed account, bool value); event Claim(address indexed account, uint256 amount); constructor( address _wtao ) DividendPayingToken("FTAO_Dividend", "FTAO_Dividend") { rewardToken = _wtao; } modifier onlyOwnerOrFTAO() { require( _msgSender() == owner() || _msgSender() == ftao, "caller is not the onlyOwner or FTAO" ); _; } function setup(address _router, address _pair) external { require(ftao == address(0), "Already initialized"); ftao = _msgSender(); _excludeFromDividends(address(this), true); _excludeFromDividends(ftao, true); _excludeFromDividends(owner(), true); _excludeFromDividends(_router, true); _excludeFromDividends(_pair, true); } function _transfer(address, address, uint256) internal pure override { require(false, "Dividend_Tracker: No transfers allowed"); } function excludeFromDividends( address account, bool value ) public onlyOwner { _excludeFromDividends(account, value); } function _excludeFromDividends(address account, bool value) private { require(excludedFromDividends[account] != value); excludedFromDividends[account] = value; if (value == true) { _setBalance(account, 0); } else { _setBalance(account, balanceOf(account)); } emit ExcludeFromDividends(account, value); } function getAccount( address account ) public view returns (address, uint256, uint256, uint256, uint256) { AccountInfo memory info; info.account = account; info.withdrawableDividends = withdrawableDividendOf(account); info.totalDividends = accumulativeDividendOf(account); info.lastClaimTime = lastClaimTimes[account]; return ( info.account, info.withdrawableDividends, info.totalDividends, info.lastClaimTime, totalDividendsWithdrawn ); } function setBalance( address account, uint256 newBalance ) external onlyOwnerOrFTAO { if (excludedFromDividends[account]) { return; } _setBalance(account, newBalance); } function setClaimEnabled(bool value) external onlyOwner { claimEnabled = value; } function claimRewards() external { require(claimEnabled, "Claim is disabled"); uint256 amount = _withdrawDividendOfUser(payable(_msgSender())); if (amount > 0) { lastClaimTimes[_msgSender()] = block.timestamp; emit Claim(_msgSender(), amount); } } function distributeRewards(uint256 amount) public onlyOwner { IERC20(rewardToken).transferFrom(_msgSender(), address(this), amount); _distributeLPDividends(amount); } function updateRewardToken(address _token) external onlyOwner { rewardToken = _token; } function trackerRescueETH20Tokens( address tokenAddress, uint256 amount ) external onlyOwner { IERC20(tokenAddress).transfer(_msgSender(), amount); } function trackerRescueETH() external onlyOwner { payable(_msgSender()).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.23; 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; /// @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); /// @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; 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; } } /** * @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 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_wtao","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"DividendsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"value","type":"bool"}],"name":"ExcludeFromDividends","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"accumulativeDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"dividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludeFromDividends","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromDividends","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ftao","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccount","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"","type":"address"}],"name":"lastClaimTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"setBalance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"},{"internalType":"address","name":"_pair","type":"address"}],"name":"setup","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDividendsWithdrawn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trackerRescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"trackerRescueETH20Tokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"updateRewardToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawDividend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawableDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"withdrawnDividendOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051620037be380380620037be833981810160405281019062000036919062000262565b6040518060400160405280600d81526020017f4654414f5f4469766964656e64000000000000000000000000000000000000008152506040518060400160405280600d81526020017f4654414f5f4469766964656e640000000000000000000000000000000000000081525081818160039081620000b59190620004f6565b508060049081620000c79190620004f6565b505050620000ea620000de6200013360201b60201c565b6200013a60201b60201c565b50508060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620005da565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200022c8262000201565b9050919050565b6200023e8162000220565b811462000249575f80fd5b50565b5f815190506200025c8162000233565b92915050565b5f602082840312156200027a5762000279620001fd565b5b5f62000289848285016200024c565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200030e57607f821691505b602082108103620003245762000323620002c9565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200034b565b6200039486836200034b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620003de620003d8620003d284620003ac565b620003b5565b620003ac565b9050919050565b5f819050919050565b620003f983620003be565b620004116200040882620003e5565b84845462000357565b825550505050565b5f90565b6200042762000419565b62000434818484620003ee565b505050565b5b818110156200045b576200044f5f826200041d565b6001810190506200043a565b5050565b601f821115620004aa5762000474816200032a565b6200047f846200033c565b810160208510156200048f578190505b620004a76200049e856200033c565b83018262000439565b50505b505050565b5f82821c905092915050565b5f620004cc5f1984600802620004af565b1980831691505092915050565b5f620004e68383620004bb565b9150826002028217905092915050565b620005018262000292565b67ffffffffffffffff8111156200051d576200051c6200029c565b5b620005298254620002f6565b620005368282856200045f565b5f60209050601f8311600181146200056c575f841562000557578287015190505b620005638582620004d9565b865550620005d2565b601f1984166200057c866200032a565b5f5b82811015620005a5578489015182556001820191506020850194506020810190506200057e565b86831015620005c55784890151620005c1601f891682620004bb565b8355505b6001600288020188555050505b505050505050565b6131d680620005e85f395ff3fe608060405234801561000f575f80fd5b506004361061021a575f3560e01c8063715018a611610123578063a8b9d240116100ab578063e30443bc1161007a578063e30443bc14610650578063f2fde38b1461066c578063f7c618c114610688578063f8cf31cb146106a6578063fbcbc0f1146106c25761021a565b8063a8b9d24014610590578063a9059cbb146105c0578063aafd847a146105f0578063dd62ed3e146106205761021a565b806391b89fba116100f257806391b89fba146104d857806392929a091461050857806395d89b41146105245780639e1e066114610542578063a457c2d7146105605761021a565b8063715018a61461048857806385a6b3ae1461049257806389371745146104b05780638da5cb5b146104ba5761021a565b80632d34ba79116101a65780634e7b827f116101755780634e7b827f146103e4578063523f1bd31461041457806359974e38146104325780636a4740021461044e57806370a08231146104585761021a565b80632d34ba7914610370578063313ce5671461038c578063372500ab146103aa57806339509351146103b45761021a565b806320797cc1116101ed57806320797cc1146102a6578063226cfa3d146102c257806323b872dd146102f257806327ce0147146103225780632866ed21146103525761021a565b80630483f7a01461021e57806306fdde031461023a578063095ea7b31461025857806318160ddd14610288575b5f80fd5b61023860048036038101906102339190612398565b6106f6565b005b61024261070c565b60405161024f9190612460565b60405180910390f35b610272600480360381019061026d91906124b3565b61079c565b60405161027f9190612500565b60405180910390f35b6102906107be565b60405161029d9190612528565b60405180910390f35b6102c060048036038101906102bb91906124b3565b6107c7565b005b6102dc60048036038101906102d79190612541565b610856565b6040516102e99190612528565b60405180910390f35b61030c6004803603810190610307919061256c565b61086b565b6040516103199190612500565b60405180910390f35b61033c60048036038101906103379190612541565b610899565b6040516103499190612528565b60405180910390f35b61035a610939565b6040516103679190612500565b60405180910390f35b61038a600480360381019061038591906125bc565b61094c565b005b610394610a85565b6040516103a19190612615565b60405180910390f35b6103b2610a8d565b005b6103ce60048036038101906103c991906124b3565b610b99565b6040516103db9190612500565b60405180910390f35b6103fe60048036038101906103f99190612541565b610bcf565b60405161040b9190612500565b60405180910390f35b61041c610bec565b604051610429919061263d565b60405180910390f35b61044c60048036038101906104479190612656565b610c11565b005b610456610ccb565b005b610472600480360381019061046d9190612541565b610cd7565b60405161047f9190612528565b60405180910390f35b610490610d1c565b005b61049a610d2f565b6040516104a79190612528565b60405180910390f35b6104b8610d35565b005b6104c2610d8a565b6040516104cf919061263d565b60405180910390f35b6104f260048036038101906104ed9190612541565b610db2565b6040516104ff9190612528565b60405180910390f35b610522600480360381019061051d9190612681565b610dc3565b005b61052c610de8565b6040516105399190612460565b60405180910390f35b61054a610e78565b6040516105579190612528565b60405180910390f35b61057a600480360381019061057591906124b3565b610e7e565b6040516105879190612500565b60405180910390f35b6105aa60048036038101906105a59190612541565b610ef3565b6040516105b79190612528565b60405180910390f35b6105da60048036038101906105d591906124b3565b610f53565b6040516105e79190612500565b60405180910390f35b61060a60048036038101906106059190612541565b610f75565b6040516106179190612528565b60405180910390f35b61063a600480360381019061063591906125bc565b610fbb565b6040516106479190612528565b60405180910390f35b61066a600480360381019061066591906124b3565b61103d565b005b61068660048036038101906106819190612541565b611174565b005b6106906111f6565b60405161069d919061263d565b60405180910390f35b6106c060048036038101906106bb9190612541565b61121b565b005b6106dc60048036038101906106d79190612541565b611266565b6040516106ed9594939291906126ac565b60405180910390f35b6106fe61133f565b61070882826113bd565b5050565b60606003805461071b9061272a565b80601f01602080910402602001604051908101604052809291908181526020018280546107479061272a565b80156107925780601f1061076957610100808354040283529160200191610792565b820191905f5260205f20905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b5f806107a66114e9565b90506107b38185856114f0565b600191505092915050565b5f600254905090565b6107cf61133f565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6107f36114e9565b836040518363ffffffff1660e01b815260040161081192919061275a565b6020604051808303815f875af115801561082d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108519190612795565b505050565b600d602052805f5260405f205f915090505481565b5f806108756114e9565b90506108828582856116b3565b61088d85858561173e565b60019150509392505050565b5f70010000000000000000000000000000000061092861092360085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546109156109106108ff88610cd7565b60075461178390919063ffffffff16565b6117fa565b61181490919063ffffffff16565b61185b565b610932919061281a565b9050919050565b600e60149054906101000a900460ff1681565b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290612894565b60405180910390fd5b6109e36114e9565b600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a2d3060016113bd565b610a59600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016113bd565b610a6b610a64610d8a565b60016113bd565b610a768260016113bd565b610a818160016113bd565b5050565b5f6012905090565b600e60149054906101000a900460ff16610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906128fc565b60405180910390fd5b5f610aed610ae86114e9565b611870565b90505f811115610b965742600d5f610b036114e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610b486114e9565b73ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610b8d9190612528565b60405180910390a25b50565b5f80610ba36114e9565b9050610bc4818585610bb58589610fbb565b610bbf919061291a565b6114f0565b600191505092915050565b600c602052805f5260405f205f915054906101000a900460ff1681565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c1961133f565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd610c5e6114e9565b30846040518463ffffffff1660e01b8152600401610c7e9392919061294d565b6020604051808303815f875af1158015610c9a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cbe9190612795565b50610cc881611ae7565b50565b610cd433611870565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d2461133f565b610d2d5f611bbe565b565b600a5481565b610d3d61133f565b610d456114e9565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610d87573d5f803e3d5ffd5b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f610dbc82610ef3565b9050919050565b610dcb61133f565b80600e60146101000a81548160ff02191690831515021790555050565b606060048054610df79061272a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e239061272a565b8015610e6e5780601f10610e4557610100808354040283529160200191610e6e565b820191905f5260205f20905b815481529060010190602001808311610e5157829003601f168201915b5050505050905090565b600b5481565b5f80610e886114e9565b90505f610e958286610fbb565b905083811015610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906129f2565b60405180910390fd5b610ee782868684036114f0565b60019250505092915050565b5f610f4c60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f3e84610899565b611c8190919063ffffffff16565b9050919050565b5f80610f5d6114e9565b9050610f6a81858561173e565b600191505092915050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611045610d8a565b73ffffffffffffffffffffffffffffffffffffffff166110636114e9565b73ffffffffffffffffffffffffffffffffffffffff1614806110d85750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110c06114e9565b73ffffffffffffffffffffffffffffffffffffffff16145b611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612a80565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166111705761116f8282611cca565b5b5050565b61117c61133f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190612b0e565b60405180910390fd5b6111f381611bbe565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61122361133f565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f805f6112736122cb565b86815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506112b387610ef3565b8160200181815250506112c587610899565b816040018181525050600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054816060018181525050805f0151816020015182604001518360600151600b54955095509550955095505091939590929450565b6113476114e9565b73ffffffffffffffffffffffffffffffffffffffff16611365610d8a565b73ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290612b76565b60405180910390fd5b565b801515600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611415575f80fd5b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060011515811515036114845761147f825f611cca565b611497565b6114968261149184610cd7565b611cca565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516114dd9190612500565b60405180910390a25050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361155e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155590612c04565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390612c92565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116a69190612528565b60405180910390a3505050565b5f6116be8484610fbb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611738578181101561172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190612cfa565b60405180910390fd5b61173784848484036114f0565b5b50505050565b5f61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590612d88565b60405180910390fd5b505050565b5f808303611793575f90506117f4565b5f82846117a09190612da6565b90508284826117af919061281a565b146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690612e57565b60405180910390fd5b809150505b92915050565b5f808290505f81121561180b575f80fd5b80915050919050565b5f8082846118229190612e7e565b90505f83121580156118345750838112155b8061184957505f8312801561184857508381125b5b611851575f80fd5b8091505092915050565b5f80821215611868575f80fd5b819050919050565b5f8061187b83610ef3565b90505f811115611add576118d58160095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611d3490919063ffffffff16565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080600b5f828254611927919061291a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d826040516119749190612528565b60405180910390a25f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b81526004016119d9929190612f1a565b6020604051808303815f875af11580156119f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a199190612795565b905080611ad357611a708260095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c8190919063ffffffff16565b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081600b5f828254611ac29190612f41565b925050819055505f92505050611ae2565b8192505050611ae2565b5f9150505b919050565b5f611af06107be565b11611af9575f80fd5b5f811115611bbb57611b4b611b0c6107be565b611b307001000000000000000000000000000000008461178390919063ffffffff16565b611b3a919061281a565b600754611d3490919063ffffffff16565b6007819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d7845411651182604051611b979190612528565b60405180910390a2611bb481600a54611d3490919063ffffffff16565b600a819055505b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f611cc283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d91565b905092915050565b5f611cd483610cd7565b905080821115611d04575f611cf28284611c8190919063ffffffff16565b9050611cfe8482611df3565b50611d2f565b80821015611d2e575f611d208383611c8190919063ffffffff16565b9050611d2c8482611eae565b505b5b505050565b5f808284611d42919061291a565b905083811015611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90612fbe565b60405180910390fd5b8091505092915050565b5f838311158290611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf9190612460565b60405180910390fd5b505f8385611de69190612f41565b9050809150509392505050565b611dfd8282611f69565b611e69611e1d611e188360075461178390919063ffffffff16565b6117fa565b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120b790919063ffffffff16565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b611eb882826120fe565b611f24611ed8611ed38360075461178390919063ffffffff16565b6117fa565b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461181490919063ffffffff16565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90613026565b60405180910390fd5b611fe25f83836122c1565b8060025f828254611ff3919061291a565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120a09190612528565b60405180910390a36120b35f83836122c6565b5050565b5f8082846120c59190613044565b90505f83121580156120d75750838113155b806120ec57505f831280156120eb57508381135b5b6120f4575f80fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361216c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612163906130f4565b60405180910390fd5b612177825f836122c1565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190613182565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122a99190612528565b60405180910390a36122bc835f846122c6565b505050565b505050565b505050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f81525090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61233282612309565b9050919050565b61234281612328565b811461234c575f80fd5b50565b5f8135905061235d81612339565b92915050565b5f8115159050919050565b61237781612363565b8114612381575f80fd5b50565b5f813590506123928161236e565b92915050565b5f80604083850312156123ae576123ad612305565b5b5f6123bb8582860161234f565b92505060206123cc85828601612384565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561240d5780820151818401526020810190506123f2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612432826123d6565b61243c81856123e0565b935061244c8185602086016123f0565b61245581612418565b840191505092915050565b5f6020820190508181035f8301526124788184612428565b905092915050565b5f819050919050565b61249281612480565b811461249c575f80fd5b50565b5f813590506124ad81612489565b92915050565b5f80604083850312156124c9576124c8612305565b5b5f6124d68582860161234f565b92505060206124e78582860161249f565b9150509250929050565b6124fa81612363565b82525050565b5f6020820190506125135f8301846124f1565b92915050565b61252281612480565b82525050565b5f60208201905061253b5f830184612519565b92915050565b5f6020828403121561255657612555612305565b5b5f6125638482850161234f565b91505092915050565b5f805f6060848603121561258357612582612305565b5b5f6125908682870161234f565b93505060206125a18682870161234f565b92505060406125b28682870161249f565b9150509250925092565b5f80604083850312156125d2576125d1612305565b5b5f6125df8582860161234f565b92505060206125f08582860161234f565b9150509250929050565b5f60ff82169050919050565b61260f816125fa565b82525050565b5f6020820190506126285f830184612606565b92915050565b61263781612328565b82525050565b5f6020820190506126505f83018461262e565b92915050565b5f6020828403121561266b5761266a612305565b5b5f6126788482850161249f565b91505092915050565b5f6020828403121561269657612695612305565b5b5f6126a384828501612384565b91505092915050565b5f60a0820190506126bf5f83018861262e565b6126cc6020830187612519565b6126d96040830186612519565b6126e66060830185612519565b6126f36080830184612519565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061274157607f821691505b602082108103612754576127536126fd565b5b50919050565b5f60408201905061276d5f83018561262e565b61277a6020830184612519565b9392505050565b5f8151905061278f8161236e565b92915050565b5f602082840312156127aa576127a9612305565b5b5f6127b784828501612781565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61282482612480565b915061282f83612480565b92508261283f5761283e6127c0565b5b828204905092915050565b7f416c726561647920696e697469616c697a6564000000000000000000000000005f82015250565b5f61287e6013836123e0565b91506128898261284a565b602082019050919050565b5f6020820190508181035f8301526128ab81612872565b9050919050565b7f436c61696d2069732064697361626c65640000000000000000000000000000005f82015250565b5f6128e66011836123e0565b91506128f1826128b2565b602082019050919050565b5f6020820190508181035f830152612913816128da565b9050919050565b5f61292482612480565b915061292f83612480565b9250828201905080821115612947576129466127ed565b5b92915050565b5f6060820190506129605f83018661262e565b61296d602083018561262e565b61297a6040830184612519565b949350505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6129dc6025836123e0565b91506129e782612982565b604082019050919050565b5f6020820190508181035f830152612a09816129d0565b9050919050565b7f63616c6c6572206973206e6f7420746865206f6e6c794f776e6572206f7220465f8201527f54414f0000000000000000000000000000000000000000000000000000000000602082015250565b5f612a6a6023836123e0565b9150612a7582612a10565b604082019050919050565b5f6020820190508181035f830152612a9781612a5e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612af86026836123e0565b9150612b0382612a9e565b604082019050919050565b5f6020820190508181035f830152612b2581612aec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612b606020836123e0565b9150612b6b82612b2c565b602082019050919050565b5f6020820190508181035f830152612b8d81612b54565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612bee6024836123e0565b9150612bf982612b94565b604082019050919050565b5f6020820190508181035f830152612c1b81612be2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612c7c6022836123e0565b9150612c8782612c22565b604082019050919050565b5f6020820190508181035f830152612ca981612c70565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612ce4601d836123e0565b9150612cef82612cb0565b602082019050919050565b5f6020820190508181035f830152612d1181612cd8565b9050919050565b7f4469766964656e645f547261636b65723a204e6f207472616e736665727320615f8201527f6c6c6f7765640000000000000000000000000000000000000000000000000000602082015250565b5f612d726026836123e0565b9150612d7d82612d18565b604082019050919050565b5f6020820190508181035f830152612d9f81612d66565b9050919050565b5f612db082612480565b9150612dbb83612480565b9250828202612dc981612480565b91508282048414831517612de057612ddf6127ed565b5b5092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e416021836123e0565b9150612e4c82612de7565b604082019050919050565b5f6020820190508181035f830152612e6e81612e35565b9050919050565b5f819050919050565b5f612e8882612e75565b9150612e9383612e75565b92508282019050828112155f8312168382125f841215161715612eb957612eb86127ed565b5b92915050565b5f819050919050565b5f612ee2612edd612ed884612309565b612ebf565b612309565b9050919050565b5f612ef382612ec8565b9050919050565b5f612f0482612ee9565b9050919050565b612f1481612efa565b82525050565b5f604082019050612f2d5f830185612f0b565b612f3a6020830184612519565b9392505050565b5f612f4b82612480565b9150612f5683612480565b9250828203905081811115612f6e57612f6d6127ed565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612fa8601b836123e0565b9150612fb382612f74565b602082019050919050565b5f6020820190508181035f830152612fd581612f9c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613010601f836123e0565b915061301b82612fdc565b602082019050919050565b5f6020820190508181035f83015261303d81613004565b9050919050565b5f61304e82612e75565b915061305983612e75565b925082820390508181125f8412168282135f85121516171561307e5761307d6127ed565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130de6021836123e0565b91506130e982613084565b604082019050919050565b5f6020820190508181035f83015261310b816130d2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61316c6022836123e0565b915061317782613112565b604082019050919050565b5f6020820190508181035f83015261319981613160565b905091905056fea2646970667358221220d348f3f8c53fcc38bedd4c65110fdc277f93fd5d8135e335e82a0cb4540e6aea64736f6c6343000817003300000000000000000000000077e06c9eccf2e797fd462a92b6d7642ef85b0a44
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061021a575f3560e01c8063715018a611610123578063a8b9d240116100ab578063e30443bc1161007a578063e30443bc14610650578063f2fde38b1461066c578063f7c618c114610688578063f8cf31cb146106a6578063fbcbc0f1146106c25761021a565b8063a8b9d24014610590578063a9059cbb146105c0578063aafd847a146105f0578063dd62ed3e146106205761021a565b806391b89fba116100f257806391b89fba146104d857806392929a091461050857806395d89b41146105245780639e1e066114610542578063a457c2d7146105605761021a565b8063715018a61461048857806385a6b3ae1461049257806389371745146104b05780638da5cb5b146104ba5761021a565b80632d34ba79116101a65780634e7b827f116101755780634e7b827f146103e4578063523f1bd31461041457806359974e38146104325780636a4740021461044e57806370a08231146104585761021a565b80632d34ba7914610370578063313ce5671461038c578063372500ab146103aa57806339509351146103b45761021a565b806320797cc1116101ed57806320797cc1146102a6578063226cfa3d146102c257806323b872dd146102f257806327ce0147146103225780632866ed21146103525761021a565b80630483f7a01461021e57806306fdde031461023a578063095ea7b31461025857806318160ddd14610288575b5f80fd5b61023860048036038101906102339190612398565b6106f6565b005b61024261070c565b60405161024f9190612460565b60405180910390f35b610272600480360381019061026d91906124b3565b61079c565b60405161027f9190612500565b60405180910390f35b6102906107be565b60405161029d9190612528565b60405180910390f35b6102c060048036038101906102bb91906124b3565b6107c7565b005b6102dc60048036038101906102d79190612541565b610856565b6040516102e99190612528565b60405180910390f35b61030c6004803603810190610307919061256c565b61086b565b6040516103199190612500565b60405180910390f35b61033c60048036038101906103379190612541565b610899565b6040516103499190612528565b60405180910390f35b61035a610939565b6040516103679190612500565b60405180910390f35b61038a600480360381019061038591906125bc565b61094c565b005b610394610a85565b6040516103a19190612615565b60405180910390f35b6103b2610a8d565b005b6103ce60048036038101906103c991906124b3565b610b99565b6040516103db9190612500565b60405180910390f35b6103fe60048036038101906103f99190612541565b610bcf565b60405161040b9190612500565b60405180910390f35b61041c610bec565b604051610429919061263d565b60405180910390f35b61044c60048036038101906104479190612656565b610c11565b005b610456610ccb565b005b610472600480360381019061046d9190612541565b610cd7565b60405161047f9190612528565b60405180910390f35b610490610d1c565b005b61049a610d2f565b6040516104a79190612528565b60405180910390f35b6104b8610d35565b005b6104c2610d8a565b6040516104cf919061263d565b60405180910390f35b6104f260048036038101906104ed9190612541565b610db2565b6040516104ff9190612528565b60405180910390f35b610522600480360381019061051d9190612681565b610dc3565b005b61052c610de8565b6040516105399190612460565b60405180910390f35b61054a610e78565b6040516105579190612528565b60405180910390f35b61057a600480360381019061057591906124b3565b610e7e565b6040516105879190612500565b60405180910390f35b6105aa60048036038101906105a59190612541565b610ef3565b6040516105b79190612528565b60405180910390f35b6105da60048036038101906105d591906124b3565b610f53565b6040516105e79190612500565b60405180910390f35b61060a60048036038101906106059190612541565b610f75565b6040516106179190612528565b60405180910390f35b61063a600480360381019061063591906125bc565b610fbb565b6040516106479190612528565b60405180910390f35b61066a600480360381019061066591906124b3565b61103d565b005b61068660048036038101906106819190612541565b611174565b005b6106906111f6565b60405161069d919061263d565b60405180910390f35b6106c060048036038101906106bb9190612541565b61121b565b005b6106dc60048036038101906106d79190612541565b611266565b6040516106ed9594939291906126ac565b60405180910390f35b6106fe61133f565b61070882826113bd565b5050565b60606003805461071b9061272a565b80601f01602080910402602001604051908101604052809291908181526020018280546107479061272a565b80156107925780601f1061076957610100808354040283529160200191610792565b820191905f5260205f20905b81548152906001019060200180831161077557829003601f168201915b5050505050905090565b5f806107a66114e9565b90506107b38185856114f0565b600191505092915050565b5f600254905090565b6107cf61133f565b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6107f36114e9565b836040518363ffffffff1660e01b815260040161081192919061275a565b6020604051808303815f875af115801561082d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108519190612795565b505050565b600d602052805f5260405f205f915090505481565b5f806108756114e9565b90506108828582856116b3565b61088d85858561173e565b60019150509392505050565b5f70010000000000000000000000000000000061092861092360085f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546109156109106108ff88610cd7565b60075461178390919063ffffffff16565b6117fa565b61181490919063ffffffff16565b61185b565b610932919061281a565b9050919050565b600e60149054906101000a900460ff1681565b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290612894565b60405180910390fd5b6109e36114e9565b600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a2d3060016113bd565b610a59600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016113bd565b610a6b610a64610d8a565b60016113bd565b610a768260016113bd565b610a818160016113bd565b5050565b5f6012905090565b600e60149054906101000a900460ff16610adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad3906128fc565b60405180910390fd5b5f610aed610ae86114e9565b611870565b90505f811115610b965742600d5f610b036114e9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550610b486114e9565b73ffffffffffffffffffffffffffffffffffffffff167f47cee97cb7acd717b3c0aa1435d004cd5b3c8c57d70dbceb4e4458bbd60e39d482604051610b8d9190612528565b60405180910390a25b50565b5f80610ba36114e9565b9050610bc4818585610bb58589610fbb565b610bbf919061291a565b6114f0565b600191505092915050565b600c602052805f5260405f205f915054906101000a900460ff1681565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610c1961133f565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd610c5e6114e9565b30846040518463ffffffff1660e01b8152600401610c7e9392919061294d565b6020604051808303815f875af1158015610c9a573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cbe9190612795565b50610cc881611ae7565b50565b610cd433611870565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d2461133f565b610d2d5f611bbe565b565b600a5481565b610d3d61133f565b610d456114e9565b73ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015610d87573d5f803e3d5ffd5b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f610dbc82610ef3565b9050919050565b610dcb61133f565b80600e60146101000a81548160ff02191690831515021790555050565b606060048054610df79061272a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e239061272a565b8015610e6e5780601f10610e4557610100808354040283529160200191610e6e565b820191905f5260205f20905b815481529060010190602001808311610e5157829003601f168201915b5050505050905090565b600b5481565b5f80610e886114e9565b90505f610e958286610fbb565b905083811015610eda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed1906129f2565b60405180910390fd5b610ee782868684036114f0565b60019250505092915050565b5f610f4c60095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610f3e84610899565b611c8190919063ffffffff16565b9050919050565b5f80610f5d6114e9565b9050610f6a81858561173e565b600191505092915050565b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611045610d8a565b73ffffffffffffffffffffffffffffffffffffffff166110636114e9565b73ffffffffffffffffffffffffffffffffffffffff1614806110d85750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166110c06114e9565b73ffffffffffffffffffffffffffffffffffffffff16145b611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612a80565b60405180910390fd5b600c5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166111705761116f8282611cca565b5b5050565b61117c61133f565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190612b0e565b60405180910390fd5b6111f381611bbe565b50565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61122361133f565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f805f805f6112736122cb565b86815f019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506112b387610ef3565b8160200181815250506112c587610899565b816040018181525050600d5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054816060018181525050805f0151816020015182604001518360600151600b54955095509550955095505091939590929450565b6113476114e9565b73ffffffffffffffffffffffffffffffffffffffff16611365610d8a565b73ffffffffffffffffffffffffffffffffffffffff16146113bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b290612b76565b60405180910390fd5b565b801515600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16151503611415575f80fd5b80600c5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555060011515811515036114845761147f825f611cca565b611497565b6114968261149184610cd7565b611cca565b5b8173ffffffffffffffffffffffffffffffffffffffff167fa3c7c11b2e12c4144b09a7813f3393ba646392788638998c97be8da908cf04be826040516114dd9190612500565b60405180910390a25050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361155e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155590612c04565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390612c92565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516116a69190612528565b60405180910390a3505050565b5f6116be8484610fbb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611738578181101561172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190612cfa565b60405180910390fd5b61173784848484036114f0565b5b50505050565b5f61177e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177590612d88565b60405180910390fd5b505050565b5f808303611793575f90506117f4565b5f82846117a09190612da6565b90508284826117af919061281a565b146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690612e57565b60405180910390fd5b809150505b92915050565b5f808290505f81121561180b575f80fd5b80915050919050565b5f8082846118229190612e7e565b90505f83121580156118345750838112155b8061184957505f8312801561184857508381125b5b611851575f80fd5b8091505092915050565b5f80821215611868575f80fd5b819050919050565b5f8061187b83610ef3565b90505f811115611add576118d58160095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611d3490919063ffffffff16565b60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080600b5f828254611927919061291a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff167fee503bee2bb6a87e57bc57db795f98137327401a0e7b7ce42e37926cc1a9ca4d826040516119749190612528565b60405180910390a25f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b81526004016119d9929190612f1a565b6020604051808303815f875af11580156119f5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611a199190612795565b905080611ad357611a708260095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054611c8190919063ffffffff16565b60095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555081600b5f828254611ac29190612f41565b925050819055505f92505050611ae2565b8192505050611ae2565b5f9150505b919050565b5f611af06107be565b11611af9575f80fd5b5f811115611bbb57611b4b611b0c6107be565b611b307001000000000000000000000000000000008461178390919063ffffffff16565b611b3a919061281a565b600754611d3490919063ffffffff16565b6007819055503373ffffffffffffffffffffffffffffffffffffffff167fa493a9229478c3fcd73f66d2cdeb7f94fd0f341da924d1054236d7845411651182604051611b979190612528565b60405180910390a2611bb481600a54611d3490919063ffffffff16565b600a819055505b50565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f611cc283836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611d91565b905092915050565b5f611cd483610cd7565b905080821115611d04575f611cf28284611c8190919063ffffffff16565b9050611cfe8482611df3565b50611d2f565b80821015611d2e575f611d208383611c8190919063ffffffff16565b9050611d2c8482611eae565b505b5b505050565b5f808284611d42919061291a565b905083811015611d87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7e90612fbe565b60405180910390fd5b8091505092915050565b5f838311158290611dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcf9190612460565b60405180910390fd5b505f8385611de69190612f41565b9050809150509392505050565b611dfd8282611f69565b611e69611e1d611e188360075461178390919063ffffffff16565b6117fa565b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546120b790919063ffffffff16565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b611eb882826120fe565b611f24611ed8611ed38360075461178390919063ffffffff16565b6117fa565b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461181490919063ffffffff16565b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fce90613026565b60405180910390fd5b611fe25f83836122c1565b8060025f828254611ff3919061291a565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516120a09190612528565b60405180910390a36120b35f83836122c6565b5050565b5f8082846120c59190613044565b90505f83121580156120d75750838113155b806120ec57505f831280156120eb57508381135b5b6120f4575f80fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361216c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612163906130f4565b60405180910390fd5b612177825f836122c1565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190613182565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516122a99190612528565b60405180910390a36122bc835f846122c6565b505050565b505050565b505050565b60405180608001604052805f73ffffffffffffffffffffffffffffffffffffffff1681526020015f81526020015f81526020015f81525090565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61233282612309565b9050919050565b61234281612328565b811461234c575f80fd5b50565b5f8135905061235d81612339565b92915050565b5f8115159050919050565b61237781612363565b8114612381575f80fd5b50565b5f813590506123928161236e565b92915050565b5f80604083850312156123ae576123ad612305565b5b5f6123bb8582860161234f565b92505060206123cc85828601612384565b9150509250929050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561240d5780820151818401526020810190506123f2565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612432826123d6565b61243c81856123e0565b935061244c8185602086016123f0565b61245581612418565b840191505092915050565b5f6020820190508181035f8301526124788184612428565b905092915050565b5f819050919050565b61249281612480565b811461249c575f80fd5b50565b5f813590506124ad81612489565b92915050565b5f80604083850312156124c9576124c8612305565b5b5f6124d68582860161234f565b92505060206124e78582860161249f565b9150509250929050565b6124fa81612363565b82525050565b5f6020820190506125135f8301846124f1565b92915050565b61252281612480565b82525050565b5f60208201905061253b5f830184612519565b92915050565b5f6020828403121561255657612555612305565b5b5f6125638482850161234f565b91505092915050565b5f805f6060848603121561258357612582612305565b5b5f6125908682870161234f565b93505060206125a18682870161234f565b92505060406125b28682870161249f565b9150509250925092565b5f80604083850312156125d2576125d1612305565b5b5f6125df8582860161234f565b92505060206125f08582860161234f565b9150509250929050565b5f60ff82169050919050565b61260f816125fa565b82525050565b5f6020820190506126285f830184612606565b92915050565b61263781612328565b82525050565b5f6020820190506126505f83018461262e565b92915050565b5f6020828403121561266b5761266a612305565b5b5f6126788482850161249f565b91505092915050565b5f6020828403121561269657612695612305565b5b5f6126a384828501612384565b91505092915050565b5f60a0820190506126bf5f83018861262e565b6126cc6020830187612519565b6126d96040830186612519565b6126e66060830185612519565b6126f36080830184612519565b9695505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061274157607f821691505b602082108103612754576127536126fd565b5b50919050565b5f60408201905061276d5f83018561262e565b61277a6020830184612519565b9392505050565b5f8151905061278f8161236e565b92915050565b5f602082840312156127aa576127a9612305565b5b5f6127b784828501612781565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61282482612480565b915061282f83612480565b92508261283f5761283e6127c0565b5b828204905092915050565b7f416c726561647920696e697469616c697a6564000000000000000000000000005f82015250565b5f61287e6013836123e0565b91506128898261284a565b602082019050919050565b5f6020820190508181035f8301526128ab81612872565b9050919050565b7f436c61696d2069732064697361626c65640000000000000000000000000000005f82015250565b5f6128e66011836123e0565b91506128f1826128b2565b602082019050919050565b5f6020820190508181035f830152612913816128da565b9050919050565b5f61292482612480565b915061292f83612480565b9250828201905080821115612947576129466127ed565b5b92915050565b5f6060820190506129605f83018661262e565b61296d602083018561262e565b61297a6040830184612519565b949350505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6129dc6025836123e0565b91506129e782612982565b604082019050919050565b5f6020820190508181035f830152612a09816129d0565b9050919050565b7f63616c6c6572206973206e6f7420746865206f6e6c794f776e6572206f7220465f8201527f54414f0000000000000000000000000000000000000000000000000000000000602082015250565b5f612a6a6023836123e0565b9150612a7582612a10565b604082019050919050565b5f6020820190508181035f830152612a9781612a5e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612af86026836123e0565b9150612b0382612a9e565b604082019050919050565b5f6020820190508181035f830152612b2581612aec565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612b606020836123e0565b9150612b6b82612b2c565b602082019050919050565b5f6020820190508181035f830152612b8d81612b54565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612bee6024836123e0565b9150612bf982612b94565b604082019050919050565b5f6020820190508181035f830152612c1b81612be2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612c7c6022836123e0565b9150612c8782612c22565b604082019050919050565b5f6020820190508181035f830152612ca981612c70565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612ce4601d836123e0565b9150612cef82612cb0565b602082019050919050565b5f6020820190508181035f830152612d1181612cd8565b9050919050565b7f4469766964656e645f547261636b65723a204e6f207472616e736665727320615f8201527f6c6c6f7765640000000000000000000000000000000000000000000000000000602082015250565b5f612d726026836123e0565b9150612d7d82612d18565b604082019050919050565b5f6020820190508181035f830152612d9f81612d66565b9050919050565b5f612db082612480565b9150612dbb83612480565b9250828202612dc981612480565b91508282048414831517612de057612ddf6127ed565b5b5092915050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f612e416021836123e0565b9150612e4c82612de7565b604082019050919050565b5f6020820190508181035f830152612e6e81612e35565b9050919050565b5f819050919050565b5f612e8882612e75565b9150612e9383612e75565b92508282019050828112155f8312168382125f841215161715612eb957612eb86127ed565b5b92915050565b5f819050919050565b5f612ee2612edd612ed884612309565b612ebf565b612309565b9050919050565b5f612ef382612ec8565b9050919050565b5f612f0482612ee9565b9050919050565b612f1481612efa565b82525050565b5f604082019050612f2d5f830185612f0b565b612f3a6020830184612519565b9392505050565b5f612f4b82612480565b9150612f5683612480565b9250828203905081811115612f6e57612f6d6127ed565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f612fa8601b836123e0565b9150612fb382612f74565b602082019050919050565b5f6020820190508181035f830152612fd581612f9c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613010601f836123e0565b915061301b82612fdc565b602082019050919050565b5f6020820190508181035f83015261303d81613004565b9050919050565b5f61304e82612e75565b915061305983612e75565b925082820390508181125f8412168282135f85121516171561307e5761307d6127ed565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f6130de6021836123e0565b91506130e982613084565b604082019050919050565b5f6020820190508181035f83015261310b816130d2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f61316c6022836123e0565b915061317782613112565b604082019050919050565b5f6020820190508181035f83015261319981613160565b905091905056fea2646970667358221220d348f3f8c53fcc38bedd4c65110fdc277f93fd5d8135e335e82a0cb4540e6aea64736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000077e06c9eccf2e797fd462a92b6d7642ef85b0a44
-----Decoded View---------------
Arg [0] : _wtao (address): 0x77E06c9eCCf2E797fd462A92B6D7642EF85b0A44
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000077e06c9eccf2e797fd462a92b6d7642ef85b0a44
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.