ERC-20
Overview
Max Total Supply
69,420,000,000,000 LED
Holders
113
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 LEDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
LaserEyedDoge
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // // https://ledoge.gg/ // 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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // 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 subtraction 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; } } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract LaserEyedDoge is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; mapping(address => uint256) private _holderLastTransferTimestamp; bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => uint256) public blocksOfTrades; bool public antiMEVEnabled = true; bool public antiContractSellEnabled = true; uint256 public mevBlocks = 1; mapping (address => bool) public botsOfMEV; mapping (address => bool) public whitelistedMEV; mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event marketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20("Laser Eyed Doge", "LED") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 10; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 80; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 69_420_000_000_000 * 1e18; maxTransactionAmount = 1_388_400_000_000 * 1e18; maxWallet = 1_388_400_000_000 * 1e18; swapTokensAtAmount = (totalSupply * 5) / 1000; buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = owner(); devWallet = owner(); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); setMev(address(0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13), true); setMev(address(0xE545c3Cd397bE0243475AF52bcFF8c64E9eAD5d7), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); tradingActive = true; } receive() external payable {} function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10 ** 18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxWallet lower than 0.1%" ); maxWallet = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { uint256 previousFees = buyTotalFees; buyMarketingFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyDevFee = _devFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; require(buyTotalFees <= 20 || buyTotalFees < previousFees, "Must keep fees at 20% or less"); } function updateSellFees( uint256 _marketingFee, uint256 _liquidityFee, uint256 _devFee ) external onlyOwner { uint256 previousFees = sellTotalFees; sellMarketingFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellDevFee = _devFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; require(sellTotalFees <= 20 || sellTotalFees < previousFees, "Must keep fees at 20% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function setAntiMEVMode(bool setting) external onlyOwner { antiMEVEnabled = setting; } function setMev(address addr, bool value) private { botsOfMEV[addr] = value; } function updateMarketingWallet(address newMarketingWallet) external onlyOwner { emit marketingWalletUpdated(newMarketingWallet, marketingWallet); marketingWallet = newMarketingWallet; } function updateDevWallet(address newWallet) external onlyOwner { emit devWalletUpdated(newWallet, devWallet); devWallet = newWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); 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 _isBuying = automatedMarketMakerPairs[from] && to != address(uniswapV2Router); bool _isSelling = automatedMarketMakerPairs[to] && from != address(this); bool _mevBot = false; if (antiMEVEnabled) { if (_isBuying) { blocksOfTrades[to] = block.number; } else if (_isSelling && !whitelistedMEV[from]) { if ((block.number < (blocksOfTrades[from] + mevBlocks)) && (block.number < (blocksOfTrades[msg.sender] + mevBlocks))) { if (!botsOfMEV[from] || !botsOfMEV[msg.sender]) { botsOfMEV[from] = true; botsOfMEV[msg.sender] = true; } _mevBot = true; } if (botsOfMEV[from] && botsOfMEV[msg.sender]) { _mevBot = true; } if (from == msg.sender && antiContractSellEnabled) { botsOfMEV[from] = true; botsOfMEV[msg.sender] = true; _mevBot = true; } } } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function setMEVBlocks(uint256 _mevBlocks) external onlyOwner { require(_mevBlocks < 8,"Cannot make _mevBlocks more that 8"); mevBlocks = _mevBlocks; } function clearMEVBot(address bot) external onlyOwner { botsOfMEV[bot] = false; } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value : ethAmount}( address(this), tokenAmount, 0, 0, deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount) { contractBalance = swapTokensAtAmount; } uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success,) = address(devWallet).call{value : ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } (success,) = address(marketingWallet).call{ value : address(this).balance }(""); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiContractSellEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiMEVEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blocksOfTrades","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"botsOfMEV","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"bot","type":"address"}],"name":"clearMEVBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mevBlocks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"setting","type":"bool"}],"name":"setAntiMEVMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mevBlocks","type":"uint256"}],"name":"setMEVBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMEV","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055506000600d60006101000a81548160ff0219169083151502179055506001601c60006101000a81548160ff0219169083151502179055506001601c60016101000a81548160ff0219169083151502179055506001601d55348015620000b857600080fd5b506040518060400160405280600f81526020017f4c61736572204579656420446f676500000000000000000000000000000000008152506040518060400160405280600381526020017f4c45440000000000000000000000000000000000000000000000000000000000815250816003908162000136919062000dcf565b50806004908162000148919062000dcf565b5050506200016b6200015f6200063360201b60201c565b6200063b60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001978160016200070160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000217573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023d919062000f20565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002cb919062000f20565b6040518363ffffffff1660e01b8152600401620002ea92919062000f63565b6020604051808303816000875af11580156200030a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000330919062000f20565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037860a05160016200070160201b60201c565b6200038d60a05160016200076c60201b60201c565b6000600a905060008060006050905060008060006d036c341e1f992f96840fe000000090506c1186298ffdf1977d85700000006008819055506c1186298ffdf1977d8570000000600a819055506103e8600582620003ec919062000fbf565b620003f8919062001039565b60098190555086600f819055508560108190555084601181905550601154601054600f5462000428919062001071565b62000434919062001071565b600e8190555083601381905550826014819055508160158190555060155460145460135462000464919062001071565b62000470919062001071565b601281905550620004866200080d60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004d66200080d60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005386200052a6200080d60201b60201c565b60016200083760201b60201c565b6200054b3060016200083760201b60201c565b6200056061dead60016200083760201b60201c565b62000582620005746200080d60201b60201c565b60016200070160201b60201c565b620005953060016200070160201b60201c565b620005aa61dead60016200070160201b60201c565b620005d173ae2fc483527b8ef99eb5d9b44875f005ba1fae136001620008f260201b60201c565b620005f873e545c3cd397be0243475af52bcff8c64e9ead5d76001620008f260201b60201c565b6200060a33826200094d60201b60201c565b6001600b60016101000a81548160ff021916908315150217905550505050505050505062001209565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200071162000aba60201b60201c565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200084762000aba60201b60201c565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008e69190620010c9565b60405180910390a25050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009b69062001147565b60405180910390fd5b620009d36000838362000b4b60201b60201c565b8060026000828254620009e7919062001071565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a9a91906200117a565b60405180910390a362000ab66000838362000b5060201b60201c565b5050565b62000aca6200063360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000af06200080d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000b49576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b4090620011e7565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bd757607f821691505b60208210810362000bed5762000bec62000b8f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c18565b62000c63868362000c18565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000cb062000caa62000ca48462000c7b565b62000c85565b62000c7b565b9050919050565b6000819050919050565b62000ccc8362000c8f565b62000ce462000cdb8262000cb7565b84845462000c25565b825550505050565b600090565b62000cfb62000cec565b62000d0881848462000cc1565b505050565b5b8181101562000d305762000d2460008262000cf1565b60018101905062000d0e565b5050565b601f82111562000d7f5762000d498162000bf3565b62000d548462000c08565b8101602085101562000d64578190505b62000d7c62000d738562000c08565b83018262000d0d565b50505b505050565b600082821c905092915050565b600062000da46000198460080262000d84565b1980831691505092915050565b600062000dbf838362000d91565b9150826002028217905092915050565b62000dda8262000b55565b67ffffffffffffffff81111562000df65762000df562000b60565b5b62000e02825462000bbe565b62000e0f82828562000d34565b600060209050601f83116001811462000e47576000841562000e32578287015190505b62000e3e858262000db1565b86555062000eae565b601f19841662000e578662000bf3565b60005b8281101562000e815784890151825560018201915060208501945060208101905062000e5a565b8683101562000ea1578489015162000e9d601f89168262000d91565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ee88262000ebb565b9050919050565b62000efa8162000edb565b811462000f0657600080fd5b50565b60008151905062000f1a8162000eef565b92915050565b60006020828403121562000f395762000f3862000eb6565b5b600062000f498482850162000f09565b91505092915050565b62000f5d8162000edb565b82525050565b600060408201905062000f7a600083018562000f52565b62000f89602083018462000f52565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fcc8262000c7b565b915062000fd98362000c7b565b925082820262000fe98162000c7b565b9150828204841483151762001003576200100262000f90565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010468262000c7b565b9150620010538362000c7b565b9250826200106657620010656200100a565b5b828204905092915050565b60006200107e8262000c7b565b91506200108b8362000c7b565b9250828201905080821115620010a657620010a562000f90565b5b92915050565b60008115159050919050565b620010c381620010ac565b82525050565b6000602082019050620010e06000830184620010b8565b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200112f601f83620010e6565b91506200113c82620010f7565b602082019050919050565b60006020820190508181036000830152620011628162001120565b9050919050565b620011748162000c7b565b82525050565b600060208201905062001191600083018462001169565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620011cf602083620010e6565b9150620011dc8262001197565b602082019050919050565b600060208201905081810360008301526200120281620011c0565b9050919050565b60805160a0516151626200126e60003960008181611222015281816115990152612963015260008181610ff0015281816121500152818161290b015281816139df01528181613ac001528181613ae701528181613b830152613baa01526151626000f3fe6080604052600436106103b15760003560e01c806392136913116101e7578063c17b5b8c1161010d578063e2f45605116100a0578063f25744f11161006f578063f25744f114610e4b578063f2fde38b14610e74578063f637434214610e9d578063f8b45b0514610ec8576103b8565b8063e2f4560514610da1578063e884f26014610dcc578063eb005e5f14610df7578063f11a24d314610e20576103b8565b8063d257b34f116100dc578063d257b34f14610cbf578063d3bef90614610cfc578063d85ba06314610d39578063dd62ed3e14610d64576103b8565b8063c17b5b8c14610c17578063c18bc19514610c40578063c876d0b914610c69578063c8c8ebe414610c94576103b8565b8063a200c88d11610185578063b62496f511610154578063b62496f514610b5d578063bbc0c74214610b9a578063bcfaf7aa14610bc5578063c024666814610bee576103b8565b8063a200c88d14610a7d578063a457c2d714610aba578063a9059cbb14610af7578063aacebbe314610b34576103b8565b80639a7a23d6116101c15780639a7a23d6146109d35780639c3b4fdc146109fc5780639fccce3214610a27578063a0d82dc514610a52576103b8565b80639213691314610954578063924de9b71461097f57806395d89b41146109a8576103b8565b806339be1a1f116102d7578063751039fc1161026a5780637bce5a04116102395780637bce5a04146108aa5780638095d564146108d55780638da5cb5b146108fe5780638ea5220f14610929576103b8565b8063751039fc146108005780637571336a1461082b57806375f0a87414610854578063773e0d9c1461087f576103b8565b80636a486a8e116102a65780636a486a8e146107565780636ddd17131461078157806370a08231146107ac578063715018a6146107e9576103b8565b806339be1a1f1461068657806349bd5a5e146106c35780634a62bb65146106ee5780634fbee19314610719576103b8565b80631816467f1161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f3578063313ce5671461061e5780633950935114610649576103b8565b80631816467f1461050e5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b806310d5de531161038b57806310d5de53146104505780631564336e1461048d5780631694505e146104b857806318160ddd146104e3576103b8565b806304113890146103bd57806306fdde03146103e8578063095ea7b314610413576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ef3565b6040516103df9190613c74565b60405180910390f35b3480156103f457600080fd5b506103fd610f06565b60405161040a9190613d1f565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190613dda565b610f98565b6040516104479190613c74565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613e1a565b610fbb565b6040516104849190613c74565b60405180910390f35b34801561049957600080fd5b506104a2610fdb565b6040516104af9190613c74565b60405180910390f35b3480156104c457600080fd5b506104cd610fee565b6040516104da9190613ea6565b60405180910390f35b3480156104ef57600080fd5b506104f8611012565b6040516105059190613ed0565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613e1a565b61101c565b005b34801561054357600080fd5b5061054c6110e4565b6040516105599190613ed0565b60405180910390f35b34801561056e57600080fd5b506105776110ea565b6040516105849190613ed0565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613eeb565b6110f0565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613f18565b61118b565b6040516105ea9190613c74565b60405180910390f35b3480156105ff57600080fd5b506106086111ba565b6040516106159190613f7a565b60405180910390f35b34801561062a57600080fd5b506106336111c0565b6040516106409190613fb1565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190613dda565b6111c9565b60405161067d9190613c74565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190613e1a565b611200565b6040516106ba9190613c74565b60405180910390f35b3480156106cf57600080fd5b506106d8611220565b6040516106e59190613f7a565b60405180910390f35b3480156106fa57600080fd5b50610703611244565b6040516107109190613c74565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613e1a565b611257565b60405161074d9190613c74565b60405180910390f35b34801561076257600080fd5b5061076b6112ad565b6040516107789190613ed0565b60405180910390f35b34801561078d57600080fd5b506107966112b3565b6040516107a39190613c74565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613e1a565b6112c6565b6040516107e09190613ed0565b60405180910390f35b3480156107f557600080fd5b506107fe61130e565b005b34801561080c57600080fd5b50610815611322565b6040516108229190613c74565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190613ff8565b61134e565b005b34801561086057600080fd5b506108696113b1565b6040516108769190613f7a565b60405180910390f35b34801561088b57600080fd5b506108946113d7565b6040516108a19190613ed0565b60405180910390f35b3480156108b657600080fd5b506108bf6113dd565b6040516108cc9190613ed0565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190614038565b6113e3565b005b34801561090a57600080fd5b50610913611482565b6040516109209190613f7a565b60405180910390f35b34801561093557600080fd5b5061093e6114ac565b60405161094b9190613f7a565b60405180910390f35b34801561096057600080fd5b506109696114d2565b6040516109769190613ed0565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a1919061408b565b6114d8565b005b3480156109b457600080fd5b506109bd6114fd565b6040516109ca9190613d1f565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f59190613ff8565b61158f565b005b348015610a0857600080fd5b50610a11611633565b604051610a1e9190613ed0565b60405180910390f35b348015610a3357600080fd5b50610a3c611639565b604051610a499190613ed0565b60405180910390f35b348015610a5e57600080fd5b50610a6761163f565b604051610a749190613ed0565b60405180910390f35b348015610a8957600080fd5b50610aa46004803603810190610a9f9190613e1a565b611645565b604051610ab19190613c74565b60405180910390f35b348015610ac657600080fd5b50610ae16004803603810190610adc9190613dda565b611665565b604051610aee9190613c74565b60405180910390f35b348015610b0357600080fd5b50610b1e6004803603810190610b199190613dda565b6116dc565b604051610b2b9190613c74565b60405180910390f35b348015610b4057600080fd5b50610b5b6004803603810190610b569190613e1a565b6116ff565b005b348015610b6957600080fd5b50610b846004803603810190610b7f9190613e1a565b6117c7565b604051610b919190613c74565b60405180910390f35b348015610ba657600080fd5b50610baf6117e6565b604051610bbc9190613c74565b60405180910390f35b348015610bd157600080fd5b50610bec6004803603810190610be79190613eeb565b6117f9565b005b348015610bfa57600080fd5b50610c156004803603810190610c109190613ff8565b61184e565b005b348015610c2357600080fd5b50610c3e6004803603810190610c399190614038565b6118ff565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190613eeb565b61199e565b005b348015610c7557600080fd5b50610c7e611a39565b604051610c8b9190613c74565b60405180910390f35b348015610ca057600080fd5b50610ca9611a4c565b604051610cb69190613ed0565b60405180910390f35b348015610ccb57600080fd5b50610ce66004803603810190610ce19190613eeb565b611a52565b604051610cf39190613c74565b60405180910390f35b348015610d0857600080fd5b50610d236004803603810190610d1e9190613e1a565b611b32565b604051610d309190613ed0565b60405180910390f35b348015610d4557600080fd5b50610d4e611b4a565b604051610d5b9190613ed0565b60405180910390f35b348015610d7057600080fd5b50610d8b6004803603810190610d8691906140b8565b611b50565b604051610d989190613ed0565b60405180910390f35b348015610dad57600080fd5b50610db6611bd7565b604051610dc39190613ed0565b60405180910390f35b348015610dd857600080fd5b50610de1611bdd565b604051610dee9190613c74565b60405180910390f35b348015610e0357600080fd5b50610e1e6004803603810190610e199190613e1a565b611c09565b005b348015610e2c57600080fd5b50610e35611c6c565b604051610e429190613ed0565b60405180910390f35b348015610e5757600080fd5b50610e726004803603810190610e6d919061408b565b611c72565b005b348015610e8057600080fd5b50610e9b6004803603810190610e969190613e1a565b611c97565b005b348015610ea957600080fd5b50610eb2611d1a565b604051610ebf9190613ed0565b60405180910390f35b348015610ed457600080fd5b50610edd611d20565b604051610eea9190613ed0565b60405180910390f35b601c60009054906101000a900460ff1681565b606060038054610f1590614127565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4190614127565b8015610f8e5780601f10610f6357610100808354040283529160200191610f8e565b820191906000526020600020905b815481529060010190602001808311610f7157829003601f168201915b5050505050905090565b600080610fa3611d26565b9050610fb0818585611d2e565b600191505092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b601c60019054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b611024611ef7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60175481565b60165481565b6110f8611ef7565b670de0b6b3a76400006103e8600161110e611012565b6111189190614187565b61112291906141f8565b61112c91906141f8565b81101561116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111659061429b565b60405180910390fd5b670de0b6b3a7640000816111829190614187565b60088190555050565b600080611196611d26565b90506111a3858285611f75565b6111ae858585612001565b60019150509392505050565b61dead81565b60006012905090565b6000806111d4611d26565b90506111f58185856111e68589611b50565b6111f091906142bb565b611d2e565b600191505092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611316611ef7565b6113206000613248565b565b600061132c611ef7565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611356611ef7565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d5481565b600f5481565b6113eb611ef7565b6000600e54905083600f819055508260108190555081601181905550601154601054600f5461141a91906142bb565b61142491906142bb565b600e819055506014600e5411158061143d575080600e54105b61147c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114739061433b565b60405180910390fd5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6114e0611ef7565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461150c90614127565b80601f016020809104026020016040519081016040528092919081815260200182805461153890614127565b80156115855780601f1061155a57610100808354040283529160200191611585565b820191906000526020600020905b81548152906001019060200180831161156857829003601f168201915b5050505050905090565b611597611ef7565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906143cd565b60405180910390fd5b61162f828261330e565b5050565b60115481565b60185481565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b600080611670611d26565b9050600061167e8286611b50565b9050838110156116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba9061445f565b60405180910390fd5b6116d08286868403611d2e565b60019250505092915050565b6000806116e7611d26565b90506116f4818585612001565b600191505092915050565b611707611ef7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611801611ef7565b60088110611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b906144f1565b60405180910390fd5b80601d8190555050565b611856611ef7565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118f39190613c74565b60405180910390a25050565b611907611ef7565b6000601254905083601381905550826014819055508160158190555060155460145460135461193691906142bb565b61194091906142bb565b6012819055506014601254111580611959575080601254105b611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061433b565b60405180910390fd5b50505050565b6119a6611ef7565b670de0b6b3a76400006103e860016119bc611012565b6119c69190614187565b6119d091906141f8565b6119da91906141f8565b811015611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390614583565b60405180910390fd5b670de0b6b3a764000081611a309190614187565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611a5c611ef7565b620186a06001611a6a611012565b611a749190614187565b611a7e91906141f8565b821015611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790614615565b60405180910390fd5b60646004611acc611012565b611ad69190614187565b611ae091906141f8565b821115611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b19906146a7565b60405180910390fd5b8160098190555060019050919050565b601b6020528060005260406000206000915090505481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611be7611ef7565b6000600d60006101000a81548160ff0219169083151502179055506001905090565b611c11611ef7565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60105481565b611c7a611ef7565b80601c60006101000a81548160ff02191690831515021790555050565b611c9f611ef7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590614739565b60405180910390fd5b611d1781613248565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d94906147cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e039061485d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611eea9190613ed0565b60405180910390a3505050565b611eff611d26565b73ffffffffffffffffffffffffffffffffffffffff16611f1d611482565b73ffffffffffffffffffffffffffffffffffffffff1614611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a906148c9565b60405180910390fd5b565b6000611f818484611b50565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ffb5781811015611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490614935565b60405180910390fd5b611ffa8484848403611d2e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612067906149c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d690614a59565b60405180910390fd5b600081036120f8576120f3838360006133af565b613243565b6000602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561219f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90506000602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561222857503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b90506000601c60009054906101000a900460ff16156126a55782156122905743601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506126a4565b8180156122e75750601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126a357601d54601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461233991906142bb565b431080156123925750601d54601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461238f91906142bb565b43105b156124f557601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158061243a5750601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124f0576001601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600190505b601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125975750601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125a157600190505b3373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156125e85750601c60019054906101000a900460ff165b156126a2576001601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b5b5b5b600b60009054906101000a900460ff1615612d68576126c2611482565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156127305750612700611482565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127695750600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127a3575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127bc5750600560149054906101000a900460ff16155b15612d6757600b60019054906101000a900460ff166128b657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128765750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90614ac5565b60405180910390fd5b5b600d60009054906101000a900460ff1615612a7e576128d3611482565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561295a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156129b257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612a7d5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90614b7d565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b215750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bc857600854841115612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614c0f565b60405180910390fd5b600a54612b77866112c6565b85612b8291906142bb565b1115612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90614c7b565b60405180910390fd5b612d66565b602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c6b5750601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cba57600854841115612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac90614d0d565b60405180910390fd5b612d65565b601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d6457600a54612d17866112c6565b85612d2291906142bb565b1115612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a90614c7b565b60405180910390fd5b5b5b5b5b5b6000612d73306112c6565b905060006009548210159050808015612d985750600b60029054906101000a900460ff165b8015612db15750600560149054906101000a900460ff16155b8015612e075750602060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e5d5750601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612eb35750601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ef7576001600560146101000a81548160ff021916908315150217905550612edb613625565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fad5750601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fb757600090505b6000811561323057602060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561301a57506000601254115b156130e75761304760646130396012548b6138f490919063ffffffff16565b61390a90919063ffffffff16565b90506012546014548261305a9190614187565b61306491906141f8565b6017600082825461307591906142bb565b925050819055506012546015548261308d9190614187565b61309791906141f8565b601860008282546130a891906142bb565b92505081905550601254601354826130c09190614187565b6130ca91906141f8565b601660008282546130db91906142bb565b9250508190555061320c565b602060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561314257506000600e54115b1561320b5761316f6064613161600e548b6138f490919063ffffffff16565b61390a90919063ffffffff16565b9050600e54601054826131829190614187565b61318c91906141f8565b6017600082825461319d91906142bb565b92505081905550600e54601154826131b59190614187565b6131bf91906141f8565b601860008282546131d091906142bb565b92505081905550600e54600f54826131e89190614187565b6131f291906141f8565b6016600082825461320391906142bb565b925050819055505b5b6000811115613221576132208a30836133af565b5b808861322d9190614d2d565b97505b61323b8a8a8a6133af565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361341e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613415906149c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361348d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348490614a59565b60405180910390fd5b613498838383613920565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561351e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351590614dd3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161360c9190613ed0565b60405180910390a361361f848484613925565b50505050565b6000613630306112c6565b9050600060185460165460175461364791906142bb565b61365191906142bb565b90506000808314806136635750600082145b15613670575050506138f2565b6009548311156136805760095492505b6000600283601754866136939190614187565b61369d91906141f8565b6136a791906141f8565b905060006136be828661392a90919063ffffffff16565b905060004790506136ce82613940565b60006136e3824761392a90919063ffffffff16565b9050600061370e87613700601654856138f490919063ffffffff16565b61390a90919063ffffffff16565b905060006137398861372b601854866138f490919063ffffffff16565b61390a90919063ffffffff16565b9050600081838561374a9190614d2d565b6137549190614d2d565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137b490614e24565b60006040518083038185875af1925050503d80600081146137f1576040519150601f19603f3d011682016040523d82523d6000602084013e6137f6565b606091505b50508098505060008711801561380c5750600081115b156138595761381b8782613b7d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260175460405161385093929190614e39565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161389f90614e24565b60006040518083038185875af1925050503d80600081146138dc576040519150601f19603f3d011682016040523d82523d6000602084013e6138e1565b606091505b505080985050505050505050505050505b565b600081836139029190614187565b905092915050565b6000818361391891906141f8565b905092915050565b505050565b505050565b600081836139389190614d2d565b905092915050565b6000600267ffffffffffffffff81111561395d5761395c614e70565b5b60405190808252806020026020018201604052801561398b5781602001602082028036833780820191505090505b50905030816000815181106139a3576139a2614e9f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a6c9190614ee3565b81600181518110613a8057613a7f614e9f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ae5307f000000000000000000000000000000000000000000000000000000000000000084611d2e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b47959493929190615009565b600060405180830381600087803b158015613b6157600080fd5b505af1158015613b75573d6000803e3d6000fd5b505050505050565b613ba8307f000000000000000000000000000000000000000000000000000000000000000084611d2e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613c0f96959493929190615063565b60606040518083038185885af1158015613c2d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c5291906150d9565b5050505050565b60008115159050919050565b613c6e81613c59565b82525050565b6000602082019050613c896000830184613c65565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cc9578082015181840152602081019050613cae565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cf182613c8f565b613cfb8185613c9a565b9350613d0b818560208601613cab565b613d1481613cd5565b840191505092915050565b60006020820190508181036000830152613d398184613ce6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7182613d46565b9050919050565b613d8181613d66565b8114613d8c57600080fd5b50565b600081359050613d9e81613d78565b92915050565b6000819050919050565b613db781613da4565b8114613dc257600080fd5b50565b600081359050613dd481613dae565b92915050565b60008060408385031215613df157613df0613d41565b5b6000613dff85828601613d8f565b9250506020613e1085828601613dc5565b9150509250929050565b600060208284031215613e3057613e2f613d41565b5b6000613e3e84828501613d8f565b91505092915050565b6000819050919050565b6000613e6c613e67613e6284613d46565b613e47565b613d46565b9050919050565b6000613e7e82613e51565b9050919050565b6000613e9082613e73565b9050919050565b613ea081613e85565b82525050565b6000602082019050613ebb6000830184613e97565b92915050565b613eca81613da4565b82525050565b6000602082019050613ee56000830184613ec1565b92915050565b600060208284031215613f0157613f00613d41565b5b6000613f0f84828501613dc5565b91505092915050565b600080600060608486031215613f3157613f30613d41565b5b6000613f3f86828701613d8f565b9350506020613f5086828701613d8f565b9250506040613f6186828701613dc5565b9150509250925092565b613f7481613d66565b82525050565b6000602082019050613f8f6000830184613f6b565b92915050565b600060ff82169050919050565b613fab81613f95565b82525050565b6000602082019050613fc66000830184613fa2565b92915050565b613fd581613c59565b8114613fe057600080fd5b50565b600081359050613ff281613fcc565b92915050565b6000806040838503121561400f5761400e613d41565b5b600061401d85828601613d8f565b925050602061402e85828601613fe3565b9150509250929050565b60008060006060848603121561405157614050613d41565b5b600061405f86828701613dc5565b935050602061407086828701613dc5565b925050604061408186828701613dc5565b9150509250925092565b6000602082840312156140a1576140a0613d41565b5b60006140af84828501613fe3565b91505092915050565b600080604083850312156140cf576140ce613d41565b5b60006140dd85828601613d8f565b92505060206140ee85828601613d8f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061413f57607f821691505b602082108103614152576141516140f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061419282613da4565b915061419d83613da4565b92508282026141ab81613da4565b915082820484148315176141c2576141c1614158565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420382613da4565b915061420e83613da4565b92508261421e5761421d6141c9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614285602f83613c9a565b915061429082614229565b604082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b60006142c682613da4565b91506142d183613da4565b92508282019050808211156142e9576142e8614158565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614325601d83613c9a565b9150614330826142ef565b602082019050919050565b6000602082019050818103600083015261435481614318565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006143b7603983613c9a565b91506143c28261435b565b604082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614449602583613c9a565b9150614454826143ed565b604082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b7f43616e6e6f74206d616b65205f6d6576426c6f636b73206d6f7265207468617460008201527f2038000000000000000000000000000000000000000000000000000000000000602082015250565b60006144db602283613c9a565b91506144e68261447f565b604082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e312500000000000000000000000000000000000000000000000000000000602082015250565b600061456d602483613c9a565b915061457882614511565b604082019050919050565b6000602082019050818103600083015261459c81614560565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145ff603583613c9a565b915061460a826145a3565b604082019050919050565b6000602082019050818103600083015261462e816145f2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20342520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614691603283613c9a565b915061469c82614635565b604082019050919050565b600060208201905081810360008301526146c081614684565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614723602683613c9a565b915061472e826146c7565b604082019050919050565b6000602082019050818103600083015261475281614716565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147b5602483613c9a565b91506147c082614759565b604082019050919050565b600060208201905081810360008301526147e4816147a8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614847602283613c9a565b9150614852826147eb565b604082019050919050565b600060208201905081810360008301526148768161483a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148b3602083613c9a565b91506148be8261487d565b602082019050919050565b600060208201905081810360008301526148e2816148a6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061491f601d83613c9a565b915061492a826148e9565b602082019050919050565b6000602082019050818103600083015261494e81614912565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006149b1602583613c9a565b91506149bc82614955565b604082019050919050565b600060208201905081810360008301526149e0816149a4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a43602383613c9a565b9150614a4e826149e7565b604082019050919050565b60006020820190508181036000830152614a7281614a36565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614aaf601683613c9a565b9150614aba82614a79565b602082019050919050565b60006020820190508181036000830152614ade81614aa2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614b67604983613c9a565b9150614b7282614ae5565b606082019050919050565b60006020820190508181036000830152614b9681614b5a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bf9603583613c9a565b9150614c0482614b9d565b604082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c65601383613c9a565b9150614c7082614c2f565b602082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614cf7603683613c9a565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b6000614d3882613da4565b9150614d4383613da4565b9250828203905081811115614d5b57614d5a614158565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614dbd602683613c9a565b9150614dc882614d61565b604082019050919050565b60006020820190508181036000830152614dec81614db0565b9050919050565b600081905092915050565b50565b6000614e0e600083614df3565b9150614e1982614dfe565b600082019050919050565b6000614e2f82614e01565b9150819050919050565b6000606082019050614e4e6000830186613ec1565b614e5b6020830185613ec1565b614e686040830184613ec1565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614edd81613d78565b92915050565b600060208284031215614ef957614ef8613d41565b5b6000614f0784828501614ece565b91505092915050565b6000819050919050565b6000614f35614f30614f2b84614f10565b613e47565b613da4565b9050919050565b614f4581614f1a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614f8081613d66565b82525050565b6000614f928383614f77565b60208301905092915050565b6000602082019050919050565b6000614fb682614f4b565b614fc08185614f56565b9350614fcb83614f67565b8060005b83811015614ffc578151614fe38882614f86565b9750614fee83614f9e565b925050600181019050614fcf565b5085935050505092915050565b600060a08201905061501e6000830188613ec1565b61502b6020830187614f3c565b818103604083015261503d8186614fab565b905061504c6060830185613f6b565b6150596080830184613ec1565b9695505050505050565b600060c0820190506150786000830189613f6b565b6150856020830188613ec1565b6150926040830187614f3c565b61509f6060830186614f3c565b6150ac6080830185613f6b565b6150b960a0830184613ec1565b979650505050505050565b6000815190506150d381613dae565b92915050565b6000806000606084860312156150f2576150f1613d41565b5b6000615100868287016150c4565b9350506020615111868287016150c4565b9250506040615122868287016150c4565b915050925092509256fea2646970667358221220b0d68f331eaa609159f930989bed5c5b728fa6404219a9a0e515ea5710ba20d464736f6c63430008130033
Deployed Bytecode
0x6080604052600436106103b15760003560e01c806392136913116101e7578063c17b5b8c1161010d578063e2f45605116100a0578063f25744f11161006f578063f25744f114610e4b578063f2fde38b14610e74578063f637434214610e9d578063f8b45b0514610ec8576103b8565b8063e2f4560514610da1578063e884f26014610dcc578063eb005e5f14610df7578063f11a24d314610e20576103b8565b8063d257b34f116100dc578063d257b34f14610cbf578063d3bef90614610cfc578063d85ba06314610d39578063dd62ed3e14610d64576103b8565b8063c17b5b8c14610c17578063c18bc19514610c40578063c876d0b914610c69578063c8c8ebe414610c94576103b8565b8063a200c88d11610185578063b62496f511610154578063b62496f514610b5d578063bbc0c74214610b9a578063bcfaf7aa14610bc5578063c024666814610bee576103b8565b8063a200c88d14610a7d578063a457c2d714610aba578063a9059cbb14610af7578063aacebbe314610b34576103b8565b80639a7a23d6116101c15780639a7a23d6146109d35780639c3b4fdc146109fc5780639fccce3214610a27578063a0d82dc514610a52576103b8565b80639213691314610954578063924de9b71461097f57806395d89b41146109a8576103b8565b806339be1a1f116102d7578063751039fc1161026a5780637bce5a04116102395780637bce5a04146108aa5780638095d564146108d55780638da5cb5b146108fe5780638ea5220f14610929576103b8565b8063751039fc146108005780637571336a1461082b57806375f0a87414610854578063773e0d9c1461087f576103b8565b80636a486a8e116102a65780636a486a8e146107565780636ddd17131461078157806370a08231146107ac578063715018a6146107e9576103b8565b806339be1a1f1461068657806349bd5a5e146106c35780634a62bb65146106ee5780634fbee19314610719576103b8565b80631816467f1161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f3578063313ce5671461061e5780633950935114610649576103b8565b80631816467f1461050e5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b806310d5de531161038b57806310d5de53146104505780631564336e1461048d5780631694505e146104b857806318160ddd146104e3576103b8565b806304113890146103bd57806306fdde03146103e8578063095ea7b314610413576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ef3565b6040516103df9190613c74565b60405180910390f35b3480156103f457600080fd5b506103fd610f06565b60405161040a9190613d1f565b60405180910390f35b34801561041f57600080fd5b5061043a60048036038101906104359190613dda565b610f98565b6040516104479190613c74565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613e1a565b610fbb565b6040516104849190613c74565b60405180910390f35b34801561049957600080fd5b506104a2610fdb565b6040516104af9190613c74565b60405180910390f35b3480156104c457600080fd5b506104cd610fee565b6040516104da9190613ea6565b60405180910390f35b3480156104ef57600080fd5b506104f8611012565b6040516105059190613ed0565b60405180910390f35b34801561051a57600080fd5b5061053560048036038101906105309190613e1a565b61101c565b005b34801561054357600080fd5b5061054c6110e4565b6040516105599190613ed0565b60405180910390f35b34801561056e57600080fd5b506105776110ea565b6040516105849190613ed0565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af9190613eeb565b6110f0565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190613f18565b61118b565b6040516105ea9190613c74565b60405180910390f35b3480156105ff57600080fd5b506106086111ba565b6040516106159190613f7a565b60405180910390f35b34801561062a57600080fd5b506106336111c0565b6040516106409190613fb1565b60405180910390f35b34801561065557600080fd5b50610670600480360381019061066b9190613dda565b6111c9565b60405161067d9190613c74565b60405180910390f35b34801561069257600080fd5b506106ad60048036038101906106a89190613e1a565b611200565b6040516106ba9190613c74565b60405180910390f35b3480156106cf57600080fd5b506106d8611220565b6040516106e59190613f7a565b60405180910390f35b3480156106fa57600080fd5b50610703611244565b6040516107109190613c74565b60405180910390f35b34801561072557600080fd5b50610740600480360381019061073b9190613e1a565b611257565b60405161074d9190613c74565b60405180910390f35b34801561076257600080fd5b5061076b6112ad565b6040516107789190613ed0565b60405180910390f35b34801561078d57600080fd5b506107966112b3565b6040516107a39190613c74565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613e1a565b6112c6565b6040516107e09190613ed0565b60405180910390f35b3480156107f557600080fd5b506107fe61130e565b005b34801561080c57600080fd5b50610815611322565b6040516108229190613c74565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d9190613ff8565b61134e565b005b34801561086057600080fd5b506108696113b1565b6040516108769190613f7a565b60405180910390f35b34801561088b57600080fd5b506108946113d7565b6040516108a19190613ed0565b60405180910390f35b3480156108b657600080fd5b506108bf6113dd565b6040516108cc9190613ed0565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190614038565b6113e3565b005b34801561090a57600080fd5b50610913611482565b6040516109209190613f7a565b60405180910390f35b34801561093557600080fd5b5061093e6114ac565b60405161094b9190613f7a565b60405180910390f35b34801561096057600080fd5b506109696114d2565b6040516109769190613ed0565b60405180910390f35b34801561098b57600080fd5b506109a660048036038101906109a1919061408b565b6114d8565b005b3480156109b457600080fd5b506109bd6114fd565b6040516109ca9190613d1f565b60405180910390f35b3480156109df57600080fd5b506109fa60048036038101906109f59190613ff8565b61158f565b005b348015610a0857600080fd5b50610a11611633565b604051610a1e9190613ed0565b60405180910390f35b348015610a3357600080fd5b50610a3c611639565b604051610a499190613ed0565b60405180910390f35b348015610a5e57600080fd5b50610a6761163f565b604051610a749190613ed0565b60405180910390f35b348015610a8957600080fd5b50610aa46004803603810190610a9f9190613e1a565b611645565b604051610ab19190613c74565b60405180910390f35b348015610ac657600080fd5b50610ae16004803603810190610adc9190613dda565b611665565b604051610aee9190613c74565b60405180910390f35b348015610b0357600080fd5b50610b1e6004803603810190610b199190613dda565b6116dc565b604051610b2b9190613c74565b60405180910390f35b348015610b4057600080fd5b50610b5b6004803603810190610b569190613e1a565b6116ff565b005b348015610b6957600080fd5b50610b846004803603810190610b7f9190613e1a565b6117c7565b604051610b919190613c74565b60405180910390f35b348015610ba657600080fd5b50610baf6117e6565b604051610bbc9190613c74565b60405180910390f35b348015610bd157600080fd5b50610bec6004803603810190610be79190613eeb565b6117f9565b005b348015610bfa57600080fd5b50610c156004803603810190610c109190613ff8565b61184e565b005b348015610c2357600080fd5b50610c3e6004803603810190610c399190614038565b6118ff565b005b348015610c4c57600080fd5b50610c676004803603810190610c629190613eeb565b61199e565b005b348015610c7557600080fd5b50610c7e611a39565b604051610c8b9190613c74565b60405180910390f35b348015610ca057600080fd5b50610ca9611a4c565b604051610cb69190613ed0565b60405180910390f35b348015610ccb57600080fd5b50610ce66004803603810190610ce19190613eeb565b611a52565b604051610cf39190613c74565b60405180910390f35b348015610d0857600080fd5b50610d236004803603810190610d1e9190613e1a565b611b32565b604051610d309190613ed0565b60405180910390f35b348015610d4557600080fd5b50610d4e611b4a565b604051610d5b9190613ed0565b60405180910390f35b348015610d7057600080fd5b50610d8b6004803603810190610d8691906140b8565b611b50565b604051610d989190613ed0565b60405180910390f35b348015610dad57600080fd5b50610db6611bd7565b604051610dc39190613ed0565b60405180910390f35b348015610dd857600080fd5b50610de1611bdd565b604051610dee9190613c74565b60405180910390f35b348015610e0357600080fd5b50610e1e6004803603810190610e199190613e1a565b611c09565b005b348015610e2c57600080fd5b50610e35611c6c565b604051610e429190613ed0565b60405180910390f35b348015610e5757600080fd5b50610e726004803603810190610e6d919061408b565b611c72565b005b348015610e8057600080fd5b50610e9b6004803603810190610e969190613e1a565b611c97565b005b348015610ea957600080fd5b50610eb2611d1a565b604051610ebf9190613ed0565b60405180910390f35b348015610ed457600080fd5b50610edd611d20565b604051610eea9190613ed0565b60405180910390f35b601c60009054906101000a900460ff1681565b606060038054610f1590614127565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4190614127565b8015610f8e5780601f10610f6357610100808354040283529160200191610f8e565b820191906000526020600020905b815481529060010190602001808311610f7157829003601f168201915b5050505050905090565b600080610fa3611d26565b9050610fb0818585611d2e565b600191505092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b601c60019054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b611024611ef7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60175481565b60165481565b6110f8611ef7565b670de0b6b3a76400006103e8600161110e611012565b6111189190614187565b61112291906141f8565b61112c91906141f8565b81101561116e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111659061429b565b60405180910390fd5b670de0b6b3a7640000816111829190614187565b60088190555050565b600080611196611d26565b90506111a3858285611f75565b6111ae858585612001565b60019150509392505050565b61dead81565b60006012905090565b6000806111d4611d26565b90506111f58185856111e68589611b50565b6111f091906142bb565b611d2e565b600191505092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000004ad4d53fc39fb82f3fd67c5bb4324e91457044fb81565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611316611ef7565b6113206000613248565b565b600061132c611ef7565b6000600b60006101000a81548160ff0219169083151502179055506001905090565b611356611ef7565b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601d5481565b600f5481565b6113eb611ef7565b6000600e54905083600f819055508260108190555081601181905550601154601054600f5461141a91906142bb565b61142491906142bb565b600e819055506014600e5411158061143d575080600e54105b61147c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114739061433b565b60405180910390fd5b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b6114e0611ef7565b80600b60026101000a81548160ff02191690831515021790555050565b60606004805461150c90614127565b80601f016020809104026020016040519081016040528092919081815260200182805461153890614127565b80156115855780601f1061155a57610100808354040283529160200191611585565b820191906000526020600020905b81548152906001019060200180831161156857829003601f168201915b5050505050905090565b611597611ef7565b7f0000000000000000000000004ad4d53fc39fb82f3fd67c5bb4324e91457044fb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906143cd565b60405180910390fd5b61162f828261330e565b5050565b60115481565b60185481565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b600080611670611d26565b9050600061167e8286611b50565b9050838110156116c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ba9061445f565b60405180910390fd5b6116d08286868403611d2e565b60019250505092915050565b6000806116e7611d26565b90506116f4818585612001565b600191505092915050565b611707611ef7565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b602080528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611801611ef7565b60088110611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b906144f1565b60405180910390fd5b80601d8190555050565b611856611ef7565b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118f39190613c74565b60405180910390a25050565b611907611ef7565b6000601254905083601381905550826014819055508160158190555060155460145460135461193691906142bb565b61194091906142bb565b6012819055506014601254111580611959575080601254105b611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061433b565b60405180910390fd5b50505050565b6119a6611ef7565b670de0b6b3a76400006103e860016119bc611012565b6119c69190614187565b6119d091906141f8565b6119da91906141f8565b811015611a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1390614583565b60405180910390fd5b670de0b6b3a764000081611a309190614187565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b6000611a5c611ef7565b620186a06001611a6a611012565b611a749190614187565b611a7e91906141f8565b821015611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790614615565b60405180910390fd5b60646004611acc611012565b611ad69190614187565b611ae091906141f8565b821115611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b19906146a7565b60405180910390fd5b8160098190555060019050919050565b601b6020528060005260406000206000915090505481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b6000611be7611ef7565b6000600d60006101000a81548160ff0219169083151502179055506001905090565b611c11611ef7565b6000601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60105481565b611c7a611ef7565b80601c60006101000a81548160ff02191690831515021790555050565b611c9f611ef7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0590614739565b60405180910390fd5b611d1781613248565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d94906147cb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e039061485d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611eea9190613ed0565b60405180910390a3505050565b611eff611d26565b73ffffffffffffffffffffffffffffffffffffffff16611f1d611482565b73ffffffffffffffffffffffffffffffffffffffff1614611f73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6a906148c9565b60405180910390fd5b565b6000611f818484611b50565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ffb5781811015611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490614935565b60405180910390fd5b611ffa8484848403611d2e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612067906149c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d690614a59565b60405180910390fd5b600081036120f8576120f3838360006133af565b613243565b6000602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561219f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b90506000602060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561222857503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b90506000601c60009054906101000a900460ff16156126a55782156122905743601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506126a4565b8180156122e75750601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156126a357601d54601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461233991906142bb565b431080156123925750601d54601b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461238f91906142bb565b43105b156124f557601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158061243a5750601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124f0576001601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600190505b601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125975750601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156125a157600190505b3373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161480156125e85750601c60019054906101000a900460ff165b156126a2576001601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001601e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b5b5b5b600b60009054906101000a900460ff1615612d68576126c2611482565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16141580156127305750612700611482565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127695750600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127a3575061dead73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156127bc5750600560149054906101000a900460ff16155b15612d6757600b60019054906101000a900460ff166128b657601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128765750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b6128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac90614ac5565b60405180910390fd5b5b600d60009054906101000a900460ff1615612a7e576128d3611482565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415801561295a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156129b257507f0000000000000000000000004ad4d53fc39fb82f3fd67c5bb4324e91457044fb73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15612a7d5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2f90614b7d565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b215750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612bc857600854841115612b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6290614c0f565b60405180910390fd5b600a54612b77866112c6565b85612b8291906142bb565b1115612bc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bba90614c7b565b60405180910390fd5b612d66565b602060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612c6b5750601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612cba57600854841115612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac90614d0d565b60405180910390fd5b612d65565b601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612d6457600a54612d17866112c6565b85612d2291906142bb565b1115612d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5a90614c7b565b60405180910390fd5b5b5b5b5b5b6000612d73306112c6565b905060006009548210159050808015612d985750600b60029054906101000a900460ff165b8015612db15750600560149054906101000a900460ff16155b8015612e075750602060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612e5d5750601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612eb35750601960008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ef7576001600560146101000a81548160ff021916908315150217905550612edb613625565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612fad5750601960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612fb757600090505b6000811561323057602060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561301a57506000601254115b156130e75761304760646130396012548b6138f490919063ffffffff16565b61390a90919063ffffffff16565b90506012546014548261305a9190614187565b61306491906141f8565b6017600082825461307591906142bb565b925050819055506012546015548261308d9190614187565b61309791906141f8565b601860008282546130a891906142bb565b92505081905550601254601354826130c09190614187565b6130ca91906141f8565b601660008282546130db91906142bb565b9250508190555061320c565b602060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561314257506000600e54115b1561320b5761316f6064613161600e548b6138f490919063ffffffff16565b61390a90919063ffffffff16565b9050600e54601054826131829190614187565b61318c91906141f8565b6017600082825461319d91906142bb565b92505081905550600e54601154826131b59190614187565b6131bf91906141f8565b601860008282546131d091906142bb565b92505081905550600e54600f54826131e89190614187565b6131f291906141f8565b6016600082825461320391906142bb565b925050819055505b5b6000811115613221576132208a30836133af565b5b808861322d9190614d2d565b97505b61323b8a8a8a6133af565b505050505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361341e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613415906149c7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361348d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348490614a59565b60405180910390fd5b613498838383613920565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561351e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161351590614dd3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161360c9190613ed0565b60405180910390a361361f848484613925565b50505050565b6000613630306112c6565b9050600060185460165460175461364791906142bb565b61365191906142bb565b90506000808314806136635750600082145b15613670575050506138f2565b6009548311156136805760095492505b6000600283601754866136939190614187565b61369d91906141f8565b6136a791906141f8565b905060006136be828661392a90919063ffffffff16565b905060004790506136ce82613940565b60006136e3824761392a90919063ffffffff16565b9050600061370e87613700601654856138f490919063ffffffff16565b61390a90919063ffffffff16565b905060006137398861372b601854866138f490919063ffffffff16565b61390a90919063ffffffff16565b9050600081838561374a9190614d2d565b6137549190614d2d565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516137b490614e24565b60006040518083038185875af1925050503d80600081146137f1576040519150601f19603f3d011682016040523d82523d6000602084013e6137f6565b606091505b50508098505060008711801561380c5750600081115b156138595761381b8782613b7d565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561868260175460405161385093929190614e39565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161389f90614e24565b60006040518083038185875af1925050503d80600081146138dc576040519150601f19603f3d011682016040523d82523d6000602084013e6138e1565b606091505b505080985050505050505050505050505b565b600081836139029190614187565b905092915050565b6000818361391891906141f8565b905092915050565b505050565b505050565b600081836139389190614d2d565b905092915050565b6000600267ffffffffffffffff81111561395d5761395c614e70565b5b60405190808252806020026020018201604052801561398b5781602001602082028036833780820191505090505b50905030816000815181106139a3576139a2614e9f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613a48573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613a6c9190614ee3565b81600181518110613a8057613a7f614e9f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613ae5307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d2e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613b47959493929190615009565b600060405180830381600087803b158015613b6157600080fd5b505af1158015613b75573d6000803e3d6000fd5b505050505050565b613ba8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611d2e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613c0f96959493929190615063565b60606040518083038185885af1158015613c2d573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613c5291906150d9565b5050505050565b60008115159050919050565b613c6e81613c59565b82525050565b6000602082019050613c896000830184613c65565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613cc9578082015181840152602081019050613cae565b60008484015250505050565b6000601f19601f8301169050919050565b6000613cf182613c8f565b613cfb8185613c9a565b9350613d0b818560208601613cab565b613d1481613cd5565b840191505092915050565b60006020820190508181036000830152613d398184613ce6565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d7182613d46565b9050919050565b613d8181613d66565b8114613d8c57600080fd5b50565b600081359050613d9e81613d78565b92915050565b6000819050919050565b613db781613da4565b8114613dc257600080fd5b50565b600081359050613dd481613dae565b92915050565b60008060408385031215613df157613df0613d41565b5b6000613dff85828601613d8f565b9250506020613e1085828601613dc5565b9150509250929050565b600060208284031215613e3057613e2f613d41565b5b6000613e3e84828501613d8f565b91505092915050565b6000819050919050565b6000613e6c613e67613e6284613d46565b613e47565b613d46565b9050919050565b6000613e7e82613e51565b9050919050565b6000613e9082613e73565b9050919050565b613ea081613e85565b82525050565b6000602082019050613ebb6000830184613e97565b92915050565b613eca81613da4565b82525050565b6000602082019050613ee56000830184613ec1565b92915050565b600060208284031215613f0157613f00613d41565b5b6000613f0f84828501613dc5565b91505092915050565b600080600060608486031215613f3157613f30613d41565b5b6000613f3f86828701613d8f565b9350506020613f5086828701613d8f565b9250506040613f6186828701613dc5565b9150509250925092565b613f7481613d66565b82525050565b6000602082019050613f8f6000830184613f6b565b92915050565b600060ff82169050919050565b613fab81613f95565b82525050565b6000602082019050613fc66000830184613fa2565b92915050565b613fd581613c59565b8114613fe057600080fd5b50565b600081359050613ff281613fcc565b92915050565b6000806040838503121561400f5761400e613d41565b5b600061401d85828601613d8f565b925050602061402e85828601613fe3565b9150509250929050565b60008060006060848603121561405157614050613d41565b5b600061405f86828701613dc5565b935050602061407086828701613dc5565b925050604061408186828701613dc5565b9150509250925092565b6000602082840312156140a1576140a0613d41565b5b60006140af84828501613fe3565b91505092915050565b600080604083850312156140cf576140ce613d41565b5b60006140dd85828601613d8f565b92505060206140ee85828601613d8f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061413f57607f821691505b602082108103614152576141516140f8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061419282613da4565b915061419d83613da4565b92508282026141ab81613da4565b915082820484148315176141c2576141c1614158565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061420382613da4565b915061420e83613da4565b92508261421e5761421d6141c9565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614285602f83613c9a565b915061429082614229565b604082019050919050565b600060208201905081810360008301526142b481614278565b9050919050565b60006142c682613da4565b91506142d183613da4565b92508282019050808211156142e9576142e8614158565b5b92915050565b7f4d757374206b656570206665657320617420323025206f72206c657373000000600082015250565b6000614325601d83613c9a565b9150614330826142ef565b602082019050919050565b6000602082019050818103600083015261435481614318565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006143b7603983613c9a565b91506143c28261435b565b604082019050919050565b600060208201905081810360008301526143e6816143aa565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614449602583613c9a565b9150614454826143ed565b604082019050919050565b600060208201905081810360008301526144788161443c565b9050919050565b7f43616e6e6f74206d616b65205f6d6576426c6f636b73206d6f7265207468617460008201527f2038000000000000000000000000000000000000000000000000000000000000602082015250565b60006144db602283613c9a565b91506144e68261447f565b604082019050919050565b6000602082019050818103600083015261450a816144ce565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e312500000000000000000000000000000000000000000000000000000000602082015250565b600061456d602483613c9a565b915061457882614511565b604082019050919050565b6000602082019050818103600083015261459c81614560565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145ff603583613c9a565b915061460a826145a3565b604082019050919050565b6000602082019050818103600083015261462e816145f2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20342520746f74616c20737570706c792e0000000000000000000000000000602082015250565b6000614691603283613c9a565b915061469c82614635565b604082019050919050565b600060208201905081810360008301526146c081614684565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614723602683613c9a565b915061472e826146c7565b604082019050919050565b6000602082019050818103600083015261475281614716565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147b5602483613c9a565b91506147c082614759565b604082019050919050565b600060208201905081810360008301526147e4816147a8565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614847602283613c9a565b9150614852826147eb565b604082019050919050565b600060208201905081810360008301526148768161483a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148b3602083613c9a565b91506148be8261487d565b602082019050919050565b600060208201905081810360008301526148e2816148a6565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061491f601d83613c9a565b915061492a826148e9565b602082019050919050565b6000602082019050818103600083015261494e81614912565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006149b1602583613c9a565b91506149bc82614955565b604082019050919050565b600060208201905081810360008301526149e0816149a4565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614a43602383613c9a565b9150614a4e826149e7565b604082019050919050565b60006020820190508181036000830152614a7281614a36565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614aaf601683613c9a565b9150614aba82614a79565b602082019050919050565b60006020820190508181036000830152614ade81614aa2565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614b67604983613c9a565b9150614b7282614ae5565b606082019050919050565b60006020820190508181036000830152614b9681614b5a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614bf9603583613c9a565b9150614c0482614b9d565b604082019050919050565b60006020820190508181036000830152614c2881614bec565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614c65601383613c9a565b9150614c7082614c2f565b602082019050919050565b60006020820190508181036000830152614c9481614c58565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614cf7603683613c9a565b9150614d0282614c9b565b604082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b6000614d3882613da4565b9150614d4383613da4565b9250828203905081811115614d5b57614d5a614158565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614dbd602683613c9a565b9150614dc882614d61565b604082019050919050565b60006020820190508181036000830152614dec81614db0565b9050919050565b600081905092915050565b50565b6000614e0e600083614df3565b9150614e1982614dfe565b600082019050919050565b6000614e2f82614e01565b9150819050919050565b6000606082019050614e4e6000830186613ec1565b614e5b6020830185613ec1565b614e686040830184613ec1565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614edd81613d78565b92915050565b600060208284031215614ef957614ef8613d41565b5b6000614f0784828501614ece565b91505092915050565b6000819050919050565b6000614f35614f30614f2b84614f10565b613e47565b613da4565b9050919050565b614f4581614f1a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614f8081613d66565b82525050565b6000614f928383614f77565b60208301905092915050565b6000602082019050919050565b6000614fb682614f4b565b614fc08185614f56565b9350614fcb83614f67565b8060005b83811015614ffc578151614fe38882614f86565b9750614fee83614f9e565b925050600181019050614fcf565b5085935050505092915050565b600060a08201905061501e6000830188613ec1565b61502b6020830187614f3c565b818103604083015261503d8186614fab565b905061504c6060830185613f6b565b6150596080830184613ec1565b9695505050505050565b600060c0820190506150786000830189613f6b565b6150856020830188613ec1565b6150926040830187614f3c565b61509f6060830186614f3c565b6150ac6080830185613f6b565b6150b960a0830184613ec1565b979650505050505050565b6000815190506150d381613dae565b92915050565b6000806000606084860312156150f2576150f1613d41565b5b6000615100868287016150c4565b9350506020615111868287016150c4565b9250506040615122868287016150c4565b915050925092509256fea2646970667358221220b0d68f331eaa609159f930989bed5c5b728fa6404219a9a0e515ea5710ba20d464736f6c63430008130033
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.