ERC-20
Overview
Max Total Supply
1,000,000,000 Bunny
Holders
31
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
8,485,822.079669464259163522 BunnyValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BugsBunny
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// 2023 Bugs~Bunny // https://t.me/BugsBunnyEthereum pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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 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 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 IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(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); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to 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 {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } 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; } contract BugsBunny is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address private marketingWallet; address private devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch // Seller Map mapping(address => uint256) private _holderFirstBuyTimestamp; // Blacklist Map mapping(address => bool) private _blacklist; bool public transferDelayEnabled = true; 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; // block number of opened trading uint256 launchedAt; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event 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 ); constructor() ERC20("Bugs Bunny", "Bunny") { 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 = 7; uint256 _buyLiquidityFee = 3; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 7; uint256 _sellLiquidityFee = 3; uint256 _sellDevFee = 0; uint256 totalSupply = 1 * 1e9 * 1e18; maxTransactionAmount = (totalSupply * 20) / 1000; // 2% maxWallet = (totalSupply * 10) / 1000; // 1% swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(owner()); // set as marketing wallet devWallet = address(owner()); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading(bool enable) external onlyOwner { tradingActive = enable; swapEnabled = enable; launchedAt = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function updateBuyFees( uint256 _devFee, uint256 _liquidityFee, uint256 _marketingFee ) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyMarketingFee = _marketingFee; buyTotalFees = buyDevFee + buyLiquidityFee + buyMarketingFee; } function updateSellFees( uint256 _devFee, uint256 _liquidityFee, uint256 _marketingFee ) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellMarketingFee = _marketingFee; sellTotalFees = sellDevFee + sellLiquidityFee + sellMarketingFee; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function blacklistAccount(address account, bool isBlacklisted) public onlyOwner { _blacklist[account] = isBlacklisted; } 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 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]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require( !_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens" ); if (amount == 0) { super._transfer(from, to, 0); return; } 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." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. 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; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy 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 swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(this), 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 * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 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":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"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":[{"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":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"blacklistAccount","outputs":[],"stateMutability":"nonpayable","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":[],"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":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"recipient","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":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","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":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600f60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600a81526020017f427567732042756e6e79000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f42756e6e7900000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bb8565b5080600490805190602001906200011b92919062000bb8565b5050506000620001306200068460201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001fb8160016200068c60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200027657600080fd5b505afa1580156200028b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b1919062000cd2565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200031457600080fd5b505afa15801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f919062000cd2565b6040518363ffffffff1660e01b81526004016200036e92919062000d15565b602060405180830381600087803b1580156200038957600080fd5b505af11580156200039e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c4919062000cd2565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200040c60a05160016200068c60201b60201c565b6200042160a05160016200078960201b60201c565b600060079050600060039050600080600790506000600390506000806b033b2e3c9fd0803ce800000090506103e86014826200045e919062000d7b565b6200046a919062000e0b565b6008819055506103e8600a8262000482919062000d7b565b6200048e919062000e0b565b600a81905550612710600582620004a6919062000d7b565b620004b2919062000e0b565b600981905550866011819055508560128190555084601381905550601354601254601154620004e2919062000e43565b620004ee919062000e43565b6010819055508360158190555082601681905550816017819055506017546016546015546200051e919062000e43565b6200052a919062000e43565b601481905550620005406200082a60201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005906200082a60201b60201c565b600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005f2620005e46200082a60201b60201c565b60016200085460201b60201c565b620006053060016200085460201b60201c565b6200061a61dead60016200085460201b60201c565b6200063c6200062e6200082a60201b60201c565b60016200068c60201b60201c565b6200064f3060016200068c60201b60201c565b6200066461dead60016200068c60201b60201c565b620006763382620009a160201b60201c565b5050505050505050620010d4565b600033905090565b6200069c6200068460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200072e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007259062000f01565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008646200068460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614620008f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008ed9062000f01565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000995919062000f40565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a14576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a0b9062000fad565b60405180910390fd5b62000a286000838362000b5060201b60201c565b62000a448160025462000b5560201b6200243e1790919060201c565b60028190555062000aa2816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000b5560201b6200243e1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b44919062000fe0565b60405180910390a35050565b505050565b600080828462000b66919062000e43565b90508381101562000bae576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ba5906200104d565b60405180910390fd5b8091505092915050565b82805462000bc6906200109e565b90600052602060002090601f01602090048101928262000bea576000855562000c36565b82601f1062000c0557805160ff191683800117855562000c36565b8280016001018555821562000c36579182015b8281111562000c3557825182559160200191906001019062000c18565b5b50905062000c45919062000c49565b5090565b5b8082111562000c6457600081600090555060010162000c4a565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c9a8262000c6d565b9050919050565b62000cac8162000c8d565b811462000cb857600080fd5b50565b60008151905062000ccc8162000ca1565b92915050565b60006020828403121562000ceb5762000cea62000c68565b5b600062000cfb8482850162000cbb565b91505092915050565b62000d0f8162000c8d565b82525050565b600060408201905062000d2c600083018562000d04565b62000d3b602083018462000d04565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d888262000d42565b915062000d958362000d42565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000dd15762000dd062000d4c565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e188262000d42565b915062000e258362000d42565b92508262000e385762000e3762000ddc565b5b828204905092915050565b600062000e508262000d42565b915062000e5d8362000d42565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e955762000e9462000d4c565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000ee960208362000ea0565b915062000ef68262000eb1565b602082019050919050565b6000602082019050818103600083015262000f1c8162000eda565b9050919050565b60008115159050919050565b62000f3a8162000f23565b82525050565b600060208201905062000f57600083018462000f2f565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f95601f8362000ea0565b915062000fa28262000f5d565b602082019050919050565b6000602082019050818103600083015262000fc88162000f86565b9050919050565b62000fda8162000d42565b82525050565b600060208201905062000ff7600083018462000fcf565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600062001035601b8362000ea0565b9150620010428262000ffd565b602082019050919050565b60006020820190508181036000830152620010688162001026565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620010b757607f821691505b60208210811415620010ce57620010cd6200106f565b5b50919050565b60805160a0516153db6200113260003960008181611233015281816118590152612b0a015260008181610cf101528181612ab201528181613c2001528181613d1001528181613d3701528181613dd30152613dfa01526153db6000f3fe6080604052600436106102e85760003560e01c80639213691311610190578063c18bc195116100dc578063e2f4560511610095578063f275f64b1161006f578063f275f64b14610b77578063f2fde38b14610ba0578063f637434214610bc9578063f8b45b0514610bf4576102ef565b8063e2f4560514610af6578063e884f26014610b21578063f11a24d314610b4c576102ef565b8063c18bc195146109d2578063c876d0b9146109fb578063c8c8ebe414610a26578063d257b34f14610a51578063d85ba06314610a8e578063dd62ed3e14610ab9576102ef565b8063a457c2d711610149578063b62496f511610123578063b62496f514610918578063bbc0c74214610955578063c024666814610980578063c17b5b8c146109a9576102ef565b8063a457c2d714610875578063a9059cbb146108b2578063aacebbe3146108ef576102ef565b8063921369131461077557806395d89b41146107a05780639a7a23d6146107cb5780639c3b4fdc146107f45780639fccce321461081f578063a0d82dc51461084a576102ef565b8063395093511161024f57806370a08231116102085780637571336a116101e25780637571336a146106cd5780637bce5a04146106f65780638095d564146107215780638da5cb5b1461074a576102ef565b806370a082311461064e578063715018a61461068b578063751039fc146106a2576102ef565b8063395093511461052857806349bd5a5e146105655780634a62bb65146105905780634fbee193146105bb5780636a486a8e146105f85780636ddd171314610623576102ef565b80631a8145bb116102a15780631a8145bb146104185780631f3fed8f14610443578063203e727e1461046e57806323b872dd146104975780632d5a5d34146104d4578063313ce567146104fd576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631816467f146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c1f565b6040516103169190613fb2565b60405180910390f35b34801561032b57600080fd5b506103466004803603810190610341919061406d565b610cb1565b60405161035391906140c8565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906140e3565b610ccf565b60405161039091906140c8565b60405180910390f35b3480156103a557600080fd5b506103ae610cef565b6040516103bb919061416f565b60405180910390f35b3480156103d057600080fd5b506103d9610d13565b6040516103e69190614199565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906140e3565b610d1d565b005b34801561042457600080fd5b5061042d610e74565b60405161043a9190614199565b60405180910390f35b34801561044f57600080fd5b50610458610e7a565b6040516104659190614199565b60405180910390f35b34801561047a57600080fd5b50610495600480360381019061049091906141b4565b610e80565b005b3480156104a357600080fd5b506104be60048036038101906104b991906141e1565b610faa565b6040516104cb91906140c8565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190614260565b611083565b005b34801561050957600080fd5b50610512611175565b60405161051f91906142bc565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a919061406d565b61117e565b60405161055c91906140c8565b60405180910390f35b34801561057157600080fd5b5061057a611231565b60405161058791906142e6565b60405180910390f35b34801561059c57600080fd5b506105a5611255565b6040516105b291906140c8565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906140e3565b611268565b6040516105ef91906140c8565b60405180910390f35b34801561060457600080fd5b5061060d6112be565b60405161061a9190614199565b60405180910390f35b34801561062f57600080fd5b506106386112c4565b60405161064591906140c8565b60405180910390f35b34801561065a57600080fd5b50610675600480360381019061067091906140e3565b6112d7565b6040516106829190614199565b60405180910390f35b34801561069757600080fd5b506106a061131f565b005b3480156106ae57600080fd5b506106b7611477565b6040516106c491906140c8565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190614260565b611532565b005b34801561070257600080fd5b5061070b611624565b6040516107189190614199565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190614301565b61162a565b005b34801561075657600080fd5b5061075f6116fe565b60405161076c91906142e6565b60405180910390f35b34801561078157600080fd5b5061078a611728565b6040516107979190614199565b60405180910390f35b3480156107ac57600080fd5b506107b561172e565b6040516107c29190613fb2565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed9190614260565b6117c0565b005b34801561080057600080fd5b506108096118f4565b6040516108169190614199565b60405180910390f35b34801561082b57600080fd5b506108346118fa565b6040516108419190614199565b60405180910390f35b34801561085657600080fd5b5061085f611900565b60405161086c9190614199565b60405180910390f35b34801561088157600080fd5b5061089c6004803603810190610897919061406d565b611906565b6040516108a991906140c8565b60405180910390f35b3480156108be57600080fd5b506108d960048036038101906108d4919061406d565b6119d3565b6040516108e691906140c8565b60405180910390f35b3480156108fb57600080fd5b50610916600480360381019061091191906140e3565b6119f1565b005b34801561092457600080fd5b5061093f600480360381019061093a91906140e3565b611b48565b60405161094c91906140c8565b60405180910390f35b34801561096157600080fd5b5061096a611b68565b60405161097791906140c8565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a29190614260565b611b7b565b005b3480156109b557600080fd5b506109d060048036038101906109cb9190614301565b611cbb565b005b3480156109de57600080fd5b506109f960048036038101906109f491906141b4565b611d8f565b005b348015610a0757600080fd5b50610a10611eb9565b604051610a1d91906140c8565b60405180910390f35b348015610a3257600080fd5b50610a3b611ecc565b604051610a489190614199565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a7391906141b4565b611ed2565b604051610a8591906140c8565b60405180910390f35b348015610a9a57600080fd5b50610aa3612042565b604051610ab09190614199565b60405180910390f35b348015610ac557600080fd5b50610ae06004803603810190610adb9190614354565b612048565b604051610aed9190614199565b60405180910390f35b348015610b0257600080fd5b50610b0b6120cf565b604051610b189190614199565b60405180910390f35b348015610b2d57600080fd5b50610b366120d5565b604051610b4391906140c8565b60405180910390f35b348015610b5857600080fd5b50610b61612190565b604051610b6e9190614199565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b999190614394565b612196565b005b348015610bac57600080fd5b50610bc76004803603810190610bc291906140e3565b61226b565b005b348015610bd557600080fd5b50610bde612432565b604051610beb9190614199565b60405180910390f35b348015610c0057600080fd5b50610c09612438565b604051610c169190614199565b60405180910390f35b606060038054610c2e906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5a906143f0565b8015610ca75780601f10610c7c57610100808354040283529160200191610ca7565b820191906000526020600020905b815481529060010190602001808311610c8a57829003601f168201915b5050505050905090565b6000610cc5610cbe61249c565b84846124a4565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d2561249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061446e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e8861249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e9061446e565b60405180910390fd5b670de0b6b3a76400006103e86001610f2d610d13565b610f3791906144bd565b610f419190614546565b610f4b9190614546565b811015610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f84906145e9565b60405180910390fd5b670de0b6b3a764000081610fa191906144bd565b60088190555050565b6000610fb784848461266f565b61107884610fc361249c565b6110738560405180606001604052806028815260200161535960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061102961249c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133ec9092919063ffffffff16565b6124a4565b600190509392505050565b61108b61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111119061446e565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600061122761118b61249c565b84611222856001600061119c61249c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461243e90919063ffffffff16565b6124a4565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61132761249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad9061446e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061148161249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115079061446e565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61153a61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c09061446e565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b61163261249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b89061446e565b60405180910390fd5b8260138190555081601281905550806011819055506011546012546013546116e99190614609565b6116f39190614609565b601081905550505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b60606004805461173d906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611769906143f0565b80156117b65780601f1061178b576101008083540402835291602001916117b6565b820191906000526020600020905b81548152906001019060200180831161179957829003601f168201915b5050505050905090565b6117c861249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e9061446e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd906146d1565b60405180910390fd5b6118f08282613450565b5050565b60135481565b601a5481565b60175481565b60006119c961191361249c565b846119c485604051806060016040528060258152602001615381602591396001600061193d61249c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133ec9092919063ffffffff16565b6124a4565b6001905092915050565b60006119e76119e061249c565b848461266f565b6001905092915050565b6119f961249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f9061446e565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611b8361249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c099061446e565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611caf91906140c8565b60405180910390a25050565b611cc361249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061446e565b60405180910390fd5b826017819055508160168190555080601581905550601554601654601754611d7a9190614609565b611d849190614609565b601481905550505050565b611d9761249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d9061446e565b60405180910390fd5b670de0b6b3a76400006103e86005611e3c610d13565b611e4691906144bd565b611e509190614546565b611e5a9190614546565b811015611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390614763565b60405180910390fd5b670de0b6b3a764000081611eb091906144bd565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611edc61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f629061446e565b60405180910390fd5b620186a06001611f79610d13565b611f8391906144bd565b611f8d9190614546565b821015611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc6906147f5565b60405180910390fd5b6103e86005611fdc610d13565b611fe691906144bd565b611ff09190614546565b821115612032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202990614887565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006120df61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461216e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121659061446e565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61219e61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461222d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122249061446e565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555080600b60026101000a81548160ff02191690831515021790555043601b8190555050565b61227361249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f99061446e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614919565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461244d9190614609565b905083811015612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990614985565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90614a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90614aa9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126629190614199565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d690614b3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690614bcd565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156127f35750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282990614c5f565b60405180910390fd5b600081141561284c57612847838360006134f1565b6133e7565b600b60009054906101000a900460ff1615612f0f576128696116fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156128d757506128a76116fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129105750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561294a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129635750600560149054906101000a900460ff16155b15612f0e57600b60019054906101000a900460ff16612a5d57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a1d5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5390614ccb565b60405180910390fd5b5b600f60009054906101000a900460ff1615612c2557612a7a6116fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612b0157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b5957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c245743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd690614d83565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cc85750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d6f57600854811115612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990614e15565b60405180910390fd5b600a54612d1e836112d7565b82612d299190614609565b1115612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190614e81565b60405180910390fd5b612f0d565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e125750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e6157600854811115612e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5390614f13565b60405180910390fd5b612f0c565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612f0b57600a54612ebe836112d7565b82612ec99190614609565b1115612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614e81565b60405180910390fd5b5b5b5b5b5b6000612f1a306112d7565b905060006009548210159050808015612f3f5750600b60029054906101000a900460ff165b8015612f585750600560149054906101000a900460ff16155b8015612fae5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130045750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561305a5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561309e576001600560146101000a81548160ff021916908315150217905550613082613786565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131545750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561315e57600090505b600081156133d757601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131c157506000601454115b1561328e576131ee60646131e060145488613a6d90919063ffffffff16565b613ae890919063ffffffff16565b90506014546016548261320191906144bd565b61320b9190614546565b6019600082825461321c9190614609565b925050819055506014546017548261323491906144bd565b61323e9190614546565b601a600082825461324f9190614609565b925050819055506014546015548261326791906144bd565b6132719190614546565b601860008282546132829190614609565b925050819055506133b3565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132e957506000601054115b156133b257613316606461330860105488613a6d90919063ffffffff16565b613ae890919063ffffffff16565b90506010546012548261332991906144bd565b6133339190614546565b601960008282546133449190614609565b925050819055506010546013548261335c91906144bd565b6133669190614546565b601a60008282546133779190614609565b925050819055506010546011548261338f91906144bd565b6133999190614546565b601860008282546133aa9190614609565b925050819055505b5b60008111156133c8576133c78730836134f1565b5b80856133d49190614f33565b94505b6133e28787876134f1565b505050505b505050565b6000838311158290613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b9190613fb2565b60405180910390fd5b50600083856134439190614f33565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355890614b3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c890614bcd565b60405180910390fd5b6135dc838383613b32565b61364781604051806060016040528060268152602001615333602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133ec9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136da816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461243e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516137799190614199565b60405180910390a3505050565b6000613791306112d7565b90506000601a546018546019546137a89190614609565b6137b29190614609565b90506000808314806137c45750600082145b156137d157505050613a6b565b60146009546137e091906144bd565b8311156137f95760146009546137f691906144bd565b92505b60006002836019548661380c91906144bd565b6138169190614546565b6138209190614546565b905060006138378286613b3790919063ffffffff16565b9050600047905061384782613b81565b600061385c8247613b3790919063ffffffff16565b905060006138878761387960185485613a6d90919063ffffffff16565b613ae890919063ffffffff16565b905060006138b2886138a4601a5486613a6d90919063ffffffff16565b613ae890919063ffffffff16565b905060008183856138c39190614f33565b6138cd9190614f33565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161392d90614f98565b60006040518083038185875af1925050503d806000811461396a576040519150601f19603f3d011682016040523d82523d6000602084013e61396f565b606091505b5050809850506000871180156139855750600081115b156139d2576139948782613dcd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826019546040516139c993929190614fad565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a1890614f98565b60006040518083038185875af1925050503d8060008114613a55576040519150601f19603f3d011682016040523d82523d6000602084013e613a5a565b606091505b505080985050505050505050505050505b565b600080831415613a805760009050613ae2565b60008284613a8e91906144bd565b9050828482613a9d9190614546565b14613add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad490615056565b60405180910390fd5b809150505b92915050565b6000613b2a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613eb6565b905092915050565b505050565b6000613b7983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133ec565b905092915050565b6000600267ffffffffffffffff811115613b9e57613b9d615076565b5b604051908082528060200260200182016040528015613bcc5781602001602082028036833780820191505090505b5090503081600081518110613be457613be36150a5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613c8457600080fd5b505afa158015613c98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cbc91906150e9565b81600181518110613cd057613ccf6150a5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d35307f0000000000000000000000000000000000000000000000000000000000000000846124a4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d9795949392919061520f565b600060405180830381600087803b158015613db157600080fd5b505af1158015613dc5573d6000803e3d6000fd5b505050505050565b613df8307f0000000000000000000000000000000000000000000000000000000000000000846124a4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613e5d96959493929190615269565b6060604051808303818588803b158015613e7657600080fd5b505af1158015613e8a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613eaf91906152df565b5050505050565b60008083118290613efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ef49190613fb2565b60405180910390fd5b5060008385613f0c9190614546565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f53578082015181840152602081019050613f38565b83811115613f62576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f8482613f19565b613f8e8185613f24565b9350613f9e818560208601613f35565b613fa781613f68565b840191505092915050565b60006020820190508181036000830152613fcc8184613f79565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061400482613fd9565b9050919050565b61401481613ff9565b811461401f57600080fd5b50565b6000813590506140318161400b565b92915050565b6000819050919050565b61404a81614037565b811461405557600080fd5b50565b60008135905061406781614041565b92915050565b6000806040838503121561408457614083613fd4565b5b600061409285828601614022565b92505060206140a385828601614058565b9150509250929050565b60008115159050919050565b6140c2816140ad565b82525050565b60006020820190506140dd60008301846140b9565b92915050565b6000602082840312156140f9576140f8613fd4565b5b600061410784828501614022565b91505092915050565b6000819050919050565b600061413561413061412b84613fd9565b614110565b613fd9565b9050919050565b60006141478261411a565b9050919050565b60006141598261413c565b9050919050565b6141698161414e565b82525050565b60006020820190506141846000830184614160565b92915050565b61419381614037565b82525050565b60006020820190506141ae600083018461418a565b92915050565b6000602082840312156141ca576141c9613fd4565b5b60006141d884828501614058565b91505092915050565b6000806000606084860312156141fa576141f9613fd4565b5b600061420886828701614022565b935050602061421986828701614022565b925050604061422a86828701614058565b9150509250925092565b61423d816140ad565b811461424857600080fd5b50565b60008135905061425a81614234565b92915050565b6000806040838503121561427757614276613fd4565b5b600061428585828601614022565b92505060206142968582860161424b565b9150509250929050565b600060ff82169050919050565b6142b6816142a0565b82525050565b60006020820190506142d160008301846142ad565b92915050565b6142e081613ff9565b82525050565b60006020820190506142fb60008301846142d7565b92915050565b60008060006060848603121561431a57614319613fd4565b5b600061432886828701614058565b935050602061433986828701614058565b925050604061434a86828701614058565b9150509250925092565b6000806040838503121561436b5761436a613fd4565b5b600061437985828601614022565b925050602061438a85828601614022565b9150509250929050565b6000602082840312156143aa576143a9613fd4565b5b60006143b88482850161424b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061440857607f821691505b6020821081141561441c5761441b6143c1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614458602083613f24565b915061446382614422565b602082019050919050565b600060208201905081810360008301526144878161444b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144c882614037565b91506144d383614037565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561450c5761450b61448e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061455182614037565b915061455c83614037565b92508261456c5761456b614517565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006145d3602f83613f24565b91506145de82614577565b604082019050919050565b60006020820190508181036000830152614602816145c6565b9050919050565b600061461482614037565b915061461f83614037565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146545761465361448e565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006146bb603983613f24565b91506146c68261465f565b604082019050919050565b600060208201905081810360008301526146ea816146ae565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061474d602483613f24565b9150614758826146f1565b604082019050919050565b6000602082019050818103600083015261477c81614740565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147df603583613f24565b91506147ea82614783565b604082019050919050565b6000602082019050818103600083015261480e816147d2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614871603483613f24565b915061487c82614815565b604082019050919050565b600060208201905081810360008301526148a081614864565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614903602683613f24565b915061490e826148a7565b604082019050919050565b60006020820190508181036000830152614932816148f6565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061496f601b83613f24565b915061497a82614939565b602082019050919050565b6000602082019050818103600083015261499e81614962565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a01602483613f24565b9150614a0c826149a5565b604082019050919050565b60006020820190508181036000830152614a30816149f4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a93602283613f24565b9150614a9e82614a37565b604082019050919050565b60006020820190508181036000830152614ac281614a86565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b25602583613f24565b9150614b3082614ac9565b604082019050919050565b60006020820190508181036000830152614b5481614b18565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bb7602383613f24565b9150614bc282614b5b565b604082019050919050565b60006020820190508181036000830152614be681614baa565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614c49603183613f24565b9150614c5482614bed565b604082019050919050565b60006020820190508181036000830152614c7881614c3c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614cb5601683613f24565b9150614cc082614c7f565b602082019050919050565b60006020820190508181036000830152614ce481614ca8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614d6d604983613f24565b9150614d7882614ceb565b606082019050919050565b60006020820190508181036000830152614d9c81614d60565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614dff603583613f24565b9150614e0a82614da3565b604082019050919050565b60006020820190508181036000830152614e2e81614df2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614e6b601383613f24565b9150614e7682614e35565b602082019050919050565b60006020820190508181036000830152614e9a81614e5e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614efd603683613f24565b9150614f0882614ea1565b604082019050919050565b60006020820190508181036000830152614f2c81614ef0565b9050919050565b6000614f3e82614037565b9150614f4983614037565b925082821015614f5c57614f5b61448e565b5b828203905092915050565b600081905092915050565b50565b6000614f82600083614f67565b9150614f8d82614f72565b600082019050919050565b6000614fa382614f75565b9150819050919050565b6000606082019050614fc2600083018661418a565b614fcf602083018561418a565b614fdc604083018461418a565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615040602183613f24565b915061504b82614fe4565b604082019050919050565b6000602082019050818103600083015261506f81615033565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506150e38161400b565b92915050565b6000602082840312156150ff576150fe613fd4565b5b600061510d848285016150d4565b91505092915050565b6000819050919050565b600061513b61513661513184615116565b614110565b614037565b9050919050565b61514b81615120565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61518681613ff9565b82525050565b6000615198838361517d565b60208301905092915050565b6000602082019050919050565b60006151bc82615151565b6151c6818561515c565b93506151d18361516d565b8060005b838110156152025781516151e9888261518c565b97506151f4836151a4565b9250506001810190506151d5565b5085935050505092915050565b600060a082019050615224600083018861418a565b6152316020830187615142565b818103604083015261524381866151b1565b905061525260608301856142d7565b61525f608083018461418a565b9695505050505050565b600060c08201905061527e60008301896142d7565b61528b602083018861418a565b6152986040830187615142565b6152a56060830186615142565b6152b260808301856142d7565b6152bf60a083018461418a565b979650505050505050565b6000815190506152d981614041565b92915050565b6000806000606084860312156152f8576152f7613fd4565b5b6000615306868287016152ca565b9350506020615317868287016152ca565b9250506040615328868287016152ca565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220de81a15acca22eb9c79032e7389dea1ddc4b34b6dfc29a8a599904a26017ef3e64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102e85760003560e01c80639213691311610190578063c18bc195116100dc578063e2f4560511610095578063f275f64b1161006f578063f275f64b14610b77578063f2fde38b14610ba0578063f637434214610bc9578063f8b45b0514610bf4576102ef565b8063e2f4560514610af6578063e884f26014610b21578063f11a24d314610b4c576102ef565b8063c18bc195146109d2578063c876d0b9146109fb578063c8c8ebe414610a26578063d257b34f14610a51578063d85ba06314610a8e578063dd62ed3e14610ab9576102ef565b8063a457c2d711610149578063b62496f511610123578063b62496f514610918578063bbc0c74214610955578063c024666814610980578063c17b5b8c146109a9576102ef565b8063a457c2d714610875578063a9059cbb146108b2578063aacebbe3146108ef576102ef565b8063921369131461077557806395d89b41146107a05780639a7a23d6146107cb5780639c3b4fdc146107f45780639fccce321461081f578063a0d82dc51461084a576102ef565b8063395093511161024f57806370a08231116102085780637571336a116101e25780637571336a146106cd5780637bce5a04146106f65780638095d564146107215780638da5cb5b1461074a576102ef565b806370a082311461064e578063715018a61461068b578063751039fc146106a2576102ef565b8063395093511461052857806349bd5a5e146105655780634a62bb65146105905780634fbee193146105bb5780636a486a8e146105f85780636ddd171314610623576102ef565b80631a8145bb116102a15780631a8145bb146104185780631f3fed8f14610443578063203e727e1461046e57806323b872dd146104975780632d5a5d34146104d4578063313ce567146104fd576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631816467f146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c1f565b6040516103169190613fb2565b60405180910390f35b34801561032b57600080fd5b506103466004803603810190610341919061406d565b610cb1565b60405161035391906140c8565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906140e3565b610ccf565b60405161039091906140c8565b60405180910390f35b3480156103a557600080fd5b506103ae610cef565b6040516103bb919061416f565b60405180910390f35b3480156103d057600080fd5b506103d9610d13565b6040516103e69190614199565b60405180910390f35b3480156103fb57600080fd5b50610416600480360381019061041191906140e3565b610d1d565b005b34801561042457600080fd5b5061042d610e74565b60405161043a9190614199565b60405180910390f35b34801561044f57600080fd5b50610458610e7a565b6040516104659190614199565b60405180910390f35b34801561047a57600080fd5b50610495600480360381019061049091906141b4565b610e80565b005b3480156104a357600080fd5b506104be60048036038101906104b991906141e1565b610faa565b6040516104cb91906140c8565b60405180910390f35b3480156104e057600080fd5b506104fb60048036038101906104f69190614260565b611083565b005b34801561050957600080fd5b50610512611175565b60405161051f91906142bc565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a919061406d565b61117e565b60405161055c91906140c8565b60405180910390f35b34801561057157600080fd5b5061057a611231565b60405161058791906142e6565b60405180910390f35b34801561059c57600080fd5b506105a5611255565b6040516105b291906140c8565b60405180910390f35b3480156105c757600080fd5b506105e260048036038101906105dd91906140e3565b611268565b6040516105ef91906140c8565b60405180910390f35b34801561060457600080fd5b5061060d6112be565b60405161061a9190614199565b60405180910390f35b34801561062f57600080fd5b506106386112c4565b60405161064591906140c8565b60405180910390f35b34801561065a57600080fd5b50610675600480360381019061067091906140e3565b6112d7565b6040516106829190614199565b60405180910390f35b34801561069757600080fd5b506106a061131f565b005b3480156106ae57600080fd5b506106b7611477565b6040516106c491906140c8565b60405180910390f35b3480156106d957600080fd5b506106f460048036038101906106ef9190614260565b611532565b005b34801561070257600080fd5b5061070b611624565b6040516107189190614199565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190614301565b61162a565b005b34801561075657600080fd5b5061075f6116fe565b60405161076c91906142e6565b60405180910390f35b34801561078157600080fd5b5061078a611728565b6040516107979190614199565b60405180910390f35b3480156107ac57600080fd5b506107b561172e565b6040516107c29190613fb2565b60405180910390f35b3480156107d757600080fd5b506107f260048036038101906107ed9190614260565b6117c0565b005b34801561080057600080fd5b506108096118f4565b6040516108169190614199565b60405180910390f35b34801561082b57600080fd5b506108346118fa565b6040516108419190614199565b60405180910390f35b34801561085657600080fd5b5061085f611900565b60405161086c9190614199565b60405180910390f35b34801561088157600080fd5b5061089c6004803603810190610897919061406d565b611906565b6040516108a991906140c8565b60405180910390f35b3480156108be57600080fd5b506108d960048036038101906108d4919061406d565b6119d3565b6040516108e691906140c8565b60405180910390f35b3480156108fb57600080fd5b50610916600480360381019061091191906140e3565b6119f1565b005b34801561092457600080fd5b5061093f600480360381019061093a91906140e3565b611b48565b60405161094c91906140c8565b60405180910390f35b34801561096157600080fd5b5061096a611b68565b60405161097791906140c8565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a29190614260565b611b7b565b005b3480156109b557600080fd5b506109d060048036038101906109cb9190614301565b611cbb565b005b3480156109de57600080fd5b506109f960048036038101906109f491906141b4565b611d8f565b005b348015610a0757600080fd5b50610a10611eb9565b604051610a1d91906140c8565b60405180910390f35b348015610a3257600080fd5b50610a3b611ecc565b604051610a489190614199565b60405180910390f35b348015610a5d57600080fd5b50610a786004803603810190610a7391906141b4565b611ed2565b604051610a8591906140c8565b60405180910390f35b348015610a9a57600080fd5b50610aa3612042565b604051610ab09190614199565b60405180910390f35b348015610ac557600080fd5b50610ae06004803603810190610adb9190614354565b612048565b604051610aed9190614199565b60405180910390f35b348015610b0257600080fd5b50610b0b6120cf565b604051610b189190614199565b60405180910390f35b348015610b2d57600080fd5b50610b366120d5565b604051610b4391906140c8565b60405180910390f35b348015610b5857600080fd5b50610b61612190565b604051610b6e9190614199565b60405180910390f35b348015610b8357600080fd5b50610b9e6004803603810190610b999190614394565b612196565b005b348015610bac57600080fd5b50610bc76004803603810190610bc291906140e3565b61226b565b005b348015610bd557600080fd5b50610bde612432565b604051610beb9190614199565b60405180910390f35b348015610c0057600080fd5b50610c09612438565b604051610c169190614199565b60405180910390f35b606060038054610c2e906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5a906143f0565b8015610ca75780601f10610c7c57610100808354040283529160200191610ca7565b820191906000526020600020905b815481529060010190602001808311610c8a57829003601f168201915b5050505050905090565b6000610cc5610cbe61249c565b84846124a4565b6001905092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d2561249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab9061446e565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60195481565b60185481565b610e8861249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e9061446e565b60405180910390fd5b670de0b6b3a76400006103e86001610f2d610d13565b610f3791906144bd565b610f419190614546565b610f4b9190614546565b811015610f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f84906145e9565b60405180910390fd5b670de0b6b3a764000081610fa191906144bd565b60088190555050565b6000610fb784848461266f565b61107884610fc361249c565b6110738560405180606001604052806028815260200161535960289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061102961249c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133ec9092919063ffffffff16565b6124a4565b600190509392505050565b61108b61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461111a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111119061446e565b60405180910390fd5b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006012905090565b600061122761118b61249c565b84611222856001600061119c61249c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461243e90919063ffffffff16565b6124a4565b6001905092915050565b7f000000000000000000000000c338e357ef411b99767667591a97e400cb9e4c9b81565b600b60009054906101000a900460ff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61132761249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ad9061446e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600061148161249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115079061446e565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61153a61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c09061446e565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60115481565b61163261249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146116c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b89061446e565b60405180910390fd5b8260138190555081601281905550806011819055506011546012546013546116e99190614609565b6116f39190614609565b601081905550505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b60606004805461173d906143f0565b80601f0160208091040260200160405190810160405280929190818152602001828054611769906143f0565b80156117b65780601f1061178b576101008083540402835291602001916117b6565b820191906000526020600020905b81548152906001019060200180831161179957829003601f168201915b5050505050905090565b6117c861249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184e9061446e565b60405180910390fd5b7f000000000000000000000000c338e357ef411b99767667591a97e400cb9e4c9b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118dd906146d1565b60405180910390fd5b6118f08282613450565b5050565b60135481565b601a5481565b60175481565b60006119c961191361249c565b846119c485604051806060016040528060258152602001615381602591396001600061193d61249c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133ec9092919063ffffffff16565b6124a4565b6001905092915050565b60006119e76119e061249c565b848461266f565b6001905092915050565b6119f961249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7f9061446e565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601e6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611b8361249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c099061446e565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611caf91906140c8565b60405180910390a25050565b611cc361249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d499061446e565b60405180910390fd5b826017819055508160168190555080601581905550601554601654601754611d7a9190614609565b611d849190614609565b601481905550505050565b611d9761249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611e26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1d9061446e565b60405180910390fd5b670de0b6b3a76400006103e86005611e3c610d13565b611e4691906144bd565b611e509190614546565b611e5a9190614546565b811015611e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9390614763565b60405180910390fd5b670de0b6b3a764000081611eb091906144bd565b600a8190555050565b600f60009054906101000a900460ff1681565b60085481565b6000611edc61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f629061446e565b60405180910390fd5b620186a06001611f79610d13565b611f8391906144bd565b611f8d9190614546565b821015611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc6906147f5565b60405180910390fd5b6103e86005611fdc610d13565b611fe691906144bd565b611ff09190614546565b821115612032576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202990614887565b60405180910390fd5b8160098190555060019050919050565b60105481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006120df61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461216e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121659061446e565b60405180910390fd5b6000600f60006101000a81548160ff0219169083151502179055506001905090565b60125481565b61219e61249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461222d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122249061446e565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555080600b60026101000a81548160ff02191690831515021790555043601b8190555050565b61227361249c565b73ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f99061446e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612372576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236990614919565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60165481565b600a5481565b600080828461244d9190614609565b905083811015612492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248990614985565b60405180910390fd5b8091505092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250b90614a17565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257b90614aa9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126629190614199565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d690614b3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561274f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274690614bcd565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156127f35750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b612832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282990614c5f565b60405180910390fd5b600081141561284c57612847838360006134f1565b6133e7565b600b60009054906101000a900460ff1615612f0f576128696116fe565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156128d757506128a76116fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129105750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561294a575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129635750600560149054906101000a900460ff16155b15612f0e57600b60019054906101000a900460ff16612a5d57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612a1d5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5390614ccb565b60405180910390fd5b5b600f60009054906101000a900460ff1615612c2557612a7a6116fe565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612b0157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b5957507f000000000000000000000000c338e357ef411b99767667591a97e400cb9e4c9b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612c245743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd690614d83565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cc85750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d6f57600854811115612d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0990614e15565b60405180910390fd5b600a54612d1e836112d7565b82612d299190614609565b1115612d6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6190614e81565b60405180910390fd5b612f0d565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612e125750601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e6157600854811115612e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5390614f13565b60405180910390fd5b612f0c565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612f0b57600a54612ebe836112d7565b82612ec99190614609565b1115612f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0190614e81565b60405180910390fd5b5b5b5b5b5b6000612f1a306112d7565b905060006009548210159050808015612f3f5750600b60029054906101000a900460ff165b8015612f585750600560149054906101000a900460ff16155b8015612fae5750601e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156130045750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561305a5750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561309e576001600560146101000a81548160ff021916908315150217905550613082613786565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806131545750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561315e57600090505b600081156133d757601e60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156131c157506000601454115b1561328e576131ee60646131e060145488613a6d90919063ffffffff16565b613ae890919063ffffffff16565b90506014546016548261320191906144bd565b61320b9190614546565b6019600082825461321c9190614609565b925050819055506014546017548261323491906144bd565b61323e9190614546565b601a600082825461324f9190614609565b925050819055506014546015548261326791906144bd565b6132719190614546565b601860008282546132829190614609565b925050819055506133b3565b601e60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132e957506000601054115b156133b257613316606461330860105488613a6d90919063ffffffff16565b613ae890919063ffffffff16565b90506010546012548261332991906144bd565b6133339190614546565b601960008282546133449190614609565b925050819055506010546013548261335c91906144bd565b6133669190614546565b601a60008282546133779190614609565b925050819055506010546011548261338f91906144bd565b6133999190614546565b601860008282546133aa9190614609565b925050819055505b5b60008111156133c8576133c78730836134f1565b5b80856133d49190614f33565b94505b6133e28787876134f1565b505050505b505050565b6000838311158290613434576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342b9190613fb2565b60405180910390fd5b50600083856134439190614f33565b9050809150509392505050565b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613561576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161355890614b3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135c890614bcd565b60405180910390fd5b6135dc838383613b32565b61364781604051806060016040528060268152602001615333602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546133ec9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506136da816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461243e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516137799190614199565b60405180910390a3505050565b6000613791306112d7565b90506000601a546018546019546137a89190614609565b6137b29190614609565b90506000808314806137c45750600082145b156137d157505050613a6b565b60146009546137e091906144bd565b8311156137f95760146009546137f691906144bd565b92505b60006002836019548661380c91906144bd565b6138169190614546565b6138209190614546565b905060006138378286613b3790919063ffffffff16565b9050600047905061384782613b81565b600061385c8247613b3790919063ffffffff16565b905060006138878761387960185485613a6d90919063ffffffff16565b613ae890919063ffffffff16565b905060006138b2886138a4601a5486613a6d90919063ffffffff16565b613ae890919063ffffffff16565b905060008183856138c39190614f33565b6138cd9190614f33565b9050600060198190555060006018819055506000601a81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161392d90614f98565b60006040518083038185875af1925050503d806000811461396a576040519150601f19603f3d011682016040523d82523d6000602084013e61396f565b606091505b5050809850506000871180156139855750600081115b156139d2576139948782613dcd565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186826019546040516139c993929190614fad565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a1890614f98565b60006040518083038185875af1925050503d8060008114613a55576040519150601f19603f3d011682016040523d82523d6000602084013e613a5a565b606091505b505080985050505050505050505050505b565b600080831415613a805760009050613ae2565b60008284613a8e91906144bd565b9050828482613a9d9190614546565b14613add576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ad490615056565b60405180910390fd5b809150505b92915050565b6000613b2a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613eb6565b905092915050565b505050565b6000613b7983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133ec565b905092915050565b6000600267ffffffffffffffff811115613b9e57613b9d615076565b5b604051908082528060200260200182016040528015613bcc5781602001602082028036833780820191505090505b5090503081600081518110613be457613be36150a5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015613c8457600080fd5b505afa158015613c98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613cbc91906150e9565b81600181518110613cd057613ccf6150a5565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613d35307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124a4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613d9795949392919061520f565b600060405180830381600087803b158015613db157600080fd5b505af1158015613dc5573d6000803e3d6000fd5b505050505050565b613df8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846124a4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b8152600401613e5d96959493929190615269565b6060604051808303818588803b158015613e7657600080fd5b505af1158015613e8a573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613eaf91906152df565b5050505050565b60008083118290613efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ef49190613fb2565b60405180910390fd5b5060008385613f0c9190614546565b9050809150509392505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613f53578082015181840152602081019050613f38565b83811115613f62576000848401525b50505050565b6000601f19601f8301169050919050565b6000613f8482613f19565b613f8e8185613f24565b9350613f9e818560208601613f35565b613fa781613f68565b840191505092915050565b60006020820190508181036000830152613fcc8184613f79565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061400482613fd9565b9050919050565b61401481613ff9565b811461401f57600080fd5b50565b6000813590506140318161400b565b92915050565b6000819050919050565b61404a81614037565b811461405557600080fd5b50565b60008135905061406781614041565b92915050565b6000806040838503121561408457614083613fd4565b5b600061409285828601614022565b92505060206140a385828601614058565b9150509250929050565b60008115159050919050565b6140c2816140ad565b82525050565b60006020820190506140dd60008301846140b9565b92915050565b6000602082840312156140f9576140f8613fd4565b5b600061410784828501614022565b91505092915050565b6000819050919050565b600061413561413061412b84613fd9565b614110565b613fd9565b9050919050565b60006141478261411a565b9050919050565b60006141598261413c565b9050919050565b6141698161414e565b82525050565b60006020820190506141846000830184614160565b92915050565b61419381614037565b82525050565b60006020820190506141ae600083018461418a565b92915050565b6000602082840312156141ca576141c9613fd4565b5b60006141d884828501614058565b91505092915050565b6000806000606084860312156141fa576141f9613fd4565b5b600061420886828701614022565b935050602061421986828701614022565b925050604061422a86828701614058565b9150509250925092565b61423d816140ad565b811461424857600080fd5b50565b60008135905061425a81614234565b92915050565b6000806040838503121561427757614276613fd4565b5b600061428585828601614022565b92505060206142968582860161424b565b9150509250929050565b600060ff82169050919050565b6142b6816142a0565b82525050565b60006020820190506142d160008301846142ad565b92915050565b6142e081613ff9565b82525050565b60006020820190506142fb60008301846142d7565b92915050565b60008060006060848603121561431a57614319613fd4565b5b600061432886828701614058565b935050602061433986828701614058565b925050604061434a86828701614058565b9150509250925092565b6000806040838503121561436b5761436a613fd4565b5b600061437985828601614022565b925050602061438a85828601614022565b9150509250929050565b6000602082840312156143aa576143a9613fd4565b5b60006143b88482850161424b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061440857607f821691505b6020821081141561441c5761441b6143c1565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614458602083613f24565b915061446382614422565b602082019050919050565b600060208201905081810360008301526144878161444b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144c882614037565b91506144d383614037565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561450c5761450b61448e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061455182614037565b915061455c83614037565b92508261456c5761456b614517565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b60006145d3602f83613f24565b91506145de82614577565b604082019050919050565b60006020820190508181036000830152614602816145c6565b9050919050565b600061461482614037565b915061461f83614037565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146545761465361448e565b5b828201905092915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006146bb603983613f24565b91506146c68261465f565b604082019050919050565b600060208201905081810360008301526146ea816146ae565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061474d602483613f24565b9150614758826146f1565b604082019050919050565b6000602082019050818103600083015261477c81614740565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006147df603583613f24565b91506147ea82614783565b604082019050919050565b6000602082019050818103600083015261480e816147d2565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614871603483613f24565b915061487c82614815565b604082019050919050565b600060208201905081810360008301526148a081614864565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614903602683613f24565b915061490e826148a7565b604082019050919050565b60006020820190508181036000830152614932816148f6565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b600061496f601b83613f24565b915061497a82614939565b602082019050919050565b6000602082019050818103600083015261499e81614962565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614a01602483613f24565b9150614a0c826149a5565b604082019050919050565b60006020820190508181036000830152614a30816149f4565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614a93602283613f24565b9150614a9e82614a37565b604082019050919050565b60006020820190508181036000830152614ac281614a86565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614b25602583613f24565b9150614b3082614ac9565b604082019050919050565b60006020820190508181036000830152614b5481614b18565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614bb7602383613f24565b9150614bc282614b5b565b604082019050919050565b60006020820190508181036000830152614be681614baa565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b6000614c49603183613f24565b9150614c5482614bed565b604082019050919050565b60006020820190508181036000830152614c7881614c3c565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614cb5601683613f24565b9150614cc082614c7f565b602082019050919050565b60006020820190508181036000830152614ce481614ca8565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614d6d604983613f24565b9150614d7882614ceb565b606082019050919050565b60006020820190508181036000830152614d9c81614d60565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614dff603583613f24565b9150614e0a82614da3565b604082019050919050565b60006020820190508181036000830152614e2e81614df2565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614e6b601383613f24565b9150614e7682614e35565b602082019050919050565b60006020820190508181036000830152614e9a81614e5e565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614efd603683613f24565b9150614f0882614ea1565b604082019050919050565b60006020820190508181036000830152614f2c81614ef0565b9050919050565b6000614f3e82614037565b9150614f4983614037565b925082821015614f5c57614f5b61448e565b5b828203905092915050565b600081905092915050565b50565b6000614f82600083614f67565b9150614f8d82614f72565b600082019050919050565b6000614fa382614f75565b9150819050919050565b6000606082019050614fc2600083018661418a565b614fcf602083018561418a565b614fdc604083018461418a565b949350505050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b6000615040602183613f24565b915061504b82614fe4565b604082019050919050565b6000602082019050818103600083015261506f81615033565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506150e38161400b565b92915050565b6000602082840312156150ff576150fe613fd4565b5b600061510d848285016150d4565b91505092915050565b6000819050919050565b600061513b61513661513184615116565b614110565b614037565b9050919050565b61514b81615120565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61518681613ff9565b82525050565b6000615198838361517d565b60208301905092915050565b6000602082019050919050565b60006151bc82615151565b6151c6818561515c565b93506151d18361516d565b8060005b838110156152025781516151e9888261518c565b97506151f4836151a4565b9250506001810190506151d5565b5085935050505092915050565b600060a082019050615224600083018861418a565b6152316020830187615142565b818103604083015261524381866151b1565b905061525260608301856142d7565b61525f608083018461418a565b9695505050505050565b600060c08201905061527e60008301896142d7565b61528b602083018861418a565b6152986040830187615142565b6152a56060830186615142565b6152b260808301856142d7565b6152bf60a083018461418a565b979650505050505050565b6000815190506152d981614041565b92915050565b6000806000606084860312156152f8576152f7613fd4565b5b6000615306868287016152ca565b9350506020615317868287016152ca565b9250506040615328868287016152ca565b915050925092509256fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220de81a15acca22eb9c79032e7389dea1ddc4b34b6dfc29a8a599904a26017ef3e64736f6c63430008090033
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.