ERC-20
Overview
Max Total Supply
100,000,000 WOKE
Holders
368
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 WOKEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WOKE
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } contract WOKE is ERC20, Ownable { using SafeMath for uint256; address public uniswapV2Pair; bool public tradingActive = false; IUniswapV2Router02 public uniswapV2Router; address private routerAddress; bool private swapping; address public marketingWallet; uint256 public swapTokensAtAmount; uint256 public swapMinimum; bool public swapEnabled = true; mapping(address => bool) public excludedFromMaxTx; uint256 public maxTxAmount; uint256 public maxWalletAmount; bool public limitsEnabled = true; bool public antiContractDumpEnabled = true; mapping(uint256 => uint256) private _swapBlocks; bool public blacklistDisabled = false; mapping(address => bool) public blacklistedWallets; uint256 public buyFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; uint256 private tokensForMarketing; uint256 private tokensForLiquidity; mapping(address => bool) private _excludedFromFees; mapping(address => bool) public ammPairs; constructor() ERC20("Woke Mind Virus", "WOKE") { uint256 totalSupply = 100000000 * 1e18; routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( routerAddress ); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); ammPairs[uniswapV2Pair] = true; uint256 _buyMarketingFee = 20; uint256 _buyLiquidityFee = 0; uint256 _sellMarketingFee = 30; uint256 _sellLiquidityFee = 0; swapTokensAtAmount = (totalSupply * 5) / 1000; swapMinimum = (totalSupply * 5) / 1000; buyDevFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; sellDevFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; buyFees = buyDevFee + buyLiquidityFee; sellFees = sellDevFee + sellLiquidityFee; marketingWallet = address(owner()); excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); limitsEnabled = true; maxTxAmount = 2000000 * 1e18; maxWalletAmount = 2000000 * 1e18; excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(address(_uniswapV2Router), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); _mint(owner(), totalSupply); } receive() external payable {} function launch() public onlyOwner { tradingActive = true; } function changeSwapBackRestriction(bool newVal) public onlyOwner { antiContractDumpEnabled = newVal; } function disableLimits() external onlyOwner returns (bool) { limitsEnabled = false; return true; } function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapTokensAtAmount = newAmount; return true; } function setSwapMinimum(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 4) / 100, "Swap amount cannot be higher than 4% total supply." ); swapMinimum = newAmount; return true; } function setSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function setMaxTxAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxTxAmount = newNum * (10 ** 18); } function setMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18 ); maxWalletAmount = newNum * (10 ** 18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { excludedFromMaxTx[updAds] = isEx; } function setBuyFees( uint256 _marketingFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _marketingFee; buyLiquidityFee = _liquidityFee; buyFees = buyDevFee + buyLiquidityFee; require(buyFees <= 20); } function setSellFees( uint256 _marketingFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _marketingFee; sellLiquidityFee = _liquidityFee; sellFees = sellDevFee + sellLiquidityFee; require(sellFees <= 60); } function excludeFromFees(address account, bool excluded) public onlyOwner { _excludedFromFees[account] = excluded; } function addPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAMMPair(pair, value); } function _setAMMPair(address pair, bool value) private { ammPairs[pair] = value; } function setFeesWallet(address _wallet) external onlyOwner { marketingWallet = _wallet; } function isExcludedFromFees(address account) public view returns (bool) { return _excludedFromFees[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(!blacklistedWallets[from], "Blacklisted"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && !swapping && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _excludedFromFees[from] || _excludedFromFees[to], "Trading is not active." ); } if ( ammPairs[from] && !excludedFromMaxTx[to] ) { require( amount <= maxTxAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } else if ( ammPairs[to] && !excludedFromMaxTx[from] ) { require( amount <= maxTxAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!excludedFromMaxTx[to]) { require( amount + balanceOf(to) <= maxWalletAmount, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapMinimum; if ( canSwap && swapEnabled && !swapping && !ammPairs[from] && !_excludedFromFees[from] && !_excludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; if (_excludedFromFees[from] || _excludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (ammPairs[to] && sellFees > 0) { fees = amount.mul(sellFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellFees; tokensForMarketing += (fees * sellDevFee) / sellFees; } else if (ammPairs[from] && buyFees > 0) { fees = amount.mul(buyFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyFees; tokensForMarketing += (fees * buyDevFee) / buyFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, marketingWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing; bool success; if (contractBalance == 0) { return; } if (totalTokensToSwap == 0) { totalTokensToSwap = 1; } uint256 amountToSwap = swapTokensAtAmount; _swapBlocks[block.number]++; if (antiContractDumpEnabled) { if(_swapBlocks[block.number] >= 2) { return; } } if (contractBalance > amountToSwap) { contractBalance = amountToSwap; } 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; if (totalTokensToSwap > 0) { ethForMarketing = ethBalance.mul(tokensForMarketing).div( totalTokensToSwap ); } uint256 ethForLiquidity = ethBalance - ethForMarketing; tokensForLiquidity = 0; tokensForMarketing = 0; if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); } (success,) = address(marketingWallet).call{ value: address(this).balance }(""); } function withdrawCloggedTokens() external { require(owner() == _msgSender() || marketingWallet == _msgSender(), "Caller is not the owner or marketing wallet"); super._transfer(address(this), address(marketingWallet), balanceOf(address(this))); } function swapTokens() public onlyOwner { bool success; swapTokensForEth(balanceOf(address(this))); (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function sendEth() external { bool success; (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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"addPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ammPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"antiContractDumpEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blacklistDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklistedWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"newVal","type":"bool"}],"name":"changeSwapBackRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludedFromMaxTx","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellFees","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":"sendEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"setFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapMinimum","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapMinimum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"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":[],"name":"withdrawCloggedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600660146101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055506001601060006101000a81548160ff0219169083151502179055506001601060016101000a81548160ff0219169083151502179055506000601260006101000a81548160ff0219169083151502179055503480156200009857600080fd5b506040518060400160405280600f81526020017f576f6b65204d696e6420566972757300000000000000000000000000000000008152506040518060400160405280600481526020017f574f4b4500000000000000000000000000000000000000000000000000000000815250816003908162000116919062000cc2565b50806004908162000128919062000cc2565b5050506200014b6200013f6200067260201b60201c565b6200067a60201b60201c565b60006a52b7d2dcc80cd2e40000009050737a250d5630b4cf539739df2c5dacb4c659f2488d600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000264573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028a919062000e13565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002f2573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000318919062000e13565b6040518363ffffffff1660e01b81526004016200033792919062000e56565b6020604051808303816000875af115801562000357573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037d919062000e13565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601d6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600060149050600080601e905060006103e860058762000458919062000eb2565b62000464919062000f42565b600a819055506103e86005876200047c919062000eb2565b62000488919062000f42565b600b8190555083601581905550826016819055508160188190555080601981905550601654601554620004bc919062000f7a565b601481905550601954601854620004d4919062000f7a565b601781905550620004ea6200074060201b60201c565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200054c6200053e6200074060201b60201c565b60016200076a60201b60201c565b6200055f3060016200076a60201b60201c565b6200057461dead60016200076a60201b60201c565b6001601060006101000a81548160ff0219169083151502179055506a01a784379d99db42000000600e819055506a01a784379d99db42000000600f81905550620005d5620005c76200074060201b60201c565b6001620007d560201b60201c565b620005e8306001620007d560201b60201c565b620005fd61dead6001620007d560201b60201c565b62000610856001620007d560201b60201c565b62000645600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620007d560201b60201c565b62000666620006596200074060201b60201c565b876200084060201b60201c565b505050505050620010fa565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200077a620009ad60201b60201c565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b620007e5620009ad60201b60201c565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008a99062001038565b60405180910390fd5b620008c66000838362000a3e60201b60201c565b8060026000828254620008da919062000f7a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200098d91906200106b565b60405180910390a3620009a96000838362000a4360201b60201c565b5050565b620009bd6200067260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620009e36200074060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000a3c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3390620010d8565b60405180910390fd5b565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000aca57607f821691505b60208210810362000ae05762000adf62000a82565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000b4a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b0b565b62000b56868362000b0b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ba362000b9d62000b978462000b6e565b62000b78565b62000b6e565b9050919050565b6000819050919050565b62000bbf8362000b82565b62000bd762000bce8262000baa565b84845462000b18565b825550505050565b600090565b62000bee62000bdf565b62000bfb81848462000bb4565b505050565b5b8181101562000c235762000c1760008262000be4565b60018101905062000c01565b5050565b601f82111562000c725762000c3c8162000ae6565b62000c478462000afb565b8101602085101562000c57578190505b62000c6f62000c668562000afb565b83018262000c00565b50505b505050565b600082821c905092915050565b600062000c976000198460080262000c77565b1980831691505092915050565b600062000cb2838362000c84565b9150826002028217905092915050565b62000ccd8262000a48565b67ffffffffffffffff81111562000ce95762000ce862000a53565b5b62000cf5825462000ab1565b62000d0282828562000c27565b600060209050601f83116001811462000d3a576000841562000d25578287015190505b62000d31858262000ca4565b86555062000da1565b601f19841662000d4a8662000ae6565b60005b8281101562000d745784890151825560018201915060208501945060208101905062000d4d565b8683101562000d94578489015162000d90601f89168262000c84565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ddb8262000dae565b9050919050565b62000ded8162000dce565b811462000df957600080fd5b50565b60008151905062000e0d8162000de2565b92915050565b60006020828403121562000e2c5762000e2b62000da9565b5b600062000e3c8482850162000dfc565b91505092915050565b62000e508162000dce565b82525050565b600060408201905062000e6d600083018562000e45565b62000e7c602083018462000e45565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ebf8262000b6e565b915062000ecc8362000b6e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000f085762000f0762000e83565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000f4f8262000b6e565b915062000f5c8362000b6e565b92508262000f6f5762000f6e62000f13565b5b828204905092915050565b600062000f878262000b6e565b915062000f948362000b6e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000fcc5762000fcb62000e83565b5b828201905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001020601f8362000fd7565b91506200102d8262000fe8565b602082019050919050565b60006020820190508181036000830152620010538162001011565b9050919050565b620010658162000b6e565b82525050565b60006020820190506200108260008301846200105a565b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010c060208362000fd7565b9150620010cd8262001088565b602082019050919050565b60006020820190508181036000830152620010f381620010b1565b9050919050565b61446d806200110a6000396000f3fe60806040526004361061031e5760003560e01c806395d89b41116101ab578063bbc0c742116100f7578063e4748b9e11610095578063f2fde38b1161006f578063f2fde38b14610bd7578063f637434214610c00578063f8821a6214610c2b578063f928364c14610c5657610325565b8063e4748b9e14610b58578063ec28438a14610b83578063f11a24d314610bac57610325565b8063dd62ed3e116100d1578063dd62ed3e14610a9c578063e01af92c14610ad9578063e0f3ccf514610b02578063e2f4560514610b2d57610325565b8063bbc0c74214610a1f578063c024666814610a4a578063c20c43bf14610a7357610325565b8063a457c2d711610164578063a9059cbb1161013e578063a9059cbb14610951578063aa4bde281461098e578063afa4f3b2146109b9578063b2d8f208146109f657610325565b8063a457c2d7146108c0578063a72905a2146108fd578063a85591bf1461093a57610325565b806395d89b41146107c05780639c3b4fdc146107eb5780639fd8234e14610816578063a0d82dc51461083f578063a2d83c421461086a578063a2edb2c31461089557610325565b806343d4f92b1161026a578063715018a61161022357806375f0a874116101fd57806375f0a874146107165780637e26cafa146107415780638c0b5e221461076a5780638da5cb5b1461079557610325565b8063715018a6146106bf57806373d00224146106d65780637571336a146106ed57610325565b806343d4f92b1461058957806349bd5a5e146105b25780634fbee193146105dd57806354f9c98c1461061a5780636ddd17131461065757806370a082311461068257610325565b806323b872dd116102d7578063313ce567116102b1578063313ce567146104b95780633582ad23146104e4578063395093511461050f578063418eeb291461054c57610325565b806323b872dd1461041657806327a14fc2146104535780632b5ba3b91461047c57610325565b806301339c211461032a57806306e99fef1461034157806306fdde0314610358578063095ea7b3146103835780631694505e146103c057806318160ddd146103eb57610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c81565b005b34801561034d57600080fd5b50610356610ca6565b005b34801561036457600080fd5b5061036d610d39565b60405161037a9190613198565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190613253565b610dcb565b6040516103b791906132ae565b60405180910390f35b3480156103cc57600080fd5b506103d5610dee565b6040516103e29190613328565b60405180910390f35b3480156103f757600080fd5b50610400610e14565b60405161040d9190613352565b60405180910390f35b34801561042257600080fd5b5061043d6004803603810190610438919061336d565b610e1e565b60405161044a91906132ae565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906133c0565b610e4d565b005b34801561048857600080fd5b506104a3600480360381019061049e91906133ed565b610eb2565b6040516104b091906132ae565b60405180910390f35b3480156104c557600080fd5b506104ce610ed2565b6040516104db9190613436565b60405180910390f35b3480156104f057600080fd5b506104f9610edb565b60405161050691906132ae565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190613253565b610eee565b60405161054391906132ae565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906133c0565b610f25565b60405161058091906132ae565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906133ed565b611005565b005b3480156105be57600080fd5b506105c7611051565b6040516105d49190613460565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff91906133ed565b611077565b60405161061191906132ae565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c91906133ed565b6110cd565b60405161064e91906132ae565b60405180910390f35b34801561066357600080fd5b5061066c6110ed565b60405161067991906132ae565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a491906133ed565b611100565b6040516106b69190613352565b60405180910390f35b3480156106cb57600080fd5b506106d4611148565b005b3480156106e257600080fd5b506106eb61115c565b005b3480156106f957600080fd5b50610714600480360381019061070f91906134a7565b611208565b005b34801561072257600080fd5b5061072b61126b565b6040516107389190613460565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906134a7565b611291565b005b34801561077657600080fd5b5061077f611337565b60405161078c9190613352565b60405180910390f35b3480156107a157600080fd5b506107aa61133d565b6040516107b79190613460565b60405180910390f35b3480156107cc57600080fd5b506107d5611367565b6040516107e29190613198565b60405180910390f35b3480156107f757600080fd5b506108006113f9565b60405161080d9190613352565b60405180910390f35b34801561082257600080fd5b5061083d600480360381019061083891906134e7565b6113ff565b005b34801561084b57600080fd5b5061085461143f565b6040516108619190613352565b60405180910390f35b34801561087657600080fd5b5061087f611445565b60405161088c91906132ae565b60405180910390f35b3480156108a157600080fd5b506108aa611458565b6040516108b791906132ae565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e29190613253565b61146b565b6040516108f491906132ae565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f91906133ed565b6114e2565b60405161093191906132ae565b60405180910390f35b34801561094657600080fd5b5061094f611502565b005b34801561095d57600080fd5b5061097860048036038101906109739190613253565b611614565b60405161098591906132ae565b60405180910390f35b34801561099a57600080fd5b506109a3611637565b6040516109b09190613352565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db91906133c0565b61163d565b6040516109ed91906132ae565b60405180910390f35b348015610a0257600080fd5b50610a1d6004803603810190610a1891906134e7565b61171d565b005b348015610a2b57600080fd5b50610a3461175c565b604051610a4191906132ae565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c91906134a7565b61176f565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a959190613527565b6117d2565b005b348015610aa857600080fd5b50610ac36004803603810190610abe9190613554565b6117f7565b604051610ad09190613352565b60405180910390f35b348015610ae557600080fd5b50610b006004803603810190610afb9190613527565b61187e565b005b348015610b0e57600080fd5b50610b176118a3565b604051610b249190613352565b60405180910390f35b348015610b3957600080fd5b50610b426118a9565b604051610b4f9190613352565b60405180910390f35b348015610b6457600080fd5b50610b6d6118af565b604051610b7a9190613352565b60405180910390f35b348015610b8f57600080fd5b50610baa6004803603810190610ba591906133c0565b6118b5565b005b348015610bb857600080fd5b50610bc161191a565b604051610bce9190613352565b60405180910390f35b348015610be357600080fd5b50610bfe6004803603810190610bf991906133ed565b611920565b005b348015610c0c57600080fd5b50610c156119a3565b604051610c229190613352565b60405180910390f35b348015610c3757600080fd5b50610c406119a9565b604051610c4d9190613352565b60405180910390f35b348015610c6257600080fd5b50610c6b6119af565b604051610c7891906132ae565b60405180910390f35b610c896119db565b6001600660146101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610cee906135c5565b60006040518083038185875af1925050503d8060008114610d2b576040519150601f19603f3d011682016040523d82523d6000602084013e610d30565b606091505b50508091505050565b606060038054610d4890613609565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7490613609565b8015610dc15780601f10610d9657610100808354040283529160200191610dc1565b820191906000526020600020905b815481529060010190602001808311610da457829003601f168201915b5050505050905090565b600080610dd6611a59565b9050610de3818585611a61565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610e29611a59565b9050610e36858285611c2a565b610e41858585611cb6565b60019150509392505050565b610e556119db565b670de0b6b3a76400006103e86001610e6b610e14565b610e759190613669565b610e7f91906136f2565b610e8991906136f2565b811015610e9557600080fd5b670de0b6b3a764000081610ea99190613669565b600f8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b601060009054906101000a900460ff1681565b600080610ef9611a59565b9050610f1a818585610f0b85896117f7565b610f159190613723565b611a61565b600191505092915050565b6000610f2f6119db565b620186a06001610f3d610e14565b610f479190613669565b610f5191906136f2565b821015610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906137eb565b60405180910390fd5b60646004610f9f610e14565b610fa99190613669565b610fb391906136f2565b821115610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec9061387d565b60405180910390fd5b81600b8190555060019050919050565b61100d6119db565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600c60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111506119db565b61115a60006127ac565b565b6111646119db565b600061117761117230611100565b612872565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516111bd906135c5565b60006040518083038185875af1925050503d80600081146111fa576040519150601f19603f3d011682016040523d82523d6000602084013e6111ff565b606091505b50508091505050565b6112106119db565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112996119db565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113209061390f565b60405180910390fd5b6113338282612ab5565b5050565b600e5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461137690613609565b80601f01602080910402602001604051908101604052809291908181526020018280546113a290613609565b80156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b5050505050905090565b60155481565b6114076119db565b81601881905550806019819055506019546018546114259190613723565b601781905550603c601754111561143b57600080fd5b5050565b60185481565b601060019054906101000a900460ff1681565b601260009054906101000a900460ff1681565b600080611476611a59565b9050600061148482866117f7565b9050838110156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c0906139a1565b60405180910390fd5b6114d68286868403611a61565b60019250505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b61150a611a59565b73ffffffffffffffffffffffffffffffffffffffff1661152861133d565b73ffffffffffffffffffffffffffffffffffffffff16148061159e575061154d611a59565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490613a33565b60405180910390fd5b61161230600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661160d30611100565b612b10565b565b60008061161f611a59565b905061162c818585611cb6565b600191505092915050565b600f5481565b60006116476119db565b620186a06001611655610e14565b61165f9190613669565b61166991906136f2565b8210156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a2906137eb565b60405180910390fd5b606460046116b7610e14565b6116c19190613669565b6116cb91906136f2565b82111561170d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117049061387d565b60405180910390fd5b81600a8190555060019050919050565b6117256119db565b81601581905550806016819055506016546015546117439190613723565b60148190555060148054111561175857600080fd5b5050565b600660149054906101000a900460ff1681565b6117776119db565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117da6119db565b80601060016101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118866119db565b80600c60006101000a81548160ff02191690831515021790555050565b60175481565b600a5481565b60145481565b6118bd6119db565b670de0b6b3a76400006103e860016118d3610e14565b6118dd9190613669565b6118e791906136f2565b6118f191906136f2565b8110156118fd57600080fd5b670de0b6b3a7640000816119119190613669565b600e8190555050565b60165481565b6119286119db565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90613ac5565b60405180910390fd5b6119a0816127ac565b50565b60195481565b600b5481565b60006119b96119db565b6000601060006101000a81548160ff0219169083151502179055506001905090565b6119e3611a59565b73ffffffffffffffffffffffffffffffffffffffff16611a0161133d565b73ffffffffffffffffffffffffffffffffffffffff1614611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613b31565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3690613c55565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c1d9190613352565b60405180910390a3505050565b6000611c3684846117f7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611cb05781811015611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990613cc1565b60405180910390fd5b611caf8484848403611a61565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90613de5565b60405180910390fd5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613e51565b60405180910390fd5b60008103611e3a57611e3583836000612b10565b6127a7565b601060009054906101000a900460ff161561233557611e5761133d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ec55750611e9561133d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ede5750600860149054906101000a900460ff16155b8015611f175750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f51575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561233457600660149054906101000a900460ff1661204b57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061200b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190613ebd565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120ee5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561219557600e54811115612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90613f4f565b60405180910390fd5b600f5461214483611100565b8261214f9190613723565b1115612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790613fbb565b60405180910390fd5b612333565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122385750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561228757600e54811115612282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122799061404d565b60405180910390fd5b612332565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661233157600f546122e483611100565b826122ef9190613723565b1115612330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232790613fbb565b60405180910390fd5b5b5b5b5b5b600061234030611100565b90506000600b5482101590508080156123655750600c60009054906101000a900460ff165b801561237e5750600860149054906101000a900460ff16155b80156123d45750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561242a5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124805750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124c4576001600860146101000a81548160ff0219169083151502179055506124a8612d86565b6000600860146101000a81548160ff0219169083151502179055505b6000600860149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061257a5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561258457600090505b6000811561279757601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125e757506000601754115b1561268157612614606461260660175488612fb390919063ffffffff16565b612fc990919063ffffffff16565b9050601754601954826126279190613669565b61263191906136f2565b601b60008282546126429190613723565b925050819055506017546018548261265a9190613669565b61266491906136f2565b601a60008282546126759190613723565b92505081905550612773565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126dc57506000601454115b156127725761270960646126fb60145488612fb390919063ffffffff16565b612fc990919063ffffffff16565b90506014546016548261271c9190613669565b61272691906136f2565b601b60008282546127379190613723565b925050819055506014546015548261274f9190613669565b61275991906136f2565b601a600082825461276a9190613723565b925050819055505b5b600081111561278857612787873083612b10565b5b8085612794919061406d565b94505b6127a2878787612b10565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff81111561288f5761288e6140a1565b5b6040519080825280602002602001820160405280156128bd5781602001602082028036833780820191505090505b50905030816000815181106128d5576128d46140d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561297c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a09190614114565b816001815181106129b4576129b36140d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a1b30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a61565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a7f95949392919061423a565b600060405180830381600087803b158015612a9957600080fd5b505af1158015612aad573d6000803e3d6000fd5b505050505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be590613de5565b60405180910390fd5b612bf9838383612fdf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7690614306565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d6d9190613352565b60405180910390a3612d80848484612fe4565b50505050565b6000612d9130611100565b90506000601a54601b54612da59190613723565b90506000808303612db857505050612fb1565b60008203612dc557600191505b6000600a549050601160004381526020019081526020016000206000815480929190612df090614326565b9190505550601060019054906101000a900460ff1615612e2f576002601160004381526020019081526020016000205410612e2e5750505050612fb1565b5b80841115612e3b578093505b6000600284601b5487612e4e9190613669565b612e5891906136f2565b612e6291906136f2565b90506000612e798287612fe990919063ffffffff16565b90506000479050612e8982612872565b6000612e9e8247612fe990919063ffffffff16565b905060008190506000881115612ed857612ed588612ec7601a5485612fb390919063ffffffff16565b612fc990919063ffffffff16565b90505b60008183612ee6919061406d565b90506000601b819055506000601a81905550600086118015612f085750600081115b15612f1857612f178682612fff565b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612f5e906135c5565b60006040518083038185875af1925050503d8060008114612f9b576040519150601f19603f3d011682016040523d82523d6000602084013e612fa0565b606091505b505080985050505050505050505050505b565b60008183612fc19190613669565b905092915050565b60008183612fd791906136f2565b905092915050565b505050565b505050565b60008183612ff7919061406d565b905092915050565b61302c30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a61565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016130b59695949392919061436e565b60606040518083038185885af11580156130d3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906130f891906143e4565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561313957808201518184015260208101905061311e565b83811115613148576000848401525b50505050565b6000601f19601f8301169050919050565b600061316a826130ff565b613174818561310a565b935061318481856020860161311b565b61318d8161314e565b840191505092915050565b600060208201905081810360008301526131b2818461315f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131ea826131bf565b9050919050565b6131fa816131df565b811461320557600080fd5b50565b600081359050613217816131f1565b92915050565b6000819050919050565b6132308161321d565b811461323b57600080fd5b50565b60008135905061324d81613227565b92915050565b6000806040838503121561326a576132696131ba565b5b600061327885828601613208565b92505060206132898582860161323e565b9150509250929050565b60008115159050919050565b6132a881613293565b82525050565b60006020820190506132c3600083018461329f565b92915050565b6000819050919050565b60006132ee6132e96132e4846131bf565b6132c9565b6131bf565b9050919050565b6000613300826132d3565b9050919050565b6000613312826132f5565b9050919050565b61332281613307565b82525050565b600060208201905061333d6000830184613319565b92915050565b61334c8161321d565b82525050565b60006020820190506133676000830184613343565b92915050565b600080600060608486031215613386576133856131ba565b5b600061339486828701613208565b93505060206133a586828701613208565b92505060406133b68682870161323e565b9150509250925092565b6000602082840312156133d6576133d56131ba565b5b60006133e48482850161323e565b91505092915050565b600060208284031215613403576134026131ba565b5b600061341184828501613208565b91505092915050565b600060ff82169050919050565b6134308161341a565b82525050565b600060208201905061344b6000830184613427565b92915050565b61345a816131df565b82525050565b60006020820190506134756000830184613451565b92915050565b61348481613293565b811461348f57600080fd5b50565b6000813590506134a18161347b565b92915050565b600080604083850312156134be576134bd6131ba565b5b60006134cc85828601613208565b92505060206134dd85828601613492565b9150509250929050565b600080604083850312156134fe576134fd6131ba565b5b600061350c8582860161323e565b925050602061351d8582860161323e565b9150509250929050565b60006020828403121561353d5761353c6131ba565b5b600061354b84828501613492565b91505092915050565b6000806040838503121561356b5761356a6131ba565b5b600061357985828601613208565b925050602061358a85828601613208565b9150509250929050565b600081905092915050565b50565b60006135af600083613594565b91506135ba8261359f565b600082019050919050565b60006135d0826135a2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061362157607f821691505b602082108103613634576136336135da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136748261321d565b915061367f8361321d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b8576136b761363a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136fd8261321d565b91506137088361321d565b925082613718576137176136c3565b5b828204905092915050565b600061372e8261321d565b91506137398361321d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561376e5761376d61363a565b5b828201905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006137d560358361310a565b91506137e082613779565b604082019050919050565b60006020820190508181036000830152613804816137c8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20342520746f74616c20737570706c792e0000000000000000000000000000602082015250565b600061386760328361310a565b91506138728261380b565b604082019050919050565b600060208201905081810360008301526138968161385a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138f960398361310a565b91506139048261389d565b604082019050919050565b60006020820190508181036000830152613928816138ec565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061398b60258361310a565b91506139968261392f565b604082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560008201527f74696e672077616c6c6574000000000000000000000000000000000000000000602082015250565b6000613a1d602b8361310a565b9150613a28826139c1565b604082019050919050565b60006020820190508181036000830152613a4c81613a10565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aaf60268361310a565b9150613aba82613a53565b604082019050919050565b60006020820190508181036000830152613ade81613aa2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b1b60208361310a565b9150613b2682613ae5565b602082019050919050565b60006020820190508181036000830152613b4a81613b0e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613bad60248361310a565b9150613bb882613b51565b604082019050919050565b60006020820190508181036000830152613bdc81613ba0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c3f60228361310a565b9150613c4a82613be3565b604082019050919050565b60006020820190508181036000830152613c6e81613c32565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613cab601d8361310a565b9150613cb682613c75565b602082019050919050565b60006020820190508181036000830152613cda81613c9e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d3d60258361310a565b9150613d4882613ce1565b604082019050919050565b60006020820190508181036000830152613d6c81613d30565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dcf60238361310a565b9150613dda82613d73565b604082019050919050565b60006020820190508181036000830152613dfe81613dc2565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000613e3b600b8361310a565b9150613e4682613e05565b602082019050919050565b60006020820190508181036000830152613e6a81613e2e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613ea760168361310a565b9150613eb282613e71565b602082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613f3960358361310a565b9150613f4482613edd565b604082019050919050565b60006020820190508181036000830152613f6881613f2c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613fa560138361310a565b9150613fb082613f6f565b602082019050919050565b60006020820190508181036000830152613fd481613f98565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061403760368361310a565b915061404282613fdb565b604082019050919050565b600060208201905081810360008301526140668161402a565b9050919050565b60006140788261321d565b91506140838361321d565b9250828210156140965761409561363a565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061410e816131f1565b92915050565b60006020828403121561412a576141296131ba565b5b6000614138848285016140ff565b91505092915050565b6000819050919050565b600061416661416161415c84614141565b6132c9565b61321d565b9050919050565b6141768161414b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141b1816131df565b82525050565b60006141c383836141a8565b60208301905092915050565b6000602082019050919050565b60006141e78261417c565b6141f18185614187565b93506141fc83614198565b8060005b8381101561422d57815161421488826141b7565b975061421f836141cf565b925050600181019050614200565b5085935050505092915050565b600060a08201905061424f6000830188613343565b61425c602083018761416d565b818103604083015261426e81866141dc565b905061427d6060830185613451565b61428a6080830184613343565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006142f060268361310a565b91506142fb82614294565b604082019050919050565b6000602082019050818103600083015261431f816142e3565b9050919050565b60006143318261321d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143635761436261363a565b5b600182019050919050565b600060c0820190506143836000830189613451565b6143906020830188613343565b61439d604083018761416d565b6143aa606083018661416d565b6143b76080830185613451565b6143c460a0830184613343565b979650505050505050565b6000815190506143de81613227565b92915050565b6000806000606084860312156143fd576143fc6131ba565b5b600061440b868287016143cf565b935050602061441c868287016143cf565b925050604061442d868287016143cf565b915050925092509256fea2646970667358221220aba6d0f66ea54499ea55a64b7fd5fc7c718388de70ba30300e35c795b808949b64736f6c634300080f0033
Deployed Bytecode
0x60806040526004361061031e5760003560e01c806395d89b41116101ab578063bbc0c742116100f7578063e4748b9e11610095578063f2fde38b1161006f578063f2fde38b14610bd7578063f637434214610c00578063f8821a6214610c2b578063f928364c14610c5657610325565b8063e4748b9e14610b58578063ec28438a14610b83578063f11a24d314610bac57610325565b8063dd62ed3e116100d1578063dd62ed3e14610a9c578063e01af92c14610ad9578063e0f3ccf514610b02578063e2f4560514610b2d57610325565b8063bbc0c74214610a1f578063c024666814610a4a578063c20c43bf14610a7357610325565b8063a457c2d711610164578063a9059cbb1161013e578063a9059cbb14610951578063aa4bde281461098e578063afa4f3b2146109b9578063b2d8f208146109f657610325565b8063a457c2d7146108c0578063a72905a2146108fd578063a85591bf1461093a57610325565b806395d89b41146107c05780639c3b4fdc146107eb5780639fd8234e14610816578063a0d82dc51461083f578063a2d83c421461086a578063a2edb2c31461089557610325565b806343d4f92b1161026a578063715018a61161022357806375f0a874116101fd57806375f0a874146107165780637e26cafa146107415780638c0b5e221461076a5780638da5cb5b1461079557610325565b8063715018a6146106bf57806373d00224146106d65780637571336a146106ed57610325565b806343d4f92b1461058957806349bd5a5e146105b25780634fbee193146105dd57806354f9c98c1461061a5780636ddd17131461065757806370a082311461068257610325565b806323b872dd116102d7578063313ce567116102b1578063313ce567146104b95780633582ad23146104e4578063395093511461050f578063418eeb291461054c57610325565b806323b872dd1461041657806327a14fc2146104535780632b5ba3b91461047c57610325565b806301339c211461032a57806306e99fef1461034157806306fdde0314610358578063095ea7b3146103835780631694505e146103c057806318160ddd146103eb57610325565b3661032557005b600080fd5b34801561033657600080fd5b5061033f610c81565b005b34801561034d57600080fd5b50610356610ca6565b005b34801561036457600080fd5b5061036d610d39565b60405161037a9190613198565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190613253565b610dcb565b6040516103b791906132ae565b60405180910390f35b3480156103cc57600080fd5b506103d5610dee565b6040516103e29190613328565b60405180910390f35b3480156103f757600080fd5b50610400610e14565b60405161040d9190613352565b60405180910390f35b34801561042257600080fd5b5061043d6004803603810190610438919061336d565b610e1e565b60405161044a91906132ae565b60405180910390f35b34801561045f57600080fd5b5061047a600480360381019061047591906133c0565b610e4d565b005b34801561048857600080fd5b506104a3600480360381019061049e91906133ed565b610eb2565b6040516104b091906132ae565b60405180910390f35b3480156104c557600080fd5b506104ce610ed2565b6040516104db9190613436565b60405180910390f35b3480156104f057600080fd5b506104f9610edb565b60405161050691906132ae565b60405180910390f35b34801561051b57600080fd5b5061053660048036038101906105319190613253565b610eee565b60405161054391906132ae565b60405180910390f35b34801561055857600080fd5b50610573600480360381019061056e91906133c0565b610f25565b60405161058091906132ae565b60405180910390f35b34801561059557600080fd5b506105b060048036038101906105ab91906133ed565b611005565b005b3480156105be57600080fd5b506105c7611051565b6040516105d49190613460565b60405180910390f35b3480156105e957600080fd5b5061060460048036038101906105ff91906133ed565b611077565b60405161061191906132ae565b60405180910390f35b34801561062657600080fd5b50610641600480360381019061063c91906133ed565b6110cd565b60405161064e91906132ae565b60405180910390f35b34801561066357600080fd5b5061066c6110ed565b60405161067991906132ae565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a491906133ed565b611100565b6040516106b69190613352565b60405180910390f35b3480156106cb57600080fd5b506106d4611148565b005b3480156106e257600080fd5b506106eb61115c565b005b3480156106f957600080fd5b50610714600480360381019061070f91906134a7565b611208565b005b34801561072257600080fd5b5061072b61126b565b6040516107389190613460565b60405180910390f35b34801561074d57600080fd5b50610768600480360381019061076391906134a7565b611291565b005b34801561077657600080fd5b5061077f611337565b60405161078c9190613352565b60405180910390f35b3480156107a157600080fd5b506107aa61133d565b6040516107b79190613460565b60405180910390f35b3480156107cc57600080fd5b506107d5611367565b6040516107e29190613198565b60405180910390f35b3480156107f757600080fd5b506108006113f9565b60405161080d9190613352565b60405180910390f35b34801561082257600080fd5b5061083d600480360381019061083891906134e7565b6113ff565b005b34801561084b57600080fd5b5061085461143f565b6040516108619190613352565b60405180910390f35b34801561087657600080fd5b5061087f611445565b60405161088c91906132ae565b60405180910390f35b3480156108a157600080fd5b506108aa611458565b6040516108b791906132ae565b60405180910390f35b3480156108cc57600080fd5b506108e760048036038101906108e29190613253565b61146b565b6040516108f491906132ae565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f91906133ed565b6114e2565b60405161093191906132ae565b60405180910390f35b34801561094657600080fd5b5061094f611502565b005b34801561095d57600080fd5b5061097860048036038101906109739190613253565b611614565b60405161098591906132ae565b60405180910390f35b34801561099a57600080fd5b506109a3611637565b6040516109b09190613352565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db91906133c0565b61163d565b6040516109ed91906132ae565b60405180910390f35b348015610a0257600080fd5b50610a1d6004803603810190610a1891906134e7565b61171d565b005b348015610a2b57600080fd5b50610a3461175c565b604051610a4191906132ae565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c91906134a7565b61176f565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a959190613527565b6117d2565b005b348015610aa857600080fd5b50610ac36004803603810190610abe9190613554565b6117f7565b604051610ad09190613352565b60405180910390f35b348015610ae557600080fd5b50610b006004803603810190610afb9190613527565b61187e565b005b348015610b0e57600080fd5b50610b176118a3565b604051610b249190613352565b60405180910390f35b348015610b3957600080fd5b50610b426118a9565b604051610b4f9190613352565b60405180910390f35b348015610b6457600080fd5b50610b6d6118af565b604051610b7a9190613352565b60405180910390f35b348015610b8f57600080fd5b50610baa6004803603810190610ba591906133c0565b6118b5565b005b348015610bb857600080fd5b50610bc161191a565b604051610bce9190613352565b60405180910390f35b348015610be357600080fd5b50610bfe6004803603810190610bf991906133ed565b611920565b005b348015610c0c57600080fd5b50610c156119a3565b604051610c229190613352565b60405180910390f35b348015610c3757600080fd5b50610c406119a9565b604051610c4d9190613352565b60405180910390f35b348015610c6257600080fd5b50610c6b6119af565b604051610c7891906132ae565b60405180910390f35b610c896119db565b6001600660146101000a81548160ff021916908315150217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051610cee906135c5565b60006040518083038185875af1925050503d8060008114610d2b576040519150601f19603f3d011682016040523d82523d6000602084013e610d30565b606091505b50508091505050565b606060038054610d4890613609565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7490613609565b8015610dc15780601f10610d9657610100808354040283529160200191610dc1565b820191906000526020600020905b815481529060010190602001808311610da457829003601f168201915b5050505050905090565b600080610dd6611a59565b9050610de3818585611a61565b600191505092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b600080610e29611a59565b9050610e36858285611c2a565b610e41858585611cb6565b60019150509392505050565b610e556119db565b670de0b6b3a76400006103e86001610e6b610e14565b610e759190613669565b610e7f91906136f2565b610e8991906136f2565b811015610e9557600080fd5b670de0b6b3a764000081610ea99190613669565b600f8190555050565b60136020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b601060009054906101000a900460ff1681565b600080610ef9611a59565b9050610f1a818585610f0b85896117f7565b610f159190613723565b611a61565b600191505092915050565b6000610f2f6119db565b620186a06001610f3d610e14565b610f479190613669565b610f5191906136f2565b821015610f93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8a906137eb565b60405180910390fd5b60646004610f9f610e14565b610fa99190613669565b610fb391906136f2565b821115610ff5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fec9061387d565b60405180910390fd5b81600b8190555060019050919050565b61100d6119db565b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600d6020528060005260406000206000915054906101000a900460ff1681565b600c60009054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111506119db565b61115a60006127ac565b565b6111646119db565b600061117761117230611100565b612872565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516111bd906135c5565b60006040518083038185875af1925050503d80600081146111fa576040519150601f19603f3d011682016040523d82523d6000602084013e6111ff565b606091505b50508091505050565b6112106119db565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112996119db565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611329576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113209061390f565b60405180910390fd5b6113338282612ab5565b5050565b600e5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461137690613609565b80601f01602080910402602001604051908101604052809291908181526020018280546113a290613609565b80156113ef5780601f106113c4576101008083540402835291602001916113ef565b820191906000526020600020905b8154815290600101906020018083116113d257829003601f168201915b5050505050905090565b60155481565b6114076119db565b81601881905550806019819055506019546018546114259190613723565b601781905550603c601754111561143b57600080fd5b5050565b60185481565b601060019054906101000a900460ff1681565b601260009054906101000a900460ff1681565b600080611476611a59565b9050600061148482866117f7565b9050838110156114c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c0906139a1565b60405180910390fd5b6114d68286868403611a61565b60019250505092915050565b601d6020528060005260406000206000915054906101000a900460ff1681565b61150a611a59565b73ffffffffffffffffffffffffffffffffffffffff1661152861133d565b73ffffffffffffffffffffffffffffffffffffffff16148061159e575061154d611a59565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d490613a33565b60405180910390fd5b61161230600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661160d30611100565b612b10565b565b60008061161f611a59565b905061162c818585611cb6565b600191505092915050565b600f5481565b60006116476119db565b620186a06001611655610e14565b61165f9190613669565b61166991906136f2565b8210156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a2906137eb565b60405180910390fd5b606460046116b7610e14565b6116c19190613669565b6116cb91906136f2565b82111561170d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117049061387d565b60405180910390fd5b81600a8190555060019050919050565b6117256119db565b81601581905550806016819055506016546015546117439190613723565b60148190555060148054111561175857600080fd5b5050565b600660149054906101000a900460ff1681565b6117776119db565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6117da6119db565b80601060016101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6118866119db565b80600c60006101000a81548160ff02191690831515021790555050565b60175481565b600a5481565b60145481565b6118bd6119db565b670de0b6b3a76400006103e860016118d3610e14565b6118dd9190613669565b6118e791906136f2565b6118f191906136f2565b8110156118fd57600080fd5b670de0b6b3a7640000816119119190613669565b600e8190555050565b60165481565b6119286119db565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198e90613ac5565b60405180910390fd5b6119a0816127ac565b50565b60195481565b600b5481565b60006119b96119db565b6000601060006101000a81548160ff0219169083151502179055506001905090565b6119e3611a59565b73ffffffffffffffffffffffffffffffffffffffff16611a0161133d565b73ffffffffffffffffffffffffffffffffffffffff1614611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613b31565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac790613bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3690613c55565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611c1d9190613352565b60405180910390a3505050565b6000611c3684846117f7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611cb05781811015611ca2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9990613cc1565b60405180910390fd5b611caf8484848403611a61565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1c90613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8b90613de5565b60405180910390fd5b601360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1890613e51565b60405180910390fd5b60008103611e3a57611e3583836000612b10565b6127a7565b601060009054906101000a900460ff161561233557611e5761133d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611ec55750611e9561133d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ede5750600860149054906101000a900460ff16155b8015611f175750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611f51575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561233457600660149054906101000a900460ff1661204b57601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061200b5750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61204a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204190613ebd565b60405180910390fd5b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156120ee5750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561219557600e54811115612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f90613f4f565b60405180910390fd5b600f5461214483611100565b8261214f9190613723565b1115612190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218790613fbb565b60405180910390fd5b612333565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156122385750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561228757600e54811115612282576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122799061404d565b60405180910390fd5b612332565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661233157600f546122e483611100565b826122ef9190613723565b1115612330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232790613fbb565b60405180910390fd5b5b5b5b5b5b600061234030611100565b90506000600b5482101590508080156123655750600c60009054906101000a900460ff165b801561237e5750600860149054906101000a900460ff16155b80156123d45750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561242a5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156124805750601c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156124c4576001600860146101000a81548160ff0219169083151502179055506124a8612d86565b6000600860146101000a81548160ff0219169083151502179055505b6000600860149054906101000a900460ff16159050601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061257a5750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561258457600090505b6000811561279757601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156125e757506000601754115b1561268157612614606461260660175488612fb390919063ffffffff16565b612fc990919063ffffffff16565b9050601754601954826126279190613669565b61263191906136f2565b601b60008282546126429190613723565b925050819055506017546018548261265a9190613669565b61266491906136f2565b601a60008282546126759190613723565b92505081905550612773565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126dc57506000601454115b156127725761270960646126fb60145488612fb390919063ffffffff16565b612fc990919063ffffffff16565b90506014546016548261271c9190613669565b61272691906136f2565b601b60008282546127379190613723565b925050819055506014546015548261274f9190613669565b61275991906136f2565b601a600082825461276a9190613723565b925050819055505b5b600081111561278857612787873083612b10565b5b8085612794919061406d565b94505b6127a2878787612b10565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600267ffffffffffffffff81111561288f5761288e6140a1565b5b6040519080825280602002602001820160405280156128bd5781602001602082028036833780820191505090505b50905030816000815181106128d5576128d46140d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561297c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129a09190614114565b816001815181106129b4576129b36140d0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612a1b30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a61565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612a7f95949392919061423a565b600060405180830381600087803b158015612a9957600080fd5b505af1158015612aad573d6000803e3d6000fd5b505050505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690613d53565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be590613de5565b60405180910390fd5b612bf9838383612fdf565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612c7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7690614306565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612d6d9190613352565b60405180910390a3612d80848484612fe4565b50505050565b6000612d9130611100565b90506000601a54601b54612da59190613723565b90506000808303612db857505050612fb1565b60008203612dc557600191505b6000600a549050601160004381526020019081526020016000206000815480929190612df090614326565b9190505550601060019054906101000a900460ff1615612e2f576002601160004381526020019081526020016000205410612e2e5750505050612fb1565b5b80841115612e3b578093505b6000600284601b5487612e4e9190613669565b612e5891906136f2565b612e6291906136f2565b90506000612e798287612fe990919063ffffffff16565b90506000479050612e8982612872565b6000612e9e8247612fe990919063ffffffff16565b905060008190506000881115612ed857612ed588612ec7601a5485612fb390919063ffffffff16565b612fc990919063ffffffff16565b90505b60008183612ee6919061406d565b90506000601b819055506000601a81905550600086118015612f085750600081115b15612f1857612f178682612fff565b5b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612f5e906135c5565b60006040518083038185875af1925050503d8060008114612f9b576040519150601f19603f3d011682016040523d82523d6000602084013e612fa0565b606091505b505080985050505050505050505050505b565b60008183612fc19190613669565b905092915050565b60008183612fd791906136f2565b905092915050565b505050565b505050565b60008183612ff7919061406d565b905092915050565b61302c30600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684611a61565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b81526004016130b59695949392919061436e565b60606040518083038185885af11580156130d3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906130f891906143e4565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561313957808201518184015260208101905061311e565b83811115613148576000848401525b50505050565b6000601f19601f8301169050919050565b600061316a826130ff565b613174818561310a565b935061318481856020860161311b565b61318d8161314e565b840191505092915050565b600060208201905081810360008301526131b2818461315f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006131ea826131bf565b9050919050565b6131fa816131df565b811461320557600080fd5b50565b600081359050613217816131f1565b92915050565b6000819050919050565b6132308161321d565b811461323b57600080fd5b50565b60008135905061324d81613227565b92915050565b6000806040838503121561326a576132696131ba565b5b600061327885828601613208565b92505060206132898582860161323e565b9150509250929050565b60008115159050919050565b6132a881613293565b82525050565b60006020820190506132c3600083018461329f565b92915050565b6000819050919050565b60006132ee6132e96132e4846131bf565b6132c9565b6131bf565b9050919050565b6000613300826132d3565b9050919050565b6000613312826132f5565b9050919050565b61332281613307565b82525050565b600060208201905061333d6000830184613319565b92915050565b61334c8161321d565b82525050565b60006020820190506133676000830184613343565b92915050565b600080600060608486031215613386576133856131ba565b5b600061339486828701613208565b93505060206133a586828701613208565b92505060406133b68682870161323e565b9150509250925092565b6000602082840312156133d6576133d56131ba565b5b60006133e48482850161323e565b91505092915050565b600060208284031215613403576134026131ba565b5b600061341184828501613208565b91505092915050565b600060ff82169050919050565b6134308161341a565b82525050565b600060208201905061344b6000830184613427565b92915050565b61345a816131df565b82525050565b60006020820190506134756000830184613451565b92915050565b61348481613293565b811461348f57600080fd5b50565b6000813590506134a18161347b565b92915050565b600080604083850312156134be576134bd6131ba565b5b60006134cc85828601613208565b92505060206134dd85828601613492565b9150509250929050565b600080604083850312156134fe576134fd6131ba565b5b600061350c8582860161323e565b925050602061351d8582860161323e565b9150509250929050565b60006020828403121561353d5761353c6131ba565b5b600061354b84828501613492565b91505092915050565b6000806040838503121561356b5761356a6131ba565b5b600061357985828601613208565b925050602061358a85828601613208565b9150509250929050565b600081905092915050565b50565b60006135af600083613594565b91506135ba8261359f565b600082019050919050565b60006135d0826135a2565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061362157607f821691505b602082108103613634576136336135da565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136748261321d565b915061367f8361321d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136b8576136b761363a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006136fd8261321d565b91506137088361321d565b925082613718576137176136c3565b5b828204905092915050565b600061372e8261321d565b91506137398361321d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561376e5761376d61363a565b5b828201905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006137d560358361310a565b91506137e082613779565b604082019050919050565b60006020820190508181036000830152613804816137c8565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20342520746f74616c20737570706c792e0000000000000000000000000000602082015250565b600061386760328361310a565b91506138728261380b565b604082019050919050565b600060208201905081810360008301526138968161385a565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b60006138f960398361310a565b91506139048261389d565b604082019050919050565b60006020820190508181036000830152613928816138ec565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061398b60258361310a565b91506139968261392f565b604082019050919050565b600060208201905081810360008301526139ba8161397e565b9050919050565b7f43616c6c6572206973206e6f7420746865206f776e6572206f72206d61726b6560008201527f74696e672077616c6c6574000000000000000000000000000000000000000000602082015250565b6000613a1d602b8361310a565b9150613a28826139c1565b604082019050919050565b60006020820190508181036000830152613a4c81613a10565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613aaf60268361310a565b9150613aba82613a53565b604082019050919050565b60006020820190508181036000830152613ade81613aa2565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b1b60208361310a565b9150613b2682613ae5565b602082019050919050565b60006020820190508181036000830152613b4a81613b0e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613bad60248361310a565b9150613bb882613b51565b604082019050919050565b60006020820190508181036000830152613bdc81613ba0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c3f60228361310a565b9150613c4a82613be3565b604082019050919050565b60006020820190508181036000830152613c6e81613c32565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613cab601d8361310a565b9150613cb682613c75565b602082019050919050565b60006020820190508181036000830152613cda81613c9e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613d3d60258361310a565b9150613d4882613ce1565b604082019050919050565b60006020820190508181036000830152613d6c81613d30565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613dcf60238361310a565b9150613dda82613d73565b604082019050919050565b60006020820190508181036000830152613dfe81613dc2565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000613e3b600b8361310a565b9150613e4682613e05565b602082019050919050565b60006020820190508181036000830152613e6a81613e2e565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613ea760168361310a565b9150613eb282613e71565b602082019050919050565b60006020820190508181036000830152613ed681613e9a565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613f3960358361310a565b9150613f4482613edd565b604082019050919050565b60006020820190508181036000830152613f6881613f2c565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613fa560138361310a565b9150613fb082613f6f565b602082019050919050565b60006020820190508181036000830152613fd481613f98565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061403760368361310a565b915061404282613fdb565b604082019050919050565b600060208201905081810360008301526140668161402a565b9050919050565b60006140788261321d565b91506140838361321d565b9250828210156140965761409561363a565b5b828203905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061410e816131f1565b92915050565b60006020828403121561412a576141296131ba565b5b6000614138848285016140ff565b91505092915050565b6000819050919050565b600061416661416161415c84614141565b6132c9565b61321d565b9050919050565b6141768161414b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6141b1816131df565b82525050565b60006141c383836141a8565b60208301905092915050565b6000602082019050919050565b60006141e78261417c565b6141f18185614187565b93506141fc83614198565b8060005b8381101561422d57815161421488826141b7565b975061421f836141cf565b925050600181019050614200565b5085935050505092915050565b600060a08201905061424f6000830188613343565b61425c602083018761416d565b818103604083015261426e81866141dc565b905061427d6060830185613451565b61428a6080830184613343565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006142f060268361310a565b91506142fb82614294565b604082019050919050565b6000602082019050818103600083015261431f816142e3565b9050919050565b60006143318261321d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036143635761436261363a565b5b600182019050919050565b600060c0820190506143836000830189613451565b6143906020830188613343565b61439d604083018761416d565b6143aa606083018661416d565b6143b76080830185613451565b6143c460a0830184613343565b979650505050505050565b6000815190506143de81613227565b92915050565b6000806000606084860312156143fd576143fc6131ba565b5b600061440b868287016143cf565b935050602061441c868287016143cf565b925050604061442d868287016143cf565b915050925092509256fea2646970667358221220aba6d0f66ea54499ea55a64b7fd5fc7c718388de70ba30300e35c795b808949b64736f6c634300080f0033
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.