Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
42,000,000,000 $BOMBA
Holders
13
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
173,604,443.296596318646216394 $BOMBAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BOMBA
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; /* Bomba B0mba BOMB4 BomBAAA B()mba bOmBa BoMbA! TG:https://t.me/BombaERC X:https://twitter.com/BombaDaCoin WEB:https://www.bombacoin.xyz/ */ import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract BOMBA is ERC20("Bomba", "$BOMBA"), Ownable { // Uniswap variables IUniswapV2Factory public constant UNISWAP_FACTORY = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapV2Router02 public constant UNISWAP_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable UNISWAP_V2_PAIR; // Contract variables uint256 constant TOTAL_SUPPLY = 42_000_000_000 ether; address constant BURN_ADDRESS = address(0xdead); uint256 public launchedOnBlock; // Max buy | sell | wallet amount uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWalletAmount; // Swap back variables bool private swapping; uint256 public swapTokensAtAmount; // Tax fee recipients address public treasuryWallet; address public devWallet; // Trading state variables bool public limitsActive = true; bool public tradingActive = false; bool public swapEnabled = false; // Tax fees uint256 public totalBuyFees = 25; uint256 public treasuryBuyFee = 25; uint256 public devBuyFee = 0; uint256 public totalSaleFees = 25; uint256 public treasurySellFee = 25; uint256 public devSellFee = 0; uint256 public treasuryTokens; uint256 public devTokens; // Mappings mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public isBot; event EnabledTrading(bool tradingActive); event RemovedLimits(); event ExcludeFromFees(address indexed account, bool isExcluded); event UpdatedMaxBuyAmount(uint256 newAmount); event UpdatedMaxSellAmount(uint256 newAmount); event UpdatedMaxWalletAmount(uint256 newAmount); event UpdatedTreasuryWallet(address indexed newWallet); event UpdatedDevWallet(address indexed newWallet); event UpdatedRewardsAddress(address indexed newWallet); event MaxTransactionExclusion(address _address, bool excluded); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() Ownable(msg.sender) { _mint(msg.sender, TOTAL_SUPPLY); _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0)); _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true); UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair( address(this), UNISWAP_ROUTER.WETH() ); maxBuyAmount = (totalSupply() * 20) / 1_000; // 2% max buy maxSellAmount = (totalSupply() * 20) / 1_000; // 2% max sell maxWalletAmount = (totalSupply() * 30) / 1_000; // 3% max holdings swapTokensAtAmount = (totalSupply() * 50) / 10_000; // .5% swapToEth threshold treasuryWallet = msg.sender; devWallet = msg.sender; _excludeFromMaxTransaction(msg.sender, true); _excludeFromMaxTransaction(address(this), true); _excludeFromMaxTransaction(address(0xdead), true); excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); } receive() external payable {} function launchToken() public onlyOwner { require(launchedOnBlock == 0, "ERROR: Token state is already live !"); launchedOnBlock = block.number; tradingActive = true; swapEnabled = true; emit EnabledTrading(tradingActive); } function updateMaxBuyAmount(uint256 newNum) external onlyOwner { maxBuyAmount = newNum; emit UpdatedMaxBuyAmount(maxBuyAmount); } function updateMaxSellAmount(uint256 newNum) external onlyOwner { maxSellAmount = newNum; emit UpdatedMaxSellAmount(maxSellAmount); } // To remove tax limits on buys/sales function removeLimits() external onlyOwner { limitsActive = false; emit RemovedLimits(); } // Update wallet recipients function setTreasuryWallet(address _treasuryWallet) external onlyOwner { require(_treasuryWallet != address(0), "ERROR: _treasuryWallet address cannot be 0 !"); treasuryWallet = payable(_treasuryWallet); emit UpdatedTreasuryWallet(_treasuryWallet); } function setDevWallet(address _devWallet) external onlyOwner { require(_devWallet != address(0), "ERROR: _devWallet address cannot be 0 !"); devWallet = payable(_devWallet); emit UpdatedDevWallet(_devWallet); } // Update tax amounts function updateTaxFees( uint256 _newTreasurySellFee, uint256 _newTreasuryBuyFee ) external onlyOwner { treasurySellFee = _newTreasurySellFee; treasuryBuyFee = _newTreasuryBuyFee; totalBuyFees = treasuryBuyFee; totalSaleFees = treasurySellFee; } // Exclude from restrictions & fees function _excludeFromMaxTransaction( address updAds, bool isExcluded ) private { _isExcludedMaxTransactionAmount[updAds] = isExcluded; emit MaxTransactionExclusion(updAds, isExcluded); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } // Blacklist functions (remove | add) function addBotterToList(address _account) external onlyOwner { require( _account != address(UNISWAP_ROUTER), "ERROR: Cannot blacklist Uniswap Router !" ); require(!isBot[_account], "ERROR: Botter already exist !"); isBot[_account] = true; } function removeBotterFromList(address _account) external onlyOwner { require(isBot[_account], "ERROR: Address not found in Bots !"); isBot[_account] = false; } // TRADING GOVERNANCE function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERROR ERC20: transfer from the zero address !"); require(to != address(0), "ERROR ERC20: transfer to the zero address !"); require(amount > 0, "ERROR: Amount must be greater than 0 !"); require(!isBot[to], "ERROR: Bot detected !"); require(!isBot[from], "ERROR: Bot detected !"); if (limitsActive) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _isExcludedMaxTransactionAmount[from] || _isExcludedMaxTransactionAmount[to], "ERROR: Trading is not active !" ); require(from == owner(), "ERROR: Trading is active !"); } //when buy if ( from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxBuyAmount, "ERROR: Buy amount limit exceeded !" ); require( amount + balanceOf(to) <= maxWalletAmount, "ERROR: Max wallet amount exceeded !" ); } //when sell else if ( to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxSellAmount, "ERROR: Sale amount limit exceeded !" ); } else if ( !_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount + balanceOf(to) <= maxWalletAmount, "ERROR: Max wallet amount exceeded !" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !(from == UNISWAP_V2_PAIR) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = true; // 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 (to == UNISWAP_V2_PAIR && totalSaleFees > 0) { fees = (amount * totalSaleFees) / 100; treasuryTokens += (fees * treasurySellFee) / totalSaleFees; devTokens += (fees * devSellFee) / totalSaleFees; } // on buy else if (from == UNISWAP_V2_PAIR && totalBuyFees > 0) { fees = (amount * totalBuyFees) / 100; treasuryTokens += (fees * treasuryBuyFee) / totalBuyFees; devTokens += (fees * devBuyFee) / totalBuyFees; } 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] = UNISWAP_ROUTER.WETH(); _approve(address(this), address(UNISWAP_ROUTER), tokenAmount); // make the swap UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = treasuryTokens + devTokens; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount) { contractBalance = swapTokensAtAmount; } uint256 amountToSwapForETH = contractBalance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance; uint256 ethForTreasury = (ethBalance * treasuryTokens) / totalTokensToSwap; treasuryTokens = 0; devTokens = 0; (success, ) = address(treasuryWallet).call{value: ethForTreasury}(""); (success, ) = address(devWallet).call{value: address(this).balance}(""); } // NOTE: ARGUMENT IN ETHER (1e18) function airdropTokens( address[] calldata addresses, uint256[] calldata amounts ) external onlyOwner { require( addresses.length == amounts.length, "ERROR: Array sizes must be equal !" ); uint256 i = 0; while (i < addresses.length) { uint256 _amount = amounts[i] * 1e18; _transfer(msg.sender, addresses[i], _amount); i += 1; } } // to withdarw ETH from contract // NOTE: ARGUMENT IN WEI function withdrawETH(uint256 _amount) external onlyOwner { require( address(this).balance >= _amount, "ERROR: Insufficient balance to complete txn !" ); payable(msg.sender).transfer(_amount); } // to withdraw ERC20 tokens from contract // NOTE: ARGUMENT IN WEI function withdrawToken(IERC20 _token, uint256 _amount) external onlyOwner { require( _token.balanceOf(address(this)) >= _amount, "ERROR: Insufficient balance to complete txn !" ); _token.transfer(msg.sender, _amount); } // DISABLE TRADING | EMERGENCY USE ONLY function updateTradingStatus(bool enabled) external onlyOwner { tradingActive = enabled; } }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; 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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal virtual { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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.20; 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedDevWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedRewardsAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedTreasuryWallet","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addBotterToList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdropTokens","outputs":[],"stateMutability":"nonpayable","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"","type":"address"}],"name":"isBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launchedOnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeBotterFromList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryWallet","type":"address"}],"name":"setTreasuryWallet","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":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSaleFees","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasurySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTreasurySellFee","type":"uint256"},{"internalType":"uint256","name":"_newTreasuryBuyFee","type":"uint256"}],"name":"updateTaxFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateTradingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526001600d60146101000a81548160ff0219169083151502179055505f600d60156101000a81548160ff0219169083151502179055505f600d60166101000a81548160ff0219169083151502179055506019600e556019600f555f601055601960115560196012555f6013553480156200007b575f80fd5b50336040518060400160405280600581526020017f426f6d62610000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f24424f4d424100000000000000000000000000000000000000000000000000008152508160039081620000fa919062000eff565b5080600490816200010c919062000eff565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000182575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000179919062001026565b60405180910390fd5b62000193816200051360201b60201c565b50620001b2336b87b595f2383509fe10000000620005d660201b60201c565b620001da30737a250d5630b4cf539739df2c5dacb4c659f2488d5f196200066060201b60201c565b62000201737a250d5630b4cf539739df2c5dacb4c659f2488d60016200067a60201b60201c565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000290573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620002b6919062001074565b6040518363ffffffff1660e01b8152600401620002d5929190620010a4565b6020604051808303815f875af1158015620002f2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000318919062001074565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506103e86014620003606200070d60201b60201c565b6200036c9190620010fc565b62000378919062001173565b6007819055506103e86014620003936200070d60201b60201c565b6200039f9190620010fc565b620003ab919062001173565b6008819055506103e8601e620003c66200070d60201b60201c565b620003d29190620010fc565b620003de919062001173565b6009819055506127106032620003f96200070d60201b60201c565b620004059190620010fc565b62000411919062001173565b600b8190555033600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004aa3360016200067a60201b60201c565b620004bd3060016200067a60201b60201c565b620004d261dead60016200067a60201b60201c565b620004e53360016200071660201b60201c565b620004f83060016200071660201b60201c565b6200050d61dead60016200071660201b60201c565b620012ad565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000649575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040162000640919062001026565b60405180910390fd5b6200065c5f8383620007ce60201b60201c565b5050565b620006758383836001620009f260201b60201c565b505050565b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055507f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746828260405162000701929190620011c6565b60405180910390a15050565b5f600254905090565b6200072662000bca60201b60201c565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620007c29190620011f1565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000822578060025f8282546200081591906200120c565b92505081905550620008f3565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620008ae578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620008a59392919062001257565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200093c578060025f828254039250508190555062000986565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009e5919062001292565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000a65575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000a5c919062001026565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000ad8575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000acf919062001026565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550801562000bc4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000bbb919062001292565b60405180910390a35b50505050565b62000bda62000c6c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000c0062000c7360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000c6a5762000c2c62000c6c60201b60201c565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040162000c61919062001026565b60405180910390fd5b565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168062000d1757607f821691505b60208210810362000d2d5762000d2c62000cd2565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830262000d917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d54565b62000d9d868362000d54565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f62000de762000de162000ddb8462000db5565b62000dbe565b62000db5565b9050919050565b5f819050919050565b62000e028362000dc7565b62000e1a62000e118262000dee565b84845462000d60565b825550505050565b5f90565b62000e3062000e22565b62000e3d81848462000df7565b505050565b5b8181101562000e645762000e585f8262000e26565b60018101905062000e43565b5050565b601f82111562000eb35762000e7d8162000d33565b62000e888462000d45565b8101602085101562000e98578190505b62000eb062000ea78562000d45565b83018262000e42565b50505b505050565b5f82821c905092915050565b5f62000ed55f198460080262000eb8565b1980831691505092915050565b5f62000eef838362000ec4565b9150826002028217905092915050565b62000f0a8262000c9b565b67ffffffffffffffff81111562000f265762000f2562000ca5565b5b62000f32825462000cff565b62000f3f82828562000e68565b5f60209050601f83116001811462000f75575f841562000f60578287015190505b62000f6c858262000ee2565b86555062000fdb565b601f19841662000f858662000d33565b5f5b8281101562000fae5784890151825560018201915060208501945060208101905062000f87565b8683101562000fce578489015162000fca601f89168262000ec4565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200100e8262000fe3565b9050919050565b620010208162001002565b82525050565b5f6020820190506200103b5f83018462001015565b92915050565b5f80fd5b620010508162001002565b81146200105b575f80fd5b50565b5f815190506200106e8162001045565b92915050565b5f602082840312156200108c576200108b62001041565b5b5f6200109b848285016200105e565b91505092915050565b5f604082019050620010b95f83018562001015565b620010c8602083018462001015565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620011088262000db5565b9150620011158362000db5565b9250828202620011258162000db5565b915082820484148315176200113f576200113e620010cf565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6200117f8262000db5565b91506200118c8362000db5565b9250826200119f576200119e62001146565b5b828204905092915050565b5f8115159050919050565b620011c081620011aa565b82525050565b5f604082019050620011db5f83018562001015565b620011ea6020830184620011b5565b9392505050565b5f602082019050620012065f830184620011b5565b92915050565b5f620012188262000db5565b9150620012258362000db5565b925082820190508082111562001240576200123f620010cf565b5b92915050565b620012518162000db5565b82525050565b5f6060820190506200126c5f83018662001015565b6200127b602083018562001246565b6200128a604083018462001246565b949350505050565b5f602082019050620012a75f83018462001246565b92915050565b608051614385620012e95f395f818161190501528181611ef30152818161203c0152818161227a01528181612462015261254801526143855ff3fe6080604052600436106102b1575f3560e01c8063751039fc11610174578063b45e83f8116100db578063dc3f0d0f11610094578063ed0d21371161006e578063ed0d213714610a4a578063f14210a614610a74578063f2fde38b14610a9c578063f40acc3d14610ac4576102b8565b8063dc3f0d0f146109bc578063dd62ed3e146109e4578063e2f4560514610a20576102b8565b8063b45e83f8146108c2578063b9e93700146108ec578063bbc0c74214610916578063c024666814610940578063c74c0fac14610968578063d826492014610992576102b8565b806395d89b411161012d57806395d89b41146107cc5780639e281a98146107f6578063a28a4d861461081e578063a8602fea14610834578063a9059cbb1461085c578063aa4bde2814610898576102b8565b8063751039fc146106e85780638598f578146106fe578063870000e11461072657806388e765ff1461074e5780638da5cb5b146107785780638ea5220f146107a2576102b8565b80633bbac5791161021857806366d602ae116101d157806366d602ae146105f05780636b461eb31461061a5780636ddd171314610644578063706f69371461066e57806370a0823114610696578063715018a6146106d2576102b8565b80633bbac579146104e45780634626402b14610520578063507035ff1461054a57806355648209146105725780635d3f5e901461059c5780635eebef6b146105c6576102b8565b80631f53ac021161026a5780631f53ac02146103dc57806323b872dd146104045780632be32b61146104405780632c10508c1461046857806330227cde14610492578063313ce567146104ba576102b8565b806301143fea146102bc57806306fdde03146102e6578063095ea7b31461031057806310d5de531461034c57806318160ddd146103885780631cce34ee146103b2576102b8565b366102b857005b5f80fd5b3480156102c7575f80fd5b506102d0610aee565b6040516102dd9190612fc4565b60405180910390f35b3480156102f1575f80fd5b506102fa610af4565b6040516103079190613067565b60405180910390f35b34801561031b575f80fd5b5061033660048036038101906103319190613113565b610b84565b604051610343919061316b565b60405180910390f35b348015610357575f80fd5b50610372600480360381019061036d9190613184565b610ba6565b60405161037f919061316b565b60405180910390f35b348015610393575f80fd5b5061039c610bc3565b6040516103a99190612fc4565b60405180910390f35b3480156103bd575f80fd5b506103c6610bcc565b6040516103d3919061316b565b60405180910390f35b3480156103e7575f80fd5b5061040260048036038101906103fd9190613184565b610bdf565b005b34801561040f575f80fd5b5061042a600480360381019061042591906131af565b610cdb565b604051610437919061316b565b60405180910390f35b34801561044b575f80fd5b50610466600480360381019061046191906131ff565b610d09565b005b348015610473575f80fd5b5061047c610d54565b6040516104899190612fc4565b60405180910390f35b34801561049d575f80fd5b506104b860048036038101906104b3919061322a565b610d5a565b005b3480156104c5575f80fd5b506104ce610d86565b6040516104db9190613283565b60405180910390f35b3480156104ef575f80fd5b5061050a60048036038101906105059190613184565b610d8e565b604051610517919061316b565b60405180910390f35b34801561052b575f80fd5b50610534610dab565b60405161054191906132ab565b60405180910390f35b348015610555575f80fd5b50610570600480360381019061056b9190613184565b610dd0565b005b34801561057d575f80fd5b50610586610f3c565b6040516105939190612fc4565b60405180910390f35b3480156105a7575f80fd5b506105b0610f42565b6040516105bd9190612fc4565b60405180910390f35b3480156105d1575f80fd5b506105da610f48565b6040516105e79190612fc4565b60405180910390f35b3480156105fb575f80fd5b50610604610f4e565b6040516106119190612fc4565b60405180910390f35b348015610625575f80fd5b5061062e610f54565b60405161063b9190612fc4565b60405180910390f35b34801561064f575f80fd5b50610658610f5a565b604051610665919061316b565b60405180910390f35b348015610679575f80fd5b50610694600480360381019061068f919061337a565b610f6d565b005b3480156106a1575f80fd5b506106bc60048036038101906106b79190613184565b611048565b6040516106c99190612fc4565b60405180910390f35b3480156106dd575f80fd5b506106e661108d565b005b3480156106f3575f80fd5b506106fc6110a0565b005b348015610709575f80fd5b50610724600480360381019061071f9190613184565b6110f0565b005b348015610731575f80fd5b5061074c60048036038101906107479190613422565b6111d8565b005b348015610759575f80fd5b506107626111fd565b60405161076f9190612fc4565b60405180910390f35b348015610783575f80fd5b5061078c611203565b60405161079991906132ab565b60405180910390f35b3480156107ad575f80fd5b506107b661122b565b6040516107c391906132ab565b60405180910390f35b3480156107d7575f80fd5b506107e0611250565b6040516107ed9190613067565b60405180910390f35b348015610801575f80fd5b5061081c60048036038101906108179190613488565b6112e0565b005b348015610829575f80fd5b50610832611422565b005b34801561083f575f80fd5b5061085a60048036038101906108559190613184565b6114f3565b005b348015610867575f80fd5b50610882600480360381019061087d9190613113565b6115ef565b60405161088f919061316b565b60405180910390f35b3480156108a3575f80fd5b506108ac611611565b6040516108b99190612fc4565b60405180910390f35b3480156108cd575f80fd5b506108d6611617565b6040516108e39190612fc4565b60405180910390f35b3480156108f7575f80fd5b5061090061161d565b60405161090d9190612fc4565b60405180910390f35b348015610921575f80fd5b5061092a611623565b604051610937919061316b565b60405180910390f35b34801561094b575f80fd5b50610966600480360381019061096191906134c6565b611636565b005b348015610973575f80fd5b5061097c6116e4565b604051610989919061355f565b60405180910390f35b34801561099d575f80fd5b506109a66116fc565b6040516109b39190613598565b60405180910390f35b3480156109c7575f80fd5b506109e260048036038101906109dd91906131ff565b611714565b005b3480156109ef575f80fd5b50610a0a6004803603810190610a0591906135b1565b61175f565b604051610a179190612fc4565b60405180910390f35b348015610a2b575f80fd5b50610a346117e1565b604051610a419190612fc4565b60405180910390f35b348015610a55575f80fd5b50610a5e6117e7565b604051610a6b9190612fc4565b60405180910390f35b348015610a7f575f80fd5b50610a9a6004803603810190610a9591906131ff565b6117ed565b005b348015610aa7575f80fd5b50610ac26004803603810190610abd9190613184565b61187f565b005b348015610acf575f80fd5b50610ad8611903565b604051610ae591906132ab565b60405180910390f35b60105481565b606060038054610b039061361c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f9061361c565b8015610b7a5780601f10610b5157610100808354040283529160200191610b7a565b820191905f5260205f20905b815481529060010190602001808311610b5d57829003601f168201915b5050505050905090565b5f80610b8e611927565b9050610b9b81858561192e565b600191505092915050565b6017602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b600d60149054906101000a900460ff1681565b610be7611940565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c906136bc565b60405180910390fd5b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fa6f6d84b954ce74951fcd0831a092a5934f0bcdd7196cd56bf5a2e34118aa81060405160405180910390a250565b5f80610ce5611927565b9050610cf28582856119c7565b610cfd858585611a59565b60019150509392505050565b610d11611940565b806007819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600754604051610d499190612fc4565b60405180910390a150565b600f5481565b610d62611940565b8160128190555080600f81905550600f54600e819055506012546011819055505050565b5f6012905090565b6018602052805f5260405f205f915054906101000a900460ff1681565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dd8611940565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e519061374a565b60405180910390fd5b60185f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb906137b2565b60405180910390fd5b600160185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60155481565b60065481565b60145481565b60085481565b60115481565b600d60169054906101000a900460ff1681565b610f75611940565b818190508484905014610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490613840565b60405180910390fd5b5f5b84849050811015611041575f670de0b6b3a7640000848484818110610fe757610fe661385e565b5b90506020020135610ff891906138b8565b905061102c338787858181106110115761101061385e565b5b90506020020160208101906110269190613184565b83611a59565b60018261103991906138f9565b915050610fbf565b5050505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611095611940565b61109e5f612660565b565b6110a8611940565b5f600d60146101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b6110f8611940565b60185f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061399c565b60405180910390fd5b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6111e0611940565b80600d60156101000a81548160ff02191690831515021790555050565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461125f9061361c565b80601f016020809104026020016040519081016040528092919081815260200182805461128b9061361c565b80156112d65780601f106112ad576101008083540402835291602001916112d6565b820191905f5260205f20905b8154815290600101906020018083116112b957829003601f168201915b5050505050905090565b6112e8611940565b808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161132291906132ab565b602060405180830381865afa15801561133d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136191906139ce565b10156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613a69565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016113dd929190613a87565b6020604051808303815f875af11580156113f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141d9190613ac2565b505050565b61142a611940565b5f6006541461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590613b5d565b60405180910390fd5b436006819055506001600d60156101000a81548160ff0219169083151502179055506001600d60166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600d60159054906101000a900460ff166040516114e9919061316b565b60405180910390a1565b6114fb611940565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613beb565b60405180910390fd5b80600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f62c65ec1bb8c7d4b3758b4959a649569528cdd5ac7f4f73191f024e4988b10bc60405160405180910390a250565b5f806115f9611927565b9050611606818585611a59565b600191505092915050565b60095481565b60135481565b600e5481565b600d60159054906101000a900460ff1681565b61163e611940565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116d8919061316b565b60405180910390a25050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b61171c611940565b806008819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e6008546040516117549190612fc4565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b60125481565b6117f5611940565b80471015611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613a69565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505015801561187b573d5f803e3d5ffd5b5050565b611887611940565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118f7575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118ee91906132ab565b60405180910390fd5b61190081612660565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f33905090565b61193b8383836001612723565b505050565b611948611927565b73ffffffffffffffffffffffffffffffffffffffff16611966611203565b73ffffffffffffffffffffffffffffffffffffffff16146119c557611989611927565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119bc91906132ab565b60405180910390fd5b565b5f6119d2848461175f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a535781811015611a44578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611a3b93929190613c09565b60405180910390fd5b611a5284848484035f612723565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613cae565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c90613d3c565b60405180910390fd5b5f8111611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e90613dca565b60405180910390fd5b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613e32565b60405180910390fd5b60185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613e32565b60405180910390fd5b600d60149054906101000a900460ff161561222b57611ca8611203565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d165750611ce6611203565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d4e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d88575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561222a57600d60159054906101000a900460ff16611ef15760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611e3c575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290613e9a565b60405180910390fd5b611e83611203565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613f02565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611f93575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561203a57600754811115611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490613f90565b60405180910390fd5b600954611fe983611048565b82611ff491906138f9565b1115612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c9061401e565b60405180910390fd5b612229565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156120dc575060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561212b57600854811115612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d906140ac565b60405180910390fd5b612228565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156121c9575060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612227576009546121da83611048565b826121e591906138f9565b1115612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d9061401e565b60405180910390fd5b5b5b5b5b5b5f61223530611048565b90505f600b5482101590508080156122595750600d60169054906101000a900460ff165b80156122715750600a5f9054906101000a900460ff16155b80156122c957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561231c575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561236f575060165f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123b0576001600a5f6101000a81548160ff0219169083151502179055506123966128f2565b5f600a5f6101000a81548160ff0219169083151502179055505b5f6001905060165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612450575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612459575f90505b5f811561264c577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156124bc57505f601154115b15612546576064601154866124d191906138b8565b6124db91906140f7565b9050601154601254826124ee91906138b8565b6124f891906140f7565b60145f82825461250891906138f9565b925050819055506011546013548261252091906138b8565b61252a91906140f7565b60155f82825461253a91906138f9565b92505081905550612629565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480156125a257505f600e54115b15612628576064600e54866125b791906138b8565b6125c191906140f7565b9050600e54600f54826125d491906138b8565b6125de91906140f7565b60145f8282546125ee91906138f9565b92505081905550600e546010548261260691906138b8565b61261091906140f7565b60155f82825461262091906138f9565b925050819055505b5b5f81111561263d5761263c873083612a94565b5b80856126499190614127565b94505b612657878787612a94565b50505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612793575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161278a91906132ab565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612803575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016127fa91906132ab565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156128ec578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516128e39190612fc4565b60405180910390a35b50505050565b5f6128fc30611048565b90505f60155460145461290f91906138f9565b90505f8083148061291f57505f82145b1561292c57505050612a92565b600b5483111561293c57600b5492505b5f83905061294981612b84565b5f4790505f846014548361295d91906138b8565b61296791906140f7565b90505f6014819055505f601581905550600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516129bc90614187565b5f6040518083038185875af1925050503d805f81146129f6576040519150601f19603f3d011682016040523d82523d5f602084013e6129fb565b606091505b505080945050600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a4690614187565b5f6040518083038185875af1925050503d805f8114612a80576040519150601f19603f3d011682016040523d82523d5f602084013e612a85565b606091505b5050809450505050505050505b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b04575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401612afb91906132ab565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b74575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401612b6b91906132ab565b60405180910390fd5b612b7f838383612d93565b505050565b5f600267ffffffffffffffff811115612ba057612b9f61419b565b5b604051908082528060200260200182016040528015612bce5781602001602082028036833780820191505090505b50905030815f81518110612be557612be461385e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ca091906141dc565b81600181518110612cb457612cb361385e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d0d30737a250d5630b4cf539739df2c5dacb4c659f2488d8461192e565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612d629594939291906142f7565b5f604051808303815f87803b158015612d79575f80fd5b505af1158015612d8b573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612de3578060025f828254612dd791906138f9565b92505081905550612eb1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612e6c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612e6393929190613c09565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ef8578060025f8282540392505081905550612f42565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f9f9190612fc4565b60405180910390a3505050565b5f819050919050565b612fbe81612fac565b82525050565b5f602082019050612fd75f830184612fb5565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613014578082015181840152602081019050612ff9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61303982612fdd565b6130438185612fe7565b9350613053818560208601612ff7565b61305c8161301f565b840191505092915050565b5f6020820190508181035f83015261307f818461302f565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130b88261308f565b9050919050565b6130c8816130ae565b81146130d2575f80fd5b50565b5f813590506130e3816130bf565b92915050565b6130f281612fac565b81146130fc575f80fd5b50565b5f8135905061310d816130e9565b92915050565b5f806040838503121561312957613128613087565b5b5f613136858286016130d5565b9250506020613147858286016130ff565b9150509250929050565b5f8115159050919050565b61316581613151565b82525050565b5f60208201905061317e5f83018461315c565b92915050565b5f6020828403121561319957613198613087565b5b5f6131a6848285016130d5565b91505092915050565b5f805f606084860312156131c6576131c5613087565b5b5f6131d3868287016130d5565b93505060206131e4868287016130d5565b92505060406131f5868287016130ff565b9150509250925092565b5f6020828403121561321457613213613087565b5b5f613221848285016130ff565b91505092915050565b5f80604083850312156132405761323f613087565b5b5f61324d858286016130ff565b925050602061325e858286016130ff565b9150509250929050565b5f60ff82169050919050565b61327d81613268565b82525050565b5f6020820190506132965f830184613274565b92915050565b6132a5816130ae565b82525050565b5f6020820190506132be5f83018461329c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126132e5576132e46132c4565b5b8235905067ffffffffffffffff811115613302576133016132c8565b5b60208301915083602082028301111561331e5761331d6132cc565b5b9250929050565b5f8083601f84011261333a576133396132c4565b5b8235905067ffffffffffffffff811115613357576133566132c8565b5b602083019150836020820283011115613373576133726132cc565b5b9250929050565b5f805f806040858703121561339257613391613087565b5b5f85013567ffffffffffffffff8111156133af576133ae61308b565b5b6133bb878288016132d0565b9450945050602085013567ffffffffffffffff8111156133de576133dd61308b565b5b6133ea87828801613325565b925092505092959194509250565b61340181613151565b811461340b575f80fd5b50565b5f8135905061341c816133f8565b92915050565b5f6020828403121561343757613436613087565b5b5f6134448482850161340e565b91505092915050565b5f613457826130ae565b9050919050565b6134678161344d565b8114613471575f80fd5b50565b5f813590506134828161345e565b92915050565b5f806040838503121561349e5761349d613087565b5b5f6134ab85828601613474565b92505060206134bc858286016130ff565b9150509250929050565b5f80604083850312156134dc576134db613087565b5b5f6134e9858286016130d5565b92505060206134fa8582860161340e565b9150509250929050565b5f819050919050565b5f61352761352261351d8461308f565b613504565b61308f565b9050919050565b5f6135388261350d565b9050919050565b5f6135498261352e565b9050919050565b6135598161353f565b82525050565b5f6020820190506135725f830184613550565b92915050565b5f6135828261352e565b9050919050565b61359281613578565b82525050565b5f6020820190506135ab5f830184613589565b92915050565b5f80604083850312156135c7576135c6613087565b5b5f6135d4858286016130d5565b92505060206135e5858286016130d5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061363357607f821691505b602082108103613646576136456135ef565b5b50919050565b7f4552524f523a205f64657657616c6c657420616464726573732063616e6e6f745f8201527f2062652030202100000000000000000000000000000000000000000000000000602082015250565b5f6136a6602783612fe7565b91506136b18261364c565b604082019050919050565b5f6020820190508181035f8301526136d38161369a565b9050919050565b7f4552524f523a2043616e6e6f7420626c61636b6c69737420556e6973776170205f8201527f526f757465722021000000000000000000000000000000000000000000000000602082015250565b5f613734602883612fe7565b915061373f826136da565b604082019050919050565b5f6020820190508181035f83015261376181613728565b9050919050565b7f4552524f523a20426f7474657220616c726561647920657869737420210000005f82015250565b5f61379c601d83612fe7565b91506137a782613768565b602082019050919050565b5f6020820190508181035f8301526137c981613790565b9050919050565b7f4552524f523a2041727261792073697a6573206d75737420626520657175616c5f8201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b5f61382a602283612fe7565b9150613835826137d0565b604082019050919050565b5f6020820190508181035f8301526138578161381e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138c282612fac565b91506138cd83612fac565b92508282026138db81612fac565b915082820484148315176138f2576138f161388b565b5b5092915050565b5f61390382612fac565b915061390e83612fac565b92508282019050808211156139265761392561388b565b5b92915050565b7f4552524f523a2041646472657373206e6f7420666f756e6420696e20426f74735f8201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b5f613986602283612fe7565b91506139918261392c565b604082019050919050565b5f6020820190508181035f8301526139b38161397a565b9050919050565b5f815190506139c8816130e9565b92915050565b5f602082840312156139e3576139e2613087565b5b5f6139f0848285016139ba565b91505092915050565b7f4552524f523a20496e73756666696369656e742062616c616e636520746f20635f8201527f6f6d706c6574652074786e202100000000000000000000000000000000000000602082015250565b5f613a53602d83612fe7565b9150613a5e826139f9565b604082019050919050565b5f6020820190508181035f830152613a8081613a47565b9050919050565b5f604082019050613a9a5f83018561329c565b613aa76020830184612fb5565b9392505050565b5f81519050613abc816133f8565b92915050565b5f60208284031215613ad757613ad6613087565b5b5f613ae484828501613aae565b91505092915050565b7f4552524f523a20546f6b656e20737461746520697320616c7265616479206c695f8201527f7665202100000000000000000000000000000000000000000000000000000000602082015250565b5f613b47602483612fe7565b9150613b5282613aed565b604082019050919050565b5f6020820190508181035f830152613b7481613b3b565b9050919050565b7f4552524f523a205f747265617375727957616c6c6574206164647265737320635f8201527f616e6e6f74206265203020210000000000000000000000000000000000000000602082015250565b5f613bd5602c83612fe7565b9150613be082613b7b565b604082019050919050565b5f6020820190508181035f830152613c0281613bc9565b9050919050565b5f606082019050613c1c5f83018661329c565b613c296020830185612fb5565b613c366040830184612fb5565b949350505050565b7f4552524f522045524332303a207472616e736665722066726f6d20746865207a5f8201527f65726f2061646472657373202100000000000000000000000000000000000000602082015250565b5f613c98602d83612fe7565b9150613ca382613c3e565b604082019050919050565b5f6020820190508181035f830152613cc581613c8c565b9050919050565b7f4552524f522045524332303a207472616e7366657220746f20746865207a65725f8201527f6f20616464726573732021000000000000000000000000000000000000000000602082015250565b5f613d26602b83612fe7565b9150613d3182613ccc565b604082019050919050565b5f6020820190508181035f830152613d5381613d1a565b9050919050565b7f4552524f523a20416d6f756e74206d75737420626520677265617465722074685f8201527f616e203020210000000000000000000000000000000000000000000000000000602082015250565b5f613db4602683612fe7565b9150613dbf82613d5a565b604082019050919050565b5f6020820190508181035f830152613de181613da8565b9050919050565b7f4552524f523a20426f74206465746563746564202100000000000000000000005f82015250565b5f613e1c601583612fe7565b9150613e2782613de8565b602082019050919050565b5f6020820190508181035f830152613e4981613e10565b9050919050565b7f4552524f523a2054726164696e67206973206e6f7420616374697665202100005f82015250565b5f613e84601e83612fe7565b9150613e8f82613e50565b602082019050919050565b5f6020820190508181035f830152613eb181613e78565b9050919050565b7f4552524f523a2054726164696e672069732061637469766520210000000000005f82015250565b5f613eec601a83612fe7565b9150613ef782613eb8565b602082019050919050565b5f6020820190508181035f830152613f1981613ee0565b9050919050565b7f4552524f523a2042757920616d6f756e74206c696d69742065786365656465645f8201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b5f613f7a602283612fe7565b9150613f8582613f20565b604082019050919050565b5f6020820190508181035f830152613fa781613f6e565b9050919050565b7f4552524f523a204d61782077616c6c657420616d6f756e7420657863656564655f8201527f6420210000000000000000000000000000000000000000000000000000000000602082015250565b5f614008602383612fe7565b915061401382613fae565b604082019050919050565b5f6020820190508181035f83015261403581613ffc565b9050919050565b7f4552524f523a2053616c6520616d6f756e74206c696d697420657863656564655f8201527f6420210000000000000000000000000000000000000000000000000000000000602082015250565b5f614096602383612fe7565b91506140a18261403c565b604082019050919050565b5f6020820190508181035f8301526140c38161408a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61410182612fac565b915061410c83612fac565b92508261411c5761411b6140ca565b5b828204905092915050565b5f61413182612fac565b915061413c83612fac565b92508282039050818111156141545761415361388b565b5b92915050565b5f81905092915050565b50565b5f6141725f8361415a565b915061417d82614164565b5f82019050919050565b5f61419182614167565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506141d6816130bf565b92915050565b5f602082840312156141f1576141f0613087565b5b5f6141fe848285016141c8565b91505092915050565b5f819050919050565b5f61422a61422561422084614207565b613504565b612fac565b9050919050565b61423a81614210565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614272816130ae565b82525050565b5f6142838383614269565b60208301905092915050565b5f602082019050919050565b5f6142a582614240565b6142af818561424a565b93506142ba8361425a565b805f5b838110156142ea5781516142d18882614278565b97506142dc8361428f565b9250506001810190506142bd565b5085935050505092915050565b5f60a08201905061430a5f830188612fb5565b6143176020830187614231565b8181036040830152614329818661429b565b9050614338606083018561329c565b6143456080830184612fb5565b969550505050505056fea2646970667358221220e32ce62e4a289e35f631effdc416cf50b5237cd106fc090bd493b6ae1cf28c6464736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102b1575f3560e01c8063751039fc11610174578063b45e83f8116100db578063dc3f0d0f11610094578063ed0d21371161006e578063ed0d213714610a4a578063f14210a614610a74578063f2fde38b14610a9c578063f40acc3d14610ac4576102b8565b8063dc3f0d0f146109bc578063dd62ed3e146109e4578063e2f4560514610a20576102b8565b8063b45e83f8146108c2578063b9e93700146108ec578063bbc0c74214610916578063c024666814610940578063c74c0fac14610968578063d826492014610992576102b8565b806395d89b411161012d57806395d89b41146107cc5780639e281a98146107f6578063a28a4d861461081e578063a8602fea14610834578063a9059cbb1461085c578063aa4bde2814610898576102b8565b8063751039fc146106e85780638598f578146106fe578063870000e11461072657806388e765ff1461074e5780638da5cb5b146107785780638ea5220f146107a2576102b8565b80633bbac5791161021857806366d602ae116101d157806366d602ae146105f05780636b461eb31461061a5780636ddd171314610644578063706f69371461066e57806370a0823114610696578063715018a6146106d2576102b8565b80633bbac579146104e45780634626402b14610520578063507035ff1461054a57806355648209146105725780635d3f5e901461059c5780635eebef6b146105c6576102b8565b80631f53ac021161026a5780631f53ac02146103dc57806323b872dd146104045780632be32b61146104405780632c10508c1461046857806330227cde14610492578063313ce567146104ba576102b8565b806301143fea146102bc57806306fdde03146102e6578063095ea7b31461031057806310d5de531461034c57806318160ddd146103885780631cce34ee146103b2576102b8565b366102b857005b5f80fd5b3480156102c7575f80fd5b506102d0610aee565b6040516102dd9190612fc4565b60405180910390f35b3480156102f1575f80fd5b506102fa610af4565b6040516103079190613067565b60405180910390f35b34801561031b575f80fd5b5061033660048036038101906103319190613113565b610b84565b604051610343919061316b565b60405180910390f35b348015610357575f80fd5b50610372600480360381019061036d9190613184565b610ba6565b60405161037f919061316b565b60405180910390f35b348015610393575f80fd5b5061039c610bc3565b6040516103a99190612fc4565b60405180910390f35b3480156103bd575f80fd5b506103c6610bcc565b6040516103d3919061316b565b60405180910390f35b3480156103e7575f80fd5b5061040260048036038101906103fd9190613184565b610bdf565b005b34801561040f575f80fd5b5061042a600480360381019061042591906131af565b610cdb565b604051610437919061316b565b60405180910390f35b34801561044b575f80fd5b50610466600480360381019061046191906131ff565b610d09565b005b348015610473575f80fd5b5061047c610d54565b6040516104899190612fc4565b60405180910390f35b34801561049d575f80fd5b506104b860048036038101906104b3919061322a565b610d5a565b005b3480156104c5575f80fd5b506104ce610d86565b6040516104db9190613283565b60405180910390f35b3480156104ef575f80fd5b5061050a60048036038101906105059190613184565b610d8e565b604051610517919061316b565b60405180910390f35b34801561052b575f80fd5b50610534610dab565b60405161054191906132ab565b60405180910390f35b348015610555575f80fd5b50610570600480360381019061056b9190613184565b610dd0565b005b34801561057d575f80fd5b50610586610f3c565b6040516105939190612fc4565b60405180910390f35b3480156105a7575f80fd5b506105b0610f42565b6040516105bd9190612fc4565b60405180910390f35b3480156105d1575f80fd5b506105da610f48565b6040516105e79190612fc4565b60405180910390f35b3480156105fb575f80fd5b50610604610f4e565b6040516106119190612fc4565b60405180910390f35b348015610625575f80fd5b5061062e610f54565b60405161063b9190612fc4565b60405180910390f35b34801561064f575f80fd5b50610658610f5a565b604051610665919061316b565b60405180910390f35b348015610679575f80fd5b50610694600480360381019061068f919061337a565b610f6d565b005b3480156106a1575f80fd5b506106bc60048036038101906106b79190613184565b611048565b6040516106c99190612fc4565b60405180910390f35b3480156106dd575f80fd5b506106e661108d565b005b3480156106f3575f80fd5b506106fc6110a0565b005b348015610709575f80fd5b50610724600480360381019061071f9190613184565b6110f0565b005b348015610731575f80fd5b5061074c60048036038101906107479190613422565b6111d8565b005b348015610759575f80fd5b506107626111fd565b60405161076f9190612fc4565b60405180910390f35b348015610783575f80fd5b5061078c611203565b60405161079991906132ab565b60405180910390f35b3480156107ad575f80fd5b506107b661122b565b6040516107c391906132ab565b60405180910390f35b3480156107d7575f80fd5b506107e0611250565b6040516107ed9190613067565b60405180910390f35b348015610801575f80fd5b5061081c60048036038101906108179190613488565b6112e0565b005b348015610829575f80fd5b50610832611422565b005b34801561083f575f80fd5b5061085a60048036038101906108559190613184565b6114f3565b005b348015610867575f80fd5b50610882600480360381019061087d9190613113565b6115ef565b60405161088f919061316b565b60405180910390f35b3480156108a3575f80fd5b506108ac611611565b6040516108b99190612fc4565b60405180910390f35b3480156108cd575f80fd5b506108d6611617565b6040516108e39190612fc4565b60405180910390f35b3480156108f7575f80fd5b5061090061161d565b60405161090d9190612fc4565b60405180910390f35b348015610921575f80fd5b5061092a611623565b604051610937919061316b565b60405180910390f35b34801561094b575f80fd5b50610966600480360381019061096191906134c6565b611636565b005b348015610973575f80fd5b5061097c6116e4565b604051610989919061355f565b60405180910390f35b34801561099d575f80fd5b506109a66116fc565b6040516109b39190613598565b60405180910390f35b3480156109c7575f80fd5b506109e260048036038101906109dd91906131ff565b611714565b005b3480156109ef575f80fd5b50610a0a6004803603810190610a0591906135b1565b61175f565b604051610a179190612fc4565b60405180910390f35b348015610a2b575f80fd5b50610a346117e1565b604051610a419190612fc4565b60405180910390f35b348015610a55575f80fd5b50610a5e6117e7565b604051610a6b9190612fc4565b60405180910390f35b348015610a7f575f80fd5b50610a9a6004803603810190610a9591906131ff565b6117ed565b005b348015610aa7575f80fd5b50610ac26004803603810190610abd9190613184565b61187f565b005b348015610acf575f80fd5b50610ad8611903565b604051610ae591906132ab565b60405180910390f35b60105481565b606060038054610b039061361c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f9061361c565b8015610b7a5780601f10610b5157610100808354040283529160200191610b7a565b820191905f5260205f20905b815481529060010190602001808311610b5d57829003601f168201915b5050505050905090565b5f80610b8e611927565b9050610b9b81858561192e565b600191505092915050565b6017602052805f5260405f205f915054906101000a900460ff1681565b5f600254905090565b600d60149054906101000a900460ff1681565b610be7611940565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4c906136bc565b60405180910390fd5b80600d5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167fa6f6d84b954ce74951fcd0831a092a5934f0bcdd7196cd56bf5a2e34118aa81060405160405180910390a250565b5f80610ce5611927565b9050610cf28582856119c7565b610cfd858585611a59565b60019150509392505050565b610d11611940565b806007819055507ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009600754604051610d499190612fc4565b60405180910390a150565b600f5481565b610d62611940565b8160128190555080600f81905550600f54600e819055506012546011819055505050565b5f6012905090565b6018602052805f5260405f205f915054906101000a900460ff1681565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610dd8611940565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e519061374a565b60405180910390fd5b60185f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edb906137b2565b60405180910390fd5b600160185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b60155481565b60065481565b60145481565b60085481565b60115481565b600d60169054906101000a900460ff1681565b610f75611940565b818190508484905014610fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb490613840565b60405180910390fd5b5f5b84849050811015611041575f670de0b6b3a7640000848484818110610fe757610fe661385e565b5b90506020020135610ff891906138b8565b905061102c338787858181106110115761101061385e565b5b90506020020160208101906110269190613184565b83611a59565b60018261103991906138f9565b915050610fbf565b5050505050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611095611940565b61109e5f612660565b565b6110a8611940565b5f600d60146101000a81548160ff0219169083151502179055507fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c60405160405180910390a1565b6110f8611940565b60185f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16611181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111789061399c565b60405180910390fd5b5f60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff02191690831515021790555050565b6111e0611940565b80600d60156101000a81548160ff02191690831515021790555050565b60075481565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461125f9061361c565b80601f016020809104026020016040519081016040528092919081815260200182805461128b9061361c565b80156112d65780601f106112ad576101008083540402835291602001916112d6565b820191905f5260205f20905b8154815290600101906020018083116112b957829003601f168201915b5050505050905090565b6112e8611940565b808273ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161132291906132ab565b602060405180830381865afa15801561133d573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136191906139ce565b10156113a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139990613a69565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016113dd929190613a87565b6020604051808303815f875af11580156113f9573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061141d9190613ac2565b505050565b61142a611940565b5f6006541461146e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146590613b5d565b60405180910390fd5b436006819055506001600d60156101000a81548160ff0219169083151502179055506001600d60166101000a81548160ff0219169083151502179055507fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe52089600d60159054906101000a900460ff166040516114e9919061316b565b60405180910390a1565b6114fb611940565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611569576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156090613beb565b60405180910390fd5b80600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f62c65ec1bb8c7d4b3758b4959a649569528cdd5ac7f4f73191f024e4988b10bc60405160405180910390a250565b5f806115f9611927565b9050611606818585611a59565b600191505092915050565b60095481565b60135481565b600e5481565b600d60159054906101000a900460ff1681565b61163e611940565b8060165f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116d8919061316b565b60405180910390a25050565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b61171c611940565b806008819055507f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e6008546040516117549190612fc4565b60405180910390a150565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b600b5481565b60125481565b6117f5611940565b80471015611838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182f90613a69565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc8290811502906040515f60405180830381858888f1935050505015801561187b573d5f803e3d5ffd5b5050565b611887611940565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118f7575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016118ee91906132ab565b60405180910390fd5b61190081612660565b50565b7f000000000000000000000000888570499e03469bb57476025f335c24640efaa981565b5f33905090565b61193b8383836001612723565b505050565b611948611927565b73ffffffffffffffffffffffffffffffffffffffff16611966611203565b73ffffffffffffffffffffffffffffffffffffffff16146119c557611989611927565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016119bc91906132ab565b60405180910390fd5b565b5f6119d2848461175f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a535781811015611a44578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611a3b93929190613c09565b60405180910390fd5b611a5284848484035f612723565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611abe90613cae565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2c90613d3c565b60405180910390fd5b5f8111611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e90613dca565b60405180910390fd5b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613e32565b60405180910390fd5b60185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613e32565b60405180910390fd5b600d60149054906101000a900460ff161561222b57611ca8611203565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611d165750611ce6611203565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d4e57505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611d88575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561222a57600d60159054906101000a900460ff16611ef15760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611e3c575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290613e9a565b60405180910390fd5b611e83611203565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790613f02565b60405180910390fd5b5b7f000000000000000000000000888570499e03469bb57476025f335c24640efaa973ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015611f93575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561203a57600754811115611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490613f90565b60405180910390fd5b600954611fe983611048565b82611ff491906138f9565b1115612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c9061401e565b60405180910390fd5b612229565b7f000000000000000000000000888570499e03469bb57476025f335c24640efaa973ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156120dc575060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561212b57600854811115612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d906140ac565b60405180910390fd5b612228565b60175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156121c9575060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15612227576009546121da83611048565b826121e591906138f9565b1115612226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221d9061401e565b60405180910390fd5b5b5b5b5b5b5f61223530611048565b90505f600b5482101590508080156122595750600d60169054906101000a900460ff165b80156122715750600a5f9054906101000a900460ff16155b80156122c957507f000000000000000000000000888570499e03469bb57476025f335c24640efaa973ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b801561231c575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b801561236f575060165f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156123b0576001600a5f6101000a81548160ff0219169083151502179055506123966128f2565b5f600a5f6101000a81548160ff0219169083151502179055505b5f6001905060165f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612450575060165f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15612459575f90505b5f811561264c577f000000000000000000000000888570499e03469bb57476025f335c24640efaa973ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156124bc57505f601154115b15612546576064601154866124d191906138b8565b6124db91906140f7565b9050601154601254826124ee91906138b8565b6124f891906140f7565b60145f82825461250891906138f9565b925050819055506011546013548261252091906138b8565b61252a91906140f7565b60155f82825461253a91906138f9565b92505081905550612629565b7f000000000000000000000000888570499e03469bb57476025f335c24640efaa973ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff161480156125a257505f600e54115b15612628576064600e54866125b791906138b8565b6125c191906140f7565b9050600e54600f54826125d491906138b8565b6125de91906140f7565b60145f8282546125ee91906138f9565b92505081905550600e546010548261260691906138b8565b61261091906140f7565b60155f82825461262091906138f9565b925050819055505b5b5f81111561263d5761263c873083612a94565b5b80856126499190614127565b94505b612657878787612a94565b50505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612793575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161278a91906132ab565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612803575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016127fa91906132ab565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156128ec578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516128e39190612fc4565b60405180910390a35b50505050565b5f6128fc30611048565b90505f60155460145461290f91906138f9565b90505f8083148061291f57505f82145b1561292c57505050612a92565b600b5483111561293c57600b5492505b5f83905061294981612b84565b5f4790505f846014548361295d91906138b8565b61296791906140f7565b90505f6014819055505f601581905550600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16816040516129bc90614187565b5f6040518083038185875af1925050503d805f81146129f6576040519150601f19603f3d011682016040523d82523d5f602084013e6129fb565b606091505b505080945050600d5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612a4690614187565b5f6040518083038185875af1925050503d805f8114612a80576040519150601f19603f3d011682016040523d82523d5f602084013e612a85565b606091505b5050809450505050505050505b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b04575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401612afb91906132ab565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612b74575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401612b6b91906132ab565b60405180910390fd5b612b7f838383612d93565b505050565b5f600267ffffffffffffffff811115612ba057612b9f61419b565b5b604051908082528060200260200182016040528015612bce5781602001602082028036833780820191505090505b50905030815f81518110612be557612be461385e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612c7c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612ca091906141dc565b81600181518110612cb457612cb361385e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612d0d30737a250d5630b4cf539739df2c5dacb4c659f2488d8461192e565b737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612d629594939291906142f7565b5f604051808303815f87803b158015612d79575f80fd5b505af1158015612d8b573d5f803e3d5ffd5b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612de3578060025f828254612dd791906138f9565b92505081905550612eb1565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612e6c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401612e6393929190613c09565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612ef8578060025f8282540392505081905550612f42565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612f9f9190612fc4565b60405180910390a3505050565b5f819050919050565b612fbe81612fac565b82525050565b5f602082019050612fd75f830184612fb5565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015613014578082015181840152602081019050612ff9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61303982612fdd565b6130438185612fe7565b9350613053818560208601612ff7565b61305c8161301f565b840191505092915050565b5f6020820190508181035f83015261307f818461302f565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6130b88261308f565b9050919050565b6130c8816130ae565b81146130d2575f80fd5b50565b5f813590506130e3816130bf565b92915050565b6130f281612fac565b81146130fc575f80fd5b50565b5f8135905061310d816130e9565b92915050565b5f806040838503121561312957613128613087565b5b5f613136858286016130d5565b9250506020613147858286016130ff565b9150509250929050565b5f8115159050919050565b61316581613151565b82525050565b5f60208201905061317e5f83018461315c565b92915050565b5f6020828403121561319957613198613087565b5b5f6131a6848285016130d5565b91505092915050565b5f805f606084860312156131c6576131c5613087565b5b5f6131d3868287016130d5565b93505060206131e4868287016130d5565b92505060406131f5868287016130ff565b9150509250925092565b5f6020828403121561321457613213613087565b5b5f613221848285016130ff565b91505092915050565b5f80604083850312156132405761323f613087565b5b5f61324d858286016130ff565b925050602061325e858286016130ff565b9150509250929050565b5f60ff82169050919050565b61327d81613268565b82525050565b5f6020820190506132965f830184613274565b92915050565b6132a5816130ae565b82525050565b5f6020820190506132be5f83018461329c565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126132e5576132e46132c4565b5b8235905067ffffffffffffffff811115613302576133016132c8565b5b60208301915083602082028301111561331e5761331d6132cc565b5b9250929050565b5f8083601f84011261333a576133396132c4565b5b8235905067ffffffffffffffff811115613357576133566132c8565b5b602083019150836020820283011115613373576133726132cc565b5b9250929050565b5f805f806040858703121561339257613391613087565b5b5f85013567ffffffffffffffff8111156133af576133ae61308b565b5b6133bb878288016132d0565b9450945050602085013567ffffffffffffffff8111156133de576133dd61308b565b5b6133ea87828801613325565b925092505092959194509250565b61340181613151565b811461340b575f80fd5b50565b5f8135905061341c816133f8565b92915050565b5f6020828403121561343757613436613087565b5b5f6134448482850161340e565b91505092915050565b5f613457826130ae565b9050919050565b6134678161344d565b8114613471575f80fd5b50565b5f813590506134828161345e565b92915050565b5f806040838503121561349e5761349d613087565b5b5f6134ab85828601613474565b92505060206134bc858286016130ff565b9150509250929050565b5f80604083850312156134dc576134db613087565b5b5f6134e9858286016130d5565b92505060206134fa8582860161340e565b9150509250929050565b5f819050919050565b5f61352761352261351d8461308f565b613504565b61308f565b9050919050565b5f6135388261350d565b9050919050565b5f6135498261352e565b9050919050565b6135598161353f565b82525050565b5f6020820190506135725f830184613550565b92915050565b5f6135828261352e565b9050919050565b61359281613578565b82525050565b5f6020820190506135ab5f830184613589565b92915050565b5f80604083850312156135c7576135c6613087565b5b5f6135d4858286016130d5565b92505060206135e5858286016130d5565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061363357607f821691505b602082108103613646576136456135ef565b5b50919050565b7f4552524f523a205f64657657616c6c657420616464726573732063616e6e6f745f8201527f2062652030202100000000000000000000000000000000000000000000000000602082015250565b5f6136a6602783612fe7565b91506136b18261364c565b604082019050919050565b5f6020820190508181035f8301526136d38161369a565b9050919050565b7f4552524f523a2043616e6e6f7420626c61636b6c69737420556e6973776170205f8201527f526f757465722021000000000000000000000000000000000000000000000000602082015250565b5f613734602883612fe7565b915061373f826136da565b604082019050919050565b5f6020820190508181035f83015261376181613728565b9050919050565b7f4552524f523a20426f7474657220616c726561647920657869737420210000005f82015250565b5f61379c601d83612fe7565b91506137a782613768565b602082019050919050565b5f6020820190508181035f8301526137c981613790565b9050919050565b7f4552524f523a2041727261792073697a6573206d75737420626520657175616c5f8201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b5f61382a602283612fe7565b9150613835826137d0565b604082019050919050565b5f6020820190508181035f8301526138578161381e565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6138c282612fac565b91506138cd83612fac565b92508282026138db81612fac565b915082820484148315176138f2576138f161388b565b5b5092915050565b5f61390382612fac565b915061390e83612fac565b92508282019050808211156139265761392561388b565b5b92915050565b7f4552524f523a2041646472657373206e6f7420666f756e6420696e20426f74735f8201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b5f613986602283612fe7565b91506139918261392c565b604082019050919050565b5f6020820190508181035f8301526139b38161397a565b9050919050565b5f815190506139c8816130e9565b92915050565b5f602082840312156139e3576139e2613087565b5b5f6139f0848285016139ba565b91505092915050565b7f4552524f523a20496e73756666696369656e742062616c616e636520746f20635f8201527f6f6d706c6574652074786e202100000000000000000000000000000000000000602082015250565b5f613a53602d83612fe7565b9150613a5e826139f9565b604082019050919050565b5f6020820190508181035f830152613a8081613a47565b9050919050565b5f604082019050613a9a5f83018561329c565b613aa76020830184612fb5565b9392505050565b5f81519050613abc816133f8565b92915050565b5f60208284031215613ad757613ad6613087565b5b5f613ae484828501613aae565b91505092915050565b7f4552524f523a20546f6b656e20737461746520697320616c7265616479206c695f8201527f7665202100000000000000000000000000000000000000000000000000000000602082015250565b5f613b47602483612fe7565b9150613b5282613aed565b604082019050919050565b5f6020820190508181035f830152613b7481613b3b565b9050919050565b7f4552524f523a205f747265617375727957616c6c6574206164647265737320635f8201527f616e6e6f74206265203020210000000000000000000000000000000000000000602082015250565b5f613bd5602c83612fe7565b9150613be082613b7b565b604082019050919050565b5f6020820190508181035f830152613c0281613bc9565b9050919050565b5f606082019050613c1c5f83018661329c565b613c296020830185612fb5565b613c366040830184612fb5565b949350505050565b7f4552524f522045524332303a207472616e736665722066726f6d20746865207a5f8201527f65726f2061646472657373202100000000000000000000000000000000000000602082015250565b5f613c98602d83612fe7565b9150613ca382613c3e565b604082019050919050565b5f6020820190508181035f830152613cc581613c8c565b9050919050565b7f4552524f522045524332303a207472616e7366657220746f20746865207a65725f8201527f6f20616464726573732021000000000000000000000000000000000000000000602082015250565b5f613d26602b83612fe7565b9150613d3182613ccc565b604082019050919050565b5f6020820190508181035f830152613d5381613d1a565b9050919050565b7f4552524f523a20416d6f756e74206d75737420626520677265617465722074685f8201527f616e203020210000000000000000000000000000000000000000000000000000602082015250565b5f613db4602683612fe7565b9150613dbf82613d5a565b604082019050919050565b5f6020820190508181035f830152613de181613da8565b9050919050565b7f4552524f523a20426f74206465746563746564202100000000000000000000005f82015250565b5f613e1c601583612fe7565b9150613e2782613de8565b602082019050919050565b5f6020820190508181035f830152613e4981613e10565b9050919050565b7f4552524f523a2054726164696e67206973206e6f7420616374697665202100005f82015250565b5f613e84601e83612fe7565b9150613e8f82613e50565b602082019050919050565b5f6020820190508181035f830152613eb181613e78565b9050919050565b7f4552524f523a2054726164696e672069732061637469766520210000000000005f82015250565b5f613eec601a83612fe7565b9150613ef782613eb8565b602082019050919050565b5f6020820190508181035f830152613f1981613ee0565b9050919050565b7f4552524f523a2042757920616d6f756e74206c696d69742065786365656465645f8201527f2021000000000000000000000000000000000000000000000000000000000000602082015250565b5f613f7a602283612fe7565b9150613f8582613f20565b604082019050919050565b5f6020820190508181035f830152613fa781613f6e565b9050919050565b7f4552524f523a204d61782077616c6c657420616d6f756e7420657863656564655f8201527f6420210000000000000000000000000000000000000000000000000000000000602082015250565b5f614008602383612fe7565b915061401382613fae565b604082019050919050565b5f6020820190508181035f83015261403581613ffc565b9050919050565b7f4552524f523a2053616c6520616d6f756e74206c696d697420657863656564655f8201527f6420210000000000000000000000000000000000000000000000000000000000602082015250565b5f614096602383612fe7565b91506140a18261403c565b604082019050919050565b5f6020820190508181035f8301526140c38161408a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61410182612fac565b915061410c83612fac565b92508261411c5761411b6140ca565b5b828204905092915050565b5f61413182612fac565b915061413c83612fac565b92508282039050818111156141545761415361388b565b5b92915050565b5f81905092915050565b50565b5f6141725f8361415a565b915061417d82614164565b5f82019050919050565b5f61419182614167565b9150819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f815190506141d6816130bf565b92915050565b5f602082840312156141f1576141f0613087565b5b5f6141fe848285016141c8565b91505092915050565b5f819050919050565b5f61422a61422561422084614207565b613504565b612fac565b9050919050565b61423a81614210565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b614272816130ae565b82525050565b5f6142838383614269565b60208301905092915050565b5f602082019050919050565b5f6142a582614240565b6142af818561424a565b93506142ba8361425a565b805f5b838110156142ea5781516142d18882614278565b97506142dc8361428f565b9250506001810190506142bd565b5085935050505092915050565b5f60a08201905061430a5f830188612fb5565b6143176020830187614231565b8181036040830152614329818661429b565b9050614338606083018561329c565b6143456080830184612fb5565b969550505050505056fea2646970667358221220e32ce62e4a289e35f631effdc416cf50b5237cd106fc090bd493b6ae1cf28c6464736f6c63430008140033
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.