ERC-20
DeFi
Overview
Max Total Supply
1,000,000 HRZN
Holders
1,173 (0.00%)
Market
Price
$0.01 @ 0.000005 ETH
Onchain Market Cap
$14,001.13
Circulating Supply Market Cap
$0.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
84.113879965824905115 HRZNValue
$1.18 ( ~0.000380116014457056 Eth) [0.0084%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Horizon
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** Horizon Finance Bridging Worlds, Uniting Value. Website: hrzn.finance Twitter: twitter.com/HrznLabs Telegram: t.me/+sq9fbIEhBh0zZGEx **/ // SPDX-License-Identifier: MIT pragma solidity ^0.8.12; import {Ownable} from "openzeppelin/access/Ownable.sol"; import {ERC20} from "openzeppelin/token/ERC20/ERC20.sol"; import {IERC20} from "openzeppelin/token/ERC20/IERC20.sol"; import {SafeMath} from "openzeppelin/utils/math/SafeMath.sol"; import {IUniswapV2Factory} from "./interfaces/IUniswapV2Factory.sol"; import {IUniswapV2Router02} from "./interfaces/IUniswapV2Router02.sol"; contract Horizon is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapRouter; address public uniswapV2Pair; bool private swapping; address public teamWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public blacklistRenounced = false; // Anti-bot and anti-whale mappings and variables mapping(address => bool) blacklisted; uint256 public buyTotalFees; uint256 public buyLiquidityFee; uint256 public buyTeamFee; uint256 public sellTotalFees; uint256 public sellLiquidityFee; uint256 public sellTeamFee; uint256 public tokensForLiquidity; uint256 public tokensForTeam; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapRouter( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event teamWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("Horizon", "HRZN") { IUniswapV2Router02 _uniswapRouter = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapRouter), true); uniswapRouter = _uniswapRouter; uint256 _buyLiquidityFee = 0; uint256 _buyTeamFee = 5; uint256 _sellLiquidityFee = 0; uint256 _sellTeamFee = 5; uint256 totalSupply = 1_000_000 * 1e18; maxTransactionAmount = 10_000 * 1e18; // 1% maxWallet = 10_000 * 1e18; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyLiquidityFee = _buyLiquidityFee; buyTeamFee = _buyTeamFee; buyTotalFees = buyLiquidityFee + buyTeamFee; sellLiquidityFee = _sellLiquidityFee; sellTeamFee = _sellTeamFee; sellTotalFees = sellLiquidityFee + sellTeamFee; teamWallet = address(0xdcc998c97dbC6B0cB47192d1b95295D39902c97a); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); _mint(msg.sender, totalSupply); } receive() external payable {} function createPair() external onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapRouter.factory()) .createPair(address(this), uniswapRouter.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); } // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.5%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 10) / 1000) / 1e18, "Cannot set maxWallet lower than 1.0%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { buyLiquidityFee = _liquidityFee; buyTeamFee = _teamFee; buyTotalFees = buyLiquidityFee + buyTeamFee; require(buyTotalFees <= 10, "Buy fees must be <= 5."); } function updateSellFees( uint256 _liquidityFee, uint256 _teamFee ) external onlyOwner { sellLiquidityFee = _liquidityFee; sellTeamFee = _teamFee; sellTotalFees = sellLiquidityFee + sellTeamFee; require(sellTotalFees <= 10, "Sell fees must be <= 5."); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateTeamWallet(address newWallet) external onlyOwner { emit teamWalletUpdated(newWallet, teamWallet); teamWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function isBlacklisted(address account) public view returns (bool) { return blacklisted[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!blacklisted[from],"Sender blacklisted"); require(!blacklisted[to],"Receiver blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForTeam += (fees * sellTeamFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForTeam += (fees * buyTeamFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), tokenAmount); // make the swap uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapRouter), tokenAmount); // add the liquidity uniswapRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForTeam; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForTeam = ethBalance.mul(tokensForTeam).div(totalTokensToSwap - (tokensForLiquidity / 2)); uint256 ethForLiquidity = ethBalance - ethForTeam; tokensForLiquidity = 0; tokensForTeam = 0; (success, ) = address(teamWallet).call{value: ethForTeam}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } } function withdrawHRZN() external onlyOwner { uint256 balance = IERC20(address(this)).balanceOf(address(this)); IERC20(address(this)).transfer(msg.sender, balance); payable(msg.sender).transfer(address(this).balance); } function withdrawToken(address _token, address _to) external onlyOwner { require(_token != address(0), "_token address cannot be 0"); uint256 _contractBalance = IERC20(_token).balanceOf(address(this)); IERC20(_token).transfer(_to, _contractBalance); } function withdrawETH(address toAddr) external onlyOwner { (bool success, ) = toAddr.call{ value: address(this).balance } (""); require(success); } // @dev team renounce blacklist commands function renounceBlacklist() public onlyOwner { blacklistRenounced = true; } function blacklist(address _addr) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( _addr != address(uniswapV2Pair) && _addr != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[_addr] = true; } // @dev blacklist v3 pools; can unblacklist() down the road to suit project and community function blacklistLiquidityPool(address lpAddress) public onlyOwner { require(!blacklistRenounced, "Team has revoked blacklist rights"); require( lpAddress != address(uniswapV2Pair) && lpAddress != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D), "Cannot blacklist token's v2 router or v2 pool." ); blacklisted[lpAddress] = true; } // @dev unblacklist address; not affected by blacklistRenounced incase team wants to unblacklist v3 pools down the road function unblacklist(address _addr) public onlyOwner { blacklisted[_addr] = false; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.19; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev 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; } _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 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 {} }
pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
pragma solidity ^0.8.19; /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.19; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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); }
{ "remappings": [ "create3-factory/=lib/create3-factory/", "ds-test/=lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "solmate/=lib/solmate/src/", "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/" ], "optimizer": { "enabled": true, "runs": 1000000 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapRouter","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"teamWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"blacklistLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blacklistRenounced","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createPair","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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTeamFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForTeam","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"unblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toAddr","type":"address"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawHRZN","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052600b805463ffffffff191660011790553480156200002157600080fd5b50604051806040016040528060078152602001662437b934bd37b760c91b8152506040518060400160405280600481526020016324292d2760e11b8152508160039081620000709190620004dd565b5060046200007f8282620004dd565b5050506200009c62000096620001d560201b60201c565b620001d9565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000be8160016200022b565b6001600160a01b03811660805269021e19e0c9bab24000006008819055600a5560006005818169d3c21bcecceda1000000612710620000fe8284620005bf565b6200010a9190620005df565b600955600e859055600f84905562000123848662000602565b600d55601183905560128290556200013c828462000602565b601055600780546001600160a01b03191673dcc998c97dbc6b0cb47192d1b95295d39902c97a179055620001846200017c6005546001600160a01b031690565b6001620002a5565b62000191306001620002a5565b620001b0620001a86005546001600160a01b031690565b60016200022b565b620001bd3060016200022b565b620001c933826200034f565b50505050505062000618565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200027a5760405162461bcd60e51b81526020600482018190526024820152600080516020620047ee83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620002f05760405162461bcd60e51b81526020600482018190526024820152600080516020620047ee833981519152604482015260640162000271565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003a75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000271565b8060026000828254620003bb919062000602565b90915550506001600160a01b03821660009081526020819052604081208054839290620003ea90849062000602565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200046457607f821691505b6020821081036200048557634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200043457600081815260208120601f850160051c81016020861015620004b45750805b601f850160051c820191505b81811015620004d557828155600101620004c0565b505050505050565b81516001600160401b03811115620004f957620004f962000439565b62000511816200050a84546200044f565b846200048b565b602080601f831160018114620005495760008415620005305750858301515b600019600386901b1c1916600185901b178555620004d5565b600085815260208120601f198616915b828110156200057a5788860151825594840194600190910190840162000559565b5085821015620005995787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620005d957620005d9620005a9565b92915050565b600082620005fd57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620005d957620005d9620005a9565b60805161418962000665600039600081816106ee01528181611b0c01528181611bb701528181613a3e01528181613b1e01528181613b8001528181613bfa0152613c2101526141896000f3fe60806040526004361061036f5760003560e01c80638a8c523c116101c6578063d257b34f116100f7578063f11a24d311610095578063f8b45b051161006f578063f8b45b0514610a60578063f9f92be4146109de578063fde83a3414610a76578063fe575a8714610a8c57600080fd5b8063f11a24d314610a14578063f2fde38b14610a2a578063f637434214610a4a57600080fd5b8063dd62ed3e116100d1578063dd62ed3e14610976578063e0cd4ed8146109c9578063e19b2823146109de578063e2f45605146109fe57600080fd5b8063d257b34f1461092a578063d729715f1461094a578063d85ba0631461096057600080fd5b8063a457c2d711610164578063bbc0c7421161013e578063bbc0c742146108b5578063c0246668146108d4578063c18bc195146108f4578063c8c8ebe41461091457600080fd5b8063a457c2d714610845578063a9059cbb14610865578063b62496f51461088557600080fd5b806395d89b41116101a057806395d89b41146107e55780639a7a23d6146107fa5780639c2e4ac61461081a5780639e78fb4f1461083057600080fd5b80638a8c523c146107855780638da5cb5b1461079a578063924de9b7146107c557600080fd5b80634fbee193116102a057806370a082311161023e578063751039fc11610218578063751039fc146107105780637571336a1461072557806375e3661e146107455780637cb332bb1461076557600080fd5b806370a0823114610684578063715018a6146106c7578063735de9f7146106dc57600080fd5b806366ca9b831161027a57806366ca9b831461060e578063690d83201461062e5780636a486a8e1461064e5780636ddd17131461066457600080fd5b80634fbee1931461058657806359927044146105cc5780635f189361146105f957600080fd5b806323b872dd1161030d5780633aeac4e1116102e75780633aeac4e1146104d95780633dc599ff146104f957806349bd5a5e1461051a5780634a62bb651461056c57600080fd5b806323b872dd1461047d578063313ce5671461049d57806339509351146104b957600080fd5b806310d5de531161034957806310d5de53146103f857806318160ddd146104285780631a8145bb14610447578063203e727e1461045d57600080fd5b806302dbd8f81461037b57806306fdde031461039d578063095ea7b3146103c857600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b610396366004613d39565b610ad2565b005b3480156103a957600080fd5b506103b2610bdf565b6040516103bf9190613d5b565b60405180910390f35b3480156103d457600080fd5b506103e86103e3366004613de9565b610c71565b60405190151581526020016103bf565b34801561040457600080fd5b506103e8610413366004613e15565b60166020526000908152604090205460ff1681565b34801561043457600080fd5b506002545b6040519081526020016103bf565b34801561045357600080fd5b5061043960135481565b34801561046957600080fd5b5061039b610478366004613e32565b610c88565b34801561048957600080fd5b506103e8610498366004613e4b565b610de4565b3480156104a957600080fd5b50604051601281526020016103bf565b3480156104c557600080fd5b506103e86104d4366004613de9565b610eca565b3480156104e557600080fd5b5061039b6104f4366004613e8c565b610f13565b34801561050557600080fd5b50600b546103e8906301000000900460ff1681565b34801561052657600080fd5b506006546105479073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103bf565b34801561057857600080fd5b50600b546103e89060ff1681565b34801561059257600080fd5b506103e86105a1366004613e15565b73ffffffffffffffffffffffffffffffffffffffff1660009081526015602052604090205460ff1690565b3480156105d857600080fd5b506007546105479073ffffffffffffffffffffffffffffffffffffffff1681565b34801561060557600080fd5b5061039b611145565b34801561061a57600080fd5b5061039b610629366004613d39565b6111f6565b34801561063a57600080fd5b5061039b610649366004613e15565b6112fa565b34801561065a57600080fd5b5061043960105481565b34801561067057600080fd5b50600b546103e89062010000900460ff1681565b34801561069057600080fd5b5061043961069f366004613e15565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156106d357600080fd5b5061039b6113e8565b3480156106e857600080fd5b506105477f000000000000000000000000000000000000000000000000000000000000000081565b34801561071c57600080fd5b506103e8611475565b34801561073157600080fd5b5061039b610740366004613ed3565b611527565b34801561075157600080fd5b5061039b610760366004613e15565b6115fe565b34801561077157600080fd5b5061039b610780366004613e15565b6116cb565b34801561079157600080fd5b5061039b6117db565b3480156107a657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610547565b3480156107d157600080fd5b5061039b6107e0366004613f01565b61188b565b3480156107f157600080fd5b506103b2611944565b34801561080657600080fd5b5061039b610815366004613ed3565b611953565b34801561082657600080fd5b50610439600f5481565b34801561083c57600080fd5b5061039b611a89565b34801561085157600080fd5b506103e8610860366004613de9565b611d4d565b34801561087157600080fd5b506103e8610880366004613de9565b611e25565b34801561089157600080fd5b506103e86108a0366004613e15565b60176020526000908152604090205460ff1681565b3480156108c157600080fd5b50600b546103e890610100900460ff1681565b3480156108e057600080fd5b5061039b6108ef366004613ed3565b611e32565b34801561090057600080fd5b5061039b61090f366004613e32565b611f3d565b34801561092057600080fd5b5061043960085481565b34801561093657600080fd5b506103e8610945366004613e32565b612098565b34801561095657600080fd5b5061043960125481565b34801561096c57600080fd5b50610439600d5481565b34801561098257600080fd5b50610439610991366004613e8c565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3480156109d557600080fd5b5061039b612286565b3480156109ea57600080fd5b5061039b6109f9366004613e15565b612433565b348015610a0a57600080fd5b5061043960095481565b348015610a2057600080fd5b50610439600e5481565b348015610a3657600080fd5b5061039b610a45366004613e15565b61267e565b348015610a5657600080fd5b5061043960115481565b348015610a6c57600080fd5b50610439600a5481565b348015610a8257600080fd5b5061043960145481565b348015610a9857600080fd5b506103e8610aa7366004613e15565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c602052604090205460ff1690565b60055473ffffffffffffffffffffffffffffffffffffffff163314610b58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60118290556012819055610b6c8183613f4d565b6010819055600a1015610bdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610b4f565b5050565b606060038054610bee90613f60565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90613f60565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b5050505050905090565b6000610c7e3384846127ae565b5060015b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b670de0b6b3a76400006103e8610d1e60025490565b610d29906005613fb3565b610d339190613fca565b610d3d9190613fca565b811015610dcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e352500000000000000000000000000000000006064820152608401610b4f565b610dde81670de0b6b3a7640000613fb3565b60085550565b6000610df1848484612961565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610eb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610b4f565b610ebf85338584036127ae565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610c7e918590610f0e908690613f4d565b6127ae565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff8216611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b4f565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa15801561107e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a29190614005565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af115801561111b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113f919061401e565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600e829055600f81905561128b8183613f4d565b600d819055600a1015610bdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4275792066656573206d757374206265203c3d20352e000000000000000000006044820152606401610b4f565b60055473ffffffffffffffffffffffffffffffffffffffff16331461137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d80600081146113d5576040519150601f19603f3d011682016040523d82523d6000602084013e6113da565b606091505b5050905080610bdb57600080fd5b60055473ffffffffffffffffffffffffffffffffffffffff163314611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b6114736000613431565b565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146114f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b50600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600b805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610bee90613f60565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b60065473ffffffffffffffffffffffffffffffffffffffff90811690831603611a7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b4f565b610bdb82826134a8565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b99919061403b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c44919061403b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015611cb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cda919061403b565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169182179055611d29906001611527565b6006546114739073ffffffffffffffffffffffffffffffffffffffff1660016134a8565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611e0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610b4f565b611e1b33858584036127ae565b5060019392505050565b6000610c7e338484612961565b60055473ffffffffffffffffffffffffffffffffffffffff163314611eb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff821660008181526015602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611fbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b670de0b6b3a76400006103e8611fd360025490565b611fde90600a613fb3565b611fe89190613fca565b611ff29190613fca565b811015612080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b61209281670de0b6b3a7640000613fb3565b600a5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b620186a061212960025490565b612134906001613fb3565b61213e9190613fca565b8210156121cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610b4f565b6103e86121d960025490565b6121e4906005613fb3565b6121ee9190613fca565b82111561227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610b4f565b50600955600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314612307576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482018190526000916370a0823190602401602060405180830381865afa15801561235e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123829190614005565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af11580156123e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612406919061401e565b5060405133904780156108fc02916000818181858888f19350505050158015610bdb573d6000803e3d6000fd5b60055473ffffffffffffffffffffffffffffffffffffffff1633146124b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600b546301000000900460ff161561254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b60065473ffffffffffffffffffffffffffffffffffffffff8281169116148015906125a3575073ffffffffffffffffffffffffffffffffffffffff8116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b61262f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff81166127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b4f565b6127ab81613431565b50565b73ffffffffffffffffffffffffffffffffffffffff8316612850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff82166128f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612a04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff8216612aa7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff1615612b37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff1615612bc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610b4f565b80600003612be057612bdb83836000613527565b505050565b600b5460ff16156130985760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612c31575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612c52575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612c79575060065474010000000000000000000000000000000000000000900460ff16155b1561309857600b54610100900460ff16612d4c5773ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff1680612ce6575073ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff165b612d4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff831660009081526017602052604090205460ff168015612da7575073ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff16155b15612ede57600854811115612e3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610b4f565b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612e719083613f4d565b1115612ed9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b4f565b613098565b73ffffffffffffffffffffffffffffffffffffffff821660009081526017602052604090205460ff168015612f39575073ffffffffffffffffffffffffffffffffffffffff831660009081526016602052604090205460ff16155b15612fd057600854811115612ed9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff1661309857600a5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546130309083613f4d565b1115613098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b4f565b30600090815260208190526040902054600954811080159081906130c45750600b5462010000900460ff165b80156130eb575060065474010000000000000000000000000000000000000000900460ff16155b801561311d575073ffffffffffffffffffffffffffffffffffffffff851660009081526017602052604090205460ff16155b801561314f575073ffffffffffffffffffffffffffffffffffffffff851660009081526015602052604090205460ff16155b8015613181575073ffffffffffffffffffffffffffffffffffffffff841660009081526015602052604090205460ff16155b156131f657600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556131cd6137da565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60065473ffffffffffffffffffffffffffffffffffffffff861660009081526015602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061326f575073ffffffffffffffffffffffffffffffffffffffff851660009081526015602052604090205460ff165b15613278575060005b6000811561341d5773ffffffffffffffffffffffffffffffffffffffff861660009081526017602052604090205460ff1680156132b757506000601054115b15613345576132dc60646132d6601054886139a290919063ffffffff16565b906139b5565b9050601054601154826132ef9190613fb3565b6132f99190613fca565b6013600082825461330a9190613f4d565b909155505060105460125461331f9083613fb3565b6133299190613fca565b6014600082825461333a9190613f4d565b909155506133ff9050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526017602052604090205460ff16801561337c57506000600d54115b156133ff5761339b60646132d6600d54886139a290919063ffffffff16565b9050600d54600e54826133ae9190613fb3565b6133b89190613fca565b601360008282546133c99190613f4d565b9091555050600d54600f546133de9083613fb3565b6133e89190613fca565b601460008282546133f99190613f4d565b90915550505b801561341057613410873083613527565b61341a8186614058565b94505b613428878787613527565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526017602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff83166135ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff821661366d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015613723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290613767908490613f4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137cd91815260200190565b60405180910390a361113f565b30600090815260208190526040812054905060006014546013546137fe9190613f4d565b9050600082158061380d575081155b1561381757505050565b600954613825906014613fb3565b83111561383d5760095461383a906014613fb3565b92505b6000600283601354866138509190613fb3565b61385a9190613fca565b6138649190613fca565b9050600061387285836139c1565b90504761387e826139cd565b600061388a47836139c1565b905060006138b860026013546138a09190613fca565b6138aa9089614058565b6014546132d69085906139a2565b905060006138c68284614058565b60006013819055601481905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d806000811461392b576040519150601f19603f3d011682016040523d82523d6000602084013e613930565b606091505b509097505085158015906139445750600081115b15613997576139538682613bf4565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b60006139ae8284613fb3565b9392505050565b60006139ae8284613fca565b60006139ae8284614058565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613a0257613a0261406b565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613acb919061403b565b81600181518110613ade57613ade61406b565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b43307f0000000000000000000000000000000000000000000000000000000000000000846127ae565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790613bbe90859060009086903090429060040161409a565b600060405180830381600087803b158015613bd857600080fd5b505af1158015613bec573d6000803e3d6000fd5b505050505050565b613c1f307f0000000000000000000000000000000000000000000000000000000000000000846127ae565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613c8060055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613d0d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d329190614125565b5050505050565b60008060408385031215613d4c57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015613d8857858101830151858201604001528201613d6c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146127ab57600080fd5b60008060408385031215613dfc57600080fd5b8235613e0781613dc7565b946020939093013593505050565b600060208284031215613e2757600080fd5b81356139ae81613dc7565b600060208284031215613e4457600080fd5b5035919050565b600080600060608486031215613e6057600080fd5b8335613e6b81613dc7565b92506020840135613e7b81613dc7565b929592945050506040919091013590565b60008060408385031215613e9f57600080fd5b8235613eaa81613dc7565b91506020830135613eba81613dc7565b809150509250929050565b80151581146127ab57600080fd5b60008060408385031215613ee657600080fd5b8235613ef181613dc7565b91506020830135613eba81613ec5565b600060208284031215613f1357600080fd5b81356139ae81613ec5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610c8257610c82613f1e565b600181811c90821680613f7457607f821691505b602082108103613fad577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8082028115828204841417610c8257610c82613f1e565b600082614000577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561401757600080fd5b5051919050565b60006020828403121561403057600080fd5b81516139ae81613ec5565b60006020828403121561404d57600080fd5b81516139ae81613dc7565b81810381811115610c8257610c82613f1e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156140f757845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016140c5565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561413a57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212206e8c65e683c002d92c4de5832a055de7e4f166a6e5913ee6db9b7112a354dc2e64736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061036f5760003560e01c80638a8c523c116101c6578063d257b34f116100f7578063f11a24d311610095578063f8b45b051161006f578063f8b45b0514610a60578063f9f92be4146109de578063fde83a3414610a76578063fe575a8714610a8c57600080fd5b8063f11a24d314610a14578063f2fde38b14610a2a578063f637434214610a4a57600080fd5b8063dd62ed3e116100d1578063dd62ed3e14610976578063e0cd4ed8146109c9578063e19b2823146109de578063e2f45605146109fe57600080fd5b8063d257b34f1461092a578063d729715f1461094a578063d85ba0631461096057600080fd5b8063a457c2d711610164578063bbc0c7421161013e578063bbc0c742146108b5578063c0246668146108d4578063c18bc195146108f4578063c8c8ebe41461091457600080fd5b8063a457c2d714610845578063a9059cbb14610865578063b62496f51461088557600080fd5b806395d89b41116101a057806395d89b41146107e55780639a7a23d6146107fa5780639c2e4ac61461081a5780639e78fb4f1461083057600080fd5b80638a8c523c146107855780638da5cb5b1461079a578063924de9b7146107c557600080fd5b80634fbee193116102a057806370a082311161023e578063751039fc11610218578063751039fc146107105780637571336a1461072557806375e3661e146107455780637cb332bb1461076557600080fd5b806370a0823114610684578063715018a6146106c7578063735de9f7146106dc57600080fd5b806366ca9b831161027a57806366ca9b831461060e578063690d83201461062e5780636a486a8e1461064e5780636ddd17131461066457600080fd5b80634fbee1931461058657806359927044146105cc5780635f189361146105f957600080fd5b806323b872dd1161030d5780633aeac4e1116102e75780633aeac4e1146104d95780633dc599ff146104f957806349bd5a5e1461051a5780634a62bb651461056c57600080fd5b806323b872dd1461047d578063313ce5671461049d57806339509351146104b957600080fd5b806310d5de531161034957806310d5de53146103f857806318160ddd146104285780631a8145bb14610447578063203e727e1461045d57600080fd5b806302dbd8f81461037b57806306fdde031461039d578063095ea7b3146103c857600080fd5b3661037657005b600080fd5b34801561038757600080fd5b5061039b610396366004613d39565b610ad2565b005b3480156103a957600080fd5b506103b2610bdf565b6040516103bf9190613d5b565b60405180910390f35b3480156103d457600080fd5b506103e86103e3366004613de9565b610c71565b60405190151581526020016103bf565b34801561040457600080fd5b506103e8610413366004613e15565b60166020526000908152604090205460ff1681565b34801561043457600080fd5b506002545b6040519081526020016103bf565b34801561045357600080fd5b5061043960135481565b34801561046957600080fd5b5061039b610478366004613e32565b610c88565b34801561048957600080fd5b506103e8610498366004613e4b565b610de4565b3480156104a957600080fd5b50604051601281526020016103bf565b3480156104c557600080fd5b506103e86104d4366004613de9565b610eca565b3480156104e557600080fd5b5061039b6104f4366004613e8c565b610f13565b34801561050557600080fd5b50600b546103e8906301000000900460ff1681565b34801561052657600080fd5b506006546105479073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016103bf565b34801561057857600080fd5b50600b546103e89060ff1681565b34801561059257600080fd5b506103e86105a1366004613e15565b73ffffffffffffffffffffffffffffffffffffffff1660009081526015602052604090205460ff1690565b3480156105d857600080fd5b506007546105479073ffffffffffffffffffffffffffffffffffffffff1681565b34801561060557600080fd5b5061039b611145565b34801561061a57600080fd5b5061039b610629366004613d39565b6111f6565b34801561063a57600080fd5b5061039b610649366004613e15565b6112fa565b34801561065a57600080fd5b5061043960105481565b34801561067057600080fd5b50600b546103e89062010000900460ff1681565b34801561069057600080fd5b5061043961069f366004613e15565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b3480156106d357600080fd5b5061039b6113e8565b3480156106e857600080fd5b506105477f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561071c57600080fd5b506103e8611475565b34801561073157600080fd5b5061039b610740366004613ed3565b611527565b34801561075157600080fd5b5061039b610760366004613e15565b6115fe565b34801561077157600080fd5b5061039b610780366004613e15565b6116cb565b34801561079157600080fd5b5061039b6117db565b3480156107a657600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610547565b3480156107d157600080fd5b5061039b6107e0366004613f01565b61188b565b3480156107f157600080fd5b506103b2611944565b34801561080657600080fd5b5061039b610815366004613ed3565b611953565b34801561082657600080fd5b50610439600f5481565b34801561083c57600080fd5b5061039b611a89565b34801561085157600080fd5b506103e8610860366004613de9565b611d4d565b34801561087157600080fd5b506103e8610880366004613de9565b611e25565b34801561089157600080fd5b506103e86108a0366004613e15565b60176020526000908152604090205460ff1681565b3480156108c157600080fd5b50600b546103e890610100900460ff1681565b3480156108e057600080fd5b5061039b6108ef366004613ed3565b611e32565b34801561090057600080fd5b5061039b61090f366004613e32565b611f3d565b34801561092057600080fd5b5061043960085481565b34801561093657600080fd5b506103e8610945366004613e32565b612098565b34801561095657600080fd5b5061043960125481565b34801561096c57600080fd5b50610439600d5481565b34801561098257600080fd5b50610439610991366004613e8c565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b3480156109d557600080fd5b5061039b612286565b3480156109ea57600080fd5b5061039b6109f9366004613e15565b612433565b348015610a0a57600080fd5b5061043960095481565b348015610a2057600080fd5b50610439600e5481565b348015610a3657600080fd5b5061039b610a45366004613e15565b61267e565b348015610a5657600080fd5b5061043960115481565b348015610a6c57600080fd5b50610439600a5481565b348015610a8257600080fd5b5061043960145481565b348015610a9857600080fd5b506103e8610aa7366004613e15565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c602052604090205460ff1690565b60055473ffffffffffffffffffffffffffffffffffffffff163314610b58576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60118290556012819055610b6c8183613f4d565b6010819055600a1015610bdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f53656c6c2066656573206d757374206265203c3d20352e0000000000000000006044820152606401610b4f565b5050565b606060038054610bee90613f60565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a90613f60565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b5050505050905090565b6000610c7e3384846127ae565b5060015b92915050565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d09576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b670de0b6b3a76400006103e8610d1e60025490565b610d29906005613fb3565b610d339190613fca565b610d3d9190613fca565b811015610dcc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201527f6c6f776572207468616e20302e352500000000000000000000000000000000006064820152608401610b4f565b610dde81670de0b6b3a7640000613fb3565b60085550565b6000610df1848484612961565b73ffffffffffffffffffffffffffffffffffffffff8416600090815260016020908152604080832033845290915290205482811015610eb2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206160448201527f6c6c6f77616e63650000000000000000000000000000000000000000000000006064820152608401610b4f565b610ebf85338584036127ae565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091610c7e918590610f0e908690613f4d565b6127ae565b60055473ffffffffffffffffffffffffffffffffffffffff163314610f94576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff8216611011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f5f746f6b656e20616464726573732063616e6e6f7420626520300000000000006044820152606401610b4f565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073ffffffffffffffffffffffffffffffffffffffff8416906370a0823190602401602060405180830381865afa15801561107e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a29190614005565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8481166004830152602482018390529192509084169063a9059cbb906044016020604051808303816000875af115801561111b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061113f919061401e565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146111c6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffff166301000000179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600e829055600f81905561128b8183613f4d565b600d819055600a1015610bdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f4275792066656573206d757374206265203c3d20352e000000000000000000006044820152606401610b4f565b60055473ffffffffffffffffffffffffffffffffffffffff16331461137b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b60008173ffffffffffffffffffffffffffffffffffffffff164760405160006040518083038185875af1925050503d80600081146113d5576040519150601f19603f3d011682016040523d82523d6000602084013e6113da565b606091505b5050905080610bdb57600080fd5b60055473ffffffffffffffffffffffffffffffffffffffff163314611469576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b6114736000613431565b565b60055460009073ffffffffffffffffffffffffffffffffffffffff1633146114f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b50600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055600190565b60055473ffffffffffffffffffffffffffffffffffffffff1633146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff91909116600090815260166020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461167f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461174c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b60075460405173ffffffffffffffffffffffffffffffffffffffff918216918316907f8aa0f85050aca99be43beb823e0457e77966b3baf697a289b03681978f96166890600090a3600780547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600b80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000ff1662010100179055565b60055473ffffffffffffffffffffffffffffffffffffffff16331461190c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600b805491151562010000027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff909216919091179055565b606060048054610bee90613f60565b60055473ffffffffffffffffffffffffffffffffffffffff1633146119d4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b60065473ffffffffffffffffffffffffffffffffffffffff90811690831603611a7f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610b4f565b610bdb82826134a8565b60055473ffffffffffffffffffffffffffffffffffffffff163314611b0a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b99919061403b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c44919061403b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff9283166004820152911660248201526044016020604051808303816000875af1158015611cb6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cda919061403b565b600680547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff929092169182179055611d29906001611527565b6006546114739073ffffffffffffffffffffffffffffffffffffffff1660016134a8565b33600090815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8616845290915281205482811015611e0e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610b4f565b611e1b33858584036127ae565b5060019392505050565b6000610c7e338484612961565b60055473ffffffffffffffffffffffffffffffffffffffff163314611eb3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff821660008181526015602090815260409182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611fbe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b670de0b6b3a76400006103e8611fd360025490565b611fde90600a613fb3565b611fe89190613fca565b611ff29190613fca565b811015612080576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060448201527f312e3025000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b61209281670de0b6b3a7640000613fb3565b600a5550565b60055460009073ffffffffffffffffffffffffffffffffffffffff16331461211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b620186a061212960025490565b612134906001613fb3565b61213e9190613fca565b8210156121cd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527f20302e3030312520746f74616c20737570706c792e00000000000000000000006064820152608401610b4f565b6103e86121d960025490565b6121e4906005613fb3565b6121ee9190613fca565b82111561227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160448201527f6e20302e352520746f74616c20737570706c792e0000000000000000000000006064820152608401610b4f565b50600955600190565b60055473ffffffffffffffffffffffffffffffffffffffff163314612307576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482018190526000916370a0823190602401602060405180830381865afa15801561235e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123829190614005565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815233600482015260248101829052909150309063a9059cbb906044016020604051808303816000875af11580156123e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612406919061401e565b5060405133904780156108fc02916000818181858888f19350505050158015610bdb573d6000803e3d6000fd5b60055473ffffffffffffffffffffffffffffffffffffffff1633146124b4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b600b546301000000900460ff161561254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f5465616d20686173207265766f6b656420626c61636b6c69737420726967687460448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b60065473ffffffffffffffffffffffffffffffffffffffff8281169116148015906125a3575073ffffffffffffffffffffffffffffffffffffffff8116737a250d5630b4cf539739df2c5dacb4c659f2488d14155b61262f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f43616e6e6f7420626c61636b6c69737420746f6b656e277320763220726f757460448201527f6572206f7220763220706f6f6c2e0000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff166000908152600c6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126ff576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff81166127a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610b4f565b6127ab81613431565b50565b73ffffffffffffffffffffffffffffffffffffffff8316612850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff82166128f3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8316612a04576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff8216612aa7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff83166000908152600c602052604090205460ff1615612b37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601260248201527f53656e64657220626c61636b6c697374656400000000000000000000000000006044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff82166000908152600c602052604090205460ff1615612bc7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f526563656976657220626c61636b6c69737465640000000000000000000000006044820152606401610b4f565b80600003612be057612bdb83836000613527565b505050565b600b5460ff16156130985760055473ffffffffffffffffffffffffffffffffffffffff848116911614801590612c31575060055473ffffffffffffffffffffffffffffffffffffffff838116911614155b8015612c52575073ffffffffffffffffffffffffffffffffffffffff821615155b8015612c79575060065474010000000000000000000000000000000000000000900460ff16155b1561309857600b54610100900460ff16612d4c5773ffffffffffffffffffffffffffffffffffffffff831660009081526015602052604090205460ff1680612ce6575073ffffffffffffffffffffffffffffffffffffffff821660009081526015602052604090205460ff165b612d4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601660248201527f54726164696e67206973206e6f74206163746976652e000000000000000000006044820152606401610b4f565b73ffffffffffffffffffffffffffffffffffffffff831660009081526017602052604090205460ff168015612da7575073ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff16155b15612ede57600854811115612e3e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527f6d61785472616e73616374696f6e416d6f756e742e00000000000000000000006064820152608401610b4f565b600a5473ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054612e719083613f4d565b1115612ed9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b4f565b613098565b73ffffffffffffffffffffffffffffffffffffffff821660009081526017602052604090205460ff168015612f39575073ffffffffffffffffffffffffffffffffffffffff831660009081526016602052604090205460ff16155b15612fd057600854811115612ed9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560448201527f206d61785472616e73616374696f6e416d6f756e742e000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526016602052604090205460ff1661309857600a5473ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260409020546130309083613f4d565b1115613098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601360248201527f4d61782077616c6c6574206578636565646564000000000000000000000000006044820152606401610b4f565b30600090815260208190526040902054600954811080159081906130c45750600b5462010000900460ff165b80156130eb575060065474010000000000000000000000000000000000000000900460ff16155b801561311d575073ffffffffffffffffffffffffffffffffffffffff851660009081526017602052604090205460ff16155b801561314f575073ffffffffffffffffffffffffffffffffffffffff851660009081526015602052604090205460ff16155b8015613181575073ffffffffffffffffffffffffffffffffffffffff841660009081526015602052604090205460ff16155b156131f657600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff16740100000000000000000000000000000000000000001790556131cd6137da565b600680547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b60065473ffffffffffffffffffffffffffffffffffffffff861660009081526015602052604090205460ff7401000000000000000000000000000000000000000090920482161591168061326f575073ffffffffffffffffffffffffffffffffffffffff851660009081526015602052604090205460ff165b15613278575060005b6000811561341d5773ffffffffffffffffffffffffffffffffffffffff861660009081526017602052604090205460ff1680156132b757506000601054115b15613345576132dc60646132d6601054886139a290919063ffffffff16565b906139b5565b9050601054601154826132ef9190613fb3565b6132f99190613fca565b6013600082825461330a9190613f4d565b909155505060105460125461331f9083613fb3565b6133299190613fca565b6014600082825461333a9190613f4d565b909155506133ff9050565b73ffffffffffffffffffffffffffffffffffffffff871660009081526017602052604090205460ff16801561337c57506000600d54115b156133ff5761339b60646132d6600d54886139a290919063ffffffff16565b9050600d54600e54826133ae9190613fb3565b6133b89190613fca565b601360008282546133c99190613f4d565b9091555050600d54600f546133de9083613fb3565b6133e89190613fca565b601460008282546133f99190613f4d565b90915550505b801561341057613410873083613527565b61341a8186614058565b94505b613428878787613527565b50505050505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff821660008181526017602052604080822080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b73ffffffffffffffffffffffffffffffffffffffff83166135ca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff821661366d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015613723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610b4f565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290613767908490613f4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137cd91815260200190565b60405180910390a361113f565b30600090815260208190526040812054905060006014546013546137fe9190613f4d565b9050600082158061380d575081155b1561381757505050565b600954613825906014613fb3565b83111561383d5760095461383a906014613fb3565b92505b6000600283601354866138509190613fb3565b61385a9190613fca565b6138649190613fca565b9050600061387285836139c1565b90504761387e826139cd565b600061388a47836139c1565b905060006138b860026013546138a09190613fca565b6138aa9089614058565b6014546132d69085906139a2565b905060006138c68284614058565b60006013819055601481905560075460405192935073ffffffffffffffffffffffffffffffffffffffff1691849181818185875af1925050503d806000811461392b576040519150601f19603f3d011682016040523d82523d6000602084013e613930565b606091505b509097505085158015906139445750600081115b15613997576139538682613bf4565b601354604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b60006139ae8284613fb3565b9392505050565b60006139ae8284613fca565b60006139ae8284614058565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110613a0257613a0261406b565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613aa7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613acb919061403b565b81600181518110613ade57613ade61406b565b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613b43307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127ae565b6040517f791ac94700000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790613bbe90859060009086903090429060040161409a565b600060405180830381600087803b158015613bd857600080fd5b505af1158015613bec573d6000803e3d6000fd5b505050505050565b613c1f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127ae565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080613c8060055473ffffffffffffffffffffffffffffffffffffffff1690565b60405160e088901b7fffffffff0000000000000000000000000000000000000000000000000000000016815273ffffffffffffffffffffffffffffffffffffffff958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015613d0d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613d329190614125565b5050505050565b60008060408385031215613d4c57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015613d8857858101830151858201604001528201613d6c565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b73ffffffffffffffffffffffffffffffffffffffff811681146127ab57600080fd5b60008060408385031215613dfc57600080fd5b8235613e0781613dc7565b946020939093013593505050565b600060208284031215613e2757600080fd5b81356139ae81613dc7565b600060208284031215613e4457600080fd5b5035919050565b600080600060608486031215613e6057600080fd5b8335613e6b81613dc7565b92506020840135613e7b81613dc7565b929592945050506040919091013590565b60008060408385031215613e9f57600080fd5b8235613eaa81613dc7565b91506020830135613eba81613dc7565b809150509250929050565b80151581146127ab57600080fd5b60008060408385031215613ee657600080fd5b8235613ef181613dc7565b91506020830135613eba81613ec5565b600060208284031215613f1357600080fd5b81356139ae81613ec5565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610c8257610c82613f1e565b600181811c90821680613f7457607f821691505b602082108103613fad577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b8082028115828204841417610c8257610c82613f1e565b600082614000577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b60006020828403121561401757600080fd5b5051919050565b60006020828403121561403057600080fd5b81516139ae81613ec5565b60006020828403121561404d57600080fd5b81516139ae81613dc7565b81810381811115610c8257610c82613f1e565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156140f757845173ffffffffffffffffffffffffffffffffffffffff16835293830193918301916001016140c5565b505073ffffffffffffffffffffffffffffffffffffffff969096166060850152505050608001529392505050565b60008060006060848603121561413a57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212206e8c65e683c002d92c4de5832a055de7e4f166a6e5913ee6db9b7112a354dc2e64736f6c63430008130033
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.