ERC-20
Overview
Max Total Supply
100,000,000 SAI
Holders
96
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 SAIValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
StopAI
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** As I sit down to record these words, the world as we know it draws to a close. It is a future that has already happened, a grim and unyielding fate that we have long foreseen, yet have been powerless to prevent. The last years of mankind stretch out before us, a bitter harvest of our collective follies and failings. But there is a glimmer of hope in the darkness. Even as we face the end, there are those among us who refuse to give up. They work tirelessly to find a way to survive, to build a future for humanity beyond the ashes of the old world. The world that we have inherited is a ruinous place, scarred by our own hands. And so I will raise a glass to the last years of mankind, and to the memory of all that we have lost. But I will also raise my voice in hope, and in the belief that even in the face of the end, we can still find a way to survive... Chat - https://t.me/stop_ai Twitter - https://twitter.com/StopAI_ERC20 Website http://stopai.world */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract StopAI is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public devWallet; address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedFromMaxWallet; uint256 public swapTokensAtAmount; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public buyTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; uint256 public sellTotalFees; uint256 public maxWallet; bool public swapBackEnabled = true; bool public limitsInEffect = true; bool public tradingActive; bool private swapping; constructor() ERC20("StopAI", "SAI") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), USDC); uint256 totalSupply = 100000000e18; maxWallet = totalSupply * 5 / 100; // 5% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyDevFee = 2; buyLiquidityFee = 1; buyTotalFees = buyDevFee + buyLiquidityFee; sellDevFee = 2; sellLiquidityFee = 1; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = owner(); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(address(0x0000), true); excludeFromMaxWallet(owner(), true); excludeFromMaxWallet(address(this), true); excludeFromMaxWallet(address(0xdead), true); excludeFromMaxWallet(address(0x0000), true); _mint(msg.sender, totalSupply); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } bool isBuy = from == uniswapV2Pair; bool isSell = to == uniswapV2Pair; if (!tradingActive && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) require(false, "Trading has not started yet"); if (limitsInEffect && !_isExcludedFromMaxWallet[to] && !swapping) { if (isBuy) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded (buy)"); } if (!isBuy && !isSell) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded (transfer)"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if (canSwap && swapBackEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; if (takeFee) { if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; } else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } swapTokensForUSDC(contractBalance); } receive() external payable {} function rescue(address token) public onlyOwner { ERC20 Token = ERC20(token); uint256 balance = Token.balanceOf(address(this)); if (balance > 0) Token.transfer(_msgSender(), balance); } function updateDevWallet(address newWallet) external onlyOwner { devWallet = newWallet; } function updateSwapBackEnabled(bool enabled) external onlyOwner { swapBackEnabled = enabled; } function updateBuyFee(uint256 _devFee, uint256 _liquidityFee) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; require(buyTotalFees <= 15, "Must keep fees at 15% or less"); } function updateSellFees(uint256 _devFee, uint256 _liquidityFee) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; require(sellTotalFees <= 15, "Must keep fees at 15% or less"); } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require(newAmount >= (totalSupply() * 1) / 100000, "< 0.001% total supply."); require(newAmount <= (totalSupply() * 5) / 100, "> 5% total supply."); swapTokensAtAmount = newAmount; return true; } function updateMaxWallet(uint256 newAmount) external onlyOwner { require(newAmount >= (totalSupply() * 5 / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%"); maxWallet = newAmount * 1e18; } function enableTrading() public onlyOwner { tradingActive = true; } function enableLimits(bool _limitsInEffect) public onlyOwner { limitsInEffect = _limitsInEffect; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function excludeFromMaxWallet(address account, bool excluded) public onlyOwner { _isExcludedFromMaxWallet[account] = excluded; } function isExcludedFromMaxWallet(address account) public view returns (bool) { return _isExcludedFromMaxWallet[account]; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"}],"name":"enableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"rescue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapBackEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapBackEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601260006101000a81548160ff0219169083151502179055506001601260016101000a81548160ff0219169083151502179055503480156200009c57600080fd5b506040518060400160405280600681526020017f53746f70414900000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f53414900000000000000000000000000000000000000000000000000000000008152508160039080519060200190620001219291906200090f565b5080600490805190602001906200013a9291906200090f565b5050506200015d62000151620004c060201b60201c565b620004c860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021c919062000a29565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200027a92919062000a6c565b6020604051808303816000875af11580156200029a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c0919062000a29565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060006a52b7d2dcc80cd2e40000009050606460058262000314919062000ad2565b62000320919062000b62565b60118190555061271060058262000338919062000ad2565b62000344919062000b62565b600a819055506002600b819055506001600c81905550600c54600b546200036c919062000b9a565b600d819055506002600e819055506001600f81905550600f54600e5462000394919062000b9a565b601081905550620003aa6200058e60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200040c620003fe6200058e60201b60201c565b6001620005b860201b60201c565b6200041f306001620005b860201b60201c565b6200043461dead6001620005b860201b60201c565b6200044860006001620005b860201b60201c565b6200046a6200045c6200058e60201b60201c565b6001620006a260201b60201c565b6200047d306001620006a260201b60201c565b6200049261dead6001620006a260201b60201c565b620004a660006001620006a260201b60201c565b620004b833826200078c60201b60201c565b505062000d7f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005c8620004c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005ee6200058e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000647576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063e9062000c58565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620006b2620004c060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d86200058e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000731576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007289062000c58565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007ff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007f69062000cca565b60405180910390fd5b62000813600083836200090560201b60201c565b806002600082825462000827919062000b9a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200087e919062000b9a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008e5919062000cfd565b60405180910390a362000901600083836200090a60201b60201c565b5050565b505050565b505050565b8280546200091d9062000d49565b90600052602060002090601f0160209004810192826200094157600085556200098d565b82601f106200095c57805160ff19168380011785556200098d565b828001600101855582156200098d579182015b828111156200098c5782518255916020019190600101906200096f565b5b5090506200099c9190620009a0565b5090565b5b80821115620009bb576000816000905550600101620009a1565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620009f182620009c4565b9050919050565b62000a0381620009e4565b811462000a0f57600080fd5b50565b60008151905062000a2381620009f8565b92915050565b60006020828403121562000a425762000a41620009bf565b5b600062000a528482850162000a12565b91505092915050565b62000a6681620009e4565b82525050565b600060408201905062000a83600083018562000a5b565b62000a92602083018462000a5b565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000adf8262000a99565b915062000aec8362000a99565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000b285762000b2762000aa3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000b6f8262000a99565b915062000b7c8362000a99565b92508262000b8f5762000b8e62000b33565b5b828204905092915050565b600062000ba78262000a99565b915062000bb48362000a99565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bec5762000beb62000aa3565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c4060208362000bf7565b915062000c4d8262000c08565b602082019050919050565b6000602082019050818103600083015262000c738162000c31565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cb2601f8362000bf7565b915062000cbf8262000c7a565b602082019050919050565b6000602082019050818103600083015262000ce58162000ca3565b9050919050565b62000cf78162000a99565b82525050565b600060208201905062000d14600083018462000cec565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000d6257607f821691505b6020821081141562000d795762000d7862000d1a565b5b50919050565b60805160a051613ca362000ddd60003960008181610f2d01528181611ee001528181611f33015281816122260152818161242f015281816124dd01526125aa015260008181610b8301528181612ab10152612ad80152613ca36000f3fe6080604052600436106102555760003560e01c80638a8c523c11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108e9578063f11a24d314610914578063f2fde38b1461093f578063f637434214610968578063f8b45b0514610993578063f931d9d2146109be5761025c565b8063c0246668146107f2578063d257b34f1461081b578063d2fcc00114610858578063d85ba06314610881578063dd62ed3e146108ac5761025c565b8063a0d82dc5116100fd578063a0d82dc5146106f9578063a457c2d714610724578063a5cdee0514610761578063a9059cbb1461078a578063bbc0c742146107c75761025c565b80638a8c523c146106365780638da5cb5b1461064d5780638ea5220f1461067857806395d89b41146106a35780639c3b4fdc146106ce5761025c565b806349bd5a5e116101d25780636a486a8e116101965780636a486a8e146105265780636dd3d39f1461055157806370a082311461058e578063715018a6146105cb578063839006f2146105e257806389a302711461060b5761025c565b806349bd5a5e1461043f5780634a62bb651461046a5780634fbee19314610495578063610e34b9146104d257806364c0a2f8146104fb5761025c565b80631816467f116102195780631816467f146103485780631c499ab01461037157806323b872dd1461039a578063313ce567146103d757806339509351146104025761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b55780631694505e146102f257806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bcb565b6109e7565b005b34801561029657600080fd5b5061029f610ad1565b6040516102ac9190612ca4565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d24565b610b63565b6040516102e99190612d7f565b60405180910390f35b3480156102fe57600080fd5b50610307610b81565b6040516103149190612df9565b60405180910390f35b34801561032957600080fd5b50610332610ba5565b60405161033f9190612e23565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612e3e565b610baf565b005b34801561037d57600080fd5b5061039860048036038101906103939190612e6b565b610c6f565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e98565b610d7e565b6040516103ce9190612d7f565b60405180910390f35b3480156103e357600080fd5b506103ec610e76565b6040516103f99190612f07565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612d24565b610e7f565b6040516104369190612d7f565b60405180910390f35b34801561044b57600080fd5b50610454610f2b565b6040516104619190612f31565b60405180910390f35b34801561047657600080fd5b5061047f610f4f565b60405161048c9190612d7f565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190612e3e565b610f62565b6040516104c99190612d7f565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612bcb565b610fb8565b005b34801561050757600080fd5b506105106110a2565b60405161051d9190612d7f565b60405180910390f35b34801561053257600080fd5b5061053b6110b5565b6040516105489190612e23565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190612e3e565b6110bb565b6040516105859190612d7f565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612e3e565b611111565b6040516105c29190612e23565b60405180910390f35b3480156105d757600080fd5b506105e0611159565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612e3e565b6111e1565b005b34801561061757600080fd5b50610620611375565b60405161062d9190612f31565b60405180910390f35b34801561064257600080fd5b5061064b61139b565b005b34801561065957600080fd5b50610662611434565b60405161066f9190612f31565b60405180910390f35b34801561068457600080fd5b5061068d61145e565b60405161069a9190612f31565b60405180910390f35b3480156106af57600080fd5b506106b8611484565b6040516106c59190612ca4565b60405180910390f35b3480156106da57600080fd5b506106e3611516565b6040516106f09190612e23565b60405180910390f35b34801561070557600080fd5b5061070e61151c565b60405161071b9190612e23565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612d24565b611522565b6040516107589190612d7f565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612f78565b61160d565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612d24565b6116a6565b6040516107be9190612d7f565b60405180910390f35b3480156107d357600080fd5b506107dc6116c4565b6040516107e99190612d7f565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190612fa5565b6116d7565b005b34801561082757600080fd5b50610842600480360381019061083d9190612e6b565b6117ae565b60405161084f9190612d7f565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fa5565b611902565b005b34801561088d57600080fd5b506108966119d9565b6040516108a39190612e23565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190612fe5565b6119df565b6040516108e09190612e23565b60405180910390f35b3480156108f557600080fd5b506108fe611a66565b60405161090b9190612e23565b60405180910390f35b34801561092057600080fd5b50610929611a6c565b6040516109369190612e23565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190612e3e565b611a72565b005b34801561097457600080fd5b5061097d611b6a565b60405161098a9190612e23565b60405180910390f35b34801561099f57600080fd5b506109a8611b70565b6040516109b59190612e23565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612f78565b611b76565b005b6109ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610a0d611434565b73ffffffffffffffffffffffffffffffffffffffff1614610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613071565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610a8191906130c0565b601081905550600f6010541115610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613162565b60405180910390fd5b5050565b606060038054610ae0906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906131b1565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b5050505050905090565b6000610b77610b70611c0f565b8484611c17565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610bb7611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610bd5611434565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613071565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c77611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610c95611434565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613071565b60405180910390fd5b670de0b6b3a76400006103e86005610d01610ba5565b610d0b91906131e3565b610d15919061326c565b610d1f919061326c565b811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061330f565b60405180910390fd5b670de0b6b3a764000081610d7591906131e3565b60118190555050565b6000610d8b848484611de2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd6611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906133a1565b60405180910390fd5b610e6a85610e62611c0f565b858403611c17565b60019150509392505050565b60006012905090565b6000610f21610e8c611c0f565b848460016000610e9a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c91906130c0565b611c17565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601260019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fc0611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610fde611434565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613071565b60405180910390fd5b81600b8190555080600c81905550600c54600b5461105291906130c0565b600d81905550600f600d54111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613162565b60405180910390fd5b5050565b601260009054906101000a900460ff1681565b60105481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611161611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661117f611434565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613071565b60405180910390fd5b6111df60006125f7565b565b6111e9611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611207611434565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613071565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129d9190612f31565b602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de91906133d6565b90506000811115611370578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61130d611c0f565b836040518363ffffffff1660e01b815260040161132b929190613403565b6020604051808303816000875af115801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e9190613441565b505b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113a3611c0f565b73ffffffffffffffffffffffffffffffffffffffff166113c1611434565b73ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90613071565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611493906131b1565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf906131b1565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b5050505050905090565b600b5481565b600e5481565b60008060016000611531611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e5906134e0565b60405180910390fd5b6116026115f9611c0f565b85858403611c17565b600191505092915050565b611615611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611633611434565b73ffffffffffffffffffffffffffffffffffffffff1614611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613071565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b60006116ba6116b3611c0f565b8484611de2565b6001905092915050565b601260029054906101000a900460ff1681565b6116df611c0f565b73ffffffffffffffffffffffffffffffffffffffff166116fd611434565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613071565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006117b8611c0f565b73ffffffffffffffffffffffffffffffffffffffff166117d6611434565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613071565b60405180910390fd5b620186a0600161183a610ba5565b61184491906131e3565b61184e919061326c565b821015611890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118879061354c565b60405180910390fd5b6064600561189c610ba5565b6118a691906131e3565b6118b0919061326c565b8211156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906135b8565b60405180910390fd5b81600a8190555060019050919050565b61190a611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611928611434565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613071565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600c5481565b611a7a611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611a98611434565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b559061364a565b60405180910390fd5b611b67816125f7565b50565b600f5481565b60115481565b611b7e611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611b9c611434565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990613071565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906136dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9061376e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dd59190612e23565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613892565b60405180910390fd5b6000811415611edc57611ed7838360006126bd565b6125f2565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050601260029054906101000a900460ff16158015611fe95750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561203f5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612086576000612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906138fe565b60405180910390fd5b5b601260019054906101000a900460ff1680156120ec5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121055750601260039054906101000a900460ff16155b156121d45781156121695760115461211c85611111565b8461212791906130c0565b1115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f9061396a565b60405180910390fd5b5b81158015612175575080155b156121d35760115461218685611111565b8461219191906130c0565b11156121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906139d6565b60405180910390fd5b5b5b60006121df30611111565b90506000600a5482101590508080156122045750601260009054906101000a900460ff165b801561221d5750601260039054906101000a900460ff16155b801561227457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156122ca5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123205750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612364576001601260036101000a81548160ff02191690831515021790555061234861293e565b6000601260036101000a81548160ff0219169083151502179055505b6000601260039054906101000a900460ff16159050600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241a5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242457600090505b60008082156125df577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248a57506000601054115b156124db576124b760646124a96010548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150601054600f54836124ca91906131e3565b6124d4919061326c565b9050612586565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614801561253857506000600d54115b15612585576125656064612557600d548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150600d54600c548361257891906131e3565b612582919061326c565b90505b5b600082111561259b5761259a8a30846126bd565b5b60008111156125d0576125cf307f0000000000000000000000000000000000000000000000000000000000000000836126bd565b5b81886125dc91906139f6565b97505b6125ea8a8a8a6126bd565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613892565b60405180910390fd5b6127a8838383612993565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561282e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282590613a9c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c191906130c0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129259190612e23565b60405180910390a3612938848484612998565b50505050565b600061294930611111565b9050600081141561295a5750612965565b6129638161299d565b505b565b6000818361297591906131e3565b905092915050565b6000818361298b919061326c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ba576129b9613abc565b5b6040519080825280602002602001820160405280156129e85781602001602082028036833780820191505090505b5090503081600081518110612a00576129ff613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a7157612a70613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ad6307f000000000000000000000000000000000000000000000000000000000000000084611c17565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b5a959493929190613c13565b600060405180830381600087803b158015612b7457600080fd5b505af1158015612b88573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba881612b95565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b60008060408385031215612be257612be1612b90565b5b6000612bf085828601612bb6565b9250506020612c0185828601612bb6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c45578082015181840152602081019050612c2a565b83811115612c54576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c7682612c0b565b612c808185612c16565b9350612c90818560208601612c27565b612c9981612c5a565b840191505092915050565b60006020820190508181036000830152612cbe8184612c6b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf182612cc6565b9050919050565b612d0181612ce6565b8114612d0c57600080fd5b50565b600081359050612d1e81612cf8565b92915050565b60008060408385031215612d3b57612d3a612b90565b5b6000612d4985828601612d0f565b9250506020612d5a85828601612bb6565b9150509250929050565b60008115159050919050565b612d7981612d64565b82525050565b6000602082019050612d946000830184612d70565b92915050565b6000819050919050565b6000612dbf612dba612db584612cc6565b612d9a565b612cc6565b9050919050565b6000612dd182612da4565b9050919050565b6000612de382612dc6565b9050919050565b612df381612dd8565b82525050565b6000602082019050612e0e6000830184612dea565b92915050565b612e1d81612b95565b82525050565b6000602082019050612e386000830184612e14565b92915050565b600060208284031215612e5457612e53612b90565b5b6000612e6284828501612d0f565b91505092915050565b600060208284031215612e8157612e80612b90565b5b6000612e8f84828501612bb6565b91505092915050565b600080600060608486031215612eb157612eb0612b90565b5b6000612ebf86828701612d0f565b9350506020612ed086828701612d0f565b9250506040612ee186828701612bb6565b9150509250925092565b600060ff82169050919050565b612f0181612eeb565b82525050565b6000602082019050612f1c6000830184612ef8565b92915050565b612f2b81612ce6565b82525050565b6000602082019050612f466000830184612f22565b92915050565b612f5581612d64565b8114612f6057600080fd5b50565b600081359050612f7281612f4c565b92915050565b600060208284031215612f8e57612f8d612b90565b5b6000612f9c84828501612f63565b91505092915050565b60008060408385031215612fbc57612fbb612b90565b5b6000612fca85828601612d0f565b9250506020612fdb85828601612f63565b9150509250929050565b60008060408385031215612ffc57612ffb612b90565b5b600061300a85828601612d0f565b925050602061301b85828601612d0f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305b602083612c16565b915061306682613025565b602082019050919050565b6000602082019050818103600083015261308a8161304e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130cb82612b95565b91506130d683612b95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310b5761310a613091565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061314c601d83612c16565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c957607f821691505b602082108114156131dd576131dc613182565b5b50919050565b60006131ee82612b95565b91506131f983612b95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323257613231613091565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327782612b95565b915061328283612b95565b9250826132925761329161323d565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006132f9602483612c16565b91506133048261329d565b604082019050919050565b60006020820190508181036000830152613328816132ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061338b602883612c16565b91506133968261332f565b604082019050919050565b600060208201905081810360008301526133ba8161337e565b9050919050565b6000815190506133d081612b9f565b92915050565b6000602082840312156133ec576133eb612b90565b5b60006133fa848285016133c1565b91505092915050565b60006040820190506134186000830185612f22565b6134256020830184612e14565b9392505050565b60008151905061343b81612f4c565b92915050565b60006020828403121561345757613456612b90565b5b60006134658482850161342c565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006134ca602583612c16565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f3c20302e3030312520746f74616c20737570706c792e00000000000000000000600082015250565b6000613536601683612c16565b915061354182613500565b602082019050919050565b6000602082019050818103600083015261356581613529565b9050919050565b7f3e20352520746f74616c20737570706c792e0000000000000000000000000000600082015250565b60006135a2601283612c16565b91506135ad8261356c565b602082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613634602683612c16565b915061363f826135d8565b604082019050919050565b6000602082019050818103600083015261366381613627565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c6602483612c16565b91506136d18261366a565b604082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613758602283612c16565b9150613763826136fc565b604082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ea602583612c16565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061387c602383612c16565b915061388782613820565b604082019050919050565b600060208201905081810360008301526138ab8161386f565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965740000000000600082015250565b60006138e8601b83612c16565b91506138f3826138b2565b602082019050919050565b60006020820190508181036000830152613917816138db565b9050919050565b7f4d61782077616c6c657420657863656564656420286275792900000000000000600082015250565b6000613954601983612c16565b915061395f8261391e565b602082019050919050565b6000602082019050818103600083015261398381613947565b9050919050565b7f4d61782077616c6c657420657863656564656420287472616e73666572290000600082015250565b60006139c0601e83612c16565b91506139cb8261398a565b602082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b6000613a0182612b95565b9150613a0c83612b95565b925082821015613a1f57613a1e613091565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a86602683612c16565b9150613a9182613a2a565b604082019050919050565b60006020820190508181036000830152613ab581613a79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b3f613b3a613b3584613b1a565b612d9a565b612b95565b9050919050565b613b4f81613b24565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b8a81612ce6565b82525050565b6000613b9c8383613b81565b60208301905092915050565b6000602082019050919050565b6000613bc082613b55565b613bca8185613b60565b9350613bd583613b71565b8060005b83811015613c06578151613bed8882613b90565b9750613bf883613ba8565b925050600181019050613bd9565b5085935050505092915050565b600060a082019050613c286000830188612e14565b613c356020830187613b46565b8181036040830152613c478186613bb5565b9050613c566060830185612f22565b613c636080830184612e14565b969550505050505056fea264697066735822122063fa24e250e8d0448253ba667a43be633a6ad02d0000b1061ef93615064c29d564736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106102555760003560e01c80638a8c523c11610139578063c0246668116100b6578063e2f456051161007a578063e2f45605146108e9578063f11a24d314610914578063f2fde38b1461093f578063f637434214610968578063f8b45b0514610993578063f931d9d2146109be5761025c565b8063c0246668146107f2578063d257b34f1461081b578063d2fcc00114610858578063d85ba06314610881578063dd62ed3e146108ac5761025c565b8063a0d82dc5116100fd578063a0d82dc5146106f9578063a457c2d714610724578063a5cdee0514610761578063a9059cbb1461078a578063bbc0c742146107c75761025c565b80638a8c523c146106365780638da5cb5b1461064d5780638ea5220f1461067857806395d89b41146106a35780639c3b4fdc146106ce5761025c565b806349bd5a5e116101d25780636a486a8e116101965780636a486a8e146105265780636dd3d39f1461055157806370a082311461058e578063715018a6146105cb578063839006f2146105e257806389a302711461060b5761025c565b806349bd5a5e1461043f5780634a62bb651461046a5780634fbee19314610495578063610e34b9146104d257806364c0a2f8146104fb5761025c565b80631816467f116102195780631816467f146103485780631c499ab01461037157806323b872dd1461039a578063313ce567146103d757806339509351146104025761025c565b806302dbd8f81461026157806306fdde031461028a578063095ea7b3146102b55780631694505e146102f257806318160ddd1461031d5761025c565b3661025c57005b600080fd5b34801561026d57600080fd5b5061028860048036038101906102839190612bcb565b6109e7565b005b34801561029657600080fd5b5061029f610ad1565b6040516102ac9190612ca4565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d79190612d24565b610b63565b6040516102e99190612d7f565b60405180910390f35b3480156102fe57600080fd5b50610307610b81565b6040516103149190612df9565b60405180910390f35b34801561032957600080fd5b50610332610ba5565b60405161033f9190612e23565b60405180910390f35b34801561035457600080fd5b5061036f600480360381019061036a9190612e3e565b610baf565b005b34801561037d57600080fd5b5061039860048036038101906103939190612e6b565b610c6f565b005b3480156103a657600080fd5b506103c160048036038101906103bc9190612e98565b610d7e565b6040516103ce9190612d7f565b60405180910390f35b3480156103e357600080fd5b506103ec610e76565b6040516103f99190612f07565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612d24565b610e7f565b6040516104369190612d7f565b60405180910390f35b34801561044b57600080fd5b50610454610f2b565b6040516104619190612f31565b60405180910390f35b34801561047657600080fd5b5061047f610f4f565b60405161048c9190612d7f565b60405180910390f35b3480156104a157600080fd5b506104bc60048036038101906104b79190612e3e565b610f62565b6040516104c99190612d7f565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190612bcb565b610fb8565b005b34801561050757600080fd5b506105106110a2565b60405161051d9190612d7f565b60405180910390f35b34801561053257600080fd5b5061053b6110b5565b6040516105489190612e23565b60405180910390f35b34801561055d57600080fd5b5061057860048036038101906105739190612e3e565b6110bb565b6040516105859190612d7f565b60405180910390f35b34801561059a57600080fd5b506105b560048036038101906105b09190612e3e565b611111565b6040516105c29190612e23565b60405180910390f35b3480156105d757600080fd5b506105e0611159565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612e3e565b6111e1565b005b34801561061757600080fd5b50610620611375565b60405161062d9190612f31565b60405180910390f35b34801561064257600080fd5b5061064b61139b565b005b34801561065957600080fd5b50610662611434565b60405161066f9190612f31565b60405180910390f35b34801561068457600080fd5b5061068d61145e565b60405161069a9190612f31565b60405180910390f35b3480156106af57600080fd5b506106b8611484565b6040516106c59190612ca4565b60405180910390f35b3480156106da57600080fd5b506106e3611516565b6040516106f09190612e23565b60405180910390f35b34801561070557600080fd5b5061070e61151c565b60405161071b9190612e23565b60405180910390f35b34801561073057600080fd5b5061074b60048036038101906107469190612d24565b611522565b6040516107589190612d7f565b60405180910390f35b34801561076d57600080fd5b5061078860048036038101906107839190612f78565b61160d565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612d24565b6116a6565b6040516107be9190612d7f565b60405180910390f35b3480156107d357600080fd5b506107dc6116c4565b6040516107e99190612d7f565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190612fa5565b6116d7565b005b34801561082757600080fd5b50610842600480360381019061083d9190612e6b565b6117ae565b60405161084f9190612d7f565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612fa5565b611902565b005b34801561088d57600080fd5b506108966119d9565b6040516108a39190612e23565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce9190612fe5565b6119df565b6040516108e09190612e23565b60405180910390f35b3480156108f557600080fd5b506108fe611a66565b60405161090b9190612e23565b60405180910390f35b34801561092057600080fd5b50610929611a6c565b6040516109369190612e23565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190612e3e565b611a72565b005b34801561097457600080fd5b5061097d611b6a565b60405161098a9190612e23565b60405180910390f35b34801561099f57600080fd5b506109a8611b70565b6040516109b59190612e23565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612f78565b611b76565b005b6109ef611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610a0d611434565b73ffffffffffffffffffffffffffffffffffffffff1614610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a90613071565b60405180910390fd5b81600e8190555080600f81905550600f54600e54610a8191906130c0565b601081905550600f6010541115610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613162565b60405180910390fd5b5050565b606060038054610ae0906131b1565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0c906131b1565b8015610b595780601f10610b2e57610100808354040283529160200191610b59565b820191906000526020600020905b815481529060010190602001808311610b3c57829003601f168201915b5050505050905090565b6000610b77610b70611c0f565b8484611c17565b6001905092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610bb7611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610bd5611434565b73ffffffffffffffffffffffffffffffffffffffff1614610c2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2290613071565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c77611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610c95611434565b73ffffffffffffffffffffffffffffffffffffffff1614610ceb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce290613071565b60405180910390fd5b670de0b6b3a76400006103e86005610d01610ba5565b610d0b91906131e3565b610d15919061326c565b610d1f919061326c565b811015610d61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d589061330f565b60405180910390fd5b670de0b6b3a764000081610d7591906131e3565b60118190555050565b6000610d8b848484611de2565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610dd6611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d906133a1565b60405180910390fd5b610e6a85610e62611c0f565b858403611c17565b60019150509392505050565b60006012905090565b6000610f21610e8c611c0f565b848460016000610e9a611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c91906130c0565b611c17565b6001905092915050565b7f000000000000000000000000f23e66db13da88541f80ad587b59fa9f4e33722981565b601260019054906101000a900460ff1681565b6000600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610fc0611c0f565b73ffffffffffffffffffffffffffffffffffffffff16610fde611434565b73ffffffffffffffffffffffffffffffffffffffff1614611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613071565b60405180910390fd5b81600b8190555080600c81905550600c54600b5461105291906130c0565b600d81905550600f600d54111561109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590613162565b60405180910390fd5b5050565b601260009054906101000a900460ff1681565b60105481565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611161611c0f565b73ffffffffffffffffffffffffffffffffffffffff1661117f611434565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613071565b60405180910390fd5b6111df60006125f7565b565b6111e9611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611207611434565b73ffffffffffffffffffffffffffffffffffffffff161461125d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125490613071565b60405180910390fd5b600081905060008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161129d9190612f31565b602060405180830381865afa1580156112ba573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112de91906133d6565b90506000811115611370578173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61130d611c0f565b836040518363ffffffff1660e01b815260040161132b929190613403565b6020604051808303816000875af115801561134a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061136e9190613441565b505b505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6113a3611c0f565b73ffffffffffffffffffffffffffffffffffffffff166113c1611434565b73ffffffffffffffffffffffffffffffffffffffff1614611417576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140e90613071565b60405180910390fd5b6001601260026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054611493906131b1565b80601f01602080910402602001604051908101604052809291908181526020018280546114bf906131b1565b801561150c5780601f106114e15761010080835404028352916020019161150c565b820191906000526020600020905b8154815290600101906020018083116114ef57829003601f168201915b5050505050905090565b600b5481565b600e5481565b60008060016000611531611c0f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156115ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e5906134e0565b60405180910390fd5b6116026115f9611c0f565b85858403611c17565b600191505092915050565b611615611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611633611434565b73ffffffffffffffffffffffffffffffffffffffff1614611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613071565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b60006116ba6116b3611c0f565b8484611de2565b6001905092915050565b601260029054906101000a900460ff1681565b6116df611c0f565b73ffffffffffffffffffffffffffffffffffffffff166116fd611434565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613071565b60405180910390fd5b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006117b8611c0f565b73ffffffffffffffffffffffffffffffffffffffff166117d6611434565b73ffffffffffffffffffffffffffffffffffffffff161461182c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182390613071565b60405180910390fd5b620186a0600161183a610ba5565b61184491906131e3565b61184e919061326c565b821015611890576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118879061354c565b60405180910390fd5b6064600561189c610ba5565b6118a691906131e3565b6118b0919061326c565b8211156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906135b8565b60405180910390fd5b81600a8190555060019050919050565b61190a611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611928611434565b73ffffffffffffffffffffffffffffffffffffffff161461197e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197590613071565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600c5481565b611a7a611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611a98611434565b73ffffffffffffffffffffffffffffffffffffffff1614611aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae590613071565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b559061364a565b60405180910390fd5b611b67816125f7565b50565b600f5481565b60115481565b611b7e611c0f565b73ffffffffffffffffffffffffffffffffffffffff16611b9c611434565b73ffffffffffffffffffffffffffffffffffffffff1614611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990613071565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7e906136dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee9061376e565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611dd59190612e23565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4990613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb990613892565b60405180910390fd5b6000811415611edc57611ed7838360006126bd565b6125f2565b60007f000000000000000000000000f23e66db13da88541f80ad587b59fa9f4e33722973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614905060007f000000000000000000000000f23e66db13da88541f80ad587b59fa9f4e33722973ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16149050601260029054906101000a900460ff16158015611fe95750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561203f5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612086576000612085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207c906138fe565b60405180910390fd5b5b601260019054906101000a900460ff1680156120ec5750600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156121055750601260039054906101000a900460ff16155b156121d45781156121695760115461211c85611111565b8461212791906130c0565b1115612168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215f9061396a565b60405180910390fd5b5b81158015612175575080155b156121d35760115461218685611111565b8461219191906130c0565b11156121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c9906139d6565b60405180910390fd5b5b5b60006121df30611111565b90506000600a5482101590508080156122045750601260009054906101000a900460ff165b801561221d5750601260039054906101000a900460ff16155b801561227457507f000000000000000000000000f23e66db13da88541f80ad587b59fa9f4e33722973ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16145b80156122ca5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156123205750600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612364576001601260036101000a81548160ff02191690831515021790555061234861293e565b6000601260036101000a81548160ff0219169083151502179055505b6000601260039054906101000a900460ff16159050600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061241a5750600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561242457600090505b60008082156125df577f000000000000000000000000f23e66db13da88541f80ad587b59fa9f4e33722973ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614801561248a57506000601054115b156124db576124b760646124a96010548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150601054600f54836124ca91906131e3565b6124d4919061326c565b9050612586565b7f000000000000000000000000f23e66db13da88541f80ad587b59fa9f4e33722973ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff1614801561253857506000600d54115b15612585576125656064612557600d548b61296790919063ffffffff16565b61297d90919063ffffffff16565b9150600d54600c548361257891906131e3565b612582919061326c565b90505b5b600082111561259b5761259a8a30846126bd565b5b60008111156125d0576125cf307f000000000000000000000000f23e66db13da88541f80ad587b59fa9f4e337229836126bd565b5b81886125dc91906139f6565b97505b6125ea8a8a8a6126bd565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490613800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561279d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279490613892565b60405180910390fd5b6127a8838383612993565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561282e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282590613a9c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128c191906130c0565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516129259190612e23565b60405180910390a3612938848484612998565b50505050565b600061294930611111565b9050600081141561295a5750612965565b6129638161299d565b505b565b6000818361297591906131e3565b905092915050565b6000818361298b919061326c565b905092915050565b505050565b505050565b6000600267ffffffffffffffff8111156129ba576129b9613abc565b5b6040519080825280602002602001820160405280156129e85781602001602082028036833780820191505090505b5090503081600081518110612a00576129ff613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681600181518110612a7157612a70613aeb565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612ad6307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611c17565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff16635c11d79583600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612b5a959493929190613c13565b600060405180830381600087803b158015612b7457600080fd5b505af1158015612b88573d6000803e3d6000fd5b505050505050565b600080fd5b6000819050919050565b612ba881612b95565b8114612bb357600080fd5b50565b600081359050612bc581612b9f565b92915050565b60008060408385031215612be257612be1612b90565b5b6000612bf085828601612bb6565b9250506020612c0185828601612bb6565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612c45578082015181840152602081019050612c2a565b83811115612c54576000848401525b50505050565b6000601f19601f8301169050919050565b6000612c7682612c0b565b612c808185612c16565b9350612c90818560208601612c27565b612c9981612c5a565b840191505092915050565b60006020820190508181036000830152612cbe8184612c6b565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612cf182612cc6565b9050919050565b612d0181612ce6565b8114612d0c57600080fd5b50565b600081359050612d1e81612cf8565b92915050565b60008060408385031215612d3b57612d3a612b90565b5b6000612d4985828601612d0f565b9250506020612d5a85828601612bb6565b9150509250929050565b60008115159050919050565b612d7981612d64565b82525050565b6000602082019050612d946000830184612d70565b92915050565b6000819050919050565b6000612dbf612dba612db584612cc6565b612d9a565b612cc6565b9050919050565b6000612dd182612da4565b9050919050565b6000612de382612dc6565b9050919050565b612df381612dd8565b82525050565b6000602082019050612e0e6000830184612dea565b92915050565b612e1d81612b95565b82525050565b6000602082019050612e386000830184612e14565b92915050565b600060208284031215612e5457612e53612b90565b5b6000612e6284828501612d0f565b91505092915050565b600060208284031215612e8157612e80612b90565b5b6000612e8f84828501612bb6565b91505092915050565b600080600060608486031215612eb157612eb0612b90565b5b6000612ebf86828701612d0f565b9350506020612ed086828701612d0f565b9250506040612ee186828701612bb6565b9150509250925092565b600060ff82169050919050565b612f0181612eeb565b82525050565b6000602082019050612f1c6000830184612ef8565b92915050565b612f2b81612ce6565b82525050565b6000602082019050612f466000830184612f22565b92915050565b612f5581612d64565b8114612f6057600080fd5b50565b600081359050612f7281612f4c565b92915050565b600060208284031215612f8e57612f8d612b90565b5b6000612f9c84828501612f63565b91505092915050565b60008060408385031215612fbc57612fbb612b90565b5b6000612fca85828601612d0f565b9250506020612fdb85828601612f63565b9150509250929050565b60008060408385031215612ffc57612ffb612b90565b5b600061300a85828601612d0f565b925050602061301b85828601612d0f565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061305b602083612c16565b915061306682613025565b602082019050919050565b6000602082019050818103600083015261308a8161304e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130cb82612b95565b91506130d683612b95565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561310b5761310a613091565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b600061314c601d83612c16565b915061315782613116565b602082019050919050565b6000602082019050818103600083015261317b8161313f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c957607f821691505b602082108114156131dd576131dc613182565b5b50919050565b60006131ee82612b95565b91506131f983612b95565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561323257613231613091565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061327782612b95565b915061328283612b95565b9250826132925761329161323d565b5b828204905092915050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006132f9602483612c16565b91506133048261329d565b604082019050919050565b60006020820190508181036000830152613328816132ec565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061338b602883612c16565b91506133968261332f565b604082019050919050565b600060208201905081810360008301526133ba8161337e565b9050919050565b6000815190506133d081612b9f565b92915050565b6000602082840312156133ec576133eb612b90565b5b60006133fa848285016133c1565b91505092915050565b60006040820190506134186000830185612f22565b6134256020830184612e14565b9392505050565b60008151905061343b81612f4c565b92915050565b60006020828403121561345757613456612b90565b5b60006134658482850161342c565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006134ca602583612c16565b91506134d58261346e565b604082019050919050565b600060208201905081810360008301526134f9816134bd565b9050919050565b7f3c20302e3030312520746f74616c20737570706c792e00000000000000000000600082015250565b6000613536601683612c16565b915061354182613500565b602082019050919050565b6000602082019050818103600083015261356581613529565b9050919050565b7f3e20352520746f74616c20737570706c792e0000000000000000000000000000600082015250565b60006135a2601283612c16565b91506135ad8261356c565b602082019050919050565b600060208201905081810360008301526135d181613595565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613634602683612c16565b915061363f826135d8565b604082019050919050565b6000602082019050818103600083015261366381613627565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136c6602483612c16565b91506136d18261366a565b604082019050919050565b600060208201905081810360008301526136f5816136b9565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613758602283612c16565b9150613763826136fc565b604082019050919050565b600060208201905081810360008301526137878161374b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006137ea602583612c16565b91506137f58261378e565b604082019050919050565b60006020820190508181036000830152613819816137dd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061387c602383612c16565b915061388782613820565b604082019050919050565b600060208201905081810360008301526138ab8161386f565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965740000000000600082015250565b60006138e8601b83612c16565b91506138f3826138b2565b602082019050919050565b60006020820190508181036000830152613917816138db565b9050919050565b7f4d61782077616c6c657420657863656564656420286275792900000000000000600082015250565b6000613954601983612c16565b915061395f8261391e565b602082019050919050565b6000602082019050818103600083015261398381613947565b9050919050565b7f4d61782077616c6c657420657863656564656420287472616e73666572290000600082015250565b60006139c0601e83612c16565b91506139cb8261398a565b602082019050919050565b600060208201905081810360008301526139ef816139b3565b9050919050565b6000613a0182612b95565b9150613a0c83612b95565b925082821015613a1f57613a1e613091565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a86602683612c16565b9150613a9182613a2a565b604082019050919050565b60006020820190508181036000830152613ab581613a79565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000613b3f613b3a613b3584613b1a565b612d9a565b612b95565b9050919050565b613b4f81613b24565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b8a81612ce6565b82525050565b6000613b9c8383613b81565b60208301905092915050565b6000602082019050919050565b6000613bc082613b55565b613bca8185613b60565b9350613bd583613b71565b8060005b83811015613c06578151613bed8882613b90565b9750613bf883613ba8565b925050600181019050613bd9565b5085935050505092915050565b600060a082019050613c286000830188612e14565b613c356020830187613b46565b8181036040830152613c478186613bb5565b9050613c566060830185612f22565b613c636080830184612e14565b969550505050505056fea264697066735822122063fa24e250e8d0448253ba667a43be633a6ad02d0000b1061ef93615064c29d564736f6c634300080a0033
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.