Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 MB
Holders
77
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.430589633240516722 MBValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MicroBerlin
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** MicroBerlin 5% buy/sell tax - 1% auto LP - 3% marketing - 1% dev */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.17; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* pragma solidity ^0.8.17; */ /** * @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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.17; */ /* import "../utils/Context.sol"; */ /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.17; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.17; */ /* import "../IERC20.sol"; */ /** * @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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.17; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.17; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } /* pragma solidity 0.8.15; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } /* pragma solidity 0.8.15; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } /* pragma solidity 0.8.15; */ /* pragma experimental ABIEncoderV2; */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /* pragma solidity >=0.8.15; */ /* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */ /* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */ /* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */ /* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */ /* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */ /* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */ /* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */ contract MicroBerlin is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public charityWallet; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("MicroBerlin", "MB") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyMarketingFee = 3; uint256 _buyLiquidityFee = 1; uint256 _buyDevFee = 1; uint256 _sellMarketingFee = 3; uint256 _sellLiquidityFee = 1; uint256 _sellDevFee = 1; uint256 totalSupply = 100000000 * 1e18; maxTransactionAmount = 2000000 * 1e18; // 2% from total supply maxTransactionAmountTxn maxWallet = 2000000 * 1e18; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; marketingWallet = address(0x43BfEf400C2508d3fd0d51245F717ff55632d641); // set as marketing wallet devWallet = address(0x8b97EE84056e94c69412a75D1FFa846AC8aA8aFF); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(address(marketingWallet), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(address(marketingWallet), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing + tokensForDev; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev; tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; (success, ) = address(devWallet).call{value: ethForDev}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, liquidityTokens ); } (success, ) = address(marketingWallet).call{value: address(this).balance}(""); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f4d6963726f4265726c696e0000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d420000000000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000dc7565b5080600490816200010d919062000dc7565b50505062000130620001246200060e60201b60201c565b6200061660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c816001620006dc60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000202919062000f18565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000290919062000f18565b6040518363ffffffff1660e01b8152600401620002af92919062000f5b565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f5919062000f18565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a0516001620006dc60201b60201c565b6200035260a0516001620007c660201b60201c565b60006003905060006001905060006001905060006003905060006001905060006001905060006a52b7d2dcc80cd2e400000090506a01a784379d99db420000006009819055506a01a784379d99db42000000600b81905550612710600a82620003bc919062000fb7565b620003c8919062001031565b600a81905550866010819055508560118190555084601281905550601254601154601054620003f8919062001069565b62000404919062001069565b600f8190555083601481905550826015819055508160168190555060165460155460145462000434919062001069565b62000440919062001069565b6013819055507343bfef400c2508d3fd0d51245f717ff55632d641600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738b97ee84056e94c69412a75d1ffa846ac8aa8aff600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000512620005046200086760201b60201c565b60016200089160201b60201c565b620005253060016200089160201b60201c565b6200053a61dead60016200089160201b60201c565b6200056f600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200089160201b60201c565b62000591620005836200086760201b60201c565b6001620006dc60201b60201c565b620005a4306001620006dc60201b60201c565b620005b961dead6001620006dc60201b60201c565b620005ee600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620006dc60201b60201c565b620006003382620009cb60201b60201c565b505050505050505062001201565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006ec6200060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007126200086760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200076b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007629062001105565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008a16200060e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008c76200086760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000920576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009179062001105565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009bf919062001144565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000a3d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a3490620011b1565b60405180910390fd5b62000a516000838362000b4360201b60201c565b806002600082825462000a65919062001069565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000abc919062001069565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b239190620011e4565b60405180910390a362000b3f6000838362000b4860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bcf57607f821691505b60208210810362000be55762000be462000b87565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c4f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c10565b62000c5b868362000c10565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000ca862000ca262000c9c8462000c73565b62000c7d565b62000c73565b9050919050565b6000819050919050565b62000cc48362000c87565b62000cdc62000cd38262000caf565b84845462000c1d565b825550505050565b600090565b62000cf362000ce4565b62000d0081848462000cb9565b505050565b5b8181101562000d285762000d1c60008262000ce9565b60018101905062000d06565b5050565b601f82111562000d775762000d418162000beb565b62000d4c8462000c00565b8101602085101562000d5c578190505b62000d7462000d6b8562000c00565b83018262000d05565b50505b505050565b600082821c905092915050565b600062000d9c6000198460080262000d7c565b1980831691505092915050565b600062000db7838362000d89565b9150826002028217905092915050565b62000dd28262000b4d565b67ffffffffffffffff81111562000dee5762000ded62000b58565b5b62000dfa825462000bb6565b62000e0782828562000d2c565b600060209050601f83116001811462000e3f576000841562000e2a578287015190505b62000e36858262000da9565b86555062000ea6565b601f19841662000e4f8662000beb565b60005b8281101562000e795784890151825560018201915060208501945060208101905062000e52565b8683101562000e99578489015162000e95601f89168262000d89565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ee08262000eb3565b9050919050565b62000ef28162000ed3565b811462000efe57600080fd5b50565b60008151905062000f128162000ee7565b92915050565b60006020828403121562000f315762000f3062000eae565b5b600062000f418482850162000f01565b91505092915050565b62000f558162000ed3565b82525050565b600060408201905062000f72600083018562000f4a565b62000f81602083018462000f4a565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fc48262000c73565b915062000fd18362000c73565b925082820262000fe18162000c73565b9150828204841483151762000ffb5762000ffa62000f88565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006200103e8262000c73565b91506200104b8362000c73565b9250826200105e576200105d62001002565b5b828204905092915050565b6000620010768262000c73565b9150620010838362000c73565b92508282019050808211156200109e576200109d62000f88565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010ed602083620010a4565b9150620010fa82620010b5565b602082019050919050565b600060208201905081810360008301526200112081620010de565b9050919050565b60008115159050919050565b6200113e8162001127565b82525050565b60006020820190506200115b600083018462001133565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001199601f83620010a4565b9150620011a68262001161565b602082019050919050565b60006020820190508181036000830152620011cc816200118a565b9050919050565b620011de8162000c73565b82525050565b6000602082019050620011fb6000830184620011d3565b92915050565b60805160a051614a2f6200125f60003960008181610fe3015281816115d3015261231f015260008181610ce7015281816122c7015281816133b701528181613498015281816134bf0152818161355b01526135820152614a2f6000f3fe6080604052600436106102e85760003560e01c80638da5cb5b11610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b6b578063f2fde38b14610b96578063f637434214610bbf578063f8b45b0514610bea576102ef565b8063dd62ed3e14610ad8578063e2f4560514610b15578063e884f26014610b40576102ef565b8063c0246668146109c8578063c18bc195146109f1578063c876d0b914610a1a578063c8c8ebe414610a45578063d257b34f14610a70578063d85ba06314610aad576102ef565b80639c3b4fdc11610149578063a457c2d711610123578063a457c2d7146108e6578063a9059cbb14610923578063b62496f514610960578063bbc0c7421461099d576102ef565b80639c3b4fdc146108655780639fccce3214610890578063a0d82dc5146108bb576102ef565b80638da5cb5b146107675780638ea5220f1461079257806392136913146107bd578063924de9b7146107e857806395d89b41146108115780639a7a23d61461083c576102ef565b806349bd5a5e1161024f578063715018a61161020857806375f0a874116101e257806375f0a874146106cf5780637b208769146106fa5780637bce5a04146107255780638a8c523c14610750576102ef565b8063715018a614610664578063751039fc1461067b5780637571336a146106a6576102ef565b806349bd5a5e1461053e5780634a62bb65146105695780634fbee193146105945780636a486a8e146105d15780636ddd1713146105fc57806370a0823114610627576102ef565b80631f3fed8f116102a15780631f3fed8f1461041a578063203e727e1461044557806323b872dd1461046e57806327c8f835146104ab578063313ce567146104d65780633950935114610501576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631a8145bb146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c15565b60405161031691906136e1565b60405180910390f35b34801561032b57600080fd5b506103466004803603810190610341919061379c565b610ca7565b60405161035391906137f7565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613812565b610cc5565b60405161039091906137f7565b60405180910390f35b3480156103a557600080fd5b506103ae610ce5565b6040516103bb919061389e565b60405180910390f35b3480156103d057600080fd5b506103d9610d09565b6040516103e691906138c8565b60405180910390f35b3480156103fb57600080fd5b50610404610d13565b60405161041191906138c8565b60405180910390f35b34801561042657600080fd5b5061042f610d19565b60405161043c91906138c8565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906138e3565b610d1f565b005b34801561047a57600080fd5b5061049560048036038101906104909190613910565b610e2e565b6040516104a291906137f7565b60405180910390f35b3480156104b757600080fd5b506104c0610f26565b6040516104cd9190613972565b60405180910390f35b3480156104e257600080fd5b506104eb610f2c565b6040516104f891906139a9565b60405180910390f35b34801561050d57600080fd5b506105286004803603810190610523919061379c565b610f35565b60405161053591906137f7565b60405180910390f35b34801561054a57600080fd5b50610553610fe1565b6040516105609190613972565b60405180910390f35b34801561057557600080fd5b5061057e611005565b60405161058b91906137f7565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613812565b611018565b6040516105c891906137f7565b60405180910390f35b3480156105dd57600080fd5b506105e661106e565b6040516105f391906138c8565b60405180910390f35b34801561060857600080fd5b50610611611074565b60405161061e91906137f7565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190613812565b611087565b60405161065b91906138c8565b60405180910390f35b34801561067057600080fd5b506106796110cf565b005b34801561068757600080fd5b50610690611157565b60405161069d91906137f7565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906139f0565b6111f7565b005b3480156106db57600080fd5b506106e46112ce565b6040516106f19190613972565b60405180910390f35b34801561070657600080fd5b5061070f6112f4565b60405161071c9190613972565b60405180910390f35b34801561073157600080fd5b5061073a61131a565b60405161074791906138c8565b60405180910390f35b34801561075c57600080fd5b50610765611320565b005b34801561077357600080fd5b5061077c6113d4565b6040516107899190613972565b60405180910390f35b34801561079e57600080fd5b506107a76113fe565b6040516107b49190613972565b60405180910390f35b3480156107c957600080fd5b506107d2611424565b6040516107df91906138c8565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613a30565b61142a565b005b34801561081d57600080fd5b506108266114c3565b60405161083391906136e1565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e91906139f0565b611555565b005b34801561087157600080fd5b5061087a61166d565b60405161088791906138c8565b60405180910390f35b34801561089c57600080fd5b506108a5611673565b6040516108b291906138c8565b60405180910390f35b3480156108c757600080fd5b506108d0611679565b6040516108dd91906138c8565b60405180910390f35b3480156108f257600080fd5b5061090d6004803603810190610908919061379c565b61167f565b60405161091a91906137f7565b60405180910390f35b34801561092f57600080fd5b5061094a6004803603810190610945919061379c565b61176a565b60405161095791906137f7565b60405180910390f35b34801561096c57600080fd5b5061098760048036038101906109829190613812565b611788565b60405161099491906137f7565b60405180910390f35b3480156109a957600080fd5b506109b26117a8565b6040516109bf91906137f7565b60405180910390f35b3480156109d457600080fd5b506109ef60048036038101906109ea91906139f0565b6117bb565b005b3480156109fd57600080fd5b50610a186004803603810190610a1391906138e3565b6118e0565b005b348015610a2657600080fd5b50610a2f6119ef565b604051610a3c91906137f7565b60405180910390f35b348015610a5157600080fd5b50610a5a611a02565b604051610a6791906138c8565b60405180910390f35b348015610a7c57600080fd5b50610a976004803603810190610a9291906138e3565b611a08565b604051610aa491906137f7565b60405180910390f35b348015610ab957600080fd5b50610ac2611b5d565b604051610acf91906138c8565b60405180910390f35b348015610ae457600080fd5b50610aff6004803603810190610afa9190613a5d565b611b63565b604051610b0c91906138c8565b60405180910390f35b348015610b2157600080fd5b50610b2a611bea565b604051610b3791906138c8565b60405180910390f35b348015610b4c57600080fd5b50610b55611bf0565b604051610b6291906137f7565b60405180910390f35b348015610b7757600080fd5b50610b80611c90565b604051610b8d91906138c8565b60405180910390f35b348015610ba257600080fd5b50610bbd6004803603810190610bb89190613812565b611c96565b005b348015610bcb57600080fd5b50610bd4611d8d565b604051610be191906138c8565b60405180910390f35b348015610bf657600080fd5b50610bff611d93565b604051610c0c91906138c8565b60405180910390f35b606060038054610c2490613acc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5090613acc565b8015610c9d5780601f10610c7257610100808354040283529160200191610c9d565b820191906000526020600020905b815481529060010190602001808311610c8057829003601f168201915b5050505050905090565b6000610cbb610cb4611d99565b8484611da1565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60185481565b60175481565b610d27611d99565b73ffffffffffffffffffffffffffffffffffffffff16610d456113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613b49565b60405180910390fd5b670de0b6b3a76400006103e86001610db1610d09565b610dbb9190613b98565b610dc59190613c09565b610dcf9190613c09565b811015610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613cac565b60405180910390fd5b670de0b6b3a764000081610e259190613b98565b60098190555050565b6000610e3b848484611f6a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e86611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613d3e565b60405180910390fd5b610f1a85610f12611d99565b858403611da1565b60019150509392505050565b61dead81565b60006012905090565b6000610fd7610f42611d99565b848460016000610f50611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fd29190613d5e565b611da1565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d7611d99565b73ffffffffffffffffffffffffffffffffffffffff166110f56113d4565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613b49565b60405180910390fd5b6111556000612c01565b565b6000611161611d99565b73ffffffffffffffffffffffffffffffffffffffff1661117f6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613b49565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6111ff611d99565b73ffffffffffffffffffffffffffffffffffffffff1661121d6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90613b49565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b611328611d99565b73ffffffffffffffffffffffffffffffffffffffff166113466113d4565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613b49565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b611432611d99565b73ffffffffffffffffffffffffffffffffffffffff166114506113d4565b73ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613b49565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546114d290613acc565b80601f01602080910402602001604051908101604052809291908181526020018280546114fe90613acc565b801561154b5780601f106115205761010080835404028352916020019161154b565b820191906000526020600020905b81548152906001019060200180831161152e57829003601f168201915b5050505050905090565b61155d611d99565b73ffffffffffffffffffffffffffffffffffffffff1661157b6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890613b49565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613e04565b60405180910390fd5b6116698282612cc7565b5050565b60125481565b60195481565b60165481565b6000806001600061168e611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613e96565b60405180910390fd5b61175f611756611d99565b85858403611da1565b600191505092915050565b600061177e611777611d99565b8484611f6a565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6117c3611d99565b73ffffffffffffffffffffffffffffffffffffffff166117e16113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90613b49565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118d491906137f7565b60405180910390a25050565b6118e8611d99565b73ffffffffffffffffffffffffffffffffffffffff166119066113d4565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390613b49565b60405180910390fd5b670de0b6b3a76400006103e86005611972610d09565b61197c9190613b98565b6119869190613c09565b6119909190613c09565b8110156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613f28565b60405180910390fd5b670de0b6b3a7640000816119e69190613b98565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611a12611d99565b73ffffffffffffffffffffffffffffffffffffffff16611a306113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613b49565b60405180910390fd5b620186a06001611a94610d09565b611a9e9190613b98565b611aa89190613c09565b821015611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613fba565b60405180910390fd5b6103e86005611af7610d09565b611b019190613b98565b611b0b9190613c09565b821115611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b449061404c565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611bfa611d99565b73ffffffffffffffffffffffffffffffffffffffff16611c186113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613b49565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b611c9e611d99565b73ffffffffffffffffffffffffffffffffffffffff16611cbc6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990613b49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906140de565b60405180910390fd5b611d8a81612c01565b50565b60155481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614170565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690614202565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f5d91906138c8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614294565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90614326565b60405180910390fd5b600081036120615761205c83836000612d68565b612bfc565b600c60009054906101000a900460ff16156127245761207e6113d4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120ec57506120bc6113d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121255750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561215f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121785750600560149054906101000a900460ff16155b1561272357600c60019054906101000a900460ff1661227257601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122325750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890614392565b60405180910390fd5b5b600e60009054906101000a900460ff161561243a5761228f6113d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561231657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561236e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124395743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb9061444a565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124dd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561258457600954811115612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e906144dc565b60405180910390fd5b600b5461253383611087565b8261253e9190613d5e565b111561257f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257690614548565b60405180910390fd5b612722565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561267657600954811115612671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612668906145da565b60405180910390fd5b612721565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661272057600b546126d383611087565b826126de9190613d5e565b111561271f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271690614548565b60405180910390fd5b5b5b5b5b5b600061272f30611087565b90506000600a5482101590508080156127545750600c60029054906101000a900460ff165b801561276d5750600560149054906101000a900460ff16155b80156127c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561286f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128b3576001600560146101000a81548160ff021916908315150217905550612897612fe7565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129695750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561297357600090505b60008115612bec57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129d657506000601354115b15612aa357612a0360646129f5601354886132cc90919063ffffffff16565b6132e290919063ffffffff16565b905060135460155482612a169190613b98565b612a209190613c09565b60186000828254612a319190613d5e565b9250508190555060135460165482612a499190613b98565b612a539190613c09565b60196000828254612a649190613d5e565b9250508190555060135460145482612a7c9190613b98565b612a869190613c09565b60176000828254612a979190613d5e565b92505081905550612bc8565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612afe57506000600f54115b15612bc757612b2b6064612b1d600f54886132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600f5460115482612b3e9190613b98565b612b489190613c09565b60186000828254612b599190613d5e565b92505081905550600f5460125482612b719190613b98565b612b7b9190613c09565b60196000828254612b8c9190613d5e565b92505081905550600f5460105482612ba49190613b98565b612bae9190613c09565b60176000828254612bbf9190613d5e565b925050819055505b5b6000811115612bdd57612bdc873083612d68565b5b8085612be991906145fa565b94505b612bf7878787612d68565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce90614294565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d90614326565b60405180910390fd5b612e518383836132f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece906146a0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f6a9190613d5e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612fce91906138c8565b60405180910390a3612fe18484846132fd565b50505050565b6000612ff230611087565b905060006019546017546018546130099190613d5e565b6130139190613d5e565b90506000808314806130255750600082145b15613032575050506132ca565b6014600a546130419190613b98565b83111561305a576014600a546130579190613b98565b92505b60006002836018548661306d9190613b98565b6130779190613c09565b6130819190613c09565b90506000613098828661330290919063ffffffff16565b905060004790506130a882613318565b60006130bd824761330290919063ffffffff16565b905060006130e8876130da601754856132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600061311388613105601954866132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600081838561312491906145fa565b61312e91906145fa565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161318e906146f1565b60006040518083038185875af1925050503d80600081146131cb576040519150601f19603f3d011682016040523d82523d6000602084013e6131d0565b606091505b5050809850506000871180156131e65750600081115b15613231576131f58782613555565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828960405161322893929190614706565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613277906146f1565b60006040518083038185875af1925050503d80600081146132b4576040519150601f19603f3d011682016040523d82523d6000602084013e6132b9565b606091505b505080985050505050505050505050505b565b600081836132da9190613b98565b905092915050565b600081836132f09190613c09565b905092915050565b505050565b505050565b6000818361331091906145fa565b905092915050565b6000600267ffffffffffffffff8111156133355761333461473d565b5b6040519080825280602002602001820160405280156133635781602001602082028036833780820191505090505b509050308160008151811061337b5761337a61476c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613420573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061344491906147b0565b816001815181106134585761345761476c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134bd307f000000000000000000000000000000000000000000000000000000000000000084611da1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161351f9594939291906148d6565b600060405180830381600087803b15801561353957600080fd5b505af115801561354d573d6000803e3d6000fd5b505050505050565b613580307f000000000000000000000000000000000000000000000000000000000000000084611da1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161360796959493929190614930565b60606040518083038185885af1158015613625573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061364a91906149a6565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368b578082015181840152602081019050613670565b60008484015250505050565b6000601f19601f8301169050919050565b60006136b382613651565b6136bd818561365c565b93506136cd81856020860161366d565b6136d681613697565b840191505092915050565b600060208201905081810360008301526136fb81846136a8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061373382613708565b9050919050565b61374381613728565b811461374e57600080fd5b50565b6000813590506137608161373a565b92915050565b6000819050919050565b61377981613766565b811461378457600080fd5b50565b60008135905061379681613770565b92915050565b600080604083850312156137b3576137b2613703565b5b60006137c185828601613751565b92505060206137d285828601613787565b9150509250929050565b60008115159050919050565b6137f1816137dc565b82525050565b600060208201905061380c60008301846137e8565b92915050565b60006020828403121561382857613827613703565b5b600061383684828501613751565b91505092915050565b6000819050919050565b600061386461385f61385a84613708565b61383f565b613708565b9050919050565b600061387682613849565b9050919050565b60006138888261386b565b9050919050565b6138988161387d565b82525050565b60006020820190506138b3600083018461388f565b92915050565b6138c281613766565b82525050565b60006020820190506138dd60008301846138b9565b92915050565b6000602082840312156138f9576138f8613703565b5b600061390784828501613787565b91505092915050565b60008060006060848603121561392957613928613703565b5b600061393786828701613751565b935050602061394886828701613751565b925050604061395986828701613787565b9150509250925092565b61396c81613728565b82525050565b60006020820190506139876000830184613963565b92915050565b600060ff82169050919050565b6139a38161398d565b82525050565b60006020820190506139be600083018461399a565b92915050565b6139cd816137dc565b81146139d857600080fd5b50565b6000813590506139ea816139c4565b92915050565b60008060408385031215613a0757613a06613703565b5b6000613a1585828601613751565b9250506020613a26858286016139db565b9150509250929050565b600060208284031215613a4657613a45613703565b5b6000613a54848285016139db565b91505092915050565b60008060408385031215613a7457613a73613703565b5b6000613a8285828601613751565b9250506020613a9385828601613751565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae457607f821691505b602082108103613af757613af6613a9d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b3360208361365c565b9150613b3e82613afd565b602082019050919050565b60006020820190508181036000830152613b6281613b26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ba382613766565b9150613bae83613766565b9250828202613bbc81613766565b91508282048414831517613bd357613bd2613b69565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c1482613766565b9150613c1f83613766565b925082613c2f57613c2e613bda565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613c96602f8361365c565b9150613ca182613c3a565b604082019050919050565b60006020820190508181036000830152613cc581613c89565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d2860288361365c565b9150613d3382613ccc565b604082019050919050565b60006020820190508181036000830152613d5781613d1b565b9050919050565b6000613d6982613766565b9150613d7483613766565b9250828201905080821115613d8c57613d8b613b69565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613dee60398361365c565b9150613df982613d92565b604082019050919050565b60006020820190508181036000830152613e1d81613de1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613e8060258361365c565b9150613e8b82613e24565b604082019050919050565b60006020820190508181036000830152613eaf81613e73565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613f1260248361365c565b9150613f1d82613eb6565b604082019050919050565b60006020820190508181036000830152613f4181613f05565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613fa460358361365c565b9150613faf82613f48565b604082019050919050565b60006020820190508181036000830152613fd381613f97565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061403660348361365c565b915061404182613fda565b604082019050919050565b6000602082019050818103600083015261406581614029565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140c860268361365c565b91506140d38261406c565b604082019050919050565b600060208201905081810360008301526140f7816140bb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061415a60248361365c565b9150614165826140fe565b604082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006141ec60228361365c565b91506141f782614190565b604082019050919050565b6000602082019050818103600083015261421b816141df565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061427e60258361365c565b915061428982614222565b604082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061431060238361365c565b915061431b826142b4565b604082019050919050565b6000602082019050818103600083015261433f81614303565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061437c60168361365c565b915061438782614346565b602082019050919050565b600060208201905081810360008301526143ab8161436f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061443460498361365c565b915061443f826143b2565b606082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006144c660358361365c565b91506144d18261446a565b604082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061453260138361365c565b915061453d826144fc565b602082019050919050565b6000602082019050818103600083015261456181614525565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006145c460368361365c565b91506145cf82614568565b604082019050919050565b600060208201905081810360008301526145f3816145b7565b9050919050565b600061460582613766565b915061461083613766565b925082820390508181111561462857614627613b69565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061468a60268361365c565b91506146958261462e565b604082019050919050565b600060208201905081810360008301526146b98161467d565b9050919050565b600081905092915050565b50565b60006146db6000836146c0565b91506146e6826146cb565b600082019050919050565b60006146fc826146ce565b9150819050919050565b600060608201905061471b60008301866138b9565b61472860208301856138b9565b61473560408301846138b9565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506147aa8161373a565b92915050565b6000602082840312156147c6576147c5613703565b5b60006147d48482850161479b565b91505092915050565b6000819050919050565b60006148026147fd6147f8846147dd565b61383f565b613766565b9050919050565b614812816147e7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61484d81613728565b82525050565b600061485f8383614844565b60208301905092915050565b6000602082019050919050565b600061488382614818565b61488d8185614823565b935061489883614834565b8060005b838110156148c95781516148b08882614853565b97506148bb8361486b565b92505060018101905061489c565b5085935050505092915050565b600060a0820190506148eb60008301886138b9565b6148f86020830187614809565b818103604083015261490a8186614878565b90506149196060830185613963565b61492660808301846138b9565b9695505050505050565b600060c0820190506149456000830189613963565b61495260208301886138b9565b61495f6040830187614809565b61496c6060830186614809565b6149796080830185613963565b61498660a08301846138b9565b979650505050505050565b6000815190506149a081613770565b92915050565b6000806000606084860312156149bf576149be613703565b5b60006149cd86828701614991565b93505060206149de86828701614991565b92505060406149ef86828701614991565b915050925092509256fea2646970667358221220a24a599fe7b7f674e57e836cbb0e91be3946309599c6115af25ed7a252da206264736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102e85760003560e01c80638da5cb5b11610190578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610b6b578063f2fde38b14610b96578063f637434214610bbf578063f8b45b0514610bea576102ef565b8063dd62ed3e14610ad8578063e2f4560514610b15578063e884f26014610b40576102ef565b8063c0246668146109c8578063c18bc195146109f1578063c876d0b914610a1a578063c8c8ebe414610a45578063d257b34f14610a70578063d85ba06314610aad576102ef565b80639c3b4fdc11610149578063a457c2d711610123578063a457c2d7146108e6578063a9059cbb14610923578063b62496f514610960578063bbc0c7421461099d576102ef565b80639c3b4fdc146108655780639fccce3214610890578063a0d82dc5146108bb576102ef565b80638da5cb5b146107675780638ea5220f1461079257806392136913146107bd578063924de9b7146107e857806395d89b41146108115780639a7a23d61461083c576102ef565b806349bd5a5e1161024f578063715018a61161020857806375f0a874116101e257806375f0a874146106cf5780637b208769146106fa5780637bce5a04146107255780638a8c523c14610750576102ef565b8063715018a614610664578063751039fc1461067b5780637571336a146106a6576102ef565b806349bd5a5e1461053e5780634a62bb65146105695780634fbee193146105945780636a486a8e146105d15780636ddd1713146105fc57806370a0823114610627576102ef565b80631f3fed8f116102a15780631f3fed8f1461041a578063203e727e1461044557806323b872dd1461046e57806327c8f835146104ab578063313ce567146104d65780633950935114610501576102ef565b806306fdde03146102f4578063095ea7b31461031f57806310d5de531461035c5780631694505e1461039957806318160ddd146103c45780631a8145bb146103ef576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b50610309610c15565b60405161031691906136e1565b60405180910390f35b34801561032b57600080fd5b506103466004803603810190610341919061379c565b610ca7565b60405161035391906137f7565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613812565b610cc5565b60405161039091906137f7565b60405180910390f35b3480156103a557600080fd5b506103ae610ce5565b6040516103bb919061389e565b60405180910390f35b3480156103d057600080fd5b506103d9610d09565b6040516103e691906138c8565b60405180910390f35b3480156103fb57600080fd5b50610404610d13565b60405161041191906138c8565b60405180910390f35b34801561042657600080fd5b5061042f610d19565b60405161043c91906138c8565b60405180910390f35b34801561045157600080fd5b5061046c600480360381019061046791906138e3565b610d1f565b005b34801561047a57600080fd5b5061049560048036038101906104909190613910565b610e2e565b6040516104a291906137f7565b60405180910390f35b3480156104b757600080fd5b506104c0610f26565b6040516104cd9190613972565b60405180910390f35b3480156104e257600080fd5b506104eb610f2c565b6040516104f891906139a9565b60405180910390f35b34801561050d57600080fd5b506105286004803603810190610523919061379c565b610f35565b60405161053591906137f7565b60405180910390f35b34801561054a57600080fd5b50610553610fe1565b6040516105609190613972565b60405180910390f35b34801561057557600080fd5b5061057e611005565b60405161058b91906137f7565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613812565b611018565b6040516105c891906137f7565b60405180910390f35b3480156105dd57600080fd5b506105e661106e565b6040516105f391906138c8565b60405180910390f35b34801561060857600080fd5b50610611611074565b60405161061e91906137f7565b60405180910390f35b34801561063357600080fd5b5061064e60048036038101906106499190613812565b611087565b60405161065b91906138c8565b60405180910390f35b34801561067057600080fd5b506106796110cf565b005b34801561068757600080fd5b50610690611157565b60405161069d91906137f7565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906139f0565b6111f7565b005b3480156106db57600080fd5b506106e46112ce565b6040516106f19190613972565b60405180910390f35b34801561070657600080fd5b5061070f6112f4565b60405161071c9190613972565b60405180910390f35b34801561073157600080fd5b5061073a61131a565b60405161074791906138c8565b60405180910390f35b34801561075c57600080fd5b50610765611320565b005b34801561077357600080fd5b5061077c6113d4565b6040516107899190613972565b60405180910390f35b34801561079e57600080fd5b506107a76113fe565b6040516107b49190613972565b60405180910390f35b3480156107c957600080fd5b506107d2611424565b6040516107df91906138c8565b60405180910390f35b3480156107f457600080fd5b5061080f600480360381019061080a9190613a30565b61142a565b005b34801561081d57600080fd5b506108266114c3565b60405161083391906136e1565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e91906139f0565b611555565b005b34801561087157600080fd5b5061087a61166d565b60405161088791906138c8565b60405180910390f35b34801561089c57600080fd5b506108a5611673565b6040516108b291906138c8565b60405180910390f35b3480156108c757600080fd5b506108d0611679565b6040516108dd91906138c8565b60405180910390f35b3480156108f257600080fd5b5061090d6004803603810190610908919061379c565b61167f565b60405161091a91906137f7565b60405180910390f35b34801561092f57600080fd5b5061094a6004803603810190610945919061379c565b61176a565b60405161095791906137f7565b60405180910390f35b34801561096c57600080fd5b5061098760048036038101906109829190613812565b611788565b60405161099491906137f7565b60405180910390f35b3480156109a957600080fd5b506109b26117a8565b6040516109bf91906137f7565b60405180910390f35b3480156109d457600080fd5b506109ef60048036038101906109ea91906139f0565b6117bb565b005b3480156109fd57600080fd5b50610a186004803603810190610a1391906138e3565b6118e0565b005b348015610a2657600080fd5b50610a2f6119ef565b604051610a3c91906137f7565b60405180910390f35b348015610a5157600080fd5b50610a5a611a02565b604051610a6791906138c8565b60405180910390f35b348015610a7c57600080fd5b50610a976004803603810190610a9291906138e3565b611a08565b604051610aa491906137f7565b60405180910390f35b348015610ab957600080fd5b50610ac2611b5d565b604051610acf91906138c8565b60405180910390f35b348015610ae457600080fd5b50610aff6004803603810190610afa9190613a5d565b611b63565b604051610b0c91906138c8565b60405180910390f35b348015610b2157600080fd5b50610b2a611bea565b604051610b3791906138c8565b60405180910390f35b348015610b4c57600080fd5b50610b55611bf0565b604051610b6291906137f7565b60405180910390f35b348015610b7757600080fd5b50610b80611c90565b604051610b8d91906138c8565b60405180910390f35b348015610ba257600080fd5b50610bbd6004803603810190610bb89190613812565b611c96565b005b348015610bcb57600080fd5b50610bd4611d8d565b604051610be191906138c8565b60405180910390f35b348015610bf657600080fd5b50610bff611d93565b604051610c0c91906138c8565b60405180910390f35b606060038054610c2490613acc565b80601f0160208091040260200160405190810160405280929190818152602001828054610c5090613acc565b8015610c9d5780601f10610c7257610100808354040283529160200191610c9d565b820191906000526020600020905b815481529060010190602001808311610c8057829003601f168201915b5050505050905090565b6000610cbb610cb4611d99565b8484611da1565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60185481565b60175481565b610d27611d99565b73ffffffffffffffffffffffffffffffffffffffff16610d456113d4565b73ffffffffffffffffffffffffffffffffffffffff1614610d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9290613b49565b60405180910390fd5b670de0b6b3a76400006103e86001610db1610d09565b610dbb9190613b98565b610dc59190613c09565b610dcf9190613c09565b811015610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613cac565b60405180910390fd5b670de0b6b3a764000081610e259190613b98565b60098190555050565b6000610e3b848484611f6a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610e86611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613d3e565b60405180910390fd5b610f1a85610f12611d99565b858403611da1565b60019150509392505050565b61dead81565b60006012905090565b6000610fd7610f42611d99565b848460016000610f50611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610fd29190613d5e565b611da1565b6001905092915050565b7f000000000000000000000000cbc557703f83aef5f224e456dbbf99b82f1ea9f481565b600c60009054906101000a900460ff1681565b6000601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110d7611d99565b73ffffffffffffffffffffffffffffffffffffffff166110f56113d4565b73ffffffffffffffffffffffffffffffffffffffff161461114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290613b49565b60405180910390fd5b6111556000612c01565b565b6000611161611d99565b73ffffffffffffffffffffffffffffffffffffffff1661117f6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90613b49565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b6111ff611d99565b73ffffffffffffffffffffffffffffffffffffffff1661121d6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90613b49565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b611328611d99565b73ffffffffffffffffffffffffffffffffffffffff166113466113d4565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613b49565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b611432611d99565b73ffffffffffffffffffffffffffffffffffffffff166114506113d4565b73ffffffffffffffffffffffffffffffffffffffff16146114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90613b49565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b6060600480546114d290613acc565b80601f01602080910402602001604051908101604052809291908181526020018280546114fe90613acc565b801561154b5780601f106115205761010080835404028352916020019161154b565b820191906000526020600020905b81548152906001019060200180831161152e57829003601f168201915b5050505050905090565b61155d611d99565b73ffffffffffffffffffffffffffffffffffffffff1661157b6113d4565b73ffffffffffffffffffffffffffffffffffffffff16146115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890613b49565b60405180910390fd5b7f000000000000000000000000cbc557703f83aef5f224e456dbbf99b82f1ea9f473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361165f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165690613e04565b60405180910390fd5b6116698282612cc7565b5050565b60125481565b60195481565b60165481565b6000806001600061168e611d99565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561174b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174290613e96565b60405180910390fd5b61175f611756611d99565b85858403611da1565b600191505092915050565b600061177e611777611d99565b8484611f6a565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6117c3611d99565b73ffffffffffffffffffffffffffffffffffffffff166117e16113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611837576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182e90613b49565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516118d491906137f7565b60405180910390a25050565b6118e8611d99565b73ffffffffffffffffffffffffffffffffffffffff166119066113d4565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390613b49565b60405180910390fd5b670de0b6b3a76400006103e86005611972610d09565b61197c9190613b98565b6119869190613c09565b6119909190613c09565b8110156119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c990613f28565b60405180910390fd5b670de0b6b3a7640000816119e69190613b98565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611a12611d99565b73ffffffffffffffffffffffffffffffffffffffff16611a306113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7d90613b49565b60405180910390fd5b620186a06001611a94610d09565b611a9e9190613b98565b611aa89190613c09565b821015611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae190613fba565b60405180910390fd5b6103e86005611af7610d09565b611b019190613b98565b611b0b9190613c09565b821115611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b449061404c565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611bfa611d99565b73ffffffffffffffffffffffffffffffffffffffff16611c186113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6590613b49565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60115481565b611c9e611d99565b73ffffffffffffffffffffffffffffffffffffffff16611cbc6113d4565b73ffffffffffffffffffffffffffffffffffffffff1614611d12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0990613b49565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906140de565b60405180910390fd5b611d8a81612c01565b50565b60155481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0790614170565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7690614202565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611f5d91906138c8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd090614294565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203f90614326565b60405180910390fd5b600081036120615761205c83836000612d68565b612bfc565b600c60009054906101000a900460ff16156127245761207e6113d4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156120ec57506120bc6113d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121255750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561215f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156121785750600560149054906101000a900460ff16155b1561272357600c60019054906101000a900460ff1661227257601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806122325750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612271576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226890614392565b60405180910390fd5b5b600e60009054906101000a900460ff161561243a5761228f6113d4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561231657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561236e57507f000000000000000000000000cbc557703f83aef5f224e456dbbf99b82f1ea9f473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156124395743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb9061444a565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124dd5750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561258457600954811115612527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251e906144dc565b60405180910390fd5b600b5461253383611087565b8261253e9190613d5e565b111561257f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257690614548565b60405180910390fd5b612722565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126275750601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561267657600954811115612671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612668906145da565b60405180910390fd5b612721565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661272057600b546126d383611087565b826126de9190613d5e565b111561271f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271690614548565b60405180910390fd5b5b5b5b5b5b600061272f30611087565b90506000600a5482101590508080156127545750600c60029054906101000a900460ff165b801561276d5750600560149054906101000a900460ff16155b80156127c35750601c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156128195750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561286f5750601a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156128b3576001600560146101000a81548160ff021916908315150217905550612897612fe7565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806129695750601a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561297357600090505b60008115612bec57601c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129d657506000601354115b15612aa357612a0360646129f5601354886132cc90919063ffffffff16565b6132e290919063ffffffff16565b905060135460155482612a169190613b98565b612a209190613c09565b60186000828254612a319190613d5e565b9250508190555060135460165482612a499190613b98565b612a539190613c09565b60196000828254612a649190613d5e565b9250508190555060135460145482612a7c9190613b98565b612a869190613c09565b60176000828254612a979190613d5e565b92505081905550612bc8565b601c60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612afe57506000600f54115b15612bc757612b2b6064612b1d600f54886132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600f5460115482612b3e9190613b98565b612b489190613c09565b60186000828254612b599190613d5e565b92505081905550600f5460125482612b719190613b98565b612b7b9190613c09565b60196000828254612b8c9190613d5e565b92505081905550600f5460105482612ba49190613b98565b612bae9190613c09565b60176000828254612bbf9190613d5e565b925050819055505b5b6000811115612bdd57612bdc873083612d68565b5b8085612be991906145fa565b94505b612bf7878787612d68565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dce90614294565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e3d90614326565b60405180910390fd5b612e518383836132f8565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ed7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ece906146a0565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f6a9190613d5e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612fce91906138c8565b60405180910390a3612fe18484846132fd565b50505050565b6000612ff230611087565b905060006019546017546018546130099190613d5e565b6130139190613d5e565b90506000808314806130255750600082145b15613032575050506132ca565b6014600a546130419190613b98565b83111561305a576014600a546130579190613b98565b92505b60006002836018548661306d9190613b98565b6130779190613c09565b6130819190613c09565b90506000613098828661330290919063ffffffff16565b905060004790506130a882613318565b60006130bd824761330290919063ffffffff16565b905060006130e8876130da601754856132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600061311388613105601954866132cc90919063ffffffff16565b6132e290919063ffffffff16565b9050600081838561312491906145fa565b61312e91906145fa565b9050600060188190555060006017819055506000601981905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161318e906146f1565b60006040518083038185875af1925050503d80600081146131cb576040519150601f19603f3d011682016040523d82523d6000602084013e6131d0565b606091505b5050809850506000871180156131e65750600081115b15613231576131f58782613555565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56186828960405161322893929190614706565b60405180910390a15b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613277906146f1565b60006040518083038185875af1925050503d80600081146132b4576040519150601f19603f3d011682016040523d82523d6000602084013e6132b9565b606091505b505080985050505050505050505050505b565b600081836132da9190613b98565b905092915050565b600081836132f09190613c09565b905092915050565b505050565b505050565b6000818361331091906145fa565b905092915050565b6000600267ffffffffffffffff8111156133355761333461473d565b5b6040519080825280602002602001820160405280156133635781602001602082028036833780820191505090505b509050308160008151811061337b5761337a61476c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613420573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061344491906147b0565b816001815181106134585761345761476c565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506134bd307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611da1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161351f9594939291906148d6565b600060405180830381600087803b15801561353957600080fd5b505af115801561354d573d6000803e3d6000fd5b505050505050565b613580307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611da1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b815260040161360796959493929190614930565b60606040518083038185885af1158015613625573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061364a91906149a6565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561368b578082015181840152602081019050613670565b60008484015250505050565b6000601f19601f8301169050919050565b60006136b382613651565b6136bd818561365c565b93506136cd81856020860161366d565b6136d681613697565b840191505092915050565b600060208201905081810360008301526136fb81846136a8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061373382613708565b9050919050565b61374381613728565b811461374e57600080fd5b50565b6000813590506137608161373a565b92915050565b6000819050919050565b61377981613766565b811461378457600080fd5b50565b60008135905061379681613770565b92915050565b600080604083850312156137b3576137b2613703565b5b60006137c185828601613751565b92505060206137d285828601613787565b9150509250929050565b60008115159050919050565b6137f1816137dc565b82525050565b600060208201905061380c60008301846137e8565b92915050565b60006020828403121561382857613827613703565b5b600061383684828501613751565b91505092915050565b6000819050919050565b600061386461385f61385a84613708565b61383f565b613708565b9050919050565b600061387682613849565b9050919050565b60006138888261386b565b9050919050565b6138988161387d565b82525050565b60006020820190506138b3600083018461388f565b92915050565b6138c281613766565b82525050565b60006020820190506138dd60008301846138b9565b92915050565b6000602082840312156138f9576138f8613703565b5b600061390784828501613787565b91505092915050565b60008060006060848603121561392957613928613703565b5b600061393786828701613751565b935050602061394886828701613751565b925050604061395986828701613787565b9150509250925092565b61396c81613728565b82525050565b60006020820190506139876000830184613963565b92915050565b600060ff82169050919050565b6139a38161398d565b82525050565b60006020820190506139be600083018461399a565b92915050565b6139cd816137dc565b81146139d857600080fd5b50565b6000813590506139ea816139c4565b92915050565b60008060408385031215613a0757613a06613703565b5b6000613a1585828601613751565b9250506020613a26858286016139db565b9150509250929050565b600060208284031215613a4657613a45613703565b5b6000613a54848285016139db565b91505092915050565b60008060408385031215613a7457613a73613703565b5b6000613a8285828601613751565b9250506020613a9385828601613751565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613ae457607f821691505b602082108103613af757613af6613a9d565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b3360208361365c565b9150613b3e82613afd565b602082019050919050565b60006020820190508181036000830152613b6281613b26565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613ba382613766565b9150613bae83613766565b9250828202613bbc81613766565b91508282048414831517613bd357613bd2613b69565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613c1482613766565b9150613c1f83613766565b925082613c2f57613c2e613bda565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613c96602f8361365c565b9150613ca182613c3a565b604082019050919050565b60006020820190508181036000830152613cc581613c89565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613d2860288361365c565b9150613d3382613ccc565b604082019050919050565b60006020820190508181036000830152613d5781613d1b565b9050919050565b6000613d6982613766565b9150613d7483613766565b9250828201905080821115613d8c57613d8b613b69565b5b92915050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613dee60398361365c565b9150613df982613d92565b604082019050919050565b60006020820190508181036000830152613e1d81613de1565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613e8060258361365c565b9150613e8b82613e24565b604082019050919050565b60006020820190508181036000830152613eaf81613e73565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613f1260248361365c565b9150613f1d82613eb6565b604082019050919050565b60006020820190508181036000830152613f4181613f05565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000613fa460358361365c565b9150613faf82613f48565b604082019050919050565b60006020820190508181036000830152613fd381613f97565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061403660348361365c565b915061404182613fda565b604082019050919050565b6000602082019050818103600083015261406581614029565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006140c860268361365c565b91506140d38261406c565b604082019050919050565b600060208201905081810360008301526140f7816140bb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061415a60248361365c565b9150614165826140fe565b604082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006141ec60228361365c565b91506141f782614190565b604082019050919050565b6000602082019050818103600083015261421b816141df565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061427e60258361365c565b915061428982614222565b604082019050919050565b600060208201905081810360008301526142ad81614271565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061431060238361365c565b915061431b826142b4565b604082019050919050565b6000602082019050818103600083015261433f81614303565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061437c60168361365c565b915061438782614346565b602082019050919050565b600060208201905081810360008301526143ab8161436f565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061443460498361365c565b915061443f826143b2565b606082019050919050565b6000602082019050818103600083015261446381614427565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006144c660358361365c565b91506144d18261446a565b604082019050919050565b600060208201905081810360008301526144f5816144b9565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061453260138361365c565b915061453d826144fc565b602082019050919050565b6000602082019050818103600083015261456181614525565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006145c460368361365c565b91506145cf82614568565b604082019050919050565b600060208201905081810360008301526145f3816145b7565b9050919050565b600061460582613766565b915061461083613766565b925082820390508181111561462857614627613b69565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061468a60268361365c565b91506146958261462e565b604082019050919050565b600060208201905081810360008301526146b98161467d565b9050919050565b600081905092915050565b50565b60006146db6000836146c0565b91506146e6826146cb565b600082019050919050565b60006146fc826146ce565b9150819050919050565b600060608201905061471b60008301866138b9565b61472860208301856138b9565b61473560408301846138b9565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506147aa8161373a565b92915050565b6000602082840312156147c6576147c5613703565b5b60006147d48482850161479b565b91505092915050565b6000819050919050565b60006148026147fd6147f8846147dd565b61383f565b613766565b9050919050565b614812816147e7565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61484d81613728565b82525050565b600061485f8383614844565b60208301905092915050565b6000602082019050919050565b600061488382614818565b61488d8185614823565b935061489883614834565b8060005b838110156148c95781516148b08882614853565b97506148bb8361486b565b92505060018101905061489c565b5085935050505092915050565b600060a0820190506148eb60008301886138b9565b6148f86020830187614809565b818103604083015261490a8186614878565b90506149196060830185613963565b61492660808301846138b9565b9695505050505050565b600060c0820190506149456000830189613963565b61495260208301886138b9565b61495f6040830187614809565b61496c6060830186614809565b6149796080830185613963565b61498660a08301846138b9565b979650505050505050565b6000815190506149a081613770565b92915050565b6000806000606084860312156149bf576149be613703565b5b60006149cd86828701614991565b93505060206149de86828701614991565b92505060406149ef86828701614991565b915050925092509256fea2646970667358221220a24a599fe7b7f674e57e836cbb0e91be3946309599c6115af25ed7a252da206264736f6c63430008110033
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.